summaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* clean up some of the doxygen generation warningsVincent Sanders2017-02-191-2/+2
|
* nsurl: Tidy up shared components code.Michael Drake2017-02-083-74/+44
|
* nsurl: Rationalise debug build option.Michael Drake2017-02-083-73/+42
|
* nsurl: Tidy up component helper macros.Michael Drake2017-02-083-12/+12
|
* nsurl: Consolidate conversion to string.Michael Drake2017-02-083-73/+76
|
* nsurl: Split out URL parsing.Michael Drake2017-02-084-1524/+1677
|
* nsurl: Split internal structure out into private header.Michael Drake2017-02-082-51/+77
|
* nusrl: Move into utils/nsurl directory.Michael Drake2017-02-083-1/+6
|
* Support fixed nsgenbind bindingsDaniel Silverstone2017-02-052-1/+35
|
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-213-23/+6
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-8/+0
|
* 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.
* move test script into utilsVincent Sanders2016-12-161-0/+35
|
* Remove nonsense commentsChris Young2016-12-111-3/+0
|
* Ensure memory used by Messages is freed on exitChris Young2016-12-112-0/+33
|
* IDNA: Update to upstream-compatible utf8proc API.Michael Drake2016-11-231-2/+2
|
* Remove internal BASE64 in favour of nsutils' oneDaniel Silverstone2016-11-193-488/+0
|
* windows frontend netsurf optionsVincent Sanders2016-10-192-0/+6
|
* Table cell nowrap attribute is presentational hint, not UA style.Michael Drake2016-10-132-0/+4
|
* allow gtk3 target in CI systemVincent Sanders2016-10-081-0/+33
|
* complete transition to locale independant core operationVincent Sanders2016-09-293-96/+0
| | | | | | | | | | | | The netsurf core no longer uses any locale dependant operations excepting the mall number or cases where such operations are explicitly wanted. the netsurf_init now calls setlocale with the empty string and lets the c library setup as per its specific implementation. any core functionality that specificaly processes ascii text must use the utils/ascii.h header to do so.
* Utils: Remove redundant genpubsuffix.pl (using libnspsl now).Michael Drake2016-09-261-378/+0
|
* remove junk references to old javascript implementationsVincent Sanders2016-09-191-30/+5
|
* cleanup seevral doxygen warningsVincent Sanders2016-09-131-0/+1
|
* Time: Micro-optimisation: Put GMT first in timezone list.Michael Drake2016-08-171-3/+5
|
* add some corestrings API tests and fix corestrings fini.Vincent Sanders2016-08-141-1/+3
|
* Time: Add date string to time_t parser.Michael Drake2016-08-131-3/+810
|
* url: Use ascii module, rather than ctype for locale safetly.Michael Drake2016-08-131-1/+3
|
* nsurl: Update to use ascii_* helper functions.Michael Drake2016-08-131-112/+15
|
* Utils: Add a set of ASCII string parsing helpers.Michael Drake2016-08-131-0/+358
| | | | These are not affected by the current locale.
* Time: Expose arrays of weekday and month names.Michael Drake2016-08-131-6/+72
|
* Treeview: Add `treeview_font_size` to options.Michael Drake2016-08-111-0/+8
| | | | Default is 11pt, and RISC OS overrides to 12pt.
* Add header that may be needed for Windows build. (CI fix attempt.)Michael Drake2016-08-081-0/+1
|
* Utils: Split time handling functions out of `utils.c` into `time.c`.Michael Drake2016-08-073-111/+154
|
* Indentation: spaces to tabs.Michael Drake2016-08-071-3/+3
|
* remove erroneous parameter check to nsoption_snoptionfVincent Sanders2016-08-061-1/+1
| | | | | | The API check and bounds check for option indexes was from an unsigned enum so checking for negative numbers was causing "comparison is always false" errors in compilation.
* improve option test coverage futherVincent Sanders2016-08-061-3/+11
|
* Improve user option testing and API parameter checkingVincent Sanders2016-08-051-9/+38
|
* add tests for utility string handlingVincent Sanders2016-08-041-2/+4
|
* Improve percent escaping testing, parameter checking and documentationVincent Sanders2016-08-031-4/+17
|
* URL escape: Improve API documentation.Michael Drake2016-07-251-4/+6
|
* URL escape: Simplify to avoid unnecessary allocation.Michael Drake2016-07-253-37/+33
| | | | | | | | This removes the toskip parameter, which was only used by the RISC OS front end. The toskip param was used to skip 8 characters which did not need to be escaped from the start of the URL. The RISC OS front end now orders the steps of its URL construction to avoid the need for this.
* Improve comments.Michael Drake2016-07-242-2/+3
|
* URL module: Remove unused curl #include.Michael Drake2016-07-241-1/+0
|
* URL unescape: Calculate new_len at end, rather than maintaining it.Michael Drake2016-07-241-4/+2
|
* URL unescape: return the new length to the caller.Michael Drake2016-07-243-5/+14
| | | | | | | | 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.
* Avoid using curl for URL unescaping.Michael Drake2016-07-241-10/+66
| | | | This moves us towards working without curl.
* URL unescape: Use size_t for length.Michael Drake2016-07-242-2/+2
|
* Doxygen: Fix instance of bad function comment syntax.Michael Drake2016-07-241-1/+1
|
* reduce curl usage to fetcher, url unescaping and time parsingVincent Sanders2016-06-293-5/+8
|