<br><hr><b>This page is still under construction!</b><hr><br>
<br>
<h4>Current tasks</h4>
<ul>
<li>Complete pronunciation entries
<li>Build categories backend and frontend
<li>Add copyrights on all pages visible to client
<li>Add css file and begin beautification
<li>Parts of Speech may have a delete button but we have to
prune the dictionary and reset those that match to unknown
<li>For each data editor like parts of speech, add a backup
link to backup.php...and the latter understands this
<li>Create a syncronization button in misses to clear dictionary entries that were entered by hand in the sql file
<li>Build this task project
<li>Build edit dictionary where user can type in a word then see if matches exist. If not then go to insert.php and, if so, then ask if they want to either delete, update word...go to appropriate page for that as well.
<li>Add javascript comments for old browsers in all pages
<li>Force user to change password for default user and password
<li>All all client links for all client pages
<li>Download needs to be resolved...probably just create text file links for non-secured mysql files only
<li>Add bookmark links for parts of speech categories as well as what each category means
<li>stylesheets?
</ul>
<?
?>
</body>
</html>
<?
?>
@
1.11
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: October 17, 2003
d62 2
@
1.10
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: October 05, 2003
d61 3
a63 3
<title>
Bahasa Indonesia Dictionary: Tasks
</title>
d66 2
a67 26
function is_white_space(stoken) {
if (stoken == null) return(true);
if (stoken == '') return(true);
if (stoken == "") return(true);
return(false);
}
function trim(stoken) {
if (is_white_space(stoken)) {
return(stoken);
}
stoken = stoken.replace(/^\s*/, "");
stoken = stoken.replace(/\s*&/, "");
return(stoken);
}
d70 1
d72 2
a73 1
@
1.9
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: September 30, 2003
d100 3
a102 1
<h2>Bahasa Indonesia Dictionary: Tasks</h2>
@
1.8
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: September 05, 2003
d41 1
a41 1
if (!session_is_registered("ADMIN")) {
@
1.7
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: September 04, 2003
a57 2
d106 4
a113 2
<li>Build a alphabet edit page
<li>Build a pronunciation edit page
a115 1
<li>Build categories backend and frontend
@
1.6
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: September 03, 2003
a107 4
<li>The backup files should allow for multiple select
select multiple size="some value"
<br>Also apply uniqid for it!
<hr>
@
1.5
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: September 02, 2003
a105 7
<h4>What it will do</h4>
<ul>
<li>Add a new task
<li>Modify an existing task
<li>Delete an existing task
</ul>
<hr>
a107 2
<li>Admin.php should use loop to delete NODUPS
<li>Change insert textarea to textboxes
d109 7
a115 5
<li>Make requests like misses
<li>Fix parts of speech to show expanded created/modified
<li>I may add a delete button as well but then the dictionary will have to be pruned for those entries and reset to unknown
<li>Add a backup link for parts of speech
@
1.4
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: August 31, 2003
d115 5
a124 1
<li>Make requests like misses
a129 1
<li>The backup files should allow for multiple select
@
1.3
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: August 29, 2003
a114 1
<li>Finish check_for_duplicates (frontend)
a120 1
<li>Automatically delete entries from missed tables when updates and inserts are made
a128 1
<li>Eliminate super user for administrator...what's the point and is confusing!
@
1.2
log
@*** empty log message ***
@
text
@d12 1
a12 1
// Modified: August 19, 2003
d64 1
a64 1
Bahasa Indonesia Dictionary: Change Password
a95 70
var name = document.change_password.name.value;
name = trim(name);
if (is_white_space(name)) {
alert("You must enter your name.");
document.change_password.name.focus();
return(false);
}
var old_password = document.change_password.old_password.value;
if (is_white_space(old_password)) {
alert("You must enter your old password.");
document.change_password.old_password.focus();
return(false);
}
var new_password = document.change_password.new_password.value;
if (is_white_space(new_password)) {
alert("You must enter a new password.");
document.change_password.new_password.focus();
return(false);
}
if ((new_password.length < 5) || (new_password.length > 50)) {
alert(
"The new password value must 5-50 characters in length!");