Mercurial > laserkard
changeset 49:5eb11cf654de laserkard
[svn r50] implemented max text length
author | rlm |
---|---|
date | Sun, 31 Jan 2010 21:37:24 -0500 |
parents | b2a11435a89b |
children | 1b5417799713 |
files | awesome_js/robert.js log/error_log.log paypal/basic_acrylic_clear.paylist paypal/basic_acrylic_green.paylist paypal/big_acrylic_clear.paylist paypal/big_acrylic_green.paylist paypal/classic_acrylic_clear.paylist paypal/classic_acrylic_green.paylist paypal/generate_paylists.pm paypal/lines_acrylic_clear.paylist paypal/lines_acrylic_green.paylist |
diffstat | 11 files changed, 39 insertions(+), 38 deletions(-) [+] |
line wrap: on
line diff
1.1 --- a/awesome_js/robert.js Sun Jan 31 20:26:16 2010 -0500 1.2 +++ b/awesome_js/robert.js Sun Jan 31 21:37:24 2010 -0500 1.3 @@ -229,7 +229,7 @@ 1.4 smallRedraw("arrow","Company"); 1.5 1.6 1.7 -d_lineArt = raphe.path("M 2 272 L 258 272"); 1.8 +d_lineArt = raphe.path("M 4 272 L 258 272"); 1.9 d_lineArt.attr('stroke', '#fefefe'); 1.10 1.11 }
2.1 --- a/log/error_log.log Sun Jan 31 20:26:16 2010 -0500 2.2 +++ b/log/error_log.log Sun Jan 31 21:37:24 2010 -0500 2.3 @@ -345,3 +345,4 @@ 2.4 [Sun Jan 31 19:20:45 2010] [error] [client 18.56.0.175] File does not exist: /home/rlm/Desktop/web/laserkard/images/or_sm.jpg, referer: http://laserkard.rlmcintyre.com/ 2.5 [Sun Jan 31 19:21:15 2010] [error] [client 18.56.0.175] File does not exist: /home/rlm/Desktop/web/laserkard/images/gr_sm.jpg, referer: http://laserkard.rlmcintyre.com/ 2.6 [Sun Jan 31 19:36:22 2010] [error] [client 18.56.0.175] File does not exist: /home/rlm/Desktop/web/laserkard/images/gr_sm.jpg, referer: http://laserkard.rlmcintyre.com/ 2.7 +[Sun Jan 31 21:34:59 2010] [error] [client 146.23.68.40] File does not exist: /home/rlm/Desktop/web/laserkard/favicon.ico
3.1 --- a/paypal/basic_acrylic_clear.paylist Sun Jan 31 20:26:16 2010 -0500 3.2 +++ b/paypal/basic_acrylic_clear.paylist Sun Jan 31 21:37:24 2010 -0500 3.3 @@ -105,7 +105,7 @@ 3.4 <!-- Start of Text Input Fields --> 3.5 <br> 3.6 Name: <br> 3.7 -<input type="text" name="line_1b" size="20" id="Name" 3.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Name" 3.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Name');smallRedraw('arrow', 'Name');" 3.10 3.11 > 3.12 @@ -113,7 +113,7 @@ 3.13 <br> 3.14 <br> 3.15 Company: <br> 3.16 -<input type="text" name="line_2b" size="20" id="Company" 3.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Company" 3.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Company');smallRedraw('arrow', 'Company');" 3.19 3.20 > 3.21 @@ -121,7 +121,7 @@ 3.22 <br> 3.23 <br> 3.24 Occupation: <br> 3.25 -<input type="text" name="line_3b" size="20" id="Occupation" 3.26 +<input type="text" MAXLENGTH = 30 name="line_3b" size="20" id="Occupation" 3.27 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Occupation');smallRedraw('arrow', 'Occupation');" 3.28 3.29 > 3.30 @@ -129,7 +129,7 @@ 3.31 <br> 3.32 <br> 3.33 Email: <br> 3.34 -<input type="text" name="line_4b" size="20" id="Email" 3.35 +<input type="text" MAXLENGTH = 30 name="line_4b" size="20" id="Email" 3.36 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Email');smallRedraw('arrow', 'Email');" 3.37 3.38 >
4.1 --- a/paypal/basic_acrylic_green.paylist Sun Jan 31 20:26:16 2010 -0500 4.2 +++ b/paypal/basic_acrylic_green.paylist Sun Jan 31 21:37:24 2010 -0500 4.3 @@ -105,7 +105,7 @@ 4.4 <!-- Start of Text Input Fields --> 4.5 <br> 4.6 Line 1: <br> 4.7 -<input type="text" name="line_1b" size="20" id="Line 1" 4.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Line 1" 4.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 1');smallRedraw('', 'Line 1');" 4.10 4.11 > 4.12 @@ -113,7 +113,7 @@ 4.13 <br> 4.14 <br> 4.15 Line 2: <br> 4.16 -<input type="text" name="line_2b" size="20" id="Line 2" 4.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Line 2" 4.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 2');smallRedraw('', 'Line 2');" 4.19 4.20 > 4.21 @@ -121,7 +121,7 @@ 4.22 <br> 4.23 <br> 4.24 Line 3: <br> 4.25 -<input type="text" name="line_3b" size="20" id="Line 3" 4.26 +<input type="text" MAXLENGTH = 30 name="line_3b" size="20" id="Line 3" 4.27 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 3');smallRedraw('', 'Line 3');" 4.28 4.29 > 4.30 @@ -129,7 +129,7 @@ 4.31 <br> 4.32 <br> 4.33 Line 4: <br> 4.34 -<input type="text" name="line_4b" size="20" id="Line 4" 4.35 +<input type="text" MAXLENGTH = 30 name="line_4b" size="20" id="Line 4" 4.36 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 4');smallRedraw('', 'Line 4');" 4.37 4.38 >
5.1 --- a/paypal/big_acrylic_clear.paylist Sun Jan 31 20:26:16 2010 -0500 5.2 +++ b/paypal/big_acrylic_clear.paylist Sun Jan 31 21:37:24 2010 -0500 5.3 @@ -105,7 +105,7 @@ 5.4 <!-- Start of Text Input Fields --> 5.5 <br> 5.6 Name: <br> 5.7 -<input type="text" name="line_1b" size="20" id="Name" 5.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Name" 5.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Name');smallRedraw('bold', 'Name');" 5.10 5.11 > 5.12 @@ -113,7 +113,7 @@ 5.13 <br> 5.14 <br> 5.15 Email: <br> 5.16 -<input type="text" name="line_2b" size="20" id="Email" 5.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Email" 5.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Email');smallRedraw('bold', 'Email');" 5.19 5.20 >
6.1 --- a/paypal/big_acrylic_green.paylist Sun Jan 31 20:26:16 2010 -0500 6.2 +++ b/paypal/big_acrylic_green.paylist Sun Jan 31 21:37:24 2010 -0500 6.3 @@ -105,7 +105,7 @@ 6.4 <!-- Start of Text Input Fields --> 6.5 <br> 6.6 Line 1: <br> 6.7 -<input type="text" name="line_1b" size="20" id="Line 1" 6.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Line 1" 6.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 1');smallRedraw('', 'Line 1');" 6.10 6.11 > 6.12 @@ -113,7 +113,7 @@ 6.13 <br> 6.14 <br> 6.15 Line 2: <br> 6.16 -<input type="text" name="line_2b" size="20" id="Line 2" 6.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Line 2" 6.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 2');smallRedraw('', 'Line 2');" 6.19 6.20 >
7.1 --- a/paypal/classic_acrylic_clear.paylist Sun Jan 31 20:26:16 2010 -0500 7.2 +++ b/paypal/classic_acrylic_clear.paylist Sun Jan 31 21:37:24 2010 -0500 7.3 @@ -105,7 +105,7 @@ 7.4 <!-- Start of Text Input Fields --> 7.5 <br> 7.6 Email: <br> 7.7 -<input type="text" name="line_1b" size="20" id="Email" 7.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Email" 7.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Email');smallRedraw('classic', 'Email');" 7.10 7.11 > 7.12 @@ -113,7 +113,7 @@ 7.13 <br> 7.14 <br> 7.15 Phone: <br> 7.16 -<input type="text" name="line_2b" size="20" id="Phone" 7.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Phone" 7.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Phone');smallRedraw('classic', 'Phone');" 7.19 7.20 > 7.21 @@ -121,7 +121,7 @@ 7.22 <br> 7.23 <br> 7.24 Name: <br> 7.25 -<input type="text" name="line_3b" size="20" id="Name" 7.26 +<input type="text" MAXLENGTH = 30 name="line_3b" size="20" id="Name" 7.27 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Name');smallRedraw('classic', 'Name');" 7.28 7.29 > 7.30 @@ -129,7 +129,7 @@ 7.31 <br> 7.32 <br> 7.33 Company: <br> 7.34 -<input type="text" name="line_4b" size="20" id="Company" 7.35 +<input type="text" MAXLENGTH = 30 name="line_4b" size="20" id="Company" 7.36 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Company');smallRedraw('classic', 'Company');" 7.37 7.38 > 7.39 @@ -137,7 +137,7 @@ 7.40 <br> 7.41 <br> 7.42 Occupation: <br> 7.43 -<input type="text" name="line_5b" size="20" id="Occupation" 7.44 +<input type="text" MAXLENGTH = 30 name="line_5b" size="20" id="Occupation" 7.45 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Occupation');smallRedraw('classic', 'Occupation');" 7.46 7.47 > 7.48 @@ -145,7 +145,7 @@ 7.49 <br> 7.50 <br> 7.51 Website: <br> 7.52 -<input type="text" name="line_6b" size="20" id="Website" 7.53 +<input type="text" MAXLENGTH = 30 name="line_6b" size="20" id="Website" 7.54 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Website');smallRedraw('classic', 'Website');" 7.55 7.56 >
8.1 --- a/paypal/classic_acrylic_green.paylist Sun Jan 31 20:26:16 2010 -0500 8.2 +++ b/paypal/classic_acrylic_green.paylist Sun Jan 31 21:37:24 2010 -0500 8.3 @@ -105,7 +105,7 @@ 8.4 <!-- Start of Text Input Fields --> 8.5 <br> 8.6 Line 1: <br> 8.7 -<input type="text" name="line_1b" size="20" id="Line 1" 8.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Line 1" 8.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 1');smallRedraw('', 'Line 1');" 8.10 8.11 > 8.12 @@ -113,7 +113,7 @@ 8.13 <br> 8.14 <br> 8.15 Line 2: <br> 8.16 -<input type="text" name="line_2b" size="20" id="Line 2" 8.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Line 2" 8.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 2');smallRedraw('', 'Line 2');" 8.19 8.20 > 8.21 @@ -121,7 +121,7 @@ 8.22 <br> 8.23 <br> 8.24 Line 3: <br> 8.25 -<input type="text" name="line_3b" size="20" id="Line 3" 8.26 +<input type="text" MAXLENGTH = 30 name="line_3b" size="20" id="Line 3" 8.27 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 3');smallRedraw('', 'Line 3');" 8.28 8.29 > 8.30 @@ -129,7 +129,7 @@ 8.31 <br> 8.32 <br> 8.33 Line 4: <br> 8.34 -<input type="text" name="line_4b" size="20" id="Line 4" 8.35 +<input type="text" MAXLENGTH = 30 name="line_4b" size="20" id="Line 4" 8.36 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 4');smallRedraw('', 'Line 4');" 8.37 8.38 > 8.39 @@ -137,7 +137,7 @@ 8.40 <br> 8.41 <br> 8.42 Line 5: <br> 8.43 -<input type="text" name="line_5b" size="20" id="Line 5" 8.44 +<input type="text" MAXLENGTH = 30 name="line_5b" size="20" id="Line 5" 8.45 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 5');smallRedraw('', 'Line 5');" 8.46 8.47 > 8.48 @@ -145,7 +145,7 @@ 8.49 <br> 8.50 <br> 8.51 Side: <br> 8.52 -<input type="text" name="line_6b" size="20" id="Side" 8.53 +<input type="text" MAXLENGTH = 30 name="line_6b" size="20" id="Side" 8.54 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Side');smallRedraw('', 'Side');" 8.55 8.56 >
9.1 --- a/paypal/generate_paylists.pm Sun Jan 31 20:26:16 2010 -0500 9.2 +++ b/paypal/generate_paylists.pm Sun Jan 31 21:37:24 2010 -0500 9.3 @@ -136,7 +136,7 @@ 9.4 $start = <<OHYEAH; 9.5 <br> 9.6 PERL::OPT: <br> 9.7 -<input type="text" name="line_PERL::NUMb" size="20" id="PERL::OPT" 9.8 +<input type="text" MAXLENGTH = 30 name="line_PERL::NUMb" size="20" id="PERL::OPT" 9.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('PERL::OPT');smallRedraw('PERL::SHORT', 'PERL::OPT');" 9.10 9.11 >
10.1 --- a/paypal/lines_acrylic_clear.paylist Sun Jan 31 20:26:16 2010 -0500 10.2 +++ b/paypal/lines_acrylic_clear.paylist Sun Jan 31 21:37:24 2010 -0500 10.3 @@ -105,7 +105,7 @@ 10.4 <!-- Start of Text Input Fields --> 10.5 <br> 10.6 Name: <br> 10.7 -<input type="text" name="line_1b" size="20" id="Name" 10.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Name" 10.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Name');smallRedraw('direct', 'Name');" 10.10 10.11 > 10.12 @@ -113,7 +113,7 @@ 10.13 <br> 10.14 <br> 10.15 Occupation: <br> 10.16 -<input type="text" name="line_2b" size="20" id="Occupation" 10.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Occupation" 10.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Occupation');smallRedraw('direct', 'Occupation');" 10.19 10.20 > 10.21 @@ -121,7 +121,7 @@ 10.22 <br> 10.23 <br> 10.24 Company: <br> 10.25 -<input type="text" name="line_3b" size="20" id="Company" 10.26 +<input type="text" MAXLENGTH = 30 name="line_3b" size="20" id="Company" 10.27 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Company');smallRedraw('direct', 'Company');" 10.28 10.29 > 10.30 @@ -129,7 +129,7 @@ 10.31 <br> 10.32 <br> 10.33 Phone: <br> 10.34 -<input type="text" name="line_4b" size="20" id="Phone" 10.35 +<input type="text" MAXLENGTH = 30 name="line_4b" size="20" id="Phone" 10.36 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Phone');smallRedraw('direct', 'Phone');" 10.37 10.38 > 10.39 @@ -137,7 +137,7 @@ 10.40 <br> 10.41 <br> 10.42 Email: <br> 10.43 -<input type="text" name="line_5b" size="20" id="Email" 10.44 +<input type="text" MAXLENGTH = 30 name="line_5b" size="20" id="Email" 10.45 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Email');smallRedraw('direct', 'Email');" 10.46 10.47 > 10.48 @@ -145,7 +145,7 @@ 10.49 <br> 10.50 <br> 10.51 Website: <br> 10.52 -<input type="text" name="line_6b" size="20" id="Website" 10.53 +<input type="text" MAXLENGTH = 30 name="line_6b" size="20" id="Website" 10.54 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Website');smallRedraw('direct', 'Website');" 10.55 10.56 >
11.1 --- a/paypal/lines_acrylic_green.paylist Sun Jan 31 20:26:16 2010 -0500 11.2 +++ b/paypal/lines_acrylic_green.paylist Sun Jan 31 21:37:24 2010 -0500 11.3 @@ -105,7 +105,7 @@ 11.4 <!-- Start of Text Input Fields --> 11.5 <br> 11.6 Line 1: <br> 11.7 -<input type="text" name="line_1b" size="20" id="Line 1" 11.8 +<input type="text" MAXLENGTH = 30 name="line_1b" size="20" id="Line 1" 11.9 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 1');smallRedraw('', 'Line 1');" 11.10 11.11 > 11.12 @@ -113,7 +113,7 @@ 11.13 <br> 11.14 <br> 11.15 Line 2: <br> 11.16 -<input type="text" name="line_2b" size="20" id="Line 2" 11.17 +<input type="text" MAXLENGTH = 30 name="line_2b" size="20" id="Line 2" 11.18 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 2');smallRedraw('', 'Line 2');" 11.19 11.20 > 11.21 @@ -121,7 +121,7 @@ 11.22 <br> 11.23 <br> 11.24 Line 3: <br> 11.25 -<input type="text" name="line_3b" size="20" id="Line 3" 11.26 +<input type="text" MAXLENGTH = 30 name="line_3b" size="20" id="Line 3" 11.27 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 3');smallRedraw('', 'Line 3');" 11.28 11.29 > 11.30 @@ -129,7 +129,7 @@ 11.31 <br> 11.32 <br> 11.33 Line 4: <br> 11.34 -<input type="text" name="line_4b" size="20" id="Line 4" 11.35 +<input type="text" MAXLENGTH = 30 name="line_4b" size="20" id="Line 4" 11.36 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 4');smallRedraw('', 'Line 4');" 11.37 11.38 > 11.39 @@ -137,7 +137,7 @@ 11.40 <br> 11.41 <br> 11.42 Line 5: <br> 11.43 -<input type="text" name="line_5b" size="20" id="Line 5" 11.44 +<input type="text" MAXLENGTH = 30 name="line_5b" size="20" id="Line 5" 11.45 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 5');smallRedraw('', 'Line 5');" 11.46 11.47 > 11.48 @@ -145,7 +145,7 @@ 11.49 <br> 11.50 <br> 11.51 Line 6: <br> 11.52 -<input type="text" name="line_6b" size="20" id="Line 6" 11.53 +<input type="text" MAXLENGTH = 30 name="line_6b" size="20" id="Line 6" 11.54 ONFOCUS="clearDefault(this);" onKeyUp="stabForm('Line 6');smallRedraw('', 'Line 6');" 11.55 11.56 >