History log of /plugin/ebnf/ (Results 1 – 17 of 17)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
3dfddad105-Sep-2025 Vincent Tscherter <vincent@tscherter.net>

updated to 8.4 and othe fixes

5a77908518-Dec-2024 Damien Regad <dregad@mantisbt.org>

Improve error handling

When given invalid syntax, it can be difficult to find out where the
problem is given only the position without the context of the input
string.

We define a new, specific Ebn

Improve error handling

When given invalid syntax, it can be difficult to find out where the
problem is given only the position without the context of the input
string.

We define a new, specific EbnfException class storing the position of
the parsing error and throw that instead of a regular Exception.

This allows the exception handler to provide some context for the error
as a short substring of the input text.

show more ...

0845564820-Jun-2025 Ralf Müller <ralf@bj-ig.de>

silenced 'deprecated' warnings of php8.4 which broke image generation

70e7922718-Dec-2024 Damien Regad <dregad@mantisbt.org>

Fix PHP 8.1 deprecation warning

imagefilledpolygon(): Using the $num_points parameter is deprecated

0f22d91918-Dec-2024 Damien Regad <dregad@mantisbt.org>

Fix PHP 8.1 deprecation warning

Implicit conversion from float 3.5 to int loses precision

5acae92c27-Sep-2023 Vincent Tscherter <vincent@tscherter.net>

screenshot added

3d5b504a27-Sep-2023 Vincent Tscherter <vincent@tscherter.net>

new relase date

556324de27-Sep-2023 Vincent Tscherter <vincent@tscherter.net>

relase date updated

77a47d8327-Sep-2023 Vincent Tscherter <vincent@tscherter.net>

fixed PHP8 warnings

b099bbf822-Jan-2021 Ralf Müller <ralf@bj-ig.de>

allow to enter special characters as html entities

Currently it is not possible to create terminals like "<" or ">".
This patch allows to insert these using html syntax: "&lt;", "&gt;".

Example:

allow to enter special characters as html entities

Currently it is not possible to create terminals like "<" or ">".
This patch allows to insert these using html syntax: "&lt;", "&gt;".

Example:

<ebnf>
"EBNF Special Character Test" {
literal = "'" character { character } "'"
| '"' character { character } '"'
| '&lt;' character { character } '&gt;' .
}
</ebnf>

show more ...

5c02957e02-Feb-2016 Andreas Gohr <andi@splitbrain.org>

Adjust method signatures to match parent

75a82c8d16-Feb-2015 Vincent.Tscherter <tscherter@karmin.ch>

new plugin link

394264c316-Feb-2015 Vincent.Tscherter <tscherter@karmin.ch>

date sync

8ece40d816-Feb-2015 Vincent.Tscherter <tscherter@karmin.ch>

getInfo() removed

remove unsused funtion getInfo

cfb698a731-Oct-2014 Vincent.Tscherter <tscherter@karmin.ch>

Project initialisation, further commits

a345322f31-Oct-2014 Vincent.Tscherter <tscherter@karmin.ch>

Initial commit, additional files

c5b6701631-Oct-2014 foobarbar <vincent.tscherter@gmail.com>

Initial commit