#665: Comment on docs/wiki20/page4.html
------------------------+---------------------------------------------------
Reporter: sockenbaer | Owner: anonymous
Type: defect | Status: new
Priority: normal | Milestone:
Component: Docs | Version:
Severity: normal | Keywords:
------------------------+---------------------------------------------------
The regular expression
{{{
wikiwords = re.compile(r"\b([A-Z]\w+[A-Z]+\w+)")
}}}
in the 20 minute Wiki tutorial does not match the description. \w+ matches
also uppercase letters.
I think
{{{
wikiwords = re.compile(r"\b([A-Z][a-z0-9]+[A-Z]+\w+)")
}}}
would match the description.
--
Ticket URL: <http://trac.turbogears.org/turbogears/ticket/665>
TurboGears <http://www.turbogears.org/>
TurboGears front-to-back web development
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears Tickets" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears-tickets
-~----------~----~----~----~------~----~------~--~---