Changes between Initial Version and Version 1 of Ticket #6848


Ignore:
Timestamp:
Apr 7, 2018, 8:27:44 PM (6 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6848

    • Property Keywords RegEx re.py removed
    • Property Summary changed from RegEx aren't handeled well to RegEx aren't handled well
  • Ticket #6848 – Description

    initial v1  
    33
    44The Description field should look like this:
     5
    56---- Description START -------
    67''== '''GOALS''' ==[[BR]]
    78Some Goals could be written here. [[BR]]
    89They could have some enumerations:[[BR]]
    9 1. Number one[[BR]]
    10 2. Number two[[BR]]
    11 ...[[BR]]
    12 n. Number N[[BR]]
    13 [[BR]]
     101. Number one
     112. Number two
     12...
     13n. Number N
     14
    1415<end of goals>
    1516
     
    1920after this block could be another block, or just empty.
    2021
    21 I defined an Reges and configured the plugin:[[BR]]
    22 {{{
     22I defined a regex and configured the plugin:
     23{{{#!ini
    2324[components]
    2425ticketvalidator.* = enabled
     
    2728validates = description
    2829description.rule = ^== '''GOALS''' ==[\n\r]*[.\r\n\s]*<end of goals>[\n\r]*[.\r\n]*
    29 description.tip = Sections: Goals, Nesessary input, Nesessary output and Nesessary ressourses have to exist.
     30description.tip = Sections: Goals, Necessary input, Necessary output and Necessary resources have to exist.
    3031}}}
    3132If I am testing without any text in between the "Goals-Tags" it seems to be alright, as soon, as I am adding some text, I am getting my own tip:
    32 Sections: Goals, Nesessary input, Nesessary output and Nesessary ressourses have to exist.
    33 I tried to debug it and it seems, that re.py troughs Enxpected EOF Expression.
     33Sections: Goals, Necessary input, Necessary output and Necessary resources have to exist.
     34
     35I tried to debug it and it seems, that re.py throughs Expected EOF Expression.