summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated French translation. Thanks to Philippe Ducrettet.Michael Drake2010-07-231-86/+86
| | | | svn path=/trunk/netsurf/; revision=10658
* Make GTK frontend select apropriate messages file Vincent Sanders2010-07-227-30/+126
| | | | svn path=/trunk/netsurf/; revision=10657
* Allow targetting any window/tab with ARexx commands. Adds new command ↵Chris Young2010-07-203-51/+226
| | | | | | | | | WINDOWS to find out the number of windows and tabs open. ShowTitles.nsrx is an example of how to use the new functionality. svn path=/trunk/netsurf/; revision=10656
* Fix GTK File > Quit menu message key in translations.Michael Drake2010-07-194-4/+4
| | | | svn path=/trunk/netsurf/; revision=10655
* Updated translation from Samir HawamdehChris Young2010-07-181-9/+9
| | | | svn path=/trunk/netsurf/; revision=10654
* Don't suppress curl debug output, eitherJohn Mark Bell2010-07-171-2/+5
| | | | svn path=/trunk/netsurf/; revision=10651
* Enable noisy loggingJohn Mark Bell2010-07-172-2/+2
| | | | svn path=/trunk/netsurf/; revision=10650
* Fix build when layout logging is enabled.Michael Drake2010-07-161-2/+2
| | | | svn path=/trunk/netsurf/; revision=10649
* Record left and right float boxes with negative widths. Fixes overlapping ↵Michael Drake2010-07-161-8/+5
| | | | | | text on new BBC News site. svn path=/trunk/netsurf/; revision=10648
* Update dirlist_generate_title documentation to match reality. Remove unused ↵Michael Drake2010-07-161-20/+10
| | | | | | error check stuff. svn path=/trunk/netsurf/; revision=10647
* memory leakChris Young2010-07-151-19/+29
| | | | svn path=/trunk/netsurf/; revision=10646
* Localise browser "Index of" textChris Young2010-07-156-4/+25
| | | | svn path=/trunk/netsurf/; revision=10645
* fix crashChris Young2010-07-151-2/+2
| | | | svn path=/trunk/netsurf/; revision=10644
* Force browser window redraw after printing to restore screen layout.Steve Fryatt2010-07-151-1/+3
| | | | svn path=/trunk/netsurf/; revision=10643
* Fix so column suppression choices actually end up in the output.Michael Drake2010-07-151-0/+4
| | | | svn path=/trunk/netsurf/; revision=10642
* Move HTML generating code into separate functions. Tidy up spacing when ↵Michael Drake2010-07-151-87/+350
| | | | | | parent directory link is not shown. svn path=/trunk/netsurf/; revision=10641
* Work around apparent register corruption after printing.Steve Fryatt2010-07-141-2/+9
| | | | svn path=/trunk/netsurf/; revision=10640
* More intelligent path concatenationChris Young2010-07-142-55/+69
| | | | svn path=/trunk/netsurf/; revision=10639
* Squash mimetype may be used uninitialised warning.Michael Drake2010-07-141-14/+23
| | | | svn path=/trunk/netsurf/; revision=10638
* Add comments and factor out common file size code.Michael Drake2010-07-141-14/+54
| | | | svn path=/trunk/netsurf/; revision=10637
* Restyle directory listings.Michael Drake2010-07-141-63/+130
| | | | svn path=/trunk/netsurf/; revision=10636
* Update file browser messages.Michael Drake2010-07-145-5/+10
| | | | svn path=/trunk/netsurf/; revision=10635
* Use human friendly size, which fixes RISC OS directory listings.Michael Drake2010-07-141-2/+4
| | | | svn path=/trunk/netsurf/; revision=10634
* Fix first time installs in novice mode so the files end up in a directory ↵Chris Young2010-07-131-0/+16
| | | | | | | | rather than the root of whichever volume Installer decided to pick. svn path=/trunk/netsurf/; revision=10633
* Move directory text into type columnChris Young2010-07-131-4/+4
| | | | svn path=/trunk/netsurf/; revision=10632
* Improved directory browserChris Young2010-07-136-6/+133
| | | | svn path=/trunk/netsurf/; revision=10631
* Remove desbugChris Young2010-07-111-2/+3
| | | | svn path=/trunk/netsurf/; revision=10630
* Amiga file: URIs now translate the : in device names to / (and back), which ↵Chris Young2010-07-112-7/+41
| | | | | | | | | | | conforms better to the spec (: will still work for compatibility, but may have problems). This fixes a problem with directory browsing. Directory parent link now uses the full parent path returned by url_parent instead of one relative to the current directory. svn path=/trunk/netsurf/; revision=10629
* Add commands BACK, FORWARD, HOME and RELOAD to correspond with the buttons ↵Chris Young2010-07-112-2/+63
| | | | | | on the GUI. svn path=/trunk/netsurf/; revision=10628
* Allow browsing directories. Clicking through from the root of a volume ↵Chris Young2010-07-111-8/+41
| | | | | | | | | | doesn't work (needs some url_to_path translation magic or an #ifdef'd patch in render/directory.c) and the [..] parent link always points to "file:///" for some reason, but other than that it works. svn path=/trunk/netsurf/; revision=10627
* Missing typesChris Young2010-07-111-7/+13
| | | | svn path=/trunk/netsurf/; revision=10626
* Correct executable name. Apparently running the wrong executable makes it ↵Chris Young2010-07-101-1/+1
| | | | | | | | difficult to spot glaringly obvious bugs :) svn path=/trunk/netsurf/; revision=10625
* Fix inventory file leafname.Michael Drake2010-07-098-8/+8
| | | | svn path=/trunk/netsurf/; revision=10624
* Document the bitmap format properly.John Mark Bell2010-07-091-1/+26
| | | | svn path=/trunk/netsurf/; revision=10623
* Check the last character for a path separator, rather than the NULL string ↵Chris Young2010-07-095-5/+5
| | | | | | termination. svn path=/trunk/netsurf/; revision=10622
* Replace unnecessarily complicated path concatenation with something simpler andChris Young2010-07-098-9/+118
| | | | | | easily adaptable to different platform path structures. svn path=/trunk/netsurf/; revision=10621
* Treat tiled images scaled to 1x1 as flat fills of the tiled area.Michael Drake2010-07-081-0/+12
| | | | svn path=/trunk/netsurf/; revision=10616
* Stop redrawing zero size images.Michael Drake2010-07-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=10614
* Bring throbber off screen edge by spacing_width.Michael Drake2010-07-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=10607
* More useful optimisation for 1x1 tiled image plots.Michael Drake2010-07-071-6/+9
| | | | svn path=/trunk/netsurf/; revision=10606
* Merge branches/vince/netsurf-fbtk-rework to trunk.John Mark Bell2010-07-0726-2437/+4130
| | | | svn path=/trunk/netsurf/; revision=10605
* In switch statements add default branch for unknown enum values, with assert.Michael Drake2010-07-061-35/+54
| | | | svn path=/trunk/netsurf/; revision=10603
* Remove dead code.Michael Drake2010-07-061-6/+2
| | | | svn path=/trunk/netsurf/; revision=10602
* Remove dead assignements and add assert to check table cells aren't set to ↵Michael Drake2010-07-061-18/+17
| | | | | | span no columns at layout time (Note: colspan=0 is treated as colspan=1 by box normalisation. It should probably be handled in table_calculate_columns_types() properly. Either way, there shouldn't be colspans of 0 by the time we get to layout.) svn path=/trunk/netsurf/; revision=10601
* Fix gtk compat layer to not segfault on old versions of GTK.John Mark Bell2010-07-031-8/+10
| | | | svn path=/trunk/netsurf/; revision=10593
* Only invoke callback when we successfully converted CSS data.John Mark Bell2010-07-011-2/+11
| | | | svn path=/trunk/netsurf/; revision=10592
* Correct freetype header acquisitionJohn Mark Bell2010-06-302-2/+3
| | | | svn path=/trunk/netsurf/; revision=10591
* Pedantic whitespace changeJohn Mark Bell2010-06-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=10590
* move url database test to test directoryVincent Sanders2010-06-294-218/+267
| | | | svn path=/trunk/netsurf/; revision=10589
* Avoid potential use of NULL pointer.John Mark Bell2010-06-291-0/+4
| | | | svn path=/trunk/netsurf/; revision=10588