History log of /dokuwiki/inc/ (Results 1351 – 1375 of 6440)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
b413fb0b16-May-2018 Michael Große <grosse@cosmocode.de>

feat: Trigger new event when changelog is trimmed ✨

b5cf9c4416-May-2018 Michael Große <grosse@cosmocode.de>

style(TaskRunner): automatic whitespace fixes ��

9493c27516-May-2018 Michael Große <grosse@cosmocode.de>

refactor: Extract code from lib/exe/indexer into new TaskRunner class ��

daea826313-May-2018 HokkaidoPerson <dosankomali@yahoo.co.jp>

translation update

1cdd009007-May-2018 Andreas Gohr <andi@splitbrain.org>

moved XMLRPC server class from lib/exe to inc/Remote

4cdb684207-May-2018 Andreas Gohr <andi@splitbrain.org>

started a dedicated file for deprecated stuff

dd87735d07-May-2018 Andreas Gohr <andi@splitbrain.org>

PSR-2 compatibility for the remote API libs

e1cdd96c07-May-2018 Andreas Gohr <andi@splitbrain.org>

some more visibility declarations

23f4cc4707-May-2018 Andreas Gohr <andi@splitbrain.org>

do not use DOKU_PARSER_EOL outside of testing

d4d8fb1804-May-2018 Andreas Gohr <andi@splitbrain.org>

moved Parser to Parsing namespace

be906b5604-May-2018 Andreas Gohr <andi@splitbrain.org>

moved all parsing related namespaces to their own


/dokuwiki/_test/tests/inc/parser/lexer.test.php
/dokuwiki/_test/tests/inc/parser/parser_code.test.php
/dokuwiki/_test/tests/inc/parser/parser_eol.test.php
/dokuwiki/_test/tests/inc/parser/parser_file.test.php
/dokuwiki/_test/tests/inc/parser/parser_footnote.test.php
/dokuwiki/_test/tests/inc/parser/parser_headers.test.php
/dokuwiki/_test/tests/inc/parser/parser_i18n.test.php
/dokuwiki/_test/tests/inc/parser/parser_links.test.php
/dokuwiki/_test/tests/inc/parser/parser_lists.test.php
/dokuwiki/_test/tests/inc/parser/parser_preformatted.test.php
/dokuwiki/_test/tests/inc/parser/parser_quote.test.php
/dokuwiki/_test/tests/inc/parser/parser_quotes.test.php
/dokuwiki/_test/tests/inc/parser/parser_replacements.test.php
/dokuwiki/_test/tests/inc/parser/parser_table.test.php
/dokuwiki/_test/tests/inc/parser/parser_unformatted.test.php
/dokuwiki/_test/tests/inc/parser/renderer_xhtml.test.php
Parsing/Handler/Block.php
Parsing/Handler/CallWriter.php
Parsing/Handler/CallWriterInterface.php
Parsing/Handler/Lists.php
Parsing/Handler/Nest.php
Parsing/Handler/Preformatted.php
Parsing/Handler/Quote.php
Parsing/Handler/ReWriterInterface.php
Parsing/Handler/Table.php
Parsing/Lexer/Lexer.php
Parsing/Lexer/ParallelRegex.php
Parsing/Lexer/StateStack.php
Parsing/ParserMode/AbstractMode.php
Parsing/ParserMode/Acronym.php
Parsing/ParserMode/Base.php
Parsing/ParserMode/Camelcaselink.php
Parsing/ParserMode/Code.php
Parsing/ParserMode/Emaillink.php
Parsing/ParserMode/Entity.php
Parsing/ParserMode/Eol.php
Parsing/ParserMode/Externallink.php
Parsing/ParserMode/File.php
Parsing/ParserMode/Filelink.php
Parsing/ParserMode/Footnote.php
Parsing/ParserMode/Formatting.php
Parsing/ParserMode/Header.php
Parsing/ParserMode/Hr.php
Parsing/ParserMode/Html.php
Parsing/ParserMode/Internallink.php
Parsing/ParserMode/Linebreak.php
Parsing/ParserMode/Listblock.php
Parsing/ParserMode/Media.php
Parsing/ParserMode/ModeInterface.php
Parsing/ParserMode/Multiplyentity.php
Parsing/ParserMode/Nocache.php
Parsing/ParserMode/Notoc.php
Parsing/ParserMode/Php.php
Parsing/ParserMode/Plugin.php
Parsing/ParserMode/Preformatted.php
Parsing/ParserMode/Quote.php
Parsing/ParserMode/Quotes.php
Parsing/ParserMode/Rss.php
Parsing/ParserMode/Smiley.php
Parsing/ParserMode/Table.php
Parsing/ParserMode/Unformatted.php
Parsing/ParserMode/Windowssharelink.php
Parsing/ParserMode/Wordblock.php
parser/handler.php
parser/lexer.php
parser/parser.php
parserutils.php
/dokuwiki/lib/plugins/syntax.php
e9eace7604-May-2018 Andreas Gohr <andi@splitbrain.org>

rename invokeParser to invokeHandler

Because that's what happens. There is a difference between the Parser
and the Handler in our system and this makes it more clear what happens.

8b1b81be04-May-2018 Andreas Gohr <andi@splitbrain.org>

cleaned up Doku_Handler for PSR-2

de22611604-May-2018 Andreas Gohr <andi@splitbrain.org>

adjusted the Lexer for PSR-2

47f73ecf04-May-2018 Andreas Gohr <andi@splitbrain.org>

adjusted Doku_Parser for PSR-2

All properties are declared protected. The handler is now set via the
constructor.

1362c8af02-May-2018 Andreas Gohr <andi@splitbrain.org>

fix draft recovering

The actual draft text got lost when we changed to showing the diff
instead of the full draft.

d4e34dc030-Apr-2018 Tengiz <tech2008a@gmail.com>

translation update

5c2aad1230-Apr-2018 Andreas Gohr <andi@splitbrain.org>

split handler.php into multiple files

For now I left Doku_Handler itself as it were. We will need to keep the
class name around for backwards compatibility but should move the class
itself.

I intro

split handler.php into multiple files

For now I left Doku_Handler itself as it were. We will need to keep the
class name around for backwards compatibility but should move the class
itself.

I introduced a new ReWriter Interface to formalize how the various call
writer implementations are accessed.

There are a whole bunch of doc blocks missing.

show more ...

e6686e8828-Apr-2018 Andreas Gohr <andi@splitbrain.org>

fixed wrong quoting

Used the wrong quotes to split up the string. But actually, we can just
use a linebreak. Doesn't matter for HTML.

36dc94bb28-Apr-2018 Andreas Gohr <andi@splitbrain.org>

split out parser modes into their own files

This moves all the parser classes into their own namespace and files.
Next up are the handler classes.

I'm not sure about the namespace, yet. A nested na

split out parser modes into their own files

This moves all the parser classes into their own namespace and files.
Next up are the handler classes.

I'm not sure about the namespace, yet. A nested namepspace Parser\Modes
would probably make more sense... we'll see.

This also removes the duplicated coded in the Plugin mode. We now use
the plugin trait and can inherit from AbstractMode instead.

show more ...


/dokuwiki/_test/tests/inc/parser/parser_code.test.php
/dokuwiki/_test/tests/inc/parser/parser_eol.test.php
/dokuwiki/_test/tests/inc/parser/parser_file.test.php
/dokuwiki/_test/tests/inc/parser/parser_footnote.test.php
/dokuwiki/_test/tests/inc/parser/parser_headers.test.php
/dokuwiki/_test/tests/inc/parser/parser_i18n.test.php
/dokuwiki/_test/tests/inc/parser/parser_links.test.php
/dokuwiki/_test/tests/inc/parser/parser_lists.test.php
/dokuwiki/_test/tests/inc/parser/parser_preformatted.test.php
/dokuwiki/_test/tests/inc/parser/parser_quote.test.php
/dokuwiki/_test/tests/inc/parser/parser_quotes.test.php
/dokuwiki/_test/tests/inc/parser/parser_replacements.test.php
/dokuwiki/_test/tests/inc/parser/parser_table.test.php
/dokuwiki/_test/tests/inc/parser/parser_unformatted.test.php
ParserMode/AbstractMode.php
ParserMode/Acronym.php
ParserMode/Base.php
ParserMode/Camelcaselink.php
ParserMode/Code.php
ParserMode/Emaillink.php
ParserMode/Entity.php
ParserMode/Eol.php
ParserMode/Externallink.php
ParserMode/File.php
ParserMode/Filelink.php
ParserMode/Footnote.php
ParserMode/Formatting.php
ParserMode/Header.php
ParserMode/Hr.php
ParserMode/Html.php
ParserMode/Internallink.php
ParserMode/Linebreak.php
ParserMode/Listblock.php
ParserMode/Media.php
ParserMode/ModeInterface.php
ParserMode/Multiplyentity.php
ParserMode/Nocache.php
ParserMode/Notoc.php
ParserMode/Php.php
ParserMode/Plugin.php
ParserMode/Preformatted.php
ParserMode/Quote.php
ParserMode/Quotes.php
ParserMode/Rss.php
ParserMode/Smiley.php
ParserMode/Table.php
ParserMode/Unformatted.php
ParserMode/Windowssharelink.php
ParserMode/Wordblock.php
parser/parser.php
parserutils.php
/dokuwiki/lib/plugins/syntax.php
de36992328-Apr-2018 Andreas Gohr <andi@splitbrain.org>

visibility definition for the renderers

I made a lot of things public that probaly should be protected. But many
syntax plugins do access renderer mechanisms directly, so better stay on
the safe sid

visibility definition for the renderers

I made a lot of things public that probaly should be protected. But many
syntax plugins do access renderer mechanisms directly, so better stay on
the safe side here.

The base renderer is now abstract.

show more ...

d2778ca927-Apr-2018 Andreas Gohr <andi@splitbrain.org>

correctly autoload the parser stuff

a087da7127-Apr-2018 Andreas Gohr <andi@splitbrain.org>

fixed broken tests

I also introduced an auto loaded namespace for the tests.

aba86f3827-Apr-2018 Andreas Gohr <andi@splitbrain.org>

visibility fixes

First start at declaring visibilites for methods and properties. Still
missing: the parser/renderer stuff and the plugins

64159a6127-Apr-2018 Andreas Gohr <andi@splitbrain.org>

line lengths shortened

This makes sure all files use line lenghts shorter than 120 characters.

This is a quick fix. It might not always be the nicest change.

1...<<51525354555657585960>>...258