From: rmccabe@sourceware.org <rmccabe@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] conga/luci/homebase form-macros homebase_common.js
Date: 22 Sep 2006 18:22:40 -0000 [thread overview]
Message-ID: <20060922182240.19400.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2006-09-22 18:22:39
Modified files:
luci/homebase : form-macros homebase_common.js
Log message:
try to keep browers from asking to remember passwords
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/form-macros.diff?cvsroot=cluster&r1=1.35&r2=1.36
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/homebase_common.js.diff?cvsroot=cluster&r1=1.10&r2=1.11
--- conga/luci/homebase/form-macros 2006/09/05 21:25:45 1.35
+++ conga/luci/homebase/form-macros 2006/09/22 18:22:39 1.36
@@ -1,7 +1,7 @@
<html>
<tal:comment replace="nothing">
- $Id: form-macros,v 1.35 2006/09/05 21:25:45 rmccabe Exp $
+ $Id: form-macros,v 1.36 2006/09/22 18:22:39 rmccabe Exp $
</tal:comment>
<head>
@@ -13,9 +13,9 @@
<tal:comment replace="nothing">
-!###########################
-# ENTRY FORM #
-############################
+!############################
+# ENTRY FORM #
+#############################
</tal:comment>
@@ -29,9 +29,9 @@
</div>
<tal:comment replace="nothing">
-!###########################
-# USER DELETE FORM #
-############################
+!############################
+# USER DELETE FORM #
+#############################
</tal:comment>
<div metal:define-macro="user-del-form">
@@ -85,9 +85,9 @@
<tal:comment replace="nothing">
-!###########################
-# USER ADD FORM #
-############################
+!############################
+# USER ADD FORM #
+#############################
</tal:comment>
@@ -117,13 +117,17 @@
<tr class="hbAddUser">
<td class="hbAddUser">Password</td>
<td class="hbAddUser">
- <input class="hbInputPasswd" name="newPassword" type="password" />
+ <input class="hbInputPasswd" type="password"
+ name="newPassword" autocomplete="off" />
</td>
</tr>
<tr class="hbAddUser">
<td class="hbAddUser">Confirm Password</td>
- <td class="hbAddUser"><input class="hbInputPasswd" name="newPasswordConfirm" type="password" /></td>
+ <td class="hbAddUser">
+ <input class="hbInputPasswd" type="password"
+ name="newPasswordConfirm" autocomplete="off" />
+ </td>
</tr>
</table>
@@ -144,9 +148,9 @@
<tal:comment replace="nothing">
-!###########################
-# PERMISSIONS FORM #
-############################
+!############################
+# PERMISSIONS FORM #
+#############################
</tal:comment>
@@ -254,9 +258,9 @@
<tal:comment replace="nothing">
-!###########################
-# SYSTEM DELETE FORM #
-############################
+!############################
+# SYSTEM DELETE FORM #
+#############################
</tal:comment>
@@ -361,9 +365,9 @@
<tal:comment replace="nothing">
-!###########################
-# SYSTEM ADD FORM #
-############################
+!############################
+# SYSTEM ADD FORM #
+#############################
</tal:comment>
@@ -417,10 +421,14 @@
<tbody class="systemsTable">
<tr class="systemsTable">
<td class="systemsTable">
- <input class="hbInputSys" type="text" id="__SYSTEM0:Addr" name="__SYSTEM0:Addr" />
+ <input class="hbInputSys" type="text"
+ id="__SYSTEM0:Addr" name="__SYSTEM0:Addr" />
</td>
<td class="systemsTable">
- <input type="password" id="__SYSTEM0:Passwd" name="__SYSTEM0:Passwd" class="hbInputPass" onChange="pwd0Change(adminform);" />
+ <input type="password" autocomplete="off"
+ id="__SYSTEM0:Passwd" name="__SYSTEM0:Passwd"
+ class="hbInputPass"
+ onChange="pwd0Change(adminform);" />
</td>
</tr>
</tbody>
@@ -436,9 +444,9 @@
<tal:comment>
-!###########################
-# CLUSTER ADD FORM #
-############################
+!############################
+# CLUSTER ADD FORM #
+#############################
</tal:comment>
@@ -586,10 +594,13 @@
<tbody class="systemsTable">
<tr class="systemsTable">
<td class="systemsTable">
- <input class="hbInputSys" type="text" id="__SYSTEM0:Addr" name="__SYSTEM0:Addr" />
+ <input class="hbInputSys" type="text"
+ id="__SYSTEM0:Addr" name="__SYSTEM0:Addr" />
</td>
<td class="systemsTable">
- <input type="password" id="__SYSTEM0:Passwd" name="__SYSTEM0:Passwd" class="hbInputPass" />
+ <input type="password" autocomplete="off"
+ id="__SYSTEM0:Passwd" name="__SYSTEM0:Passwd"
+ class="hbInputPass" />
</td>
</tr>
</tbody>
--- conga/luci/homebase/homebase_common.js 2006/09/14 21:24:25 1.10
+++ conga/luci/homebase/homebase_common.js 2006/09/22 18:22:39 1.11
@@ -141,6 +141,7 @@
newsysp.setAttribute('id', '__SYSTEM' + num_systems + ':Passwd');
newsysp.setAttribute('type', 'password');
newsysp.setAttribute('value', '');
+ newsysp.setAttribute('autocomplete', 'off');
var allSameCB = document.getElementById('allSameCheckBox');
if (allSameCB && allSameCB.checked) {
reply other threads:[~2006-09-22 18:22 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060922182240.19400.qmail@sourceware.org \
--to=rmccabe@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.