Remove the 'html' bit from the filenames.

This commit is contained in:
ian%hixie.ch 2002-05-06 21:00:53 +00:00
parent f17189400e
commit 35e07fb8e3
8 changed files with 18 additions and 18 deletions

View File

@ -5,7 +5,7 @@ COSES
<set variable="title" value="Internal Error">
<set variable="response" value="500 Server Error">
<include href="template.html.header"/>
<include href="template.header"/>
</set></set>
<![CDATA[
@ -17,6 +17,6 @@ below:</p>
<pre>]]><text escape="html" value="(error)"/><![CDATA[</pre>
]]>
<include href="template.html.footer"/>
<include href="template.footer"/>
</text>

View File

@ -5,7 +5,7 @@ COSES
<set variable="title" value="Access Denied">
<set variable="response" value="403 Access Denied">
<include href="template.html.header"/>
<include href="template.header"/>
</set></set>
<text><![CDATA[
@ -15,5 +15,5 @@ COSES
</p>
]]></text>
<include href="template.html.footer"/>
<include href="template.footer"/>
</text>

View File

@ -1,7 +1,7 @@
TemplateToolkit
1
[% INCLUDE template.html.header title = 'Details Sent' -%]
[% INCLUDE template.header title = 'Details Sent' -%]
<p>Your password has been sent.</p>
@ -18,4 +18,4 @@ TemplateToolkit
<p><a href="?">Return to index.</a></p>
[% END %]
[% INCLUDE template.html.footer %]
[% INCLUDE template.footer %]

View File

@ -1,7 +1,7 @@
TemplateToolkit
1
[% INCLUDE template.html.header
[% INCLUDE template.header
title = 'Login'
response = '401 Authentication Required'
headers = "WWW-Authenticate: Basic realm=\"$app.name\""
@ -16,9 +16,9 @@ TemplateToolkit
contact:</p>
<p>
[%- INCLUDE template.html.login.form buttonLabel = 'Get Password' %]
[%- INCLUDE template.login.form buttonLabel = 'Get Password' %]
<input type="hidden" name="loginPendingCommands" value="[% pendingCommands | html %]">
</p>
</form>
[% INCLUDE template.html.footer %]
[% INCLUDE template.footer %]

View File

@ -1,15 +1,15 @@
TemplateToolkit
1
[% INCLUDE template.html.header title = 'Create Account' -%]
[% INCLUDE template.header title = 'Create Account' -%]
<form action="" method="GET"> <!-- XXX POST -->
<p>To create a new account fill in your e-mail address or other
means of contact in the form below and hit the submit button:</p>
<p>
[%- INCLUDE template.html.login.form buttonLabel = 'Submit' %]
[%- INCLUDE template.login.form buttonLabel = 'Submit' %]
</p>
</form>
[% INCLUDE template.html.footer %]
[% INCLUDE template.footer %]

View File

@ -1,7 +1,7 @@
TemplateToolkit
1
[% INCLUDE template.html.header
[% INCLUDE template.header
title = 'User Preferences' -%]
<form action="?" method="GET">
@ -109,4 +109,4 @@ TemplateToolkit
</form>
[% INCLUDE template.html.footer %]
[% INCLUDE template.footer %]

View File

@ -1,7 +1,7 @@
TemplateToolkit
1
[% INCLUDE template.html.header
[% INCLUDE template.header
title = 'User Preferences: Notes'
%]
@ -11,4 +11,4 @@ TemplateToolkit
[% END %]
[% INCLUDE template.html.footer %]
[% INCLUDE template.footer %]

View File

@ -1,9 +1,9 @@
TemplateToolkit
1
[% INCLUDE template.html.header title = 'User Preferences Saved' -%]
[% INCLUDE template.header title = 'User Preferences Saved' -%]
<p>The changes have been saved.</p>
<p><a href="?">Return to index.</a></p>
[% INCLUDE template.html.footer %]
[% INCLUDE template.footer %]