removing dead files.

This commit is contained in:
Adam Young 2010-10-15 13:09:51 -04:00 committed by Endi Sukma Dewata
parent 4c24581b5c
commit b18af8de3c
2 changed files with 0 additions and 137 deletions

View File

@ -1,25 +0,0 @@
<script type="text/javascript">
$(document).ready(function(){
$("#addEdit").click(addEditUser);
$("#addAnother").click(addAnotherUser);
/*this is a placeholder. We will need to I18N */
$("#content h1").text( "Add a User.");
});
</script>
<div id="buttons">
<span>Add and :</span>
<input id="addEdit" type='button' value="Edit" />
<span>|</span>
<input id="addAnother" type='button' value="Add Another" />
</div>
<h1></h1>
<dl class="entryattrs">
<dt title="login">login</dt>
<dd><input id='login' type='text' value=''/></dd>
<dt title ="firstname">First Name</dt>
<dd><input id='firstname' type='text' value=''/></dd>
<dt title="lastname">Last Name</dt>
<dd><input id='lastname' type='text' value=''/></dd>
</dl>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3c.org/1999/xhtml" lang="en" xml:lang="en"
xmlns:py="http://genshi.edgewall.org/">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery test page for IPA</title>
<link href="ipa.css" rel="stylesheet" type="text/css" />
<script src="jquery.js" type="text/javascript"> </script>
<script src="ipa.js" type="text/javascript"> </script>
<script src="user.js" type="text/javascript"> </script>
<script src="details.js" type="text/javascript"> </script>
</head>
<body onload="load_object(this)">
<div id="view">
<div id="header">
<div id="logo">
<a href="#">
<img src="ipa_logo_180x50.png" />
</a>
</div>
<div id="loggedinas">
Logged in as <a href="user?principal=${context.principal}" py:content="context.principal"> </a>
</div>
</div>
<div id="content">
<h1>Managing user:</h1>
<div id="buttons">
<a href="dummy"><img id="butreset" src="but-reset.png" alt="Reset" /></a>
<a href="dummy"><img id="butupdate" src="but-update.png" alt="Update" /></a>
</div>
<ul id="viewtype">
<li id="viewcaption">View:</li>
<li>
<img src="but-selected.png" alt="" />
Personal Details
</li>
<li>
<img src="but-unselected.png" alt="" />
<a href="memberof?pkey=${pkey}">Memberships</a>
</li>
</ul>
<hr />
<h2 onclick="h2_on_click(this)">&#8722; Identity Details</h2>
<dl id="identity" class="entryattrs">
<dt title="title">Title:</dt>
<dt title="givenname">First Name:</dt>
<dt title="sn">Last Name:</dt>
<dt title="cn">Full Name:</dt>
<dt title="displayname">Display Name:</dt>
<dt title="initials">Initials:</dt>
</dl>
<hr />
<h2 onclick="h2_on_click(this)">&#8722; Account Details</h2>
<dl id="account" class="entryattrs">
<dt title="call_a_status">Account Status:</dt>
<dt title="uid">Login:</dt>
<dt title="call_a_password">Password:</dt>
<dt title="uidnumber">UID:</dt>
<dt title="gidnumber">GID:</dt>
<dt title="homedirectory">Home Directory:</dt>
</dl>
<hr />
<h2 onclick="h2_on_click(this)">&#8722; Contact Details</h2>
<dl id="contact" class="entryattrs">
<dt title="mail">E-mail Address:</dt>
<dt title="call_a_numbers">Numbers:</dt>
</dl>
<hr />
<h2 onclick="h2_on_click(this)">&#8722; Mailing Address</h2>
<dl id="mailing" class="entryattrs">
<dt title="street">Address:</dt>
<dt title="location">City:</dt>
<dt title="call_a_st">State:</dt>
<dt title="postalCode">ZIP:</dt>
</dl>
<hr />
<h2 onclick="h2_on_click(this)">&#8722; Employee Information</h2>
<dl id="employee" class="entryattrs">
<dt title="ou">Org. Unit:</dt>
<dt title="call_a_manager">Manager:</dt>
</dl>
<hr />
<h2 onclick="h2_on_click(this)">&#8722; Misc. Information</h2>
<dl id="misc" class="entryattrs">
<dt title="carlicense">Car License:</dt>
</dl>
<hr />
<div id="backtotop">
<a href="#viewtype">Back to Top</a>
</div>
</div>
</div>
</body>
</html>