summaryrefslogtreecommitdiff
path: root/inc/html.php
Commit message (Collapse)AuthorAge
* HTML compliant fix for missing ul wrapper in TOC (FS#2328)Hakan Sandell2011-10-17
|
* Fixed missing ul wrapper in TOC (FS#2328)Hakan Sandell2011-10-15
|
* media manager: added a few newlines to the outputAnika Henke2011-09-19
|
* media manager: small functionality and css changesAnika Henke2011-09-19
|
* Rework media manager HTML (JS and CSS will come)Adrian Lang2011-09-17
|
* mergingKate Arzamastseva2011-08-25
|\
| * Fix tree HTML (closes FS#2299)Adrian Lang2011-08-19
| |
| * fixed empty target in license linkAnika Henke2011-08-01
| |
* | issue #57, function names, params, html fixesKate Arzamastseva2011-08-24
| |
* | html fixKate Arzamastseva2011-08-19
| |
* | media revisions form less/more recent buttons fixKate Arzamastseva2011-08-15
| |
* | issue #38 diff links only if diff available; deleted filesKate Arzamastseva2011-08-03
| |
* | issue #9 config option to disable media revisions, authKate Arzamastseva2011-08-02
| |
* | css class name fixKate Arzamastseva2011-08-01
| |
* | issue #38 links and icons in recent changesKate Arzamastseva2011-07-30
| |
* | Recent Changes integration of media changesKate Arzamastseva2011-07-25
| |
* | mediamanager revisions formKate Arzamastseva2011-07-19
| |
* | Merge branch 'master' of git://github.com/splitbrain/dokuwiki into ↵Kate Arzamastseva2011-07-15
|\| | | | | | | media-revisions
| * Fix some bugs and glitches in (mediamanager) treeAdrian Lang2011-07-11
| | | | | | | | | | | | * Fix selector in subtree loading callback * Remove HTML inconsistencies between AJAX and plain PHP lists * Unify icon and CSS class switching in dw_tree and dw_mediamanager
* | media-manager fixesKate Arzamastseva2011-07-09
| |
* | mediamanager fixKate Arzamastseva2011-07-08
| |
* | mediamanager ajax formsKate Arzamastseva2011-07-04
| |
* | media historyKate Arzamastseva2011-06-20
| |
* | media historyKate Arzamastseva2011-06-14
| |
* | media managerKate Arzamastseva2011-06-13
| |
* | recent changes fixKate Arzamastseva2011-06-10
| |
* | type of recent changes selection fixKate Arzamastseva2011-06-05
| |
* | type of recent changes selectionKate Arzamastseva2011-06-05
|/
* tiny fixes for xhtml strictAnika Henke2011-04-17
|
* removed empty id in register form (FS#2222)Anika Henke2011-04-17
|
* don't use form_makeTag() for blank.gif as empty attributes are not passed on ↵Anika Henke2011-04-16
| | | | (which resulted in a missing alt attribute)
* removed nbsps from some clearer divsAnika Henke2011-04-16
|
* fixed invalid html in diff optionsAnika Henke2011-04-16
|
* avoid broken page on bad non-UTF8 highlight stringAndreas Gohr2011-03-05
|
* added 'register' and 'resendpwd' to action links and buttonsAnika Henke2011-02-20
| | | | | Attention: $lang['register'] has been renamed to $lang['btn_register'], anyone using that in any plugin or template should adjust it.
* hide security check image if everything is alrightAndreas Gohr2011-02-06
|
* improved data security check on adminAnika Henke2011-02-06
|
* fixed inline diff selector loosing page contextAndreas Gohr2011-02-05
|
* Make diff type selectableAndreas Gohr2011-01-31
|
* allow placeholders in search intro textAndreas Gohr2011-01-27
| | | | | | | | | | | | | | | | | | | | | | | | This patch allows to use the placeholders in the search intro message that will be replaced with the search term. @SEARCH@ will be replaced with the search query @QUERY@ will be replaced with the URL encoded search query for use in URL parameters Please note that the replacement is don't on the XHTML *after* parsing and rendering the intro wiki text. This means you can not use the query where an ID would be expected. Examples: This will work: [[http://www.google.com/search?q=@QUERY@|Google for @SEARCH@]]. This will not work and will link to the page "search" instead: [[@SEARCH@|Your page]]. You could use this instead: [[this>doku.php?id=@QUERY@|Your page]].
* Revert "tmp" for inc/html.php as it breaks the diff outputMichael Hamann2011-01-18
| | | | This reverts commit fa7c70ff4d7f9999466436e7d559eb0c81571779.
* Merge branch 'master' of github.com:splitbrain/dokuwikiAdrian Lang2011-01-14
|\
| * Fix msg() calls when messages have already been printedMichael Hamann2011-01-10
| | | | | | | | | | | | | | | | | | | | | | | | This commit fixes two bugs that occurred when msg() was called after html_msgarea() had already been called. - the $MSG array is now cleared when it has been printed (otherwise $MSG has been printed again when another msg() call was done) - headers_sent() didn't work for me, it always reported false although html_msgarea() had already been called which might be explainable with output buffering. This makes msg() now depend on the first call of html_msgarea() or headers_sent() in order to not to break msg() in ajax requests etc.
| * added space between license text and linkAnika Henke2011-01-02
| |
* | tmpAdrian Lang2010-12-08
| |
* | Add missing variable declarationAdrian Lang2010-12-08
|/
* Merge branch 'later'Andreas Gohr2010-11-20
|\
| * Deprecate html_attbuild in favor of buildAttributesTom N Harris2010-10-24
| |
* | make custom buttons possible with html_btn() without the need of global ↵Anika Henke2010-11-07
|/ | | | $lang (more consistent with tpl_pagelink())
* Fix page name lookup in searchAdrian Lang2010-10-08
| | | | The page name lookup only checked whether the namespace part occured in the page name and dropped all other search criteria. Moreover, cleaning is not necessary anymore as ft_pageLookup does this itself.