summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Doxygen cleanupsVincent Sanders2014-11-098-28/+30
|
* remove declaration in parameter list warning in form.hVincent Sanders2014-11-091-0/+1
|
* Fix warningsChris Young2014-11-093-11/+5
|
* Fix warningsChris Young2014-11-091-12/+8
|
* Fix warningsChris Young2014-11-091-9/+7
|
* Fix warningsChris Young2014-11-091-7/+7
|
* Fix warningsChris Young2014-11-092-69/+64
|
* Fix warnings, remove unused code.Chris Young2014-11-093-28/+14
|
* Fix warningChris Young2014-11-091-1/+0
|
* Fix warningsChris Young2014-11-091-9/+7
|
* Don't bug the user if a non-essential library can't be opened - just log it.Chris Young2014-11-091-2/+8
| | | | Also log if the interface can't be obtained. If we've asked for the right library version, this should never fail.
* Merge branch 'chris/remove-libauto'Chris Young2014-11-096-24/+206
|\ | | | | | | Remove dependency on libauto as using it is no longer recommended.
| * Terminate execution if an essential library fails to openChris Young2014-11-093-55/+61
| |
| * Log library open attemptsChris Young2014-11-091-0/+2
| |
| * Open libraries *before* we need them...Chris Young2014-11-091-2/+3
| |
| * All required libsChris Young2014-11-091-2/+96
| |
| * Fix graphics.libraryChris Young2014-11-091-0/+2
| |
| * More libraries, tidy-upChris Young2014-11-093-17/+34
| |
| * Use macros for clarityChris Young2014-11-092-13/+17
| |
| * Fix headersChris Young2014-11-093-5/+8
| |
| * Add new libs file to centrally open/close required libraries, and move a ↵Chris Young2014-11-094-22/+75
| | | | | | | | couple of the existing manual opens to it.
| * remove -lautoChris Young2014-11-091-2/+2
|/
* Continue doxygen error cleanup.Vincent Sanders2014-11-0813-129/+244
|
* fix up more doxygen errorsVincent Sanders2014-11-0811-75/+149
|
* Improve Doxygen documentationVincent Sanders2014-11-0813-37/+50
|
* Fix several doxygen issuesVincent Sanders2014-11-0817-55/+59
|
* remove uneeded html render includeVincent Sanders2014-11-071-1/+0
|
* Improve content encoding information APIVincent Sanders2014-11-078-33/+28
| | | | | Extend the content_get_encoding() API to retrieve the source of the encoding as well as the actual encoding.
* add missing content header to windows guiVincent Sanders2014-11-061-0/+1
|
* Allow content handlers to have debug values set through APIVincent Sanders2014-11-0611-16/+80
| | | | | | | | Previously content handler debugging features were accessed by global variables. This allows the setting of debugging parameters via a content API giving per content control over debugging features. Currently only used by the html content handler to toggle global redraw debugging.
* move themse install to its own headerVincent Sanders2014-11-065-14/+42
|
* Add gource visualisation generation scriptVincent Sanders2014-11-061-0/+72
| | | | | | This script can be used to generate gource visualisation mpeg files. The visualisation looks pretty and goes down well at trade shows as a background on the video projector.
* Make the fetching of a contents encoding generic.Vincent Sanders2014-11-059-16/+40
| | | | | | | The frontends previously had to use an html renderer API to get the encoding of a content. This also required the explicit checking of the contents type rather than using the existing content API to abstract this knowledge.
* Remove April 1st layout shuffling.Michael Drake2014-11-051-21/+4
|
* fix dumb mistake in missing a close bracket.Vincent Sanders2014-11-041-1/+1
|
* ensure gtk thumbnail content has a minimum render width. (fix coverity 1109861)Vincent Sanders2014-11-041-3/+4
|
* check stat return value (fixes coverity 1109842)Vincent Sanders2014-11-041-2/+2
|
* change logic to check for false instead of not true to fix coverity 1250328Vincent Sanders2014-11-042-5/+5
|
* Don't crash if download dir not setChris Young2014-11-041-1/+2
|
* Fix stupid nsurl struct mistake for amiga.Vincent Sanders2014-11-031-1/+2
|
* reference nsurl as a struct properlyVincent Sanders2014-11-031-1/+1
|
* replace save_link operation table entry usage of textural url with nsurlVincent Sanders2014-11-038-21/+21
|
* fix risc os nsurl structure declarationVincent Sanders2014-11-021-1/+2
|
* fix errors in change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-024-3/+6
|
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-0214-32/+37
|
* fix errors introuced with previous header cleanup.Vincent Sanders2014-11-026-7/+18
|
* remove unecessary utils/types.hVincent Sanders2014-11-0235-112/+85
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* fix typo in cocoa frontend context cleanupVincent Sanders2014-11-021-1/+1
|
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-0214-194/+190
| | | | | | | | | | | | | Update the API which allows frontends to acquire the page features (images, link urls or form elements) present at the given coordinates within a browser window. By making this an explicit browser_window API and using the browser.h header for the associated data structure with a more appropriate API naming the usage is much more obvious and contained. Additionally the link url is now passed around as a nsurl stopping it being converted from nsurl to text and back again several times.
* Do not attempt to convert an empty url on RISC OS menu clickVincent Sanders2014-11-011-2/+4
| | | | | | | | | | When updating the RISC OS frontend to using nsurl for its menu operations (as part of getting rid of url_nice) the check for null (empty) url strings in the url under the mouse was omitted leading to a crash. Additionaly a use of url where current_menu_url was intended was missed leading to crashes when "open in new window" was used.