Mercurial > p > roundup > code
comparison website/issues/html/user.help.html @ 4024:c2d0d3e9099d website
svn repository setup
| author | Stefan Seefeld <stefan@users.sourceforge.net> |
|---|---|
| date | Fri, 06 Feb 2009 13:16:31 +0000 |
| parents | |
| children | 53e9694788f5 |
comparison
equal
deleted
inserted
replaced
| 4023:86c38b5aed66 | 4024:c2d0d3e9099d |
|---|---|
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| 2 <html tal:define="property request/form/property/value; | |
| 3 qs request/env/QUERY_STRING; | |
| 4 qs python:'&'.join([a for a in qs.split('&') if not a.startswith('@template=')]); | |
| 5 form request/form/form/value; | |
| 6 field request/form/property/value"> | |
| 7 <head> | |
| 8 <link rel="stylesheet" type="text/css" href="@@file/style.css" /> | |
| 9 <meta http-equiv="Content-Type" | |
| 10 tal:attributes="content string:text/html;; charset=${request/client/charset}" /> | |
| 11 <tal:block tal:condition="python:request.form.has_key('property')"> | |
| 12 <title><tal:x i18n:translate=""><tal:x i18n:name="property" | |
| 13 tal:content="property" i18n:translate="" /> help - <span i18n:name="tracker" | |
| 14 tal:replace="config/TRACKER_NAME" /></tal:x></title> | |
| 15 <script language="Javascript" type="text/javascript" | |
| 16 tal:condition=false | |
| 17 tal:content="structure string:<!-- | |
| 18 // this is the name of the field in the original form that we're working on | |
| 19 form = window.opener.document.${form}; | |
| 20 field = '${field}'; | |
| 21 //-->"> | |
| 22 </script> | |
| 23 <script src="@@file/help_controls.js" | |
| 24 tal:condition=false type="text/javascript"><!-- | |
| 25 //--></script> | |
| 26 </tal:block> | |
| 27 </head> | |
| 28 <frameset rows="123,*,62"> | |
| 29 <frame src="#" tal:attributes="src string:?@template=help-search&${qs}" name="search"> | |
| 30 <!-- for search results: help-list --> | |
| 31 <frame | |
| 32 tal:attributes="src string:?@template=help-empty&${qs}" | |
| 33 name="list"> | |
| 34 <frame | |
| 35 tal:attributes="src string:?@template=help-submit&${qs}" | |
| 36 name="submit"> | |
| 37 <!-- --> | |
| 38 </frameset> | |
| 39 <noframes> | |
| 40 <body> | |
| 41 <p i18n:translate=""> | |
| 42 Your browser is not capable of using frames; you should be redirected immediately, | |
| 43 or visit <a href="#" tal:attributes="href string:?${qs}&template=help-noframes" | |
| 44 i18n:name="link">this link</a>. | |
| 45 </p> | |
| 46 </body> | |
| 47 </noframes> | |
| 48 | |
| 49 </html> |
