summaryrefslogtreecommitdiff
path: root/amiga/arexx.c
Commit message (Collapse)AuthorAgeFilesLines
* Add ARexx commands HOTLIST OPEN and HOTLIST CLOSEChris Young2012-10-141-2/+17
|
* Include desktop/browser_private.h.Michael Drake2012-08-221-1/+1
|
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-5/+5
| | | | svn path=/trunk/netsurf/; revision=13548
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-041-2/+2
| | | | svn path=/trunk/netsurf/; revision=13236
* Fix up for nsurl changes. Untested.Michael Drake2011-10-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=12928
* Fix an issue with GETTITLE returning an incorrect string on occasionChris Young2011-07-031-8/+10
| | | | | | Fix warnings svn path=/trunk/netsurf/; revision=12566
* Avoid compiling arexx.c more than necessaryChris Young2011-06-051-6/+6
| | | | svn path=/trunk/netsurf/; revision=12465
* Make GUI update when back/forward commands used from ARexxChris Young2011-06-031-15/+3
| | | | svn path=/trunk/netsurf/; revision=12455
* Implement ask overwriteChris Young2011-03-261-3/+3
| | | | svn path=/trunk/netsurf/; revision=12135
* Set version using testament.h instead of old ARexx scriptChris Young2011-03-131-10/+11
| | | | svn path=/trunk/netsurf/; revision=12028
* First pass of AmigaOS 3 compatibilityJohn Mark Bell2010-12-301-0/+2
| | | | svn path=/trunk/netsurf/; revision=11155
* Alias W for WINDOW and T for TAB.Chris Young2010-08-281-11/+11
| | | | | | Add documentation on ARexx startup/shutdown scripts svn path=/trunk/netsurf/; revision=10720
* Add ARexx commands CLOSE (close window/tab) and ACTIVE (current window/tab ↵Chris Young2010-08-281-1/+90
| | | | | | | | | | number to pass to other ARexx commands) Add CloseTabs.nsrx script to close all tabs in the current window except the active one svn path=/trunk/netsurf/; revision=10718
* Ensure RC is 0 unless we actually have a fatal error.Chris Young2010-07-231-0/+24
| | | | svn path=/trunk/netsurf/; revision=10659
* Allow targetting any window/tab with ARexx commands. Adds new command ↵Chris Young2010-07-201-39/+168
| | | | | | | | | 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
* Add commands BACK, FORWARD, HOME and RELOAD to correspond with the buttons ↵Chris Young2010-07-111-1/+58
| | | | | | on the GUI. svn path=/trunk/netsurf/; revision=10628
* Changes required for new-cacheChris Young2010-03-281-4/+7
| | | | svn path=/trunk/netsurf/; revision=10186
* Added application.library messages New Doc and Open Doc.Chris Young2009-09-281-1/+11
| | | | | | | | | | | Added option_startup_no_window to allow NetSurf to be opened without an initial browser window (unless a URL is specified on the command line or by extended selection) Provision for option_close_no_quit for NetSurf to stay in memory when all browser windows are closed (not implemented yet) svn path=/trunk/netsurf/; revision=9600
* Add GETSCREENNAME commandChris Young2009-07-041-1/+19
| | | | svn path=/trunk/netsurf/; revision=8303
* Fix ARexx download queue - GummiSurf now works, and manual ARexx-initiated ↵Chris Young2009-04-141-0/+2
| | | | | | | | downloads will be processed in turn rather than simultaneously. svn path=/trunk/netsurf/; revision=7075
* Implement a download queue for ARexx-initiated downloads. Working manually, ↵Chris Young2009-03-281-2/+10
| | | | | | | | | | however GummiSurf is causing it to crash for some reason. Split download/save routines off into a new file. svn path=/trunk/netsurf/; revision=6966
* Fix crash in GETURLChris Young2009-03-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=6794
* - C strings have always an implicit NUL character at the end, no need to ↵John Tytgat2009-02-011-2/+2
| | | | | | | | specify an extra one. - riscos/configure/con_theme.c: removed spurious code line. svn path=/trunk/netsurf/; revision=6331
* Added context menu option to download the link target.Chris Young2009-01-311-3/+8
| | | | | | Added SAVEAS/K to OPEN ARexx command to download a URL instead of displaying it. svn path=/trunk/netsurf/; revision=6326
* Add SAVE command, which saves the source of the current page to the named file.Chris Young2009-01-101-2/+20
| | | | | | | | Template: SAVE FILENAME/A Will add additional options later. svn path=/trunk/netsurf/; revision=6027
* Two new ARexx commands:Chris Young2008-11-241-1/+91
| | | | | | | | 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
* NetSurf will now check if it is already running (ie. if ARexx port NETSURF ↵Chris Young2008-11-161-1/+15
| | | | | | | | | | | | | | | 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
* ARexx menu with items populated from arexx_dir.Chris Young2008-10-261-4/+17
| | | | svn path=/trunk/netsurf/; revision=5632
* Track the current/last used browser window (at the moment, just for ARexx).Chris Young2008-10-251-2/+29
| | | | | | | | | | | | | | | | | | | | | 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
* Full quit function and associated ARexx command (QUIT)Chris Young2008-10-061-0/+9
| | | | svn path=/trunk/netsurf/; revision=5498
* Minimal ARexx port.Chris Young2008-09-291-0/+65
Port name: NETSURF Commands supported: OPEN OPEN URL/A Opens URL specified by URL argument in new browser window. svn path=/trunk/netsurf/; revision=5462