#2026: TG2.0 Wiki20 database initialization script is missing a flush()?
------------------------+---------------------------------------------------
Reporter: llucax | Owner: faide
Type: defect | Status: new
Priority: normal | Milestone: 1.9.7b1
Component: TurboGears | Version: 1.9.x
Severity: normal | Resolution:
Keywords: |
------------------------+---------------------------------------------------
Comment (by llucax):
Other 20 min wiki bugs:
{{{
wikiwords = re.compile(r"\\b([A-Z]\\w+[A-Z]+\\w+)")
}}}
Should be:
{{{
wikiwords = re.compile(r"\b([A-Z]\\w+[A-Z]+\w+)")
}}}
(note the \, both r'' and \\ are used)
----
Same in:
{{{
content = wikiwords.sub(r'<a href="%s\\1">\\1</a>' % root, content)
}}}
Should be:
{{{
content = wikiwords.sub(r'<a href="%s\1">\1</a>' % root, content)
}}}
----
The pagelist.html template is missing.
----
There is an error in the .rst file:
System Message: WARNING/2 (/Users/markramm-
christensen/python/turbogears/docs/2.0/docs/main/Wiki20/wiki20.rst, line
429)
Reading file u’Wwiki_root/snapshots/1/wiki20/templates/page.html’
failed: “[Errno 2] No such file or directory: u’/Users/markramm-
christensen/python/turbogears/docs/2.0/docs/project_code/Wwiki_root/snapshots/1/wiki20/templates/page.html’”
(near "Adding Views (Templates)")
--
Ticket URL: <http://trac.turbogears.org/ticket/2026#comment:2>
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.
This group is read-only. No posting by normal members allowed.
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears-tickets?hl=en?hl=en
-~----------~----~----~----~------~----~------~--~---