summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Amiga changes for core search update (r12646). Note: untested.Michael Drake2011-08-241-26/+14
| | | | svn path=/trunk/netsurf/; revision=12650
* Atari changes for core search update (r12646). Note: untested.Michael Drake2011-08-241-8/+5
| | | | svn path=/trunk/netsurf/; revision=12649
* Cocoa changes for core search update (r12646). Note: untested.Michael Drake2011-08-241-6/+3
| | | | svn path=/trunk/netsurf/; revision=12648
* GTK changes for core search update (r12646).Michael Drake2011-08-243-20/+26
| | | | svn path=/trunk/netsurf/; revision=12647
* Core part of search improvement:Michael Drake2011-08-2413-679/+929
| | | | | | | | | | + Split up browser window and content related elements of html & text search. + Associate search contexts with contents, rather than browser windows. + Remove highlighting of search terms dependency on current_redraw_browser. + Fixes issues with search contexts being applied to the wrong content. svn path=/trunk/netsurf/; revision=12646
* Reject attempts by a stylesheet to import itselfJohn Mark Bell2011-08-231-6/+15
| | | | svn path=/trunk/netsurf/; revision=12644
* Replaced elements' children are not laid out, so don't look at their ↵Michael Drake2011-08-231-0/+4
| | | | | | descendants. Fixes #3380281. svn path=/trunk/netsurf/; revision=12642
* Fix bug #3390958: forcibly discard references to any child objects if we ↵John Mark Bell2011-08-201-4/+14
| | | | | | fail to complete conversion of an HTML content svn path=/trunk/netsurf/; revision=12641
* refactor to fix warning about out of range enumsVincent Sanders2011-08-131-393/+438
| | | | | | | | split default image finding for toolbar and findbar reorder to avoid forward declarations refactor macros to be *slightly* less awful svn path=/trunk/netsurf/; revision=12640
* Convert window title to local encoding.Ole Loots2011-08-051-1/+10
| | | | svn path=/trunk/netsurf/; revision=12638
* Added missing position update when window got moved.Ole Loots2011-08-051-5/+4
| | | | svn path=/trunk/netsurf/; revision=12637
* Improved accuracy for window resize. Ole Loots2011-08-053-70/+68
| | | | svn path=/trunk/netsurf/; revision=12636
* housekeepingOle Loots2011-08-055-39/+16
| | | | svn path=/trunk/netsurf/; revision=12635
* edit commentsOle Loots2011-08-051-2/+9
| | | | svn path=/trunk/netsurf/; revision=12634
* Redirect non-fatal errors to the NetSurf logChris Young2011-07-311-0/+16
| | | | svn path=/trunk/netsurf/; revision=12633
* Update from SamirChris Young2011-07-291-5/+5
| | | | svn path=/trunk/netsurf/; revision=12632
* Revert accidental changeChris Young2011-07-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=12631
* Fix memory leakChris Young2011-07-281-1/+2
| | | | svn path=/trunk/netsurf/; revision=12630
* Fix GCC 4.6 warnings in coreJohn Mark Bell2011-07-264-27/+3
| | | | svn path=/trunk/netsurf/; revision=12629
* Selection is now subordinate to html and text content types, and ↵Michael Drake2011-07-267-151/+167
| | | | | | disassociated from browser windows. Note: search currently uses hlcache_handle_get_content() to go from bw to h to get at c for search highlighting via selection. svn path=/trunk/netsurf/; revision=12626
* Remove unused hlcache_handle from search context.Michael Drake2011-07-261-4/+1
| | | | svn path=/trunk/netsurf/; revision=12625
* Skip over credentials when lower casing hostJohn Mark Bell2011-07-241-1/+13
| | | | svn path=/trunk/netsurf/; revision=12624
* Shared URL nodes in the treeview actually want to be readonly. They ↵John Mark Bell2011-07-244-32/+32
| | | | | | certainly have no business not copying transient data. svn path=/trunk/netsurf/; revision=12623
* Fix motion event handling in GTK treeviewJohn Mark Bell2011-07-242-26/+31
| | | | svn path=/trunk/netsurf/; revision=12622
* Fix double frees on download failureJohn Mark Bell2011-07-231-1/+4
| | | | svn path=/trunk/netsurf/; revision=12621
* Abort loading content when closing windowJohn Mark Bell2011-07-231-0/+1
| | | | svn path=/trunk/netsurf/; revision=12620
* use human_friendly_bytesizeChris Young2011-07-231-3/+3
| | | | svn path=/trunk/netsurf/; revision=12619
* Show existing file size when file already exists on downloadChris Young2011-07-2314-17/+62
| | | | svn path=/trunk/netsurf/; revision=12618
* Fill in conspiciusly-empty else; fix warningsChris Young2011-07-231-11/+12
| | | | svn path=/trunk/netsurf/; revision=12617
* Fix warningsChris Young2011-07-2313-84/+91
| | | | svn path=/trunk/netsurf/; revision=12616
* Fix ASL hook functionChris Young2011-07-231-10/+18
| | | | svn path=/trunk/netsurf/; revision=12615
* Fix transition from LOADING to ERROR state after content has been locked for ↵John Mark Bell2011-07-205-12/+22
| | | | | | conversion svn path=/trunk/netsurf/; revision=12614
* Plug another hole in the logic for stopping HTML contentsJohn Mark Bell2011-07-201-0/+4
| | | | svn path=/trunk/netsurf/; revision=12613
* Make html_stop handle being called during construction of the box tree (i.e. ↵John Mark Bell2011-07-191-3/+36
| | | | | | | | as the result of a call to gui_multitask from the LOADING state) Fixup accounting of active objects when stopped in the READY state and ensure correct transition to the DONE state when necessary svn path=/trunk/netsurf/; revision=12612
* Fix race when stopping an HTML content mid-loadJohn Mark Bell2011-07-193-30/+61
| | | | svn path=/trunk/netsurf/; revision=12611
* Revert r12609 and assert parent content state.Michael Drake2011-07-191-4/+4
| | | | svn path=/trunk/netsurf/; revision=12610
* Don't try to redraw newly fetched objects' areas in parent html document if ↵Michael Drake2011-07-191-1/+4
| | | | | | parent doc is still in LOADING state. svn path=/trunk/netsurf/; revision=12609
* Correct aspect ratio correctly and support widescreen displaysChris Young2011-07-173-6/+19
| | | | svn path=/trunk/netsurf/; revision=12607
* Ensure buttons update (stop button activates) when new URL starts to loadChris Young2011-07-161-0/+2
| | | | svn path=/trunk/netsurf/; revision=12606
* Update from Samir HawamdehChris Young2011-07-161-12/+13
| | | | svn path=/trunk/netsurf/; revision=12605
* Update from Samir HawamdehChris Young2011-07-151-7/+8
| | | | svn path=/trunk/netsurf/; revision=12604
* Remove assumption of gui window from search.Michael Drake2011-07-143-11/+48
| | | | svn path=/trunk/netsurf/; revision=12603
* Don't need current_redraw_browser for box scrollbars any more.Michael Drake2011-07-131-1/+1
| | | | svn path=/trunk/netsurf/; revision=12602
* Fix up Amiga front end.Michael Drake2011-07-133-4/+4
| | | | svn path=/trunk/netsurf/; revision=12601
* Fix up BeOS front end.Michael Drake2011-07-131-3/+4
| | | | svn path=/trunk/netsurf/; revision=12600
* Fix up Windows front end. Stop it poking inside selection contexts.Michael Drake2011-07-131-6/+8
| | | | svn path=/trunk/netsurf/; revision=12599
* Fix selection for non-gui browser windows (iframes).Michael Drake2011-07-1318-169/+294
| | | | | | | Selection no longer uses current_redraw_browser. Fix long-standing selection bugs on platforms that use action on release behaviour. svn path=/trunk/netsurf/; revision=12598
* Caret position is already scaled in core.Michael Drake2011-07-111-3/+1
| | | | svn path=/trunk/netsurf/; revision=12597
* Scale caret height in coreMichael Drake2011-07-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=12596
* Refactor http utilitiesJohn Mark Bell2011-07-0827-580/+1380
| | | | svn path=/trunk/netsurf/; revision=12595