CVSROOT: /cvs/cluster
Module name: conga
Changes by: [EMAIL PROTECTED] 2008-02-06 04:57:50
Modified files:
luci/plone-custom: footer luci.css
luci/homebase : form-macros
Log message:
Fix a couple of minor display issues
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/footer.diff?cvsroot=cluster&r1=1.5&r2=1.6
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/luci.css.diff?cvsroot=cluster&r1=1.4&r2=1.5
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/form-macros.diff?cvsroot=cluster&r1=1.65&r2=1.66
--- conga/luci/plone-custom/footer 2007/09/11 16:04:33 1.5
+++ conga/luci/plone-custom/footer 2008/02/06 04:57:49 1.6
@@ -10,13 +10,7 @@
Conga Cluster and Storage Management System</a>
</span>
is Copyright
- <acronym title="Copyright" i18n:name="copyright"
i18n:attributes="title title_copyright;">
- ©
- </acronym>
- 2000—<span
- i18n:name="current_year"
- tal:define="now modules/DateTime/DateTime"
- tal:content="now/year" />
+ <acronym title="Copyright" i18n:name="copyright"
i18n:attributes="title title_copyright;">©</acronym> 2000–2008
<a href="http://www.redhat.com/">Red Hat, Inc.</a>
</span>
</p>
--- conga/luci/plone-custom/luci.css 2008/01/02 20:52:23 1.4
+++ conga/luci/plone-custom/luci.css 2008/02/06 04:57:50 1.5
@@ -32,6 +32,10 @@
margin-right: +.3333em;
}
+input.blank {
+ margin: 0px .3333em 0px .3333em ! important;
+}
+
td.pad_right {
padding-right: +.6666em;
}
--- conga/luci/homebase/form-macros 2008/01/22 15:02:32 1.65
+++ conga/luci/homebase/form-macros 2008/02/06 04:57:50 1.66
@@ -219,7 +219,7 @@
tal:define="cfname python:
here.strFilter('[^0-9A-Za-z_-]', '_', c)"
tal:attributes="id python: cfname">
- <input type="checkbox" class="homebase"
+ <input type="checkbox" class="blank"
tal:define="global num_clusters
python:num_clusters + 1"
tal:attributes="
checked
python:perms[curUser]['cluster'][c] and 'checked' or None;
@@ -235,7 +235,7 @@
<h3 class="homebase">Storage Systems</h3>
<div class="hbcheckdiv" tal:repeat="s python:
systems[1]">
- <input type="checkbox" class="homebase"
+ <input type="checkbox" class="blank"
tal:define="global num_systems
python:num_systems + 1"
tal:attributes="
checked
python:perms[curUser]['storage'][s] and 'checked' or None;
@@ -243,7 +243,7 @@
id python:'__SYSTEM' +
str(num_systems);
value python:s"
/>
- <span class="hbText" tal:omit-tag=""
tal:content="python:s"/>
+ <span class="hbText" tal:content="python:s"/>
</div>
</tal:block>