Author: rjollos
Date: Wed Feb 13 20:47:25 2013
New Revision: 1445914
URL: http://svn.apache.org/r1445914
Log:
Refs #270: Reverse merge r1444861 on recommendation from Peter. Investigation
for cause of issue will continue.
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html?rev=1445914&r1=1445913&r2=1445914&view=diff
==============================================================================
---
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
(original)
+++
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
Wed Feb 13 20:47:25 2013
@@ -33,7 +33,7 @@
jQuery(document).ready(function($) {
// Sets state of group toggler when component checkboxes are clicked
function setGroupTogglerState() {
- var table = $(this).closest("table.table");
+ var table = $(this).closest("table.listing");
var checkboxes = $("td.sel input:checkbox:enabled", table);
var numSelected = checkboxes.filter(":checked").length;
var noneSelected = numSelected === 0;
@@ -43,16 +43,16 @@
"indeterminate": !(noneSelected || allSelected)});
}
// Add group event behavior for controlling state of toggler
- $("table.table td.sel input:checkbox:enabled")
+ $("table.listing td.sel input:checkbox:enabled")
.click(setGroupTogglerState);
// Add click behavior for the group toggler and initialize its state
- $("table.table th.sel").each(function() {
+ $("table.listing th.sel").each(function() {
$(this).attr("title", $(this).text())
}).html('<input type="checkbox" />')
.children()
.click(function() {
$("td.sel input:checkbox:enabled",
- $(this).closest("table.table")).prop("checked", this.checked);
+ $(this).closest("table.listing")).prop("checked", this.checked);
}).each(setGroupTogglerState);
});
/*]]>*/</script>
@@ -126,7 +126,7 @@
</py:if>
</dl>
<form method="post" action="">
- <table class="table">
+ <table class="table listing">
<thead>
<tr>
<th class="full-x">Component</th>
Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py?rev=1445914&r1=1445913&r2=1445914&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py Wed Feb 13
20:47:25 2013
@@ -339,7 +339,7 @@ class BloodhoundTheme(ThemeBase):
if bm and not list(bm.get_navigation_items(req)):
yield ('mainnav', 'browser',
tag.a(_('Browse Source'),
- href=req.href.wiki('Guide/RepositoryAdmin')))
+ href=req.href.wiki('TracRepositoryAdmin')))
class QuickCreateTicketDialog(Component):
implements(IRequestFilter, IRequestHandler)