summaryrefslogtreecommitdiff
path: root/beos
Commit message (Collapse)AuthorAgeFilesLines
* Try using -pipe on beos/haiku as temporary file access may be slowVincent Sanders2014-11-241-1/+1
|
* make the form select menu API smaller.Vincent Sanders2014-11-131-4/+0
| | | | | | 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.
* Continue doxygen error cleanup.Vincent Sanders2014-11-083-18/+21
|
* fix errors in change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-022-3/+3
|
* fix errors introuced with previous header cleanup.Vincent Sanders2014-11-021-1/+4
|
* remove unecessary utils/types.hVincent Sanders2014-11-021-1/+0
| | | | | | 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 beos url setting function to return error codeVincent Sanders2014-10-291-8/+11
|
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-292-2/+4
|
* remove the die API from the core.Vincent Sanders2014-10-261-0/+9
| | | | | | | | The die() API for abnormal termination does not belong within the core of netsurf and instead errors are propogated back to the callers. This is the final part of this change and the API is now only used within some parts of the frontends
* BeOS front end doesn't need browser_private any more.Michael Drake2014-10-251-1/+1
|
* Use API to get window extents.Michael Drake2014-10-251-2/+7
|
* Use API to test for browser window having a content.Michael Drake2014-10-251-1/+1
|
* Don't need access to content here.Michael Drake2014-10-251-3/+1
|
* No need to log window target name.Michael Drake2014-10-251-1/+0
|
* Don't get content when its not needed.Michael Drake2014-10-251-3/+1
|
* Cache scale in gui_window.Michael Drake2014-10-251-16/+15
|
* Doesn't look like this file uses browser window internals.Michael Drake2014-10-251-1/+1
|
* Shouldn't need bw internals now.Michael Drake2014-10-251-1/+1
|
* Use API to access content for view source.Michael Drake2014-10-251-2/+2
|
* Move create_form_select_menu to window gui table.Michael Drake2014-10-242-1/+1
|
* Add missing simlinks.Michael Drake2014-10-222-0/+2
|
* Add trivial maps facilitator at about:mapsMichael Drake2014-10-221-1/+1
| | | | | | | | This is a simple HTML front end for the Google Static Maps API, since we don't yet have enough JS support for the full Google Maps. See: https://developers.google.com/maps/documentation/staticmaps/
* update beos frontend to cope with updated operation tableVincent Sanders2014-10-167-15/+20
|
* Remove unused global.Michael Drake2014-10-161-1/+0
|
* remove unecessary css includes from fronetendsVincent Sanders2014-10-132-2/+0
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-134-3/+2
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* Put the font operations table alongside all the other core APIVincent Sanders2014-10-135-5/+5
| | | | | | | | | | | | The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
* remove netsurf_poll callback and netsurf main loopVincent Sanders2014-10-131-1/+0
|
* remove use of deprecated netsurf_quit variable in beosFrançois Revol2014-10-134-7/+17
| | | | | | The core no longer needs to run the event polling loop as fetches are now scheduler driven. This is part of a series which will ultimately remove netsurf_poll callback altogether.
* extend beos C++ flagsVincent Sanders2014-09-051-1/+9
|
* Pull warning flags out into variables that can be overriden seperately for C ↵Vincent Sanders2014-09-051-21/+23
| | | | and C++
* fixup haiku rsrc fetcher initialisationVincent Sanders2014-09-051-1/+6
|
* Fix buildFrançois Revol2014-08-072-0/+2
| | | | | desktop/browser.h:456:76: error: use of enum 'content_debug' without previous declaration
* beos: Disable non-working menu entriesFrançois Revol2014-07-311-9/+11
| | | | So at lest people won't expect too much.
* beos: Fix buildFrançois Revol2014-07-261-0/+1
|
* Merge branch 'vince/reformatpending'Vincent Sanders2014-07-063-55/+30
|\ | | | | | | | | Conflicts: amiga/gui.c
| * change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-013-55/+30
| |
* | beos: Fix an oversight with number of fds for select()François Revol2014-07-021-1/+2
| | | | | | | | | | curl_multi_fdset() does not include the +1 required for select(), so we always need to add it.
* | beos: drop @todoFrançois Revol2014-07-021-1/+0
| | | | | | | | | | | | | | From the select(2) linux manpage: "nfds is the highest-numbered file descriptor in any of the three sets, plus 1." As sEventPipe[0] is definitely a descriptor, it must be 1 more here.
* | beos: handle realpath() returning NULLFrançois Revol2014-07-021-3/+9
| | | | | | | | Else we return with an uninitialized buffer...
* | beos: Avoid crashing if FindPath() returns an errorFrançois Revol2014-07-021-7/+7
|/ | | | | This can happen when running from the build directory, without the package already installed.
* Merge branch 'vince/fetchschedule'Vincent Sanders2014-07-012-32/+23
|\
| * convert all frontends to scheduled fetch operationVincent Sanders2014-06-261-23/+11
| |
| * clean up the fetcher factory and improve its APIVincent Sanders2014-06-191-9/+12
| |
* | beos: Use PathFinder to locate resource folder.Adrien Destugues2014-06-201-5/+12
| | | | | | | | | | | | So it can work wherever NetSurf is installed... Note this uses a Haiku-specific API and definitely breaks BeOS build.
* | beos: Fix Haiku libnetwork detection post-PackageManagementFrançois Revol2014-06-201-1/+1
| |
* | beos: Fix local variable shadowing a parameterFrançois Revol2014-06-201-5/+4
| |
* | beos: Adjust browser_table for removed callFrançois Revol2014-06-201-2/+1
| |
* | beos: Add missing includeFrançois Revol2014-06-201-0/+1
|/
* make launch_url core operation use nsurlVincent Sanders2014-05-271-4/+6
|