%(title)s
"""
# Entry formatting
ENTRY_FOOTER = """
Edit this entry /
Log info
"""
ENTRY_LOGINFO = """
/ Last changed on %(last_changed_date)s by
%(last_changed_author)s
"""
# Search
NO_HITS = """
No hits.
"""
ONE_HIT = """
Your search matched the following entry:
"""
FEW_HITS = """
Your search matched the following %(count)d entries:
"""
MANY_HITS = """
Your search matched more than %(MAXHITS)d entries.
The %(count)d matching entries are presented here ordered by section:
"""
# RCS log and diff
LOG = """
Click on a revision line to see the diff between that revision and the
previous one.
"""
DIFFLINK = """\
%(line)s
"""
# Recently changed entries
NO_RECENT = """
No %(FAQNAME)s entries were changed in the last %(period)s.
"""
ONE_RECENT = """
View entries changed in the last:
The following %(count)d %(FAQNAME)s entries were changed
in the last %(period)s, most recently changed shown first:
"""
TAIL_RECENT = """
View entries changed in the last:
"""
# Last changed banner on "all" (strftime format)
LAST_CHANGED = "Last changed on %c %Z"
# "Compat" command prologue (no tag)
COMPAT = """
The whole %(FAQNAME)s
"""
# Editing
EDITHEAD = """
Click for Help
"""
REVIEWHEAD = EDITHEAD
EDITFORM1 = """
"""
COMMIT = """
Click this button to commit your changes.
"""
NOCOMMIT = """
You can't commit your changes unless you enter a log message, your
name, email addres, and the correct password in the form below.
"""
CANTCOMMIT_HEAD = """
Some required information is missing:
"""
NEED_PASSWD = "
You must provide the correct passwd.\n"
NEED_AUTHOR = "
You must enter your name.\n"
NEED_EMAIL = "
You must enter your email address.\n"
NEED_LOG = "
You must enter a log message.\n"
CANTCOMMIT_TAIL = """
Please use your browser's Back command to correct the form and commit
again.
"""
VERSIONCONFLICT = """
You edited version %(editversion)s but the current version is %(version)s.
The two most common causes of this problem are:
After committing a change, you went back in your browser,
edited the entry some more, and clicked Commit again.
Someone else started editing the same entry and committed
before you did.
"""
CANTWRITE = """
Can't write file %(file)s (%(why)s).
"""
FILEHEADER = """\
Title: %(title)s
Last-Changed-Date: %(date)s
Last-Changed-Author: %(author)s
Last-Changed-Email: %(email)s
Last-Changed-Remote-Host: %(REMOTE_HOST)s
Last-Changed-Remote-Address: %(REMOTE_ADDR)s
"""
LOGHEADER = """\
Last-Changed-Date: %(date)s
Last-Changed-Author: %(author)s
Last-Changed-Email: %(email)s
Last-Changed-Remote-Host: %(REMOTE_HOST)s
Last-Changed-Remote-Address: %(REMOTE_ADDR)s
%(log)s
"""
COMMITTED = """
Your changes have been committed.
"""
COMMITFAILED = """
Exit status %(sts)04x.
"""
HELP = """
Using the %(FAQNAME)s Edit Wizard speaks mostly for itself. Here are
some answers to questions you are likely to ask:
I can review an entry but I can't commit it.
The commit button only appears if the following conditions are met:
The Name field is not empty.
The Email field contains at least an @ character.
The Log message box is not empty.
The Password field contains the proper password.
What is the password?
At the moment, only PSA members will be told the password. This is a
good time to join the PSA! See the PSA home page.
Can I use HTML in the FAQ entry?
No, but if you include a URL or an email address in the text it will
automatigally become an anchor of the right type. Also, *word*
is made italic (but only for single alphabetic words).
How do I delineate paragraphs?
Use blank lines to separate paragraphs.
How do I enter example text?
Any line that begins with a space or tab is assumed to be part of
literal text. Blocks of literal text delineated by blank lines are
placed inside <PRE>...</PRE>.
"""