History log of /dokuwiki/inc/parser/parser.php (Results 26 – 50 of 97)
Revision Date Author Comments
# 2f7a0e94 11-Sep-2013 Matt Perry <matt@mattperry.com>

Fix CodeSniffer whitespace violoations

Removed extraneous whitespace to eliminate errors reported by the
Squiz.WhiteSpace.SuperfluousWhitespace sniff.


# c404cb3b 23-Aug-2013 Matt Perry <matt@mattperry.com>

Fix CodeSniffer violations for PHP files

Fix violations for Squiz.Commenting.DocCommentAlignment.SpaceBeforeTag

Conflicts:
inc/parser/xhtml.php


# 7ef8e99f 22-Aug-2013 Matt Perry <matt@mattperry.com>

Fix CodeSniffer violations

Change indentation to ensure code confirms to CodeSniffer rules.


# fc498a42 30-Jul-2013 Christopher Smith <chris@jalakai.co.uk>

FS#2770 - prevent <file> and <code> syntax regex matching token names which start '<file' or '<code'


# 627fc03f 30-Jul-2013 Guy Brand <gb@unistra.fr>

Fix for the FS#1833 parser error


# bd28297e 28-Jul-2012 Michael Hamann <michael@content-space.de>

Replace = & by =& as the former isn't understood by IntelliJ IDEA


# e3ab6fc5 28-Jul-2012 Michael Hamann <michael@content-space.de>

Fixed and extended PHPDoc comments and added additional @var comments


# bfdeb23f 07-Mar-2012 lupo49 <post@lupo49.de>

Parser: Allow parser to fully recognize windows share links with a hyphen character in it
(Currently, the clickable link stops before a hyphen character)


# 45a0fa15 14-Apr-2011 Adrian Lang <mail@adrianlang.de>

Support the empty link [[]]


# f25fcf53 09-Feb-2011 Michael Hamann <michael@content-space.de>

Make the regex for internal links more restrictive

This fixes a PCRE backtrack error that occurred on large pages like
:users on dokuwiki.org.


# c34c7772 06-Feb-2011 Andreas Gohr <andi@splitbrain.org>

make IPv6 links in link syntax FS#2137


# 5d190f12 06-Feb-2011 Andreas Gohr <andi@splitbrain.org>

URLs may contain brackets [] FS#2137


# 9fa736b0 07-Dec-2010 Andreas Gohr <gohr@cosmocode.de>

Make baseonly work in allowedModes

This makes it possible to have modes that do accept headers
(baseonly) in the parser.

Related test cases are still running through but I'm not 100% sure
I did not

Make baseonly work in allowedModes

This makes it possible to have modes that do accept headers
(baseonly) in the parser.

Related test cases are still running through but I'm not 100% sure
I did not break something here. So it should be tested a bit more.

This patch will allow plugins to wrap multiple sections, however it
also makes it possible to easily break XHTML validity, because
headers also open and close sections, so plugin authors need to be
aware!

In case you wonder: this patch is not about allowing formatting
inside headers.

show more ...


# e3776c06 29-Nov-2010 Michael Hamann <michael@content-space.de>

Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3

As of VIM 7.3 it is no longer possible to specify the encoding in the
modeline. This gives an error message whenever such a file is o

Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3

As of VIM 7.3 it is no longer possible to specify the encoding in the
modeline. This gives an error message whenever such a file is opened,
thus this commit removes the enc setting from the modeline.

show more ...


# 03b54bb0 17-Oct-2010 Thorsten Staerk <dev@staerk.de>

explaining what Doku_Parser_Mode_formatting does: it sets markup


# 87dd614c 16-Oct-2010 Thorsten Staerk <dev@staerk.de>

give a description for a function


# 13ebcbe5 27-Jun-2010 Christopher Smith <chris@jalakai.co.uk>

FS#1949


# 67f9913d 15-Jan-2010 Andreas Gohr <andi@splitbrain.org>

removed deprecated PHP4 construct

Assigning the return value of new by reference is deprecated, PHP5's new
automatically assigns by reference


# 25b97867 03-Nov-2009 hakan.sandell <hakan.sandell@mydata.se>

rowspan with ::: implemented in parser/handler

darcs-hash:20091103161002-9a5f4-2114938a7e62a924b9fe424b63584a4747286563.gz


# 95c19ce7 04-Oct-2009 Chris Smith <chris.eureka@jalakai.co.uk>

FS#1652, #FS1699

Ignore-this: b30b4a3061ad7a485012f6fd55cdfc78
This patch fixes problems with blank lines which contain whitespace before EOL.
It also fixes an issue with preformatted syntax mode no

FS#1652, #FS1699

Ignore-this: b30b4a3061ad7a485012f6fd55cdfc78
This patch fixes problems with blank lines which contain whitespace before EOL.
It also fixes an issue with preformatted syntax mode not triggering following
p_open instructions under some circumstances.

Note: The fix can result in swallowing of non-eol white space that precedes the
EOL. This can happen when there is no non-whitespace CDATA between the end of
the previous syntax mode and the EOL character.

darcs-hash:20091004190359-f07c6-36bb418cb9be8bbaff741b4cbe135c442d0bde81.gz

show more ...


# 30897fec 04-Oct-2009 Chris Smith <chris.eureka@jalakai.co.uk>

#FS1749, alter linebreak pattern to swallow trailing whitespace (except newline)

Ignore-this: 5621e4ff0eb5b759a2176a417bf6779e
includes updated unit tests

darcs-hash:20091004101720-f07c6-5700a40065

#FS1749, alter linebreak pattern to swallow trailing whitespace (except newline)

Ignore-this: 5621e4ff0eb5b759a2176a417bf6779e
includes updated unit tests

darcs-hash:20091004101720-f07c6-5700a40065a496b38ba83c73d4ebcb86388aaabc.gz

show more ...


# 3d491f75 26-Jul-2009 Andreas Gohr <andi@splitbrain.org>

enhanced <code> and <file> syntax

Ignore-this: 80398f84222bec1fce56eee8f107d37a

This patch enhances the code and file syntax with several new features.

1. code and file are now essentially the sam

enhanced <code> and <file> syntax

Ignore-this: 80398f84222bec1fce56eee8f107d37a

This patch enhances the code and file syntax with several new features.

1. code and file are now essentially the same and just differ in the class
name. This means you now can use the file syntax with syntax highlighting
as well. This also solves problems where the code to highlight already
contains a <code> tag (FS#1493)

2. a filename can be given as label for the code or file block. It is
specified as second parameter after the language:

<code html myfile.html>...</code>

If no highlighting is wanted, but a filename shall be given, you can use
a dash as language:

<code - somefile.foo>...</code>

3. when a filename was given (as shown above), the label links to a
download of the code given in the code/file block. This is made possible
by a new renderer in inc/parser/code.php. The basename of given filename
is suggested as filename when downloading.

darcs-hash:20090726175158-7ad00-969641a06ae1393a6d99207c3cd938fb67f23a71.gz

show more ...


# 7cc4b757 19-Apr-2009 Chris Smith <chris.eureka@jalakai.co.uk>

FS#1648 - sort acronyms into descending order by string length

darcs-hash:20090419160806-f07c6-a2d1bd681e2dd369422bd3839d2837833288cee5.gz


# 68df1afc 15-Feb-2009 Chris Smith <chris.eureka@jalakai.co.uk>

FS#1609, adjust multiplyentity pattern to not match strings that start "0x"

darcs-hash:20090215111954-f07c6-c8b64b4175a742c26d85f871bc27bed900521cb6.gz


# fa8adffe 13-Dec-2008 Andreas Gohr <andi@splitbrain.org>

removed some illogical path setups

darcs-hash:20081213090400-7ad00-4e21cd75978bb07513f32f5d750658e8d777c59e.gz


1234