summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix ignore of files in !NetSurf dir.Michael Drake2012-07-211-6/+6
|
* Remove reference to robuild web page.Michael Drake2012-07-161-6/+1
|
* Update docs for Git.Michael Drake2012-07-156-6/+6
|
* Update URLs for glyph data.Michael Drake2012-07-154-4/+4
|
* Update some project urls.Michael Drake2012-07-152-6/+6
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2012-07-151-1/+1
|\
| * git-testament: Cope with detached HEAD betterDaniel Silverstone2012-07-151-1/+1
| |
* | Fix input type test to compare correct variable.Michael Drake2012-07-151-5/+5
|/
* Use case insensitive string comparisions for nodesJohn-Mark Bell2012-07-154-30/+35
|
* fix stylesheet renderVincent Sanders2012-07-141-1/+1
|
* Do not render noscript when script is enabled.John-Mark Bell2012-07-151-0/+16
|
* Squash warningsJohn-Mark Bell2012-07-152-2/+3
|
* Merge branch 'vince/forms-fixed'Vincent Sanders2012-07-145-26/+470
|\ | | | | | | | | | | | | | | | | | | Conflicts: Makefile.sources render/box_construct.c render/html.c render/html_internal.h Merge Daniel Silverstones forms branch
| * Rework form acessors to deal with binding changesVincent Sanders2012-07-146-465/+484
| |
| * Early <input> elements working, but we need more caseless comparisonsDaniel Silverstone2012-07-082-4/+145
| |
| * BINDING: Support <button> and added the infra for form controls a litle moreDaniel Silverstone2012-07-071-8/+152
| |
| * Binding: Construct forms objects for a documentDaniel Silverstone2012-07-071-7/+166
| |
* | Fix access to context data URL char *.Ole Loots2012-07-141-15/+15
| | | | | | | | | | nsurl_access isn't intended to be used for char * params. added missing include render/html.c
* | fix quirks mode setting with libdom hubbub parserVincent Sanders2012-07-145-19/+20
| |
* | remove parser binding layerVincent Sanders2012-07-1311-1628/+138
| |
* | split out script handling from htmlVincent Sanders2012-07-134-306/+357
| |
* | Refactor plot implementation (removed old files)Ole Loots2012-07-138-3416/+0
| |
* | Plotter refactor: removed one plotter abraction layer.Ole Loots2012-07-1321-186/+2671
| |
* | Added missing but not-so important changes from local SVN working copy.Ole Loots2012-07-105-5/+7
| |
* | Merge branch 'master' of git://git.netsurf-browser.org/netsurfOle Loots2012-07-0910-630/+670
|\|
| * Make log times line up for neatnessDaniel Silverstone2012-07-071-1/+1
| |
| * Ensure backslashes are escaped in the GECOS string. Fixes a warning when ↵Chris Young2012-07-071-0/+1
| | | | | | | | building under Windows.
| * Correct library name. Update versions to 1.7.Chris Young2012-07-071-1/+1
| |
| * do not try and write to document if the parser is finishedVincent Sanders2012-07-072-4/+7
| |
| * Improve logging and inline script handlingVincent Sanders2012-07-073-17/+21
| |
| * hlcache handle is not a content, do not treat it as one - oopsVincent Sanders2012-07-071-1/+3
| |
| * alter usage of libdom hubbub bindingVincent Sanders2012-07-066-626/+656
| |
* | Add Javascript case to FreeMiNT Makefile.targetOle Loots2012-07-051-2/+12
|/
* limit url debug output to 140 charactersVincent Sanders2012-07-032-5/+7
|
* Merge branch 'vince/jsnavigator'Vincent Sanders2012-07-026-4/+286
|\ | | | | | | Merge javascript navigator object implementation
| * Implement navigator propertiesVincent Sanders2012-07-022-2/+163
| | | | | | | | Signed-Off-By: Vincent Sanders <vince@netsurf-browser.org>
| * Add initial navigator object creation.Vincent Sanders2012-07-025-3/+124
| | | | | | | | | | | | | | Basic navigator object outline ready to add methods to. The navigator object contains all the information about the browser Signed-Off-By: Vincent Sanders <vince@netsurf-browser.org>
* | Remove visible and invalid uses of git revision hashes. Anybody who needs ↵Chris Young2012-07-013-10/+9
|/ | | | to know hich revision it is can check about:testament, to everybody else the string is meaningless.
* Remove file-by-file gzipping of GTK UI files, always copy all of them.Rob Kendrick (monotony)2012-07-011-13/+1
| | | | | | | | Everybody always forgets to update this anyway, so just copy them all. This also means we're no longer gzipping them, so they're quite fat on disk (515kB or so). Also also, we're copying both GTK2 and GTK3 UI files when only one set will ever be used, but I can't think of a nice way of the Makefile deciding which set to copy at the moment.
* Docs: Tidy LIBRARIES to reflect git transitionDaniel Silverstone2012-07-011-14/+14
|
* Add compatability code to allow compilation with earlier Spidermonky versionsVincent Sanders2012-06-303-85/+162
| | | | | | | | | By using carefuly built macros we can make the spidermonkey binding work on earlier editions of spidermonkey. Some ideas taken from Chris Young and Ole Signed-off-by: Vincent Sanders <vince@netsurf-browser.org>
* Add support for selecting text fragments (based on a patch from Ole Loots)John Mark Bell2012-06-301-0/+58
| | | | svn path=/trunk/netsurf/; revision=14016
* Add lines to enable building against Spidermonkey 1.5 or 1.8.5Chris Young2012-06-301-0/+6
| | | | svn path=/trunk/netsurf/; revision=14015
* Move js_finalise(). Fix provided by Ole Loots (mono)Daniel Silverstone2012-06-291-2/+3
| | | | svn path=/trunk/netsurf/; revision=14014
* Added new iconset - thanks to atfactOle Loots2012-06-282-0/+0
| | | | svn path=/trunk/netsurf/; revision=13994
* fix mimetype handling of script elementsVincent Sanders2012-06-285-19/+74
| | | | svn path=/trunk/netsurf/; revision=13993
* fix missing defaultVincent Sanders2012-06-282-2/+4
| | | | svn path=/trunk/netsurf/; revision=13992
* correctly terminate properties listVincent Sanders2012-06-272-10/+54
| | | | | | add helper to convert strings svn path=/trunk/netsurf/; revision=13991
* make non js builds compileVincent Sanders2012-06-278-12/+20
| | | | | | | make js support compile with older debian/ubuntu packaging svn path=/trunk/netsurf/; revision=13990
* add window and self propertiesVincent Sanders2012-06-271-4/+165
| | | | svn path=/trunk/netsurf/; revision=13989