~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/base/ivle-headings.html

Replaced Python config files (conf.py) with new config files system, using
    configobj (INI-file style config files).

setup.py config now produces ./etc/ivle.conf, a new-style config file.
ivle/conf/conf.py is now part of the IVLE source code. It reads the new config
file and provides the same legacy interface, so all of IVLE still functions,
including setup.py config.

Added /etc to the source tree (config files will be stored here).
Added configobj as a dependency in doc/setup/install_proc.txt.

setup.py install copies ./etc/ivle.conf into /etc/ivle/ivle.conf.

Removed boilerplate code generation from setup/configure.py (that code is now
part of ivle/conf/conf.py which is now in the source tree).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
      xmlns:xi="http://www.w3.org/2001/XInclude"
4
4
      py:strip="">
5
5
  <py:match path="head[@status!='done']" once="true">
6
 
    <head status='done' py:attrs="select('@*')">
 
6
    <head>
7
7
      <title py:with="title = list(select('title/text()'))">
8
8
        <py:if test="title">${title} - </py:if>IVLE
9
9
      </title>
44
44
    </head>
45
45
  </py:match>    
46
46
  <py:match path="body[@status!='done']" once="true">
47
 
    <body status='done'>
 
47
    <body>
48
48
      <div id="ivleheader"></div>
49
49
      <div id="ivleheader_text">
50
50
        <h1>IVLE</h1>
70
70
        </ul>
71
71
      </div>
72
72
      <div id="ivlebody">
73
 
      ${select('*')}
 
73
        ${select('*')}
74
74
      </div>
 
75
      <div id="ivleoverlays">
 
76
        <py:for each="overlay in overlays">
 
77
          ${overlay}
 
78
        </py:for>
 
79
      </div>     
75
80
    </body>
76
81
  </py:match>
77
82
  ${app_template}