This page is not Valid HTML 4.01 Strict!
Below are the results of attempting to parse this document with an SGML parser.
-
Error
Line 205,
column 58:
end tag for element "P" which is not open
.
...lass="anchor" id="line-19"></span></p><span class="anchor" id="line-20"></spa
The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.
If this error occured in a script section of your document, you should probably read this FAQ entry.
-
Error
Line 212,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-29"></span><tr> <td><p class="line879">table </p>
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
-
Error
Line 215,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-30"></span></tbody></table></div><span class="anch
-
Error
Line 219,
column 286:
there is no attribute "START"
.
...nchor" id="line-40"></span><ol start="10" type="1"><li><p class="line886">ite
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.
-
Error
Line 219,
column 296:
there is no attribute "TYPE"
.
..."line-40"></span><ol start="10" type="1"><li><p class="line886">item 10 <span
-
Warning
Line 222,
column 505:
cannot generate system identifier for general entity "rename"
.
...TMLValidationFails?action=AttachFile&rename=dont_upload_me">Upload new attach
An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".
Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and æ are different characters.
If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.
Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
-
Error
Line 222,
column 505:
general entity "rename" not defined and no default entity
.
...TMLValidationFails?action=AttachFile&rename=dont_upload_me">Upload new attach
This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
-
Error
Line 222,
column 511:
reference to entity "rename" for which no system identifier could be generated
.
...idationFails?action=AttachFile&rename=dont_upload_me">Upload new attachment "
This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
-
Info
Line 222,
column 504:
entity was defined here
.
...HTMLValidationFails?action=AttachFile&rename=dont_upload_me">Upload new attac
-
Error
Line 228,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-60"></span><tr> <td><p class="line879"> <strong>O
-
Error
Line 231,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-61"></span><tr> <td><p class="line879"> <strong>P
-
Error
Line 234,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-62"></span><tr> <td><p class="line879"> <strong>S
-
Error
Line 237,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-63"></span><tr> <td><p class="line879"> <strong>S
-
Error
Line 240,
column 33:
document type does not allow element "SPAN" here
.
<span class="anchor" id="line-64"></span></tbody></table></div><span class="anch
Source Listing
Below is the source input I used for this validation:
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <link rel="shortcut icon" href="/wiki/favicon.ico">
- <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
- <meta name="robots" content="index,nofollow">
- <title>MoinMoinBugs/HTMLValidationFails - MoinMoin</title>
- <script type="text/javascript" src="/wiki/common/js/common.js"></script>
- <script type="text/javascript">
- <!--// common functions
- // We keep here the state of the search box
- searchIsDisabled = false;
- function searchChange(e) {
- // Update search buttons status according to search box content.
- // Ignore empty or whitespace search term.
- var value = e.value.replace(/\s+/, '');
- if (value == '' || searchIsDisabled) {
- searchSetDisabled(true);
- } else {
- searchSetDisabled(false);
- }
- }
- function searchSetDisabled(flag) {
- // Enable or disable search
- document.getElementById('fullsearch').disabled = flag;
- document.getElementById('titlesearch').disabled = flag;
- }
- function searchFocus(e) {
- // Update search input content on focus
- if (e.value == 'Search') {
- e.value = '';
- e.className = '';
- searchIsDisabled = false;
- }
- }
- function searchBlur(e) {
- // Update search input content on blur
- if (e.value == '') {
- e.value = 'Search';
- e.className = 'disabled';
- searchIsDisabled = true;
- }
- }
- function actionsMenuInit(title) {
- // Initialize action menu
- for (i = 0; i < document.forms.length; i++) {
- var form = document.forms[i];
- if (form.className == 'actionsmenu') {
- // Check if this form needs update
- var div = form.getElementsByTagName('div')[0];
- var label = div.getElementsByTagName('label')[0];
- if (label) {
- // This is the first time: remove label and do buton.
- div.removeChild(label);
- var dobutton = div.getElementsByTagName('input')[0];
- div.removeChild(dobutton);
- // and add menu title
- var select = div.getElementsByTagName('select')[0];
- var item = document.createElement('option');
- item.appendChild(document.createTextNode(title));
- item.value = 'show';
- select.insertBefore(item, select.options[0]);
- select.selectedIndex = 0;
- }
- }
- }
- }
- //-->
- </script>
- <script type="text/javascript">
- var gui_editor_link_href = "/MoinMoinBugs/HTMLValidationFails?action=edit&editor=gui";
- var gui_editor_link_text = "Edit (GUI)";
- </script>
- <link rel="stylesheet" type="text/css" charset="utf-8" media="all" href="/wiki/modern/css/common.css">
- <link rel="stylesheet" type="text/css" charset="utf-8" media="screen" href="/wiki/modern/css/screen.css">
- <link rel="stylesheet" type="text/css" charset="utf-8" media="print" href="/wiki/modern/css/print.css">
- <link rel="stylesheet" type="text/css" charset="utf-8" media="projection" href="/wiki/modern/css/projection.css">
- <link rel="alternate" title="MoinMoin Recent Changes" href="/RecentChanges?action=rss_rc&ddiffs=1&unique=1" type="application/rss+xml">
- <link rel="Start" href="/MoinMoinWiki">
- <link rel="Alternate" title="Wiki Markup" href="/MoinMoinBugs/HTMLValidationFails?action=raw">
- <link rel="Alternate" media="print" title="Print View" href="/MoinMoinBugs/HTMLValidationFails?action=print">
- <link rel="Up" href="/MoinMoinBugs">
- <link rel="Appendix" title="moin-html401.txt" href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile&do=view&target=moin-html401.txt">
- <link rel="Appendix" title="validator_output.html" href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile&do=view&target=validator_output.html">
- <link rel="Search" href="/FindPage">
- <link rel="Index" href="/TitleIndex">
- <link rel="Glossary" href="/WordIndex">
- <link rel="Help" href="/HelpOnFormatting">
- </head>
- <body lang="en" dir="ltr">
- <div id="header">
- <div id="logo"><a href="/MoinMoinWiki"><img src="/wiki/moinmoin.png" alt="MoinMoin Logo"></a></div>
- <form id="searchform" method="get" action="">
- <div>
- <input type="hidden" name="action" value="fullsearch">
- <input type="hidden" name="context" value="180">
- <label for="searchinput">Search:</label>
- <input id="searchinput" type="text" name="value" value="" size="20"
- onfocus="searchFocus(this)" onblur="searchBlur(this)"
- onkeyup="searchChange(this)" onchange="searchChange(this)" alt="Search">
- <input id="titlesearch" name="titlesearch" type="submit"
- value="Titles" alt="Search Titles">
- <input id="fullsearch" name="fullsearch" type="submit"
- value="Text" alt="Search Full Text">
- </div>
- </form>
- <script type="text/javascript">
- <!--// Initialize search form
- var f = document.getElementById('searchform');
- f.getElementsByTagName('label')[0].style.display = 'none';
- var e = document.getElementById('searchinput');
- searchChange(e);
- searchBlur(e);
- //-->
- </script>
- <ul id="username"><li><a href="/UserPreferences">Login</a></li></ul>
- <div id="locationline">
- <div id="interwiki"><span><a href="/MoinMoinWiki">MoinMoin</a></span></div>
- <ul id="pagelocation">
- <li><a href="/MoinMoinBugs">MoinMoinBugs</a></li><li><a class="backlink" title="Click to do a full-text search for this title" href="/MoinMoinBugs/HTMLValidationFails?action=fullsearch&value=linkto%3A%22MoinMoinBugs/HTMLValidationFails%22&context=180">HTMLValidationFails</a></li>
- </ul>
- </div>
- <ul id="navibar">
- <li class="wikilink"><a href="/RecentChanges">RecentChanges</a></li><li class="wikilink"><a href="/FindPage">FindPage</a></li><li class="wikilink"><a href="/HelpContents">HelpContents</a></li><li class="current"><a href="/MoinMoinBugs/HTMLValidationFails">HTMLValidationFails</a></li>
- </ul>
- <div id="pageline"><hr style="display:none;"></div>
- <ul class="editbar"><li><a name="texteditlink" href="/MoinMoinBugs/HTMLValidationFails?action=edit&editor=text">Edit (Text)</a></li><li><a href="/MoinMoinBugs/HTMLValidationFails?action=info">Info</a></li><li><a href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile">Attachments</a></li><li>
- <form class="actionsmenu" method="get" action="">
- <div>
- <label>More Actions:</label>
- <select name="action"
- onchange="if ((this.selectedIndex != 0) &&
- (this.options[this.selectedIndex].disabled == false)) {
- this.form.submit();
- }
- this.selectedIndex = 0;">
- <option value="raw">Raw Text</option>
- <option value="print">Print View</option>
- <option value="show" disabled class="disabled">Delete Cache</option>
- <option value="show" disabled class="disabled">------------</option>
- <option value="SpellCheck">Check Spelling</option>
- <option value="LikePages">Like Pages</option>
- <option value="LocalSiteMap">Local Site Map</option>
- <option value="show" disabled class="disabled">------------</option>
- <option value="RenamePage" disabled class="disabled">Rename Page</option>
- <option value="DeletePage" disabled class="disabled">Delete Page</option>
- <option value="show" disabled class="disabled">------------</option>
- <option value="AttachFile">Attach File</option>
- <option value="Despam">Despam</option>
- <option value="MyPages">My Pages</option>
- <option value="PackagePages">Package Pages</option>
- <option value="RenderAsDocbook">Render As Docbook</option>
- <option value="SubscribeUser">Subscribe User</option>
- </select>
- <input type="submit" value="Do">
- </div>
- <script type="text/javascript">
- <!--// Init menu
- actionsMenuInit('More Actions:');
- //-->
- </script>
- </form>
- </li></ul>
- </div>
- <div id="page" lang="en" dir="ltr">
- <div dir="ltr" id="content" lang="en"><span class="anchor" id="top"></span>
- <span class="anchor" id="line-1"></span>
- <h1 id="head-6085723b81c55fd1cfd379f07a440f717b4d0b21">Description</h1>
- <span class="anchor" id="line-2"></span><p class="line879">Despite <a href="/MoinMoin">MoinMoin</a>'s claims, many generated pages are not valid HTML 4.01 (<a class="http" href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a>). <span class="anchor" id="line-3"></span></p><span class="anchor" id="line-4"></span>
- <h2 id="head-42f25ece8f55ddd59a5ee6cde16508df1346984f">Steps to reproduce</h2>
- <span class="anchor" id="line-5"></span><p class="line903"><span class="anchor" id="line-6"></span></p><ul><li><p class="line886">Click on the "Valid HTML 4.01" link at the bottom to validate this page. <span class="anchor" id="line-7"></span></p></li><li><p class="line879">Alternatively: validate <a href="/HelpOnLists">HelpOnLists</a>, <a href="/HelpOnTables">HelpOnTables</a>,or <a href="/HelpOnMacros">HelpOnMacros</a>. <span class="anchor" id="line-8"></span></p><span class="anchor" id="line-9"></span></li></ul>
- <h2 id="head-99eba139179459ad56650aa10da0ae428f476057">Example</h2>
- <span class="anchor" id="line-10"></span><p class="line903"><span class="anchor" id="line-11"></span></p><span class="anchor" id="line-12"></span><p class="line879">Here is sample output of the W3 validator made from this page on (2006-02-17): <span class="anchor" id="line-13"></span><a class="attachment" href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile&do=get&target=validator_output.html" title="attachment:validator_output.html">validator_output.html</a> <span class="anchor" id="line-14"></span></p><span class="anchor" id="line-15"></span>
- <h3 id="head-015b944ba6d91f19d40d6551f75280df8b336a93">1. illegal </p> tags</h3>
- <span class="anchor" id="line-16"></span><p class="line879">Sometimes Moin adds <tt></p></tt> tags where they are illegal, For example when text is followed by the <tt>[[NewPage()]]</tt> macro: <span class="anchor" id="line-17"></span></p><span class="anchor" id="line-18"></span><p class="line903"><img alt="/!\" height="15" src="/wiki/modern/img/alert.png" title="/!\" width="15" /> Only for test purposes, don't use!! <img alt="/!\" height="15" src="/wiki/modern/img/alert.png" title="/!\" width="15" /> <form class="macro" method="get" action=""><div>
- <input type="hidden" name="action" value="newpage">
- <input type="hidden" name="parent" value="">
- <input type="hidden" name="template" value="">
- <input type="hidden" name="nametemplate" value="%s">
- <input type="text" name="pagename" size="30">
- <input type="submit" value="Create New Page">
- </div></form> <span class="anchor" id="line-19"></span></p><span class="anchor" id="line-20"></span><span class="anchor" id="line-21"></span><pre>/!\ Only for test purposes, don't use!! /!\
- <span class="anchor" id="line-22"></span>[[NewPage()]]
- <span class="anchor" id="line-23"></span></pre><span class="anchor" id="line-24"></span><span class="anchor" id="line-25"></span>
- <h3 id="head-69bae8b92d4973a0aff27607b22b23d7ce2d6afe">2. illegal <span> tags in tables</h3>
- <span class="anchor" id="line-26"></span><p class="line879">If the line_anchors feature in Moin is on, it generates <tt><span></tt> tags in tables where they are illegal (between <tt></tr></tt> and <tt><tr></tt>): <span class="anchor" id="line-27"></span></p><span class="anchor" id="line-28"></span><div><table><tbody><tr> <td><p class="line879">table </p></td>
- <td><p class="line879"> row1 </p></td>
- </tr>
- <span class="anchor" id="line-29"></span><tr> <td><p class="line879">table </p></td>
- <td><p class="line879"> row2 </p></td>
- </tr>
- <span class="anchor" id="line-30"></span></tbody></table></div><span class="anchor" id="line-31"></span><span class="anchor" id="line-32"></span><span class="anchor" id="line-33"></span><pre>||table || row1||
- <span class="anchor" id="line-34"></span>||table || row2||
- <span class="anchor" id="line-35"></span></pre><span class="anchor" id="line-36"></span><span class="anchor" id="line-37"></span>
- <h3 id="head-96242abb3fa3796986684a978d317dc5271821c6">3. deprecated <ol> attributes</h3>
- <span class="anchor" id="line-38"></span><p class="line879">Numbered lists in Moin use the <tt>type</tt> and <tt>start</tt> attributes, which are deprecated and invalid in HTML 4.01 strict: <span class="anchor" id="line-39"></span></p><span class="anchor" id="line-40"></span><ol start="10" type="1"><li><p class="line886">item 10 <span class="anchor" id="line-41"></span></p></li></ol><span class="anchor" id="line-42"></span><pre> 1.#10 item 10
- <span class="anchor" id="line-43"></span></pre><span class="anchor" id="line-44"></span><span class="anchor" id="line-45"></span>
- <h3 id="head-265065b1b2a2e38b3da7d497b0ec06a5ee678a15">4. ampersands in URLs</h3>
- <span class="anchor" id="line-46"></span><p class="line879">Moin inserts unescaped URLs containing <tt>&</tt> characters into the page text. Should be <tt>&amp;</tt> instead. See <a class="http" href="http://www.htmlhelp.com/tools/validator/problems.html#amp">http://www.htmlhelp.com/tools/validator/problems.html#amp</a> <span class="anchor" id="line-47"></span></p><span class="anchor" id="line-48"></span><p class="line879">example: <a href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile&rename=dont_upload_me">Upload new attachment "dont_upload_me"</a> <span class="anchor" id="line-49"></span></p><span class="anchor" id="line-50"></span><span class="anchor" id="line-51"></span><pre>example: attachment:dont_upload_me
- <span class="anchor" id="line-52"></span></pre><span class="anchor" id="line-53"></span><span class="anchor" id="line-54"></span><p class="line886">Short security note - the ampersand is passed in the static part of the URL, there is no XSS risk for this issue because of that. <span class="anchor" id="line-55"></span></p><span class="anchor" id="line-56"></span><p class="line903"><span class="anchor" id="line-57"></span></p>
- <h2 id="head-e8c89b67cb4247d54c576d0ee68964f384f2fa39">Details</h2>
- <span class="anchor" id="line-58"></span><p class="line903"><span class="anchor" id="line-59"></span></p><div><table><tbody><tr> <td><p class="line879"> <strong>MoinMoin Version</strong> </p></td>
- <td><p class="line879"> 1.5.2 </p></td>
- </tr>
- <span class="anchor" id="line-60"></span><tr> <td><p class="line879"> <strong>OS and Version</strong> </p></td>
- <td><p class="line879"> Linux SuSE SLES9 SP3 </p></td>
- </tr>
- <span class="anchor" id="line-61"></span><tr> <td><p class="line879"> <strong>Python Version</strong> </p></td>
- <td><p class="line879"> 2.4.2 </p></td>
- </tr>
- <span class="anchor" id="line-62"></span><tr> <td><p class="line879"> <strong>Server Setup</strong> </p></td>
- <td><p class="line879"> Single wiki </p></td>
- </tr>
- <span class="anchor" id="line-63"></span><tr> <td><p class="line879"> <strong>Server Details</strong> </p></td>
- <td><p class="line879"> nothing special </p></td>
- </tr>
- <span class="anchor" id="line-64"></span></tbody></table></div><span class="anchor" id="line-65"></span><span class="anchor" id="line-66"></span>
- <h2 id="head-15bf0bc532fbe964b678f69260d4b695da96e84c">Workaround</h2>
- <span class="anchor" id="line-67"></span><p class="line903"><span class="anchor" id="line-68"></span>I have a patch here which fixes all problems 1-3. <a class="attachment" href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile&do=get&target=moin-html401.txt" title="attachment:moin-html401.txt">moin-html401.txt</a> <span class="anchor" id="line-69"></span></p><span class="anchor" id="line-70"></span><p class="line879">Only for the <tt>start</tt> attribute, no valid workaround exists, because the W3C recommendation (using the CSS attributes counter-reset and counter-increment) isn't supported by any current browser except Opera (<a class="http" href="http://www.blooberry.com/indexdot/css/supportkey/generate.htm">http://www.blooberry.com/indexdot/css/supportkey/generate.htm</a>). <span class="anchor" id="line-71"></span></p><span class="anchor" id="line-72"></span><p class="line886">The only workaround I can think of is using the HTML 4.01 transitional DTD instead of HTML 4.01 strict for all pages containing lists. At least the pages would validate again. <span class="anchor" id="line-73"></span></p><span class="anchor" id="line-74"></span><p class="line879">I just discovered 4. when I created this page (2006-02-17), so I have no workaround yet. Shoudn't be too hard, though. <span class="anchor" id="line-75"></span></p><span class="anchor" id="line-76"></span>
- <h1 id="head-fcfdedbcac92f0f45cec283dee3f5ea89de356ab">Discussion</h1>
- <span class="anchor" id="line-77"></span><p class="line886">I am running moin with the patch above. My wiki is relatively small (~200pages) and English-only, so I can't oversee all possible complications. <span class="anchor" id="line-78"></span></p><span class="anchor" id="line-79"></span>
- <h1 id="head-abbe37346aab6b880a2ba89609b8defe8f64da77">Plan</h1>
- <span class="anchor" id="line-80"></span><p class="line903"><span class="anchor" id="line-81"></span></p><ul><li><p class="line886">Priority: <span class="anchor" id="line-82"></span></p></li><li><p class="line886">Assigned to: <span class="anchor" id="line-83"></span></p></li><li><p class="line886">Status: <span class="anchor" id="line-84"></span></p><span class="anchor" id="line-85"></span></li></ul><hr /><p class="line886"> <span class="anchor" id="line-86"></span><span class="anchor" id="line-87"></span><span class="anchor" id="line-88"></span><span class="anchor" id="line-89"></span><span class="anchor" id="line-90"></span><a href="/CategoryMoinMoinBug">CategoryMoinMoinBug</a> <span class="anchor" id="line-91"></span></p><span class="anchor" id="bottom"></span></div><p id="pageinfo" class="info" lang="en" dir="ltr">MoinMoin: MoinMoinBugs/HTMLValidationFails (last edited 2006-02-17 17:01:33 by <span title="??? @ proxy6.fujitsu-siemens.com[217.115.66.151]">proxy6</span>)</p>
- <div id="pagebottom"></div>
- </div>
- <div id="footer">
- <ul class="editbar"><li><a name="texteditlink" href="/MoinMoinBugs/HTMLValidationFails?action=edit&editor=text">Edit (Text)</a></li><li><a href="/MoinMoinBugs/HTMLValidationFails?action=info">Info</a></li><li><a href="/MoinMoinBugs/HTMLValidationFails?action=AttachFile">Attachments</a></li><li>
- <form class="actionsmenu" method="get" action="">
- <div>
- <label>More Actions:</label>
- <select name="action"
- onchange="if ((this.selectedIndex != 0) &&
- (this.options[this.selectedIndex].disabled == false)) {
- this.form.submit();
- }
- this.selectedIndex = 0;">
- <option value="raw">Raw Text</option>
- <option value="print">Print View</option>
- <option value="show" disabled class="disabled">Delete Cache</option>
- <option value="show" disabled class="disabled">------------</option>
- <option value="SpellCheck">Check Spelling</option>
- <option value="LikePages">Like Pages</option>
- <option value="LocalSiteMap">Local Site Map</option>
- <option value="show" disabled class="disabled">------------</option>
- <option value="RenamePage" disabled class="disabled">Rename Page</option>
- <option value="DeletePage" disabled class="disabled">Delete Page</option>
- <option value="show" disabled class="disabled">------------</option>
- <option value="AttachFile">Attach File</option>
- <option value="Despam">Despam</option>
- <option value="MyPages">My Pages</option>
- <option value="PackagePages">Package Pages</option>
- <option value="RenderAsDocbook">Render As Docbook</option>
- <option value="SubscribeUser">Subscribe User</option>
- </select>
- <input type="submit" value="Do">
- </div>
- <script type="text/javascript">
- <!--// Init menu
- actionsMenuInit('More Actions:');
- //-->
- </script>
- </form>
- </li></ul>
- <ul id="credits">
- <li><a href="http://moinmoin.wikiwikiweb.de/">MoinMoin Powered</a></li><li><a href="http://www.python.org/">Python Powered</a></li><li><a href="http://validator.w3.org/check?uri=referer">Valid HTML 4.01</a></li>
- </ul>
- </div>
- <ul id="timings">
- <li>compile_huge_and_ugly = 0.000s</li>
- <li>getACL = 0.002s</li>
- <li>run = 0.100s</li>
- <li>send_page = 0.100s</li>
- <li>send_page_content = 0.083s</li>
- <li>total = 0.101s</li>
- </ul>
- </body>
- </html>