From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 2 Nov 2007 20:49:56 -0000 Subject: [Cluster-devel] conga/luci plone-custom/configured.png plone-c ... Message-ID: <20071102204956.6800.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: rmccabe at sourceware.org 2007-11-02 20:49:55 Modified files: luci/plone-custom: configured.png installed.png joined.png notstarted.png rebooted.png luci/site/luci/Extensions: conga_constants.py luci/storage : storage_probing.js storage_utils.js storage_validation.js Log message: Fix typos in the storage javascript code Update the graphics Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/configured.png.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/installed.png.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/joined.png.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/notstarted.png.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/rebooted.png.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/conga_constants.py.diff?cvsroot=cluster&r1=1.45&r2=1.46 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/storage/storage_probing.js.diff?cvsroot=cluster&r1=1.3&r2=1.4 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/storage/storage_utils.js.diff?cvsroot=cluster&r1=1.4&r2=1.5 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/storage/storage_validation.js.diff?cvsroot=cluster&r1=1.3&r2=1.4 Binary files /cvs/cluster/conga/luci/plone-custom/configured.png 2007/09/25 03:51:42 1.1 and /cvs/cluster/conga/luci/plone-custom/configured.png 2007/11/02 20:49:55 1.2 differ rcsdiff: /cvs/cluster/conga/luci/plone-custom/configured.png: diff failed Binary files /cvs/cluster/conga/luci/plone-custom/installed.png 2007/09/25 03:51:42 1.1 and /cvs/cluster/conga/luci/plone-custom/installed.png 2007/11/02 20:49:55 1.2 differ rcsdiff: /cvs/cluster/conga/luci/plone-custom/installed.png: diff failed Binary files /cvs/cluster/conga/luci/plone-custom/joined.png 2007/09/25 03:51:42 1.1 and /cvs/cluster/conga/luci/plone-custom/joined.png 2007/11/02 20:49:55 1.2 differ rcsdiff: /cvs/cluster/conga/luci/plone-custom/joined.png: diff failed Binary files /cvs/cluster/conga/luci/plone-custom/notstarted.png 2007/09/25 03:51:42 1.1 and /cvs/cluster/conga/luci/plone-custom/notstarted.png 2007/11/02 20:49:55 1.2 differ rcsdiff: /cvs/cluster/conga/luci/plone-custom/notstarted.png: diff failed Binary files /cvs/cluster/conga/luci/plone-custom/rebooted.png 2007/09/25 03:51:42 1.1 and /cvs/cluster/conga/luci/plone-custom/rebooted.png 2007/11/02 20:49:55 1.2 differ rcsdiff: /cvs/cluster/conga/luci/plone-custom/rebooted.png: diff failed --- conga/luci/site/luci/Extensions/conga_constants.py 2007/10/09 20:20:02 1.45 +++ conga/luci/site/luci/Extensions/conga_constants.py 2007/11/02 20:49:55 1.46 @@ -152,5 +152,5 @@ # to >= 2 to get full debugging output in syslog (LOG_DAEMON/LOG_DEBUG). LUCI_DEBUG_MODE = True -LUCI_DEBUG_NET = False -LUCI_DEBUG_VERBOSITY = 3 +LUCI_DEBUG_NET = True +LUCI_DEBUG_VERBOSITY = 5 --- conga/luci/storage/storage_probing.js 2007/10/22 19:49:06 1.3 +++ conga/luci/storage/storage_probing.js 2007/11/02 20:49:55 1.4 @@ -7,7 +7,7 @@ ** Free Software Foundation. */ -function strip_left(txt) { +function strip_left(res_txt) { return(res_txt.replace(/^\s+/g, "")); } --- conga/luci/storage/storage_utils.js 2007/10/22 19:49:06 1.4 +++ conga/luci/storage/storage_utils.js 2007/11/02 20:49:55 1.5 @@ -7,7 +7,7 @@ ** Free Software Foundation. */ -function strip_left(txt) { +function strip_left(res_txt) { return(res_txt.replace(/^\s+/g, "")); } --- conga/luci/storage/storage_validation.js 2007/10/22 19:49:06 1.3 +++ conga/luci/storage/storage_validation.js 2007/11/02 20:49:55 1.4 @@ -303,7 +303,7 @@ return false; } -function strip_left(txt) { +function strip_left(res_txt) { return(res_txt.replace(/^\s+/g, "")); }