summaryrefslogtreecommitdiff
path: root/amiga/misc.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-506/+0
|
* Update to new warn_user APIChris Young2016-05-011-1/+1
|
* use the miscellaneous table warning entryVincent Sanders2016-04-251-1/+4
| | | | | | | change all the frontends to provide the warning callback in the miscelaneous table instead of using the warn_user function. Changing all the warn_user callsites still requires completion.
* Split utils header into string functions and everything elseVincent Sanders2016-04-211-0/+1
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* Cleanup amiga include issues introduced as part of core updatesVincent Sanders2016-04-201-0/+2
|
* fix missing includes caused by content_protected header cleanupVincent Sanders2016-04-191-0/+1
|
* Implement warn_multi for OS3 (needed for the multiple tab close warning)Chris Young2016-01-311-4/+14
|
* Show warnings on OS3 with an EasyRequestChris Young2016-01-261-1/+13
|
* Don't free the deferred rects using FreeVec on exit as they're itempoolsChris Young2016-01-231-2/+2
|
* Allocate generic list objects using itempoolsChris Young2016-01-221-2/+2
| | | | TODO: Allocate the attached structures also using itempools
* Don't clear memory twice under OS3Chris Young2016-01-211-4/+2
|
* Allocate deferred rectangles using itempoolsChris Young2016-01-211-0/+41
| | | | On OS3 we use a normal memory pool instead
* Change LOG() macro to be varadicVincent Sanders2015-05-281-1/+1
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Always use a friend bitmap on OS3Chris Young2015-02-021-1/+1
|
* More OS3 fixesChris Young2015-01-181-3/+8
|
* Use a function to create ready-cleared memoryChris Young2015-01-101-0/+13
|
* Encourage requesters onto the correct screen and remove some unneeded includesChris Young2014-12-131-12/+1
|
* Remove unused includesChris Young2014-11-101-3/+0
|
* Use TimedDosRequester so we're not relying on requester.class being open.Chris Young2014-11-101-16/+8
|
* New function for an error requester with the correct imagery which doesn't ↵Chris Young2014-11-101-10/+22
| | | | attempt to do Messages lookup.
* Remove die()Chris Young2014-11-101-13/+0
| | | | Terminating execution abruptly on AmigaOS is dangerous.
* Fix warningsChris Young2014-11-101-6/+7
|
* Don't need old URL header.Michael Drake2014-10-311-1/+0
|
* Update amiga frontend for split operation table header changesVincent Sanders2014-10-161-3/+7
|
* Correct Lock() parameterChris Young2014-09-291-1/+1
|
* documentation fixes and cleanupsVincent Sanders2014-07-021-3/+3
|
* extend file table with mkdir all and make fs backing store use it.Vincent Sanders2014-06-051-0/+66
| | | | enable fs backing store for RISC OS.
* fix errors with path_to_url conversionVincent Sanders2014-05-271-0/+1
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-25/+199
|
* refactor url utility functions to use standard nserror codes and have ↵Vincent Sanders2014-05-081-1/+1
| | | | appropriate documentation.
* Change the scope of some variables picked up by cppcheck, minor reformattingChris Young2014-04-051-2/+1
|
* Fix a bunch of cppcheck unused/unreadVariable warningsChris Young2014-04-051-1/+1
|
* move filename_from_path and path_add_part into gui operation tablesVincent Sanders2014-01-161-27/+0
|
* Revert "Think this needs converting back to local charset here otherwise ↵Chris Young2013-12-311-1/+1
| | | | | | non-ASCII file uploads don't work." This reverts commit 2aacb411fc07441679f6a73f13956792919dee65.
* Think this needs converting back to local charset here otherwise non-ASCII ↵Chris Young2013-12-311-1/+1
| | | | file uploads don't work.
* Remove old hotlist, cookies, and history_global_core modules.Michael Drake2013-09-021-1/+1
| | | | New versions of expand/collapse node functions for these modules aren't yet implemented.
* Fix up for cookies_old rename.Michael Drake2013-07-221-1/+1
|
* Warn when closing multiple tabsChris Young2012-12-081-1/+3
|
* Move download overwrite warning requester to misc.cChris Young2012-12-081-0/+21
|
* Use requester.class directly, so we can get requesters to appear on ↵Chris Young2012-07-281-8/+30
| | | | NetSurf's screen. Untested.
* Stop abusing certain Messages; add some dedicated non-crazy HelpHintsChris Young2012-05-071-16/+5
| | | | svn path=/trunk/netsurf/; revision=13912
* Replace strncpy with strlcpy, as strncpy is not guaranteed to beChris Young2012-04-181-1/+1
| | | | | | NULL-terminated. (thx Colin Wenzel) svn path=/trunk/netsurf/; revision=13881
* Squash some warnings, don't attempt to free data we don't ownJohn Mark Bell2010-12-301-6/+9
| | | | svn path=/trunk/netsurf/; revision=11154
* Add LOG() to warn_user().James Bursa2010-12-261-0/+2
| | | | svn path=/trunk/netsurf/; revision=11122
* Support ColourIconsChris Young2010-10-311-0/+1
| | | | svn path=/trunk/netsurf/; revision=10928
* Use core file fetcherChris Young2010-09-121-11/+2
| | | | svn path=/trunk/netsurf/; revision=10759
* More intelligent path concatenationChris Young2010-07-141-0/+3
| | | | svn path=/trunk/netsurf/; revision=10639
* 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-111-6/+38
| | | | | | | | | | | 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
* Fix inventory file leafname.Michael Drake2010-07-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=10624