From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 25 Sep 2007 03:51:23 -0000 Subject: [Cluster-devel] conga/luci/homebase form-macros homebase_commo ... Message-ID: <20070925035123.7423.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-09-25 03:51:21 Modified files: luci/homebase : form-macros homebase_common.js luci_homebase.css validate_cluster_add.js validate_cluster_add_initial.js validate_perm.js validate_sys_add.js validate_sys_remove.js validate_user_add.js validate_user_del.js Removed files: luci/homebase : x.png Log message: - Move all images into the site custom directory so they can be cached by the server Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/form-macros.diff?cvsroot=cluster&r1=1.60&r2=1.61 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/homebase_common.js.diff?cvsroot=cluster&r1=1.20&r2=1.21 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/luci_homebase.css.diff?cvsroot=cluster&r1=1.42&r2=1.43 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_cluster_add.js.diff?cvsroot=cluster&r1=1.11&r2=1.12 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_cluster_add_initial.js.diff?cvsroot=cluster&r1=1.2&r2=1.3 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_perm.js.diff?cvsroot=cluster&r1=1.3&r2=1.4 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_sys_add.js.diff?cvsroot=cluster&r1=1.2&r2=1.3 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_sys_remove.js.diff?cvsroot=cluster&r1=1.4&r2=1.5 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_user_add.js.diff?cvsroot=cluster&r1=1.4&r2=1.5 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_user_del.js.diff?cvsroot=cluster&r1=1.3&r2=1.4 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/x.png.diff?cvsroot=cluster&r1=1.2&r2=NONE --- conga/luci/homebase/form-macros 2007/09/11 16:04:33 1.60 +++ conga/luci/homebase/form-macros 2007/09/25 03:51:21 1.61 @@ -323,7 +323,7 @@ onchange="pwd0Change(this.form)" /> - @@ -372,7 +372,7 @@ - @@ -620,7 +620,7 @@ onchange="pwd0Change(this.form)" /> - @@ -670,7 +670,7 @@ - @@ -866,7 +866,7 @@ --- conga/luci/homebase/homebase_common.js 2007/07/12 22:35:39 1.20 +++ conga/luci/homebase/homebase_common.js 2007/09/25 03:51:21 1.21 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function set_form_err(ielem) { if (ielem) { ielem.className += ' formerror'; @@ -268,7 +277,7 @@ var dcol = document.createElement('td'); dcol.className = 'systemsTable'; var del_img = document.createElement('img'); - del_img.src = '/luci/delete-row.png'; + del_img.src = 'delete-row.png'; del_img.title = 'delete this row'; del_img.className = 'deleteRow'; del_img.onclick = new Function('delete_element_id(\'' + newrow.id + '\')'); --- conga/luci/homebase/luci_homebase.css 2007/08/09 21:05:28 1.42 +++ conga/luci/homebase/luci_homebase.css 2007/09/25 03:51:21 1.43 @@ -318,23 +318,23 @@ } li.node_fdom { - list-style-image: url(/luci/cluster/small_fdom.png); + list-style-image: url(small_fdom.png); } li.node_active { - list-style-image: url(/luci/cluster/small_node_active.png); + list-style-image: url(small_node_active.png); } li.node_inactive { - list-style-image: url(/luci/cluster/small_node_inactive.png); + list-style-image: url(small_node_inactive.png); } li.node_unknown { - list-style-image: url(/luci/cluster/small_node_unknown.png); + list-style-image: url(small_node_unknown.png); } li.cluster_service { - list-style-image:url(/luci/cluster/small_svc.png); + list-style-image:url(small_svc.png); } strong.node, --- conga/luci/homebase/validate_cluster_add.js 2007/07/27 16:43:47 1.11 +++ conga/luci/homebase/validate_cluster_add.js 2007/09/25 03:51:21 1.12 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = []; --- conga/luci/homebase/validate_cluster_add_initial.js 2007/07/11 22:47:07 1.2 +++ conga/luci/homebase/validate_cluster_add_initial.js 2007/09/25 03:51:21 1.3 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = []; --- conga/luci/homebase/validate_perm.js 2007/07/11 22:47:07 1.3 +++ conga/luci/homebase/validate_perm.js 2007/09/25 03:51:21 1.4 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = []; --- conga/luci/homebase/validate_sys_add.js 2007/07/11 22:47:07 1.2 +++ conga/luci/homebase/validate_sys_add.js 2007/09/25 03:51:21 1.3 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = []; --- conga/luci/homebase/validate_sys_remove.js 2007/07/11 22:47:07 1.4 +++ conga/luci/homebase/validate_sys_remove.js 2007/09/25 03:51:21 1.5 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = []; var selected_clusters = []; --- conga/luci/homebase/validate_user_add.js 2007/07/11 22:47:07 1.4 +++ conga/luci/homebase/validate_user_add.js 2007/09/25 03:51:21 1.5 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = []; --- conga/luci/homebase/validate_user_del.js 2007/07/11 22:47:07 1.3 +++ conga/luci/homebase/validate_user_del.js 2007/09/25 03:51:21 1.4 @@ -1,3 +1,12 @@ +/* +** Copyright (C) 2006-2007 Red Hat, Inc. +** +** This program is free software; you can redistribute +** it and/or modify it under the terms of version 2 of the +** GNU General Public License as published by the +** Free Software Foundation. +*/ + function validateForm(form) { var errors = [];