summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Minor mailto: improvements and infoChris Young2008-12-143-73/+21
| | | | svn path=/trunk/netsurf/; revision=5911
* First attempt at mailto: fetcher using openurl.library.Chris Young2008-12-132-0/+345
| | | | | | | | Doesn't quite work properly because it never calls the callback :) Probably also gets into an infinite loop if "send mailto: URLs to email application" is not ticked in OpenURL Prefs. svn path=/trunk/netsurf/; revision=5910
* Save objectChris Young2008-12-132-10/+36
| | | | svn path=/trunk/netsurf/; revision=5909
* Clear display area when switching tabsChris Young2008-12-131-44/+87
| | | | | | | | Remove always_open_tabs Move pointer filenames to theme files svn path=/trunk/netsurf/; revision=5908
* More changes for search function.Chris Young2008-12-134-17/+89
| | | | | | | Open local file requester now has a hook which filters out files with MIME types that NetSurf does not recognise. svn path=/trunk/netsurf/; revision=5907
* Remove Amiga-specific force_tabsChris Young2008-12-132-13/+4
| | | | svn path=/trunk/netsurf/; revision=5906
* Minor improvements to output.Chris Young2008-12-132-28/+21
| | | | svn path=/trunk/netsurf/; revision=5905
* Copy theme's NetSurf.info if it exists and this is a new install.Chris Young2008-12-131-0/+12
| | | | svn path=/trunk/netsurf/; revision=5904
* Add pointer image filenames to theme filesChris Young2008-12-132-0/+80
| | | | svn path=/trunk/netsurf/; revision=5903
* First attempt at Amiga text search function based on RISC OS code.Chris Young2008-12-138-1/+847
| | | | | | | | | Needs some improvements: - add case sensitive, show all options - add search history - use AmigaOS pattern matching svn path=/trunk/netsurf/; revision=5902
* Fix bitmap tile plotter so tiled bitmaps continue out of the inital visible ↵Chris Young2008-12-102-2/+5
| | | | | | area. svn path=/trunk/netsurf/; revision=5899
* Fixed display of plain text files beyond the initial visible area.Chris Young2008-12-101-1/+2
| | | | svn path=/trunk/netsurf/; revision=5898
* Fix deps somewhat. This actually does the right thingJohn Mark Bell2008-12-091-4/+4
| | | | svn path=/trunk/netsurf/; revision=5890
* Build !Run at compile time. This ensures that the WimpSlot size is always ↵John Mark Bell2008-12-093-3/+21
| | | | | | correct. svn path=/trunk/netsurf/; revision=5889
* When a visitor window was present on NetSurf's public screen and NetSurf was ↵Chris Young2008-12-071-9/+31
| | | | | | | | | | | | | | | | | quit, the screen would fail to close. Re-launching NetSurf would then fail to open a public screen as a public screen with the same name was already open. The window would end up on the Workbench screen and then crash as the pointer to the screen being used was NULL. This fixes the problem by closing the ARexx port early (this stops any new sessions from thinking NetSurf is still running) and looping until Intuition closes the screen. Running NetSurf will check for a public screen of name NetSurf if opening a new screen fails and use this if present. It will also fall back to using the Workbench screen if both opening a new screen and locking an existing NetSurf screen fails. svn path=/trunk/netsurf/; revision=5886
* Make NetSurf's screen a public screen with the name "NetSurf".Chris Young2008-12-061-0/+11
| | | | svn path=/trunk/netsurf/; revision=5885
* Clarification on always_open_tabs and button_2_tab options and their ↵Chris Young2008-12-061-1/+10
| | | | | | interaction. svn path=/trunk/netsurf/; revision=5884
* Fix for text export of certain pages, by jmb.Michael Drake2008-12-031-17/+17
| | | | svn path=/trunk/netsurf/; revision=5872
* C89François Revel2008-11-292-7/+13
| | | | svn path=/trunk/netsurf/; revision=5837
* Require Iconv 0.10John Mark Bell2008-11-291-2/+2
| | | | svn path=/trunk/netsurf/; revision=5835
* Move tab opening logic to same place as new window opening. Make option for ↵Michael Drake2008-11-294-73/+121
| | | | | | "Tabbed browsing", which is enabled by default. Someone who knows how to work glade could add the "Tabbed browsing" option to the choices dialogue. When a link is opened in a new tab, don't change tab. svn path=/trunk/netsurf/; revision=5816
* Rename library to avoid confusion.John Mark Bell2008-11-281-3/+8
| | | | | | Require make test to actually do anything. Will error out by default. svn path=/trunk/netsurf/; revision=5814
* Add _GNU_SOURCE. Ugh.John Mark Bell2008-11-281-0/+1
| | | | svn path=/trunk/netsurf/; revision=5813
* Extract test code from css.c into a separate source file.John Mark Bell2008-11-283-17/+220
| | | | | | | Modify test driver to take stylesheet filename on the command line. Makefile to build a library from the css parser sources and link the test driver against it. svn path=/trunk/netsurf/; revision=5812
* Fixed an issue with hotlist items outside the menu folder being added to the ↵Chris Young2008-11-251-5/+4
| | | | | | | | menu in some circumstances. svn path=/trunk/netsurf/; revision=5791
* Two new ARexx commands:Chris Young2008-11-243-1/+96
| | | | | | | | GETTITLE - returns the current website title VERSION VERSION/N REVISION/N RELEASE/S - returns the version of NetSurf or checks it is newer than a supplied version/revision svn path=/trunk/netsurf/; revision=5765
* Process error page correctly.John Mark Bell2008-11-201-3/+31
| | | | | | TODO: Why don't *_process_data take a const pointer to the data? svn path=/trunk/netsurf/; revision=5757
* Require Iconv 0.09John Mark Bell2008-11-201-3/+3
| | | | svn path=/trunk/netsurf/; revision=5755
* HTML files with an icon but no MIMETYPE tooltype were being picked up by theChris Young2008-11-162-2/+10
| | | | | | | | | | | | simplehtml datatype. As I'm using dth_BaseName rather than dth_Name, they were being tagged with the MIME type text/simplehtml. Have made an exception for this case to translate it to text/html, may in the future consider whether using dth_Name may be better. Minor adjustments to the local file requester to prevent .info files from being displayed. svn path=/trunk/netsurf/; revision=5711
* NetSurf will now check if it is already running (ie. if ARexx port NETSURF ↵Chris Young2008-11-164-38/+114
| | | | | | | | | | | | | | | exists), and quit and send an OPEN command to the one in memory if this is the case. Setting files as projects of NetSurf is now possible, as is multi-select launching from Workbench. Multi-selects are not passed through using ARexx yet, only the first file in the list will be opened if NetSurf is already running. Plain text files which have no MIMETYPE tooltype are now correctly identified as text/plain instead of text/ascii, allowing them to be opened locally. svn path=/trunk/netsurf/; revision=5698
* Sparse "About" requester - version number, compile date and URL only.Chris Young2008-11-152-7/+30
| | | | svn path=/trunk/netsurf/; revision=5697
* Allow opening of local files from anywhere, not just the parent of the ↵Chris Young2008-11-1513-69/+268
| | | | | | current dir. svn path=/trunk/netsurf/; revision=5695
* Clean up and make clearer what packages need to be obtained for other distros.Michael Drake2008-11-131-8/+18
| | | | svn path=/trunk/netsurf/; revision=5692
* Remove noisy logging of http headersJohn Mark Bell2008-11-091-2/+0
| | | | svn path=/trunk/netsurf/; revision=5672
* Don't care about chunk sizes.John Mark Bell2008-11-091-4/+0
| | | | svn path=/trunk/netsurf/; revision=5671
* Don't introduce an unnecessary error messageJohn Mark Bell2008-11-091-6/+9
| | | | svn path=/trunk/netsurf/; revision=5670
* Port to new hubbub parser APIJohn Mark Bell2008-11-094-70/+94
| | | | svn path=/trunk/netsurf/; revision=5669
* mime type overflow and tab switching fixes.Chris Young2008-11-092-4/+7
| | | | svn path=/trunk/netsurf/; revision=5660
* Added a note about local MIME types.Chris Young2008-11-081-0/+13
| | | | svn path=/trunk/netsurf/; revision=5655
* Installation scriptsChris Young2008-11-083-0/+149
| | | | | | | | Install is a standard Installer script AutoInstall is an AmigaDOS script for AmiUpdate which calls the above Install script in an unattended install mode. svn path=/trunk/netsurf/; revision=5654
* AmigaOS implementation of complete page save.Chris Young2008-11-0812-30/+932
| | | | svn path=/trunk/netsurf/; revision=5653
* Local file handling improvements (fetch_file is incomplete and not being ↵Chris Young2008-11-085-19/+285
| | | | | | | | | | | | | | used yet) filetype.c has been changed to get the MIME type of a file from the MIMETYPE tooltype of the icon or default icon for the file. The install script will set the basic of these, and icons for default.css and AdBlock.css have been added to ensure these always return the correct MIME type. If the MIMETYPE tooltype is not found, the code will use datatypes.library to identify the file and make a guess as to what the MIME type is. svn path=/trunk/netsurf/; revision=5651
* Minor fixes, changing some defaults to safer values, screen_modeid should ↵Chris Young2008-11-034-15/+17
| | | | | | | | | | now work. Added screen_depth to stop it complaining when trying to BestModeID() a 32-bit screen on a system that doesn't have one. svn path=/trunk/netsurf/; revision=5650
* Change memory allocations to MEMF_PRIVATE to enable paging on OS4.1.Chris Young2008-11-028-38/+44
| | | | svn path=/trunk/netsurf/; revision=5649
* ARexx menu with items populated from arexx_dir.Chris Young2008-10-2612-15/+258
| | | | svn path=/trunk/netsurf/; revision=5632
* Track the current/last used browser window (at the moment, just for ARexx).Chris Young2008-10-256-5/+328
| | | | | | | | | | | | | | | | | | | | | Extended ARexx port. First two are primarily for openurl.library: * OPEN now takes a parameter NEW=NEWWINDOW/S to open the URL in a new window (default is to open in the current browser window) * TOFRONT will bring NetSurf's screen to the front (this may be extended in the future to bring the current browser window to the front - which might be better for when it is running on the WB screen) Next is to make it easy to support getvideo.rexx: * GETURL returns the URL of the current browser window in RESULT GetVideo.nsrx script will get the current URL and pass it to rexx:getvideo.rexx Currently there is no way to call ARexx scripts directly from NetSurf, or any way to specify whether to save, play or saveplay the video without editing the script. [clipboard.c/clipboard.h were missing from previous commit] svn path=/trunk/netsurf/; revision=5631
* Complete (but quite minimal at the moment) context menu implementation for ↵Chris Young2008-10-2514-198/+187
| | | | | | | | | | | | | | | | | AmigaOS: Links, objects and upload file boxes have their own menu item or submenu. Context menus can be enable/disabled and be made "sticky" with the following options: context_menu sticky_context_menu Seperated clipboard related code out to clipboard.c to make it easier to maintain and add the ability to copy URLs to the clipboard. Copying images to the clipboard will come later. svn path=/trunk/netsurf/; revision=5629
* Initial context menus. Five possible options (copy link to clipboard, ↵Chris Young2008-10-214-4/+186
| | | | | | | | | | download link, show object, save object and select file for upload), only one implemented at the moment. Menu structure/strings need some thought and tidy-up (with object and URL options in their own sub-menus?) svn path=/trunk/netsurf/; revision=5612
* Updated Italian translationChris Young2008-10-201-1/+1
| | | | svn path=/trunk/netsurf/; revision=5608
* Prepare for context menusChris Young2008-10-202-3/+17
| | | | svn path=/trunk/netsurf/; revision=5607