| Commit message (Collapse) | Author | Age |
|\ |
|
| |
| |
| |
| | |
same problem as in f1d7655b8b6288d5b3d63a44412a69c0aa012ed8
|
| | |
|
| |
| |
| |
| | |
string sanitization even for their own new actions
|
| |
| |
| |
| |
| | |
The used syntax was invalid in PHP < 3.4 and seemed to be wrong logical
as well.
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
pull-request-110
* 'input-validation' of git://github.com/whoopdedo/dokuwiki:
fix incorrect usage of tpl_getMediaFile
fix necessary global declaration
Input wrapper for html forms
Input validation for media manager
Input wrapper for exe scripts
more INPUT wrapper uses: cache purge, sectok, getID
Input wrapper for action.php
Conflicts:
lib/exe/css.php
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| | | |
| | | | |
de/de-informal: added missing strings / updates for existing ones.
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
BG: language update
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
pull-request-107
* 'httpclient' of git://github.com/whoopdedo/dokuwiki:
Adjust unit test to reflect desired behavior of max_bodysize
Avoid timeout when content-length is 0
Limit size of reads when max_bodysize is set or content-length is present
Skip over chunk extensions that nobody uses because RFC2616 says so
HTTPClient will read up to max_bodysize if it can
Validate the size of a chunk before reading from the socket
Efficiently wait on sockets
HTTP headers are already parsed, there is no need for regexp
Utility function for writing to a socket
Unit test for HTTPClient chunked encoding
Utility functions for reading from a socket.
Raise an exception on socket errors.
Correct handling of chunked transfer encoding. (FS#2535)
Avoid strict warnings about unset array keys.
Reference static variable through 'self::' as you're supposed to.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Reading from a socket is handled by functions that encapsulate the error
handling and timeout conditions.
_readData reads blocks of data.
_readLine reads a single line.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is the first step in refactoring the socket reader to be more
resilient and easier to debug.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
index/sitemap as well)
|
| | |/ / /
| |/| | | |
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* sidebar:
Improved sidebar inclusion
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Template authors now can use tpl_sidebar() to include the sidebar.
Sidebars can be defined in subnamespaces as well
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
\w could match multibyte chars depending on system setup
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
crypt seems to behave different on different systems when the salt
is empty.
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
Frontend improvements
|
| | |\ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
frontend_improvements
Conflicts:
lib/tpl/dokuwiki/css/basic.css
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
can someone with better regex skills please revise this?
|
| | | | | | |
|
| | | | | | |
|