summaryrefslogtreecommitdiff
path: root/riscos/ucstables.c
Commit message (Collapse)AuthorAgeFilesLines
* Squash warnings in RISC OS build.John Mark Bell2010-04-241-2/+4
| | | | | | Replace use of strnlen with strlen and max. svn path=/trunk/netsurf/; revision=10479
* remove _GNU_SOURCE define from everywhere.Vincent Sanders2010-04-241-1/+0
| | | | | | strndup is not standard so provide an implementation. svn path=/trunk/netsurf/; revision=10474
* Add missing break statementJohn Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7640
* Fix for text export of certain pages, by jmb.Michael Drake2008-12-031-17/+17
| | | | svn path=/trunk/netsurf/; revision=5872
* - Compiler warning squashJohn Tytgat2008-07-261-18/+16
| | | | | | | - Changed a lineending \n\r -> \n for a couple of files. - More code style conformance. svn path=/trunk/netsurf/; revision=4762
* Update all source code file headers to reflect GPL version 2 only and ↵Vincent Sanders2007-08-081-3/+14
| | | | | | contain appropriate licence text svn path=/trunk/netsurf/; revision=3486
* Remove the netsurf/ from the include paths and rationalise use of <> vs "" ↵Daniel Silverstone2007-05-301-4/+4
| | | | | | | | | | | | | | in includes NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307
* Fix stupidityJohn Mark Bell2007-02-111-0/+2
| | | | svn path=/trunk/netsurf/; revision=3178
* Rewrite utf8_[to,from]_local_encoding to not have arbitrary limit in the John Mark Bell2007-02-111-111/+96
| | | | | | | | | | number of special characters permitted in the input. (fixes 1651343, 1649247, 1644745, 1607934) Should also be rather more efficient, too, as it now conducts only a single pass over the input data. svn path=/trunk/netsurf/; revision=3177
* Update project URL.Michael Drake2006-11-271-2/+2
| | | | svn path=/trunk/netsurf/; revision=3073
* [project @ 2006-02-15 23:09:53 by adrianl]Adrian Lees2006-02-151-1/+2
| | | | | | Extend text selection, copying, saving and searching code to handle textplain contents; modified textplain code to accept other line terminators svn path=/import/netsurf/; revision=2081
* [project @ 2006-01-26 02:24:29 by adrianl]Adrian Lees2006-01-261-28/+36
| | | | | | Correct handling of special chars at string start and adjacent special chars svn path=/import/netsurf/; revision=2045
* [project @ 2006-01-22 17:25:30 by jmb]John Mark Bell2006-01-221-7/+25
| | | | | | | Convert local files to UTF-8 when dragged in (assumes they're encoded in the system local encoding). Fix potential buffer overflow in utf8_from_local_encoding svn path=/import/netsurf/; revision=2025
* [project @ 2005-09-23 03:48:40 by jmb]John Mark Bell2005-09-231-4/+34
| | | | | | Add Latin10 table (RISC OS alphabet number 116) svn path=/import/netsurf/; revision=1866
* [project @ 2005-08-20 23:04:35 by bursa]James Bursa2005-08-201-0/+2
| | | | | | Fix strndup() warnings. svn path=/import/netsurf/; revision=1850
* [project @ 2005-07-16 14:35:20 by jmb]John Mark Bell2005-07-161-12/+269
| | | | | | | | | | | | | | | | | | - Convert Messages files to UTF-8 encoding. - Replace local_encoding_name() with platform specific utf8_[to,from]_local_encoding() functions - this allows mapping of 8bit characters 0x80->0x9f (inclusive). - All text that is rendered by the RISC OS Wimp is now converted to the system local encoding prior to display. - Lose the horrendous hack that was messages_get_key() - Menu text is now translated to system local encoding on the fly (if necessary) rather than at menu creation time. This allows the system alphabet to change under us and our menus remain usable. - The Languages menu now lists all languages that are present in the LangNames file. In the case of selecting the UI language, those languages which are not available are shaded. svn path=/import/netsurf/; revision=1796
* [project @ 2005-04-16 05:09:32 by jmb]John Mark Bell2005-04-161-0/+41
| | | | | | | | | | | | Split out UTF-8 handling functions. Submit URL-encoded forms in sensible encoding: * First entry in accept-charset list, if present * Document encoding, otherwise We may want to explicitly look for UTF-8, to save converting. Convert cnv_str_local_enc/cnv_local_enc_str to use iconv (they're now veneers for utf8_[to/from]_enc). Provide mechanism for looking up local system charset (derived from system alphabet, under RISC OS) svn path=/import/netsurf/; revision=1647
* [project @ 2005-04-15 18:00:19 by jmb]John Mark Bell2005-04-151-0/+333
Split out generic text input code. Support internationalised text input. Fix textarea-related bugs. svn path=/import/netsurf/; revision=1642