summaryrefslogtreecommitdiff
path: root/frontends/beos
Commit message (Collapse)AuthorAgeFilesLines
* fix beos throbber allocationVincent Sanders2017-09-111-1/+1
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+6
|
* Hopefully quash LOG compile errors in BeOSDaniel Silverstone2017-09-081-4/+3
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-073-9/+12
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-071-12/+16
|
* Use coccinelle to change logging macro calls in c++Vincent Sanders2017-09-068-48/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.cpp');do spatch --c++ --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* Fix bug 0002555: "No GC" alert when resizing the windowFrançois Revol2017-08-211-3/+0
| | | | | We don't need to touch the GC when invalidating anyway, so just drop those calls.
* fixup errors introduced in set_scroll API changeVincent Sanders2017-04-261-6/+10
|
* Update beos frontend for set_scroll API changeVincent Sanders2017-04-261-6/+19
|
* update beos frontend to remove reformat APIVincent Sanders2017-04-261-35/+25
|
* Update beos frontend to use invalidate window area APIVincent Sanders2017-04-231-26/+28
|
* fix memory leak in beos instantiate error pathVincent Sanders2017-03-051-1/+3
|
* clean up some of the doxygen generation warningsVincent Sanders2017-02-191-7/+7
|
* fix plotter mergeVincent Sanders2017-02-121-4/+4
|
* update beos to new plotter APIVincent Sanders2017-02-121-477/+649
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-131-1/+1
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* fixup usage of directory creation macro in MakefilesVincent Sanders2017-01-071-9/+9
|
* remove unecessary include of depricated tree interface from beosVincent Sanders2016-12-161-1/+0
|
* haiku: close parenthesis in version stringFrançois Revol2016-11-211-1/+1
| | | | they are unmatched due to the CI ifdefery
* haiku: use logging instead of fprintfFrançois Revol2016-11-211-1/+1
|
* haiku: Fix popup menuFrançois Revol2016-11-213-7/+42
| | | | Only the reload entry is enabled for now.
* haiku: Rework menu accelerator handlingFrançois Revol2016-11-211-15/+13
| | | | | Instead of splitting accel keys from the item string, we go the GTK way of using a separate Accel-suffixed string id.
* haiku: catch NetPositive messages also in the WindowFrançois Revol2016-11-211-0/+9
| | | | At least Pe sends them there for its Help menu.
* haiku: add a file extension when viewing sourceFrançois Revol2016-11-211-4/+19
| | | | Pe still requires it to detect the language, this makes it easier.
* haiku: try to open source in preferred app for source-code firstFrançois Revol2016-11-211-1/+3
| | | | | We still fall back to the hardcoded list, but we first check for the user's prefered code editor.
* fix unecessary base64 header includeVincent Sanders2016-11-191-1/+0
|
* URL unescape: return the new length to the caller.Michael Drake2016-07-241-1/+1
| | | | | | | | The avoids situations were we threw away the length, only for the caller to have to strlen the returned string. Note, there seems to be a case of the amiga front end writing beyond end of allocation. Added a TODO for now.
* move key press enums and operations to their own headerVincent Sanders2016-07-013-3/+3
|
* reduce curl usage to fetcher, url unescaping and time parsingVincent Sanders2016-06-291-6/+7
|
* Move fetcher_fdset to fetch.h (and rename to fetch_fdset). Maybe not ideal ↵Daniel Silverstone2016-06-271-2/+2
| | | | but better
* Add NULL for silly frontend which can't use a useful compilerDaniel Silverstone2016-06-271-0/+1
|
* move the public form APIVincent Sanders2016-06-141-3/+3
|
* msplit public url database API out for frontendsVincent Sanders2016-06-133-3/+6
|
* remove unecessary content header inclusion from beos frontendVincent Sanders2016-06-1110-76/+72
|
* beos frontend compile cannot do forward declrarations of enumsVincent Sanders2016-06-061-1/+1
|
* missed necessary header for haikuVincent Sanders2016-06-061-0/+1
|
* fixup beos build after content header changesVincent Sanders2016-06-062-7/+8
|
* haiku gcc does not support forward enum declarationsVincent Sanders2016-06-061-0/+1
|
* Update content to split public and internal APIVincent Sanders2016-06-061-2/+2
|
* move plotters header into public APIVincent Sanders2016-05-305-5/+5
|
* move desktop window header into public APIVincent Sanders2016-05-306-6/+6
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-302-2/+2
|
* move netsurf header into public APIVincent Sanders2016-05-302-2/+2
|
* move layout header into public APIVincent Sanders2016-05-301-1/+1
|
* move fetch header into public APIVincent Sanders2016-05-301-1/+1
|
* move misc header into public APIVincent Sanders2016-05-301-1/+1
|
* move download header into public APIVincent Sanders2016-05-301-1/+1
|
* move clipboard header into public APIVincent Sanders2016-05-305-5/+5
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move search header into public APIVincent Sanders2016-05-301-1/+1
|