blob: a1120ae08d4777252ff6af245372f8cf3471c469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
|
/**
* Copyright (c) 2007 Nathan Kinkade
*
* This code is offered under an MIT (X11) license. For more information
* about the terms of this license see the file LICENSE included with this
* software or visit: http://www.opensource.org/licenses/mit-license.php
*/
function validateSearchBox() {
var mySearchString = getElement("searchString");
// reset the bgcolor to white just in case this
// is the second time they have got here without
// having refreshed the page
mySearchString.style.backgroundColor = "#ffffff";
if ( empty(mySearchString.value) ) {
mySearchString.style.backgroundColor = "#efb5b5";
mySearchString.focus();
alert("Please enter at least one search word.");
return false;
} else {
return true;
}
}
//------------------------------------------------------------------//
function validateLoginFields() {
var status = true;
var myUsername = getElement("username");
var myPassword = getElement("password");
// reset the bgcolor to white just in case this
// is the second time they have got here without
// having refreshed the page
myUsername.style.backgroundColor = "#ffffff";
myPassword.style.backgroundColor = "#ffffff";
if ( empty(myPassword.value) ) {
myPassword.style.backgroundColor = "#efb5b5";
myPassword.focus();
status = false;
}
if ( empty(myUsername.value) ) {
myUsername.style.backgroundColor = "#efb5b5";
myUsername.focus();
status = false;
}
if ( status == false ) {
alert("You must enter both a username and password.");
}
return status;
}
//------------------------------------------------------------------//
function validateEditUser(formId) {
var myForm = getElement(formId);
if ( empty(myForm.username.value) ) {
alert("You must specify a login name.");
myForm.username.focus();
return false;
} else {
if ( myForm.username.value.length < 5 ) {
alert("Your login name must be at least 5 characters long.");
myForm.username.focus();
return false;
}
}
if ( ! empty(myForm.password.value) ) {
if ( myForm.password.value.length < 5 ) {
alert("Your password must be at least 5 characters long.");
myForm.password.focus();
return false;
}
}
if ( myForm.password.value != myForm.password2.value ) {
alert("Your passwords do not match.");
myForm.password2.focus();
return false;
}
if ( empty(myForm.age.value) ) {
alert("You must specify an age (even if it's not real).");
myForm.age.focus();
return false;
} else {
if ( isNaN(myForm.age.value) ) {
alert("Your age must be a number.");
myForm.age.focus();
return false;
}
}
}
//------------------------------------------------------------------//
function validateRegisterUser(formId) {
var myForm = getElement(formId);
if ( empty(myForm.username.value) ) {
alert("You must specify a login name.");
myForm.username.focus();
return false;
} else {
if ( myForm.username.value.length < 5 ) {
alert("Your login name must be at least 5 characters long.");
myForm.username.focus();
return false;
}
}
if ( empty(myForm.password.value) ) {
alert("You must specify a password.");
myForm.password.focus();
return false;
} else {
if ( myForm.password.value.length < 5 ) {
alert("Your password must be at least 5 characters long.");
myForm.password.focus();
return false;
}
}
if ( myForm.password.value != myForm.password2.value ) {
alert("Your passwords do not match.");
myForm.password2.focus();
return false;
}
if ( empty(myForm.birthday.value) ) {
alert("You must specify a birthday (even if it's not real).");
return false;
}
if ( myForm.terms.checked != true ) {
alert("You must accept the Terms & Conditions of this site in order to register.");
return false;
}
// make sure that the specified username doesn't already exist
xajax_usernameExists(myForm.username.value);
}
//------------------------------------------------------------------//
function changeQuantitySource(formid, newSource) {
// quantitySource will be either 0 or 1. 0 should be
// a predefined quantity and 1 should be a userdefined
// quantity
getElement(formid).quantitySource[newSource].checked = true;
return true;
}
//------------------------------------------------------------------//
function toggleShowRenameField(selectid,divid) {
var myDiv = getElement(divid);
var mySelectBox = getElement(selectid);
if ( mySelectBox.value == "Rename" ) {
myDiv.style.display = "";
} else {
myDiv.style.display = "none";
}
return true;
}
//------------------------------------------------------------------//
function validateCreateDiary(fieldId) {
if ( empty(getElement("fieldId").value) ) {
alert("You must specify a name for the diary.");
getElement("fieldId").focus();
return false;
} else {
return true;
}
}
//------------------------------------------------------------------//
function validateEditFood(formId) {
var myForm = getElement(formId);
if ( formId == "formEditFood" ) {
var myOldName = myForm.foodDesc.value
} else if ( formId == "formQuickEditFood" ) {
var myOldName = myForm.food.options[myForm.food.selectedIndex].text;
}
if ( myForm.action.value == "Delete" ) {
var msg = "Are you sure you want to permanently delete this saved food?\n\n" + myOldName;
if ( window.confirm(msg) ) {
return true;
} else {
return false;
}
} else if ( myForm.action.value == "Rename") {
if ( empty(myForm.newFoodName.value) ) {
var msg = "You must specify a new name when renaming a saved food.";
alert(msg);
return false;
}
} else if ( myForm.action.value == "Modify") {
// make sure that the description isn't empty
if ( empty(myForm.foodDesc.value) ) {
var msg = "You must specify a description.";
alert(msg);
myForm.foodDesc.focus();
return false;
}
// if they are editing a food, then they have the ability to
// modify the quantity, so make sure that the quantity exists
// and that it's a number
if ( formId == "formEditFood" ) {
if ( ! empty(myForm.quantity.value) ) {
if ( isNaN(myForm.quantity.value) ) {
var msg = "The amount must be a number.";
alert(msg);
myForm.quantity.focus();
return false;
}
} else {
var msg = "You must specify an amount.";
alert(msg);
myForm.quantity.focus();
return false;
}
}
return true;
} else if ( myForm.action.value == "Edit" ) {
return true;
} else {
// there was no recognized action so don't submit the form
var msg = "The action you specified wasn't recognized.";
alert(msg);
return false;
}
}
//------------------------------------------------------------------//
function validateEditMeal(formId) {
var myForm = getElement(formId);
if ( formId == "formEditMeal" ) {
var myOldName = myForm.mealDesc.value
} else if ( formId == "formQuickEditMeal" ) {
var myOldName = myForm.meal.options[myForm.meal.selectedIndex].text;
}
if ( myForm.action.value == "Delete" ) {
var msg = "WARNING: If you choose to remove this recipe it will also be " +
"removed from any diary to which you may have added it. Are you sure you want to " +
"permanently delete this saved recipe?\n\n" + myOldName;
if ( window.confirm(msg) ) {
return true;
} else {
return false;
}
} else if ( myForm.action.value == "Rename") {
if ( empty(myForm.newMealName.value) ) {
var msg = "You must specify a new name when renaming a saved recipe.";
alert(msg);
return false;
}
} else if ( myForm.action.value == "Modify") {
// make sure that the description isn't empty
if ( empty(myForm.mealDesc.value) ) {
var msg = "You must specify a description for the recipe.";
alert(msg);
myForm.mealDesc.focus();
return false;
}
// if they are editing a meal, then they have the ability to
// modify the quantities, so make sure that the quantities exist
// and that they are number
if ( formId == "formEditMeal" ) {
var itemIds = myForm.mealItemIds.value.split(",");
for ( idx = 0; idx < itemIds.length; idx++ ) {
var itemDesc = getElement("mealItemDesc-" + itemIds[idx]).value;
if ( empty(itemDesc) ) {
var msg = "You must specify a description for each recipe item.";
alert(msg);
getElement("mealItemDesc-" + itemIds[idx]).focus();
return false;
}
if ( empty(getElement("mealItemQuantity-" + itemIds[idx]).value) ) {
var msg = "You must specify an amount for recipe item '" + itemDesc + "'.";
alert(msg);
getElement("mealItemQuantity-" + itemIds[idx]).focus();
return false;
} else {
if ( isNaN(getElement("mealItemQuantity-" + itemIds[idx]).value) ) {
var msg = "The amount for recipe item '" + itemDesc + "' must be a number.";
alert(msg);
getElement("mealItemQuantity-" + itemIds[idx]).focus();
return false;
}
}
}
}
return true;
} else if ( myForm.action.value == "Edit" ) {
return true;
} else {
// there was no recognized action so don't submit the form
var msg = "The action you specified wasn't recognized.";
alert(msg);
return false;
}
}
//------------------------------------------------------------------//
function validateEditDiary(formId) {
var myForm = getElement(formId);
var myOldName = myForm.diary.options[myForm.diary.selectedIndex].text;
if ( myForm.action.value == "Delete" ) {
var msg = "Are you sure you want to permanently delete this diary and all of it's content?\nThere is no way to recover the data once it is deleted.\n\n" + myOldName;
if ( window.confirm(msg) ) {
return true;
} else {
return false;
}
} else if ( myForm.action.value == "Rename") {
if ( empty(myForm.newDiaryName.value) ) {
var msg = "You must specify a new name when renaming a diary.";
alert(msg);
myForm.newDiaryName.focus();
return false;
}
} else {
// there was no recognized action so don't submit the form
var msg = "The action you specified wasn't recognized.";
alert(msg);
return false;
}
return true;
}
//------------------------------------------------------------------//
function verifyRemoveCurrentMealItem(mealItem) {
var itemDesc = getElement("currentMealItemDesc-" + mealItem).text;
var msg = "Are you sure you want to remove this item from the current recipe?\n\n" + itemDesc;
if ( window.confirm(msg) ) {
xajax_removeCurrentMealItem(mealItem);
return true;
} else {
return false;
}
}
//------------------------------------------------------------------//
function verifyClearCurrentMeal() {
var msg = "Are you sure you want to clear/reset the entire current recipe?\n";
if ( window.confirm(msg) ) {
xajax_clearCurrentMeal();
return true;
} else {
return false;
}
}
//------------------------------------------------------------------//
function validateAddFood(formId,foodDesc) {
var myForm = getElement(formId);
var myFoodDesc = getElement(foodDesc);
if ( empty(myFoodDesc.value) ) {
var msg = "You must give the food a description.";
myForm.description.focus();
alert(msg);
return false;
}
if ( myForm.action.value == "addFoodToDiary" ) {
if ( empty(myForm.diaryTimestamp.value) ) {
var msg = "You must specify a timestamp.";
alert(msg);
return false;
}
}
return true;
}
//------------------------------------------------------------------//
function validateAddMeal(formId,mealDesc) {
var myForm = getElement(formId);
var myMealDesc = getElement(mealDesc);
if ( empty(myMealDesc.value) ) {
var msg = "You must give the recipe a description.";
myForm.description.focus();
alert(msg);
return false;
}
if ( myForm.action.value == "addMealToDiary" ) {
if ( empty(myForm.diaryTimestamp.value) ) {
var msg = "You must specify a timestamp.";
alert(msg);
return false;
}
}
return true;
}
//------------------------------------------------------------------//
function verifyRemoveMealItem(mealItem) {
var itemDesc = getElement("mealItemDesc-" + mealItem).value;
var msg = "Are you sure you want to permanently delete this item from the recipe?\n\n" + itemDesc;
if ( window.confirm(msg) ) {
xajax_removeMealItem(mealItem);
} else {
return false;
}
}
//------------------------------------------------------------------//
function verifyRemoveDiaryItem(diaryItem) {
var itemDesc = getElement("itemDesc-" + diaryItem).innerHTML;
var msg = "Are you sure that you want to permanently delete this diary item?\n\n" + itemDesc;
if ( window.confirm(msg) ) {
xajax_removeDiaryItem(diaryItem);
} else {
return false;
}
}
//------------------------------------------------------------------//
function loadFoodToEdit(food) {
xajax_loadFoodToEdit(food);
return true;
}
//------------------------------------------------------------------//
function loadMealToEdit(meal) {
xajax_loadMealToEdit(meal);
return true;
}
//------------------------------------------------------------------//
function validateAddDiaryNote(formId) {
var myForm = getElement(formId);
if ( empty(myForm.note.value) ) {
var msg = "You cannot add an empty note.";
myForm.note.focus();
alert(msg);
return false;
}
return true;
}
//------------------------------------------------------------------//
function highlightSysMsgBox() {
getElement("systemMsgs").style.color = "#ffffff";
getElement("systemMsgs").innerHTML = "System messages will appear here.";
}
//------------------------------------------------------------------//
function unhighlightSysMsgBox() {
getElement("systemMsgs").style.color = "#000000";
getElement("systemMsgs").innerHTML = "";
}
|