about summary refs log tree commit diff stats
path: root/src/io
Commit message (Collapse)AuthorAgeFilesLines
...
* Use a separate process for file loadingbptato2022-08-185-54/+309
| | | | | Not very useful for now, since we still have to load the entire page before parsing it.
* Refactor fileloaderbptato2022-08-084-212/+263
|
* Remove httpclient dependencybptato2022-08-042-30/+64
|
* Slightly better handling of http auth + redirectbptato2022-08-031-1/+3
|
* Fix incorrect selector parsing, remove httpclient from loaderbptato2022-08-031-2/+0
|
* Do not display password on status linebptato2022-08-031-1/+1
| | | | Editing the URL still does.
* Store FixedCell contents as strbptato2022-08-032-13/+11
|
* Fix renderdocument setText etc.bptato2022-08-022-39/+15
|
* Make marks a property of bufferbptato2022-08-012-10/+18
| | | | So that re-rendering the buffer doesn't destroy all marks.
* Hide passwords while typingbptato2022-07-312-10/+21
|
* Add interactive <select>bptato2022-07-311-3/+32
|
* Implement HTTP Authbptato2022-07-301-13/+33
| | | | | Also use our own redirection implementation instead of curl follow redirects.
* Enable raw mode during renderingbptato2022-07-302-5/+27
| | | | So that non-processed characters aren't displayed on the screen
* Increase tokenizer buffer size, add mark color optionbptato2022-07-291-1/+2
|
* Fix StyledNode invalidation & othersbptato2022-07-272-31/+30
|
* Remove unmaintained networking callsbptato2022-07-241-126/+2
|
* Link to libcurlbptato2022-07-241-1/+109
|
* Improved incremental search: support unicodebptato2022-07-232-42/+43
|
* Add search functionbptato2022-07-222-78/+211
| | | | | Uses libregexp from QuickJS. Incremental search is quite hacky for now, but overall it seems to work OK.
* Optimize dombptato2022-07-211-2/+1
|
* Enable remote stylesheets; fix inline block valuesbptato2022-07-181-1/+1
|
* Implement select element displaybptato2022-07-171-18/+29
| | | | | You can't actually use them yet. But at least they don't flood the screen with options now.
* Fix formsbptato2022-07-171-0/+1
|
* Use StyledNodes instead of passing the entire DOM to the layout enginebptato2022-07-161-1/+5
| | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching.
* Fix reloadingbptato2022-07-141-0/+3
|
* getPageCurl: avoid loading pages that couldn't be loadedbptato2022-07-141-0/+4
|
* Fix a tokenizer bug, clean up some warningsbptato2022-07-122-30/+5
|
* Fix and clean up some dom-based featuresbptato2022-07-111-5/+4
|
* Implement HTML5 parsingbptato2022-07-111-14/+12
| | | | | | | Completely replaced the previous HTML2 (?) parser, which was a bad re-implementation of w3m's parser in the first place. Now we have a (sort of) compliant HTML5 parser. Needs tests, badly.
* Fix cursorPrevLinkbptato2022-06-171-14/+32
|
* Fix curl getting stuck while reading headersbptato2022-06-171-2/+3
|
* Submit form on pressing enter in search fieldbptato2022-06-171-1/+13
|
* Add curl supportbptato2022-06-071-4/+128
| | | | This calls the curl binary, not libcurl.
* Update loader.nimbptato2022-05-211-3/+9
|
* Slightly change header handlingbptato2022-05-101-4/+11
|
* Rename conflicting source filesbptato2022-05-101-1/+1
| | | | Nim can't really differentiate between them, unfortunately.
* Some refactoring for layout engine rewritebptato2022-05-101-1/+0
|
* Fix a windows compilation errorbptato2022-02-221-1/+1
|
* Reduce formatting complexitybptato2022-02-192-18/+29
| | | | | | Formatting based on cells instead of bytes. No clue why I'd ever thought the latter would be a good idea. This fixes background colors too. I think.
* Fix format background unicode problemsbptato2022-02-151-6/+0
|
* Incomplete background-color implementationbptato2022-02-141-1/+3
| | | | Has numerous flaws which will have to be corrected later.
* Implement blink tagbptato2022-02-121-0/+5
| | | | with text-decoration: blink.
* Remove some unused variablesbptato2022-02-121-4/+0
|
* Some loader polishingbptato2022-02-092-10/+8
|
* Cleanup form method codebptato2022-02-082-26/+38
|
* Implement formsbptato2022-01-293-27/+269
| | | | | | Note: for now, only input tags are supported. Also the implementation is extremely hacky and needs refactoring... But it works, I think.
* Implement paddingbptato2022-01-262-77/+77
|
* Fix potential crash in next link commandbptato2022-01-261-14/+7
|
* Add some command line fixes, fix related bugsbptato2022-01-251-1/+3
|
* Disallow different scheme in link tagsbptato2022-01-251-4/+5
|