aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/utf
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10847] fixing all misspelled "dependant" to "dependent"Senky2012-04-301-1/+1
| | | | PHPBB3-10847
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-312-4/+2
| | | | PHPBB3-9916
* [ticket/9669] Replace spaces with tabsIgor Wiedler2011-03-071-1/+1
| | | | PHPBB3-9669
* [ticket/9669] Switch if/else to make the if positiveIgor Wiedler2011-03-061-33/+33
| | | | PHPBB3-9669
* [ticket/9669] Make sure normalize_nfc returns stringIgor Wiedler2011-03-051-3/+3
| | | | | | Normalizer::normalize can return null, cast to a string. PHPBB3-9669
* [ticket/9669] Add isNormalized checks for performanceIgor Wiedler2011-03-051-2/+14
| | | | | | | | | | | | Since isNormalized is less expensive than normalize[1] and normalization will be applied repeatedly in most cases[2], it's more efficient to check for isNormalized. [1] http://area51.phpbb.com/phpBB/viewtopic.php?f=81&t=32718&p=208005#p208005 [2] phpBB 3.0 has a call to utf8_normalize_nfc wrapped around any multibyte request_var call. PHPBB3-9669
* [ticket/9669] Add native Normalizer supportIgor Wiedler2011-03-051-30/+75
| | | | | | | PHP 5.3 includes the previous pecl extension "intl" which has a native UTF-8 normalizer. PHPBB3-9669
* [ticket/9574] Remove conditional PHP<5.2 codeIgor Wiedler2010-12-281-58/+14
| | | | | | | There is a large amount of conditional code for PHP < 5.2 that can be removed with phpBB 3.1. PHPBB3-9574
* [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-1135-39/+31
| | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* Make a few functions truly static to fix the tests.Nils Adermann2010-03-061-7/+7
|
* Copy 3.0.x branch to trunkMeik Sievertsen2009-10-0435-0/+50272
| | | | git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
* Move trunk/phpBB to old_trunk/phpBB Meik Sievertsen2009-10-0433-3060/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@10210 89ea8834-ac86-4346-8a33-228a782c2dd0
* - updated all code to use the request class instead of any direct access toNils Adermann2008-11-241-0/+2
| | | | | | | | | super globals - disabled super globals in common.php. See commit r9101 for more information - cleaned up/simplified a few lines along the way. git-svn-id: file:///svn/phpbb/trunk@9102 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok... i hope i haven't messed too much with the code and everything is still ↵Meik Sievertsen2008-05-292-35/+18
| | | | | | | | | | working. Changes: - Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed. - A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid('memberlist')) - in this case the root path and extension get added automatically. The hook is called after these are added. git-svn-id: file:///svn/phpbb/trunk@8572 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing access to const members in the normalizer and the normalizer testNils Adermann2008-05-051-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@8550 89ea8834-ac86-4346-8a33-228a782c2dd0
* some missing merges...Meik Sievertsen2008-05-041-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8545 89ea8834-ac86-4346-8a33-228a782c2dd0
* - make viewforum work againDavid M2008-01-081-175/+0
| | | | | | | | | - remove the lower case functions, they were stupid anyway - added some indexes - added a group_name_clean column git-svn-id: file:///svn/phpbb/trunk@8315 89ea8834-ac86-4346-8a33-228a782c2dd0
* good bye old friendDavid M2008-01-032-46722/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@8297 89ea8834-ac86-4346-8a33-228a782c2dd0
* oh boy...David M2008-01-032-324/+99
| | | | | | | - Migrate code base to PHP 5.1+ git-svn-id: file:///svn/phpbb/trunk@8295 89ea8834-ac86-4346-8a33-228a782c2dd0
* Cleaned usernames contain only single spaces, so 'a_name' and 'a__name' are ↵Nils Adermann2007-12-041-0/+3
| | | | | | treated as the same name [Bug #15634] git-svn-id: file:///svn/phpbb/trunk@8261 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Allow charset names containing underscores or spacesNils Adermann2007-10-211-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8214 89ea8834-ac86-4346-8a33-228a782c2dd0
* dumdidum... sorry. ;)Meik Sievertsen2007-10-052-10/+17
| | | | git-svn-id: file:///svn/phpbb/trunk@8147 89ea8834-ac86-4346-8a33-228a782c2dd0
* - added information about Unicode to coding guidelinesNils Adermann2007-08-161-2/+2
| | | | | | | - two little changes git-svn-id: file:///svn/phpbb/trunk@8035 89ea8834-ac86-4346-8a33-228a782c2dd0
* - two new packages... diff and utfMeik Sievertsen2007-08-162-24/+33
| | | | | | | | - only 60 chars for topic title if new post (please see changelog for explanation) - change utf8_wordwrap (had some bugs david and nils spotted - was not really functional, sorry for this. :D) git-svn-id: file:///svn/phpbb/trunk@8034 89ea8834-ac86-4346-8a33-228a782c2dd0
* some bugs fixedMeik Sievertsen2007-08-151-4/+45
| | | | git-svn-id: file:///svn/phpbb/trunk@8033 89ea8834-ac86-4346-8a33-228a782c2dd0
* lest we forgetDavid M2007-08-141-0/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@8031 89ea8834-ac86-4346-8a33-228a782c2dd0
* another thing was never included, now it isDavid M2007-08-051-0/+7
| | | | git-svn-id: file:///svn/phpbb/trunk@8006 89ea8834-ac86-4346-8a33-228a782c2dd0
* OH NO, WHAT HAS HE DONE?!David M2007-08-031-2/+8
| | | | | | | - bug in the normalizer, we must renormalize... again... git-svn-id: file:///svn/phpbb/trunk@8001 89ea8834-ac86-4346-8a33-228a782c2dd0
* - a better way of checking PCRE property supportDavid M2007-07-231-4/+4
| | | | | | | - fixed the naming of a variable or two git-svn-id: file:///svn/phpbb/trunk@7925 89ea8834-ac86-4346-8a33-228a782c2dd0
* try to normalize everything...Meik Sievertsen2007-07-221-1/+11
| | | | git-svn-id: file:///svn/phpbb/trunk@7920 89ea8834-ac86-4346-8a33-228a782c2dd0
* let's remove 350+ impossible entriesDavid M2007-07-191-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7908 89ea8834-ac86-4346-8a33-228a782c2dd0
* - replace all of the mapings that transform some sort of letter l to number ↵David M2007-07-191-1/+1
| | | | | | one instead to some sort of letter l to latin small letter l git-svn-id: file:///svn/phpbb/trunk@7906 89ea8834-ac86-4346-8a33-228a782c2dd0
* make sure the class exists before we try to normalize with itDavid M2007-07-161-0/+6
| | | | git-svn-id: file:///svn/phpbb/trunk@7892 89ea8834-ac86-4346-8a33-228a782c2dd0
* remove code duplicationDavid M2007-07-151-55/+10
| | | | git-svn-id: file:///svn/phpbb/trunk@7891 89ea8834-ac86-4346-8a33-228a782c2dd0
* - search result extract shouldn't end in the middle of a multibyte character ↵Nils Adermann2007-07-152-141/+10
| | | | | | | | | | | | | [Bug #11863] - missing localisation for an imageset shouldn't create lots of "imageset refreshed" log messages [Bug #12027] - explain that themes which need parsing cannot be stored on the filesystem [Bug #11134] - normalize usernames (we really need to make sure we normalize everything) - improved utf8_clean_string, more complete list of homographs and NFKC normalization, also the resulting string is now trimmed - corrected searching subforums explanation [Bug #12209] git-svn-id: file:///svn/phpbb/trunk@7890 89ea8834-ac86-4346-8a33-228a782c2dd0
* two new functions that will eventually replace one, this will give us a ↵David M2007-07-151-3/+731
| | | | | | better case fold solution git-svn-id: file:///svn/phpbb/trunk@7886 89ea8834-ac86-4346-8a33-228a782c2dd0
* Small fix, thanks Black_HoleHenry Sudhof2007-06-151-1/+1
| | | | | | | #12427 git-svn-id: file:///svn/phpbb/trunk@7757 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, mess around with the templates + fixing some bugs + adjusting headers ↵Meik Sievertsen2007-06-091-3/+3
| | | | | | for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!) git-svn-id: file:///svn/phpbb/trunk@7736 89ea8834-ac86-4346-8a33-228a782c2dd0
* maybe the reason why some boards had problems with special characters on ↵Meik Sievertsen2007-06-081-3/+3
| | | | | | conversions? :/ git-svn-id: file:///svn/phpbb/trunk@7724 89ea8834-ac86-4346-8a33-228a782c2dd0
* #12227David M2007-06-061-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7720 89ea8834-ac86-4346-8a33-228a782c2dd0
* #12039David M2007-06-012-0/+40
| | | | git-svn-id: file:///svn/phpbb/trunk@7703 89ea8834-ac86-4346-8a33-228a782c2dd0
* #11769David M2007-05-271-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7691 89ea8834-ac86-4346-8a33-228a782c2dd0
* - forgot to add characters to cheat list, and also missed 00C5 when manually ↵Nils Adermann2007-05-261-1/+1
| | | | | | editing git-svn-id: file:///svn/phpbb/trunk@7686 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Send stylesheet in style.php even without a valid session id [Bug #11531]Nils Adermann2007-05-261-1/+1
| | | | | | | | - request_var should strictly return the requested number of dimensions - corrected a character mapping in the search indexing character list, people might want to reindex after this change if they use fulltext_native git-svn-id: file:///svn/phpbb/trunk@7685 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Handle ISO-8859-8-iDavid M2007-05-231-0/+6
| | | | | | | - Renamed two indicies for Oracle support #11457 git-svn-id: file:///svn/phpbb/trunk@7669 89ea8834-ac86-4346-8a33-228a782c2dd0
* added class for disabled options in ACPMeik Sievertsen2007-05-041-2/+2
| | | | | | | | | | | | | | E_USER_ERROR now using language keys if available [related to #10445] UCP/MCP title tags [#10441] Check $start parameter in viewforum [#10435] Check for postable forum for moving user posts within users ACP [#10433] Show error if admin tries to put forums beneath linked forums [related to #10433] Correctly catch attachments while moving posts [#10431] language change in install.html [#10425] Updated AUTHORS file git-svn-id: file:///svn/phpbb/trunk@7456 89ea8834-ac86-4346-8a33-228a782c2dd0
* - PostgreSQL can now use schemas. During install, under database name, enter ↵David M2007-04-011-1/+1
| | | | | | | | | databasename.schema - phpversion() to PHP_VERSION git-svn-id: file:///svn/phpbb/trunk@7255 89ea8834-ac86-4346-8a33-228a782c2dd0
* *** empty log message ***David M2007-03-291-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@7239 89ea8834-ac86-4346-8a33-228a782c2dd0
* #5330David M2007-03-271-1/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@7235 89ea8834-ac86-4346-8a33-228a782c2dd0
* - PHP4's mbstring is stupid stupid stupidDavid M2007-02-181-4/+20
| | | | git-svn-id: file:///svn/phpbb/trunk@7008 89ea8834-ac86-4346-8a33-228a782c2dd0