This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, master has been updated
via ae81ae476beb1339eea176670690ff93f56d17aa (commit)
from 5877d5897d6b9acba4041ccf48dbd82dbb09075d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=ae81ae476beb1339eea176670690ff93f56d17aa
commit ae81ae476beb1339eea176670690ff93f56d17aa
Author: Franck Villaume <[email protected]>
Date: Thu Sep 1 11:26:16 2016 +0200
taskboard: add even/odd in user-story display, add missing licence
diff --git a/src/plugins/taskboard/www/js/agile-board.js
b/src/plugins/taskboard/www/js/agile-board.js
index 0e490fa..6410d6b 100644
--- a/src/plugins/taskboard/www/js/agile-board.js
+++ b/src/plugins/taskboard/www/js/agile-board.js
@@ -1,3 +1,27 @@
+/**
+ * FusionForge Documentation Manager
+ *
+ * Previous Copyright to FusionForge Team
+ * Copyright 2016, Stéphane-Eymeric Bredthauer - TrivialDev
+ * Copyright 2016, Franck Villaume - TrivialDev
+ * http://fusionforge.org
+ *
+ * This file is part of FusionForge. FusionForge is free software;
+ * you can redistribute it and/or modify it under the terms of the
+ * GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the Licence, or (at your option)
+ * any later version.
+ *
+ * FusionForge is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with FusionForge; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
var aTaskboardUserStories = [];
function cleanMessages() {
@@ -189,7 +213,11 @@ function drawUserStories() {
for( var i=0; i<aUserStories.length; i++ ) {
var start=0;
var us=aUserStories[i];
- l_sHtml += "<tr class='agile-user-story-"+ us.id +"'
valign='top'>\n";
+ evenOdd = 'even';
+ if (i % 2) {
+ evenOdd = 'odd';
+ }
+ l_sHtml += "<tr class='agile-user-story-"+ us.id +"
"+evenOdd+"' valign='top'>\n";
if( bShowUserStories ) {
start=1;
l_sHtml += '<td class="agile-phase
agile-user-stories">';
-----------------------------------------------------------------------
Summary of changes:
src/plugins/taskboard/www/js/agile-board.js | 30 ++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits