Ignore:
Timestamp:
27 May 2012, 00:28:10 (13 years ago)
Author:
uli
Message:

Do not use session anymore to store requested logfile names in datacenter.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterimport4page.pt

    r7811 r8529  
    1717  <input class="btn primary" type="submit" name="finish"
    1818    tal:attributes="value view/back_button" />
     19</form>
     20<form method="POST" i18n:domain="waeup.kofa" action="@@show">
    1921  <input class="btn" type="submit" name="showlog"
    2022    tal:attributes="value view/show_button" />
     23  <input type="hidden" name="logname" tal:attributes="value string:datacenter.log" />
    2124</form>
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterlogspage.pt

    r7811 r8529  
    33  Currently no log files are available.
    44  </p>
    5   <table tal:condition="files" class="condensed-table">
     5  <table tal:condition="files" class="table condensed-table">
    66    <thead>
    77      <tr>
     
    2020          tal:attributes="class python: repeat['file'].odd() and 'odd' or 'even'">
    2121        <td class="text-center">
    22           <form method="POST">
    23             <input i18n:translate="" type="submit" class="btn primary" name="show"
    24                 tal:attributes="value view/show_button" />
    25             <input type="hidden" name="logname" tal:attributes="value file/name" />
     22          <form method="POST" action="@@show">
     23            <input i18n:translate="" type="submit" class="btn primary"
     24                   name="show" tal:attributes="value view/show_button" />
     25            <input type="hidden" name="logname"
     26                   tal:attributes="value file/name" />
    2627          </form></td>
    2728        <td tal:content="file/name">file.name</td>
     
    3233  </table>
    3334  <form method="POST">
     35    <button class="btn primary">
     36      <img tal:attributes="src static/actionicon_reload.png" />
     37      <span i18n:translate="">Reload Page</span>
     38    </button>
    3439    <input i18n:translate="" type="submit" class="btn" name="back"
    3540        tal:attributes="value view/back_button"/>
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterlogsshowfilepage.pt

    r7749 r8529  
    1 <form method="post">
     1<form method="post" class="form-horizontal">
    22  <input type="text" name="query"
    3          tal:attributes="value view/query" />
    4     <input class="btn primary" type="submit" name="search"
    5       tal:attributes="value view/search_button"/>
    6     <input class="btn" type="submit" name="back"
    7       tal:attributes="value view/back_button"/>
     3         tal:attributes="value view/query; placeholder view/placeholder" />
     4  <input class="btn primary" type="submit" name="search"
     5         tal:attributes="value view/search_button" />
     6  <input class="btn" type="submit" name="back"
     7         tal:attributes="value view/back_button" />
     8  <input type="hidden" name="logname"
     9         tal:attributes="value view/filename" />
    810</form>
    911
    10 <div tal:condition="view/grepresult|nothing">
    11   <pre tal:content="structure view/grepresult">
     12<div tal:condition="view/result|nothing">
     13  <pre tal:content="structure view/result">
    1214    GREPRESULT
    1315  </pre>
Note: See TracChangeset for help on using the changeset viewer.