summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* Show the IDN decoded form in the URL bar on GTK if the option is set.Chris Young2015-10-241-0/+3
|
* Implement basic browsing context name propertyVincent Sanders2015-10-182-2/+65
|
* Remove errorneous addition.Chris Young2015-09-051-1/+0
|
* Rough outline for Intuition-based context menuChris Young2015-09-031-0/+1
|
* Proper error handling for JS context creation.Michael Drake2015-08-131-5/+4
|
* Can't tell if failure to create a JS context is an error or not.Michael Drake2015-08-131-3/+2
| | | | It won't create one when built jsoff.
* Handle failure to create new context.Michael Drake2015-08-131-0/+3
|
* Remove TODO.Michael Drake2015-08-131-2/+1
|
* Fix crash when JS context is required from a frame.Michael Drake2015-08-131-5/+6
|
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-212-5/+2
| | | | | | | | | | The translated message loading is dependant on configuration of resource location in each frontend, additionally they should have the ability to deal with errors in this loading in a implementation specific manner. This also extends the message loading API to be capable of loading from an inline memory buffer instead of from a file.
* Move the browser identification and machine info logging.Vincent Sanders2015-06-211-9/+0
| | | | | | | | Previously this information was logged when netsurf_init was called which might be many lines out output into the log. It is useful to have this information at the beginning of the log to make it easily found. In addition it makes netsurf_init less complex.
* Allow the resource scheme to provide data directly.Vincent Sanders2015-06-172-2/+45
| | | | | | This allows front ends to provide resources from compiled in data instead of requiring the resources to be available on disc and forcing a redirect.
* Change LOG() macro to be varadicVincent Sanders2015-05-2820-168/+128
| | | | | | | | | | | | 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.
* make global history treeview directory creation return error instead of abortingVincent Sanders2015-05-031-2/+11
|
* Convert RISC OS to use bitmap render operationVincent Sanders2015-04-241-1/+1
|
* Remove unused thumbnail sources from core and gtkVincent Sanders2015-04-233-166/+1
|
* change browser history to use bitmap render interface for thumbnailsVincent Sanders2015-04-231-8/+14
|
* Add render to bitmap operations and update gtk to provide it.Vincent Sanders2015-04-221-0/+4
|
* Convert framebuffer frontend to bitmap operations table.Vincent Sanders2015-04-141-1/+1
|
* Move bitmap operations into an operation table.Vincent Sanders2015-04-135-38/+131
| | | | | | | The generic bitmap handlers provided by each frontend are called back from the core and therefore should be in an operation table. This was one of the very few remaining interfaces stopping the core code from being split into a library.
* split out gtk SSL certificate verification dialog impementation.Vincent Sanders2015-04-121-7/+4
|
* Add some debug round thumbnail creationVincent Sanders2015-03-272-2/+7
| | | | | More debugging of thumbnail creation as it appears to be involved in a number of recently reported crashes on RISC OS.
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-273-79/+79
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Remove url from content thumbnailers APIVincent Sanders2015-03-152-11/+17
| | | | | | | | | | | | | | | | The content thumbnailers for each frontend were being provided the contents url. This was only ever used to call the urldb thumbnail setting API. This changes it so the single callsite that passed a valid url adds the bitmap to that url itself in desktop_history.c instead of forcing every frontend to require the urldb API. Additionally the old API could pass the url as NULL which was causing asserts where this was not an expected parameter value. Because of this this fixes bug #2286 which was also present in the monkey frontend as both called nsurl_access() on the url without the NULL check and caused an assertion.
* update version info for next development cycleVincent Sanders2015-03-101-3/+3
|
* Ensure line lengths cache is created initialised to zero.Michael Drake2015-02-151-3/+2
|
* The AmigaOS rename() isn't POSIX compiant, so call remove() first.Michael Drake2015-02-031-0/+3
| | | | | There will be a race condition on AmigaOS if a hostlist file gets created between the remove() and rename() calls.
* Remove redundant remove() call.Michael Drake2015-01-231-11/+3
|
* Fix failure to save hotlist when there was no previous file.Michael Drake2015-01-231-3/+8
|
* Make URL field for copying to clipboard.Michael Drake2015-01-031-1/+1
|
* Mark URL field for copying to clipboard.Michael Drake2015-01-031-1/+2
|
* Add ability to copy text from marked fields in selected nodes to clipboard.Michael Drake2015-01-032-4/+104
|
* Fix typo in comment.Michael Drake2015-01-031-1/+1
|
* Handle failure to remove or rename.Michael Drake2015-01-021-2/+8
|
* Don't free temp_path just before its used.Michael Drake2015-01-021-1/+2
|
* RISC OS filenames can't contian '.'Michael Drake2015-01-021-1/+1
|
* Make saving hotlist safer.Michael Drake2015-01-021-2/+78
| | | | | | | | If saving hotlist to "<path>", we now save to "<path>.bk", then remove the file at "<path>", and replace it with the one at "<path>.bk". This should prevent hotlist corruption when someone pulls the plug while the hotlist is being written.
* add missing includesVincent Sanders2014-12-271-0/+1
|
* Improve llcache writeout stratagyVincent Sanders2014-11-281-8/+16
|
* Remove unecessary header include.Michael Drake2014-11-241-1/+0
|
* fix warningChris Young2014-11-221-0/+1
|
* Remove usage of browser private interfacesVincent Sanders2014-11-211-0/+4
| | | | | | | | The cocoa frontend was directly acessing browser internals instead of using the API. In the case of gui.m there was a check for the browser window not being root (browser->parent != NULL) . As gui windows can only ever be associated with the root brower window (i.e. its parent will always be NULL) this was completely redundant.
* update entry points to backing store ready for allowing differing object ↵Vincent Sanders2014-11-201-0/+3
| | | | lifetimes
* Fix my spelling of teh everywhereVincent Sanders2014-11-183-3/+3
|
* make the form select menu API smaller.Vincent Sanders2014-11-131-1/+1
| | | | | | By hiding all but the form selection menu option structure from code outside of render this reduces the API to the absolute minimum to support this feature.
* Fix warningChris Young2014-11-101-0/+1
|
* Doxygen cleanups and documentation additionsVincent Sanders2014-11-104-18/+22
|
* Doxygen cleanupsVincent Sanders2014-11-102-8/+11
|
* Avoid calling calloc with 0 length data.Vincent Sanders2014-11-102-16/+33
| | | | | | | CERT MEM04-C suggests that zero length allocations behaviour might be surprising so it should be avoided. This adds a check to ensure a zero length allocation will be avoided. Additionally it returns errors to the caller rather than warning directly (in some error paths)
* Desktop doxygen fixesVincent Sanders2014-11-0911-34/+40
|