summaryrefslogtreecommitdiff
path: root/inc
Commit message (Collapse)AuthorAge
* Merge branch 'sidebar'Andreas Gohr2012-07-01
|\ | | | | | | | | * sidebar: Improved sidebar inclusion
| * Improved sidebar inclusionAndreas Gohr2012-07-01
| | | | | | | | | | Template authors now can use tpl_sidebar() to include the sidebar. Sidebars can be defined in subnamespaces as well
* | added missing underscore to replaced char class charsAndreas Gohr2012-07-01
| |
* | do not use char class in Mailer header cleaningAndreas Gohr2012-07-01
|/ | | | \w could match multibyte chars depending on system setup
* make MD5 crypt without salts always use PHP implementationAndreas Gohr2012-07-01
| | | | | crypt seems to behave different on different systems when the salt is empty.
* iRussian language updateВячеслав Третьяков2012-06-30
|
* Merge pull request #93 from splitbrain/frontend_improvementsAnika Henke2012-06-30
|\ | | | | Frontend improvements
| * Merge branch 'master' of github.com:splitbrain/dokuwiki into ↵Anika Henke2012-06-29
| |\ | | | | | | | | | | | | | | | | | | frontend_improvements Conflicts: lib/tpl/dokuwiki/css/basic.css
| * | improved toc changes and sidebar togglingAnika Henke2012-04-22
| | |
| * | improved HTML for search resultsAnika Henke2012-04-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Attention: Template authors need to adjust their CSS! Original structure: div.search_result > a.wikilink1 > span.search_cnt br div.search_snippet New structure: dl.search_results > dt > a.wikilink1 dd
| * | rewrote and improved HTML for TOCAnika Henke2012-04-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Attention: Template authors need to adjust their CSS! Original structure: div.toc > div#toc__header.tocheader.toctoggle > span#toc__toggle.toc_close|toc_open > span div#toc__inside > ul.toc > li.level1 > div.li > span.li > a.toc New structure: div#dw__toc.open|close > h3 > strong > span ul.toc > li.toc > div.li > a
| * | load only one stylesheet for all modes instead of threeAnika Henke2012-04-09
| | | | | | | | | | | | | | | | | | | | | Instead of three stylesheets for 'all', 'screen' and 'print' modes, they are all loaded into a single stylesheet by wrapping all screen styles in a "@media screen {}" and all print styles in a "@media print {}". The 'all' mode is not wrapped in anything. Potential issues with existing CSS: If any of your screen or print CSS files already contain any "@media" syntax, the CSS will probably break. In that case please add any CSS with "@media" in it to the 'all' mode instead! Also, the 'rtl' mode is hereby deprecated. Please just prefix any RTL styles within your normal CSS files with "[dir=rtl]". This also fixes that RTL styles cannot be added for 'all' or 'print' modes.
| * | added some wanting classesAnika Henke2012-04-08
| | |
| * | renamed smiley image class to 'icon' (FS#1970)Anika Henke2012-04-08
| | |
| * | removed align attribute from images and inserted them only in the feed (FS#1351)Anika Henke2012-04-08
| | | | | | | | | | | | can someone with better regex skills please revise this?
| * | use abbr instead of deprecated acronymAnika Henke2012-04-08
| | |
| * | removed names from footnotes and removed anchors from headings altogetherAnika Henke2012-04-08
| | |
* | | fixed ACL loading after the recent changes/messupAndreas Gohr2012-06-30
| | |
* | | fixed group wildcards and added testsAndreas Gohr2012-06-30
| | |
* | | removed another occurance of the obsolete config optionAndreas Gohr2012-06-29
| | |
* | | simplified %GROUP% wildcard supportAndreas Gohr2012-06-29
| | |
* | | Merge branch 'master' of git://github.com/Aorimn/dokuwiki into pull-request-76Andreas Gohr2012-06-29
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | * 'master' of git://github.com/Aorimn/dokuwiki: Change default groupwildcards option to 0 not to change behavior of Added support for the %GROUP% wildcard. Conflicts: inc/auth.php
| * | Added support for the %GROUP% wildcard.romain2012-01-30
| | | | | | | | | | | | | | | | | | %GROUP% is the same as %USER% except it's done on each group a user is in. %USER% and %GROUP% cannot be mixed on an ACL line.
* | | treat empty string inputs as unset for int and boolAndreas Gohr2012-06-29
| | |
* | | some code cleanup and php docsAndreas Gohr2012-06-25
| | |
* | | some Input class fixes and unit testsAndreas Gohr2012-06-25
| | |
* | | Input wrapper for auth.phpAndreas Gohr2012-06-24
| | |
* | | remove() implemented for Input classAndreas Gohr2012-06-24
| | |
* | | allow setting values via input classAndreas Gohr2012-06-24
| | |
* | | code cleanupAndreas Gohr2012-06-24
| | |
* | | another input wrapper fixAndreas Gohr2012-06-24
| | |
* | | added 3rd parameter to Input methodsAndreas Gohr2012-06-24
| | | | | | | | | | | | This allows to treat empty parameters as default
* | | added has() method to input classAndreas Gohr2012-06-24
| | |
* | | Introducing a $_REQUEST/POST/GET wrapperAndreas Gohr2012-06-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new wrapper ensures types are correct and accessed parameters are actually set (with custom default fallbacks). The wrapper is available in the global $INPUT variable. It accesses $_REQUEST by default. If POST or GET is required, the post and get members can be used: $INPUT->int('foo',false); // access $_REQUEST['foo'], default false $INPUT->post->int('foo'); // access $_POST['foo'], default 0 $INPUT->get->int('foo'); // access $_GET['foo'], default 0 The codebase still needs to be updated to make use of this.
* | | code cleanupAndreas Gohr2012-06-23
| | |
* | | some phpdoc updatesAndreas Gohr2012-06-23
| | |
* | | some code beautificationAndreas Gohr2012-06-23
| | |
* | | another bad comparison fixedAndreas Gohr2012-06-23
| | |
* | | fixed wrong comparison in Mailer::dump()Andreas Gohr2012-06-23
| | |
* | | Dutch language updateDion Nicolaas2012-06-22
| | |
* | | Vietnamese language updateNguyen The Hung2012-06-22
| | |
* | | Korean language update이명진2012-06-22
| | |
* | | Korean language update이명진2012-06-13
| | |
* | | Italian language updateMatteo Pasotti2012-06-12
| | |
* | | Polish langauge updateAoi Karasu2012-06-12
| | |
* | | chinese language update. related to FS#2360lainme2012-06-12
| | |
* | | Fix for FS#2522 / Now all places of $lang['restored'] are covered with the ↵lupo492012-06-10
| | | | | | | | | | | | restored-date information
* | | formatBc. Jan Kaláb2012-06-03
| | |
* | | formatBc. Jan Kaláb2012-06-03
| | |
* | | formatingBc. Jan Kaláb2012-06-03
| | |