rel-eng/packages/spacewalk-web | 2 - web/html/network/systems/groups/details.pxt | 36 +++++++++++++++--------- web/modules/sniglets/Sniglets/ListView/Style.pm | 2 + web/spacewalk-web.spec | 5 ++- 4 files changed, 30 insertions(+), 15 deletions(-)
New commits: commit 66bc450c7b12fe5b4de93a718a67fe1b551bbfc2 Author: Michael Mraka michael.mraka@redhat.com Date: Tue Dec 3 19:37:37 2013 +0100
Automatic commit of package [spacewalk-web] release [2.1.37-1].
diff --git a/rel-eng/packages/spacewalk-web b/rel-eng/packages/spacewalk-web index 6f1826f..8790232 100644 --- a/rel-eng/packages/spacewalk-web +++ b/rel-eng/packages/spacewalk-web @@ -1 +1 @@ -2.1.36-1 web/ +2.1.37-1 web/ diff --git a/web/spacewalk-web.spec b/web/spacewalk-web.spec index 13aaaf4..e88b81b 100644 --- a/web/spacewalk-web.spec +++ b/web/spacewalk-web.spec @@ -4,7 +4,7 @@ Name: spacewalk-web Summary: Spacewalk Web site - Perl modules Group: Applications/Internet License: GPLv2 -Version: 2.1.36 +Version: 2.1.37 Release: 1%{?dist} URL: https://fedorahosted.org/spacewalk/ Source0: https://fedorahosted.org/releases/s/p/spacewalk/%%7Bname%7D-%%7Bversion%7D.t... @@ -269,6 +269,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE
%changelog +* Tue Dec 03 2013 Michael Mraka michael.mraka@redhat.com 2.1.37-1 +- bootstrap tuning + * Tue Dec 03 2013 Michael Mraka michael.mraka@redhat.com 2.1.36-1 - bootstrap tuning: fixed doubled item separator
commit e9696094bd173c0190902f7f2d3f9be9daba4b8b Author: Michael Mraka michael.mraka@redhat.com Date: Tue Dec 3 19:16:26 2013 +0100
bootstrap tuning: fixed table on systems/groups/details.pxt
diff --git a/web/html/network/systems/groups/details.pxt b/web/html/network/systems/groups/details.pxt index 6dd777c..a79a200 100644 --- a/web/html/network/systems/groups/details.pxt +++ b/web/html/network/systems/groups/details.pxt @@ -12,9 +12,12 @@ <pxt-include file="/network/components/system_groups/sgdc_header.pxi" />
<rhn-admin-server-group-edit-form> -<table width="100%" class="details-2-columns"> -<tr valign="top"> -<td width="50%"> + +<div class="row-0"> +<div class="col-md-6"> +<div class="panel panel-default"> + +<div class="panel-heading"> <h2>Group Updates</h2>
<rhn-system-group-status-interface> @@ -23,8 +26,11 @@
<br /> +</div> <pxt-form method="POST" action="/rhn/groups/ListRemoveSystems.do"> -<table class="details"> + +<div class="panel-body"> +<table class="table"> <tr> <th>Admins:</th> <td> @@ -43,14 +49,18 @@ <td>{systems_area}</td> </tr> </table> +</div> </pxt-form> -</td> - -<td width="50%"> +</div> +</div>
+<div class="col-md-6"> +<div class="panel panel-default"> +<div class="panel-heading"> <h2>System Group Properties</h2> - - <table class="details" align="center"> +</div> + <div class="panel-body"> + <table class="table"> <tr> <th>Name:</th> <td>{name}</td> @@ -61,6 +71,7 @@ <td>{description}</td> </tr> </table> + </div>
@@ -70,10 +81,9 @@ <div align="center"><a href="edit_properties.pxt?sgid={formvar:sgid}">Edit Group Properties</a></div> </pxt-formvar> </rhn-require> -</td> - -</tr> -</table> +</div> +</div> +</div> </rhn-admin-server-group-edit-form>
</grail-canvas-template>
commit c5be270989cd056cd51680183818af3b0d1917d8 Author: Michael Mraka michael.mraka@redhat.com Date: Tue Dec 3 17:57:00 2013 +0100
bootstrap tuning: style pxt table lists
diff --git a/web/modules/sniglets/Sniglets/ListView/Style.pm b/web/modules/sniglets/Sniglets/ListView/Style.pm index 2ab8fab..288c615 100644 --- a/web/modules/sniglets/Sniglets/ListView/Style.pm +++ b/web/modules/sniglets/Sniglets/ListView/Style.pm @@ -45,6 +45,7 @@ sub header { my $self = shift;
my $ret =<<EOQ; +<div class="panel panel-default"> <table class="table table-striped"> <!-- Begin Header Row --> <thead> @@ -79,6 +80,7 @@ sub footer {
my $ret =<<EOQ; </table> +</div> EOQ
return $ret;