# HG changeset patch # User rlm # Date 1264408928 18000 # Node ID 1ac1409ea68c5cce78bb6f86c479dae05950452b # Parent 8b3b5753ad41cafb4491d7093e4abbeb65542864 [svn r41] implemented dynamic text. diff -r 8b3b5753ad41 -r 1ac1409ea68c awesome_js/robert.js --- a/awesome_js/robert.js Sun Jan 24 15:06:22 2010 -0500 +++ b/awesome_js/robert.js Mon Jan 25 03:42:08 2010 -0500 @@ -1,18 +1,9 @@ -var robert = (function process() -{ -// Creates canvas 320 × 200 at 10, 50 -var paper = Raphael(10, 50, 320, 200); +window.Robert = (function () { -// Creates circle at x = 50, y = 40, with radius 10 -var circle = paper.circle(50, 40, 10); -// Sets the fill attribute of the circle to red (#f00) -circle.attr("fill", "#f00"); -// Sets the stroke attribute of the circle to white -circle.attr("stroke", "#fff"); +var separator = /[, ]+/, + elements = /^(circle|rect|path|ellipse|text|image)$/, -} -) - +Paper = function () {}, diff -r 8b3b5753ad41 -r 1ac1409ea68c buy.html --- a/buy.html Sun Jan 24 15:06:22 2010 -0500 +++ b/buy.html Mon Jan 25 03:42:08 2010 -0500 @@ -10,7 +10,7 @@ - + @@ -52,22 +52,8 @@
PERL-REPLACE::DISPLAY
- - @@ -94,8 +80,272 @@ + + + + + + diff -r 8b3b5753ad41 -r 1ac1409ea68c buy.pl --- a/buy.pl Sun Jan 24 15:06:22 2010 -0500 +++ b/buy.pl Mon Jan 25 03:42:08 2010 -0500 @@ -84,27 +84,59 @@ { $all = shift; -$all =~ m/_(.*)/; +$all =~ m/([^_]*)_(.*)/; -$materialcolor = $1; +$materialcolor = $2; +$style = $1; +#here is where we handle important drawing commands relating to the cards. + $r = <
Select Style.
-
+ + +
+ -
- -
+ +
+ - + +
+ + + + +
HERE +%shankHash = +( + +big => template2, +basic => template3, +classic => template1, +lines => template4 +); + +$target = $shankHash{$style}; + + + + +#$r =~ s/inputbox\(\['$target'\], \['inputbox'\]\)\;//; + + + + + return $r; } @@ -157,9 +189,23 @@ $all = shift; - + #~ + #~ $t = < + #~ + #~
+#~ +#~ + #~
+ #~ +#~ HERE +#~ +#~ +#~ +#~ $t =~ s/PERL::PIC/$all/g; + $t = < +
@@ -167,12 +213,6 @@
HERE - - - -$t =~ s/PERL::PIC/$all/g; - - return $t; @@ -197,13 +237,15 @@ + + $a =~ s/PERL-REPLACE::TOP_MENU/$b/; #equivalent to , but in perl and with more memory problems :) $b = &material("void_acrylic_clear",1); $a =~ s/PERL-REPLACE::MATERIALS/$b/; #let's do it again!!! :) $b = &template("big_acrylic_clear"); -#$a =~ s/PERL-REPLACE::TEMPLATES//; -$a =~ s/PERL-REPLACE::TEMPLATES/$b/; #comment out one or the other! + +$a =~ s/PERL-REPLACE::TEMPLATES/$b/; $b = &display("big_acrylic_clear"); $a =~ s/PERL-REPLACE::DISPLAY/$b/; diff -r 8b3b5753ad41 -r 1ac1409ea68c buycode.js --- a/buycode.js Sun Jan 24 15:06:22 2010 -0500 +++ b/buycode.js Mon Jan 25 03:42:08 2010 -0500 @@ -74,6 +74,15 @@ else des = des + ", " + val; } +function verify(obj1){ + if (!obj1.accept.checked){ + alert ("Please approve the design & content."); + + return false; + } +} + + function ReadForm (obj1, tst) { @@ -81,11 +90,7 @@ - if (!obj1.accept.checked){ - alert ("Please approve the design & content."); - return false; - } - + if(obj1.accept.checked) {vanish(['args__go'],['vanish']);} @@ -207,4 +212,11 @@ obj1.item_name.value = des; obj1.amount.value = Dollar (amt); if (obj1.tot) obj1.tot.value = "$" + Dollar (amt); + + if (!obj1.accept.checked){ + + return false; + } + + } diff -r 8b3b5753ad41 -r 1ac1409ea68c defaults/arrow-default.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/defaults/arrow-default.js Mon Jan 25 03:42:08 2010 -0500 @@ -0,0 +1,18 @@ +if(typeof alias != 'undefined' && typeof email != 'undefined' ) +{ +alias.remove(); +email.remove(); +} + +alias = raphe.print(10, 150, 'Fuck', raphe.getFont('HelveticaNeue', 700), 75); + + +alias.attr('stroke', 'red'); +alias.attr('fill', 'none'); + +email = raphe.print(270, 270, 'ARROWWW bitches', raphe.getFont('HelveticaNeue', 700), 25); + + +email.attr('stroke', 'red'); +email.attr('fill', 'none'); + diff -r 8b3b5753ad41 -r 1ac1409ea68c defaults/bold-default.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/defaults/bold-default.js Mon Jan 25 03:42:08 2010 -0500 @@ -0,0 +1,17 @@ +if(typeof alias != 'undefined' && typeof email != 'undefined' ) +{ +alias.remove(); +email.remove(); +} + +alias = raphe.print(10, 150, 'James Bond', raphe.getFont('HelveticaNeue', 700), 75); + + +alias.attr('stroke', 'red'); +alias.attr('fill', 'none'); + +email = raphe.print(270, 270, 'jbond@mi6.co.uk', raphe.getFont('HelveticaNeue', 700), 25); + + +email.attr('stroke', 'red'); +email.attr('fill', 'none'); diff -r 8b3b5753ad41 -r 1ac1409ea68c defaults/classic-default.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/defaults/classic-default.js Mon Jan 25 03:42:08 2010 -0500 @@ -0,0 +1,1 @@ + diff -r 8b3b5753ad41 -r 1ac1409ea68c defaults/direct-default.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/defaults/direct-default.js Mon Jan 25 03:42:08 2010 -0500 @@ -0,0 +1,1 @@ + diff -r 8b3b5753ad41 -r 1ac1409ea68c echo.pl --- a/echo.pl Sun Jan 24 15:06:22 2010 -0500 +++ b/echo.pl Mon Jan 25 03:42:08 2010 -0500 @@ -13,7 +13,7 @@ use Data::Dumper; $Data::Dumper::Indent = 1; use Storable; - +use SVG; my $q = new CGI; @@ -68,11 +68,12 @@ my $svg = $_[0]; my $destination = 'rlm@mit.edu'; -#~ $svg =~ s/XMLin($sss, ForceArray => 1); + + +my %data = %$data; + +my %juzz = +( + +path => $data{'path'}, +rect => $data{'rect'}, +width =>"16in" , +height =>"12in" , +version =>"1.1", +xmlns =>"http://www.w3.org/2000/svg" + +); + + + + +#print Dumper(%juzz); + + +my $svg= SVG->new(width=>"18in",height=>"12in"); + +#print Dumper($juzz{'path'}[2]); +#print "\n***************************\n"; +#print Dumper($pathData); + + + + +my $base = "scale(0.6057),matrix(1 0 0 -1 0 317), rotate(180),translate(-514,-317)"; + + +my @cardCollection; + +for $name(0..21) #22 letters for 22 cards +{ + + #calcuate the thing's place in the grid: + + $cardsToARow = 5; + $cardsToAColumn = 5; + + my $row = int($name/$cardsToARow); # cards to a row + my $column = int($name % $cardsToAColumn); + + $margin = 25; + $cardWidth = 514*0.6057; + $cardHeight = 317*0.6057; + + + $transX = 40 + ($margin + $cardWidth ) * $column; + $transY = 40 + ($margin + $cardHeight) * $row; + + + + ${"group_".$name} = + $svg->group( + id => "group_".$name, + transform => "translate($transX,$transY),"."$base" + ); + + push @cardCollection, ${"group_".$name}; +} + + + + + + + + +for ($i = 0; $i <= $#cardCollection; $i++) +{ + +for $pathData(@{$juzz{'path'}}) +{ +$cardCollection[$i]->tag('path', %{$pathData}); +} + +for $pathData(@{$juzz{'rect'}}) +{ +$cardCollection[$i]->tag('rect', %{$pathData}); +} + + +} + + + +#my $tag = $svg->tag('path', $juzz{'path'}); + + +#$tag = $svg->group(%attributes); + + +$output = $svg->xmlify; + + +$killCopyrigt = < +HERE + +$output =~ s/$killCopyrigt/\n/; + +return $output; + + + +} + + sub repair_file { diff -r 8b3b5753ad41 -r 1ac1409ea68c images/display/blank.jpg Binary file images/display/blank.jpg has changed diff -r 8b3b5753ad41 -r 1ac1409ea68c log/error_log.log --- a/log/error_log.log Sun Jan 24 15:06:22 2010 -0500 +++ b/log/error_log.log Mon Jan 25 03:42:08 2010 -0500 @@ -15,3 +15,49 @@ [Sun Jan 24 10:39:05 2010] [error] [client 18.238.1.90] Problem with code: , referer: http://laserkard.rlmcintyre.com/echo.pl [Sun Jan 24 10:39:05 2010] [error] [client 18.238.1.90] not well-formed (invalid token) at line 4, column 85, byte 88 at /usr/lib/perl5/XML/Parser.pm line 187, referer: http://laserkard.rlmcintyre.com/echo.pl [Sun Jan 24 10:39:05 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/echo.pl +[Mon Jan 25 00:50:15 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/favicon.ico +[Mon Jan 25 00:50:18 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/favicon.ico +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] Scalar found where operator expected at /home/rlm/Desktop/web/laserkard/buy.pl line 95, near "$1, referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] #here is where we handle important drawing commands relating to the cards., referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] \t, referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] $r", referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] \t(Missing semicolon on previous line?), referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] syntax error at /home/rlm/Desktop/web/laserkard/buy.pl line 95, near "$1, referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] #here is where we handle important drawing commands relating to the cards., referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] \t, referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] $r ", referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] Execution of /home/rlm/Desktop/web/laserkard/buy.pl aborted due to compilation errors., referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:36 2010] [error] [client 18.238.1.90] Premature end of script headers: buy.pl, referer: http://laserkard.rlmcintyre.com/ +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] Scalar found where operator expected at /home/rlm/Desktop/web/laserkard/buy.pl line 95, near "$1, referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] #here is where we handle important drawing commands relating to the cards., referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] \t, referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] $r", referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] \t(Missing semicolon on previous line?), referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] syntax error at /home/rlm/Desktop/web/laserkard/buy.pl line 95, near "$1, referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] #here is where we handle important drawing commands relating to the cards., referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] , referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] \t, referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] $r ", referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] Execution of /home/rlm/Desktop/web/laserkard/buy.pl aborted due to compilation errors., referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:52:48 2010] [error] [client 18.238.1.90] Premature end of script headers: buy.pl, referer: http://laserkard.rlmcintyre.com/contact.php +[Mon Jan 25 00:53:50 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/big_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:53:50 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/basic_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:53:50 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/classic_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:53:50 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/lines_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:19 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/big_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:19 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/lines_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:19 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/basic_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:19 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/classic_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:52 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/basic_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:52 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/big_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:52 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/classic_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 00:54:52 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/images/templates/lines_big.jpg, referer: http://laserkard.rlmcintyre.com/buy.pl +[Mon Jan 25 01:02:37 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/favicon.ico +[Mon Jan 25 01:02:39 2010] [error] [client 18.238.1.90] File does not exist: /home/rlm/Desktop/web/laserkard/favicon.ico diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/BASE.paylist --- a/paypal/BASE.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/BASE.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
PERL::TITLE

-
PERL::DESC
+
PERL::DESC
-
+ diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/basic_acrylic_clear.paylist --- a/paypal/basic_acrylic_clear.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/basic_acrylic_clear.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Clarity Series:
The Arrow Kard.

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -27,13 +29,13 @@ - + - + - + - + @@ -102,121 +104,29 @@
-Line 1 (James Bond):   -

-Line 2 (MI6):   -

-Line 3 (Secret Agent):   -

-Line 4 (jbond@mi6.co.uk):   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/basic_acrylic_green.paylist --- a/paypal/basic_acrylic_green.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/basic_acrylic_green.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Vitality LaserKard Basic Style

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -103,120 +105,28 @@
Line 1:   -

Line 2:   -

Line 3:   -

Line 4:   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/big_acrylic_clear.paylist --- a/paypal/big_acrylic_clear.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/big_acrylic_clear.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Clarity Series:
The Bold Kard.

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -27,9 +29,9 @@ - + - + @@ -102,61 +104,15 @@
-Line 1 (James Bond):   -

-Line 2 (jbond@mi6.co.uk):   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/big_acrylic_green.paylist --- a/paypal/big_acrylic_green.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/big_acrylic_green.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Vitality LaserKard BIG Style

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -103,60 +105,14 @@
Line 1:   -

Line 2:   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/classic_acrylic_clear.paylist --- a/paypal/classic_acrylic_clear.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/classic_acrylic_clear.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Clarity Series:
The Classic Kard.

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -27,17 +29,17 @@ - + - + - + - + - + - + @@ -102,181 +104,43 @@
-Line 1 (jbond@mi6.co.uk):   -

-Line 2 (123.456.7890):   -

-Line 3 (James Bond):   -

-Line 4 (MI6):   -

-Line 5 (Secret Agent):   -

-Side (http://www.jamesbond.com):   - @@ -286,6 +150,10 @@ +
+ +Add a penny! ^__^ +

Total Cost:    diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/classic_acrylic_green.paylist --- a/paypal/classic_acrylic_green.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/classic_acrylic_green.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Vitality LaserKard Classic Style

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -103,180 +105,42 @@
Line 1:   -

Line 2:   -

Line 3:   -

Line 4:   -

Line 5:   -

Side:   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/generate_paylists.pm --- a/paypal/generate_paylists.pm Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/generate_paylists.pm Mon Jan 25 03:42:08 2010 -0500 @@ -26,6 +26,7 @@ DEFAULTS => ['jbond@mi6.co.uk','123.456.7890','James Bond','MI6','Secret Agent','http://www.jamesbond.com'], @_, # argument pair list goes here ); + $short_form = $args{SHORT_FORM}; $prod_name = $args{PRODUCT_NAME}; @defaults = @{$args{DEFAULTS}}; $name = $args{NAME}; @@ -135,36 +136,13 @@ $start = < PERL::OPT:   -
OHYEAH - +$start =~ s/PERL::SHORT/$short_form/; my $input = ""; diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/lines_acrylic_clear.paylist --- a/paypal/lines_acrylic_clear.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/lines_acrylic_clear.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Clarity Series:
The Direct Kard.

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -27,17 +29,17 @@ - + - + - + - + - + - + @@ -102,181 +104,43 @@
-Line 1 (James Bond):   -

-Line 2 (Secret Agent):   -

-Line 3 (MI6):   -

-Line 4 (123.456.7890):   -

-Line 5 (jbond@domain.com):   -

-Line 6 (www.domain.com):   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/lines_acrylic_green.paylist --- a/paypal/lines_acrylic_green.paylist Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/lines_acrylic_green.paylist Mon Jan 25 03:42:08 2010 -0500 @@ -1,13 +1,15 @@
+ +
Vitality LaserKard Lines Style

-
Laser-Etched Clear Acrylic
+
Laser-Etched Clear Acrylic
- + @@ -103,180 +105,42 @@
Line 1:   -

Line 2:   -

Line 3:   -

Line 4:   -

Line 5:   -

Line 6:   - diff -r 8b3b5753ad41 -r 1ac1409ea68c paypal/make.pl --- a/paypal/make.pl Sun Jan 24 15:06:22 2010 -0500 +++ b/paypal/make.pl Mon Jan 25 03:42:08 2010 -0500 @@ -6,11 +6,13 @@ ( TITLE => 'Clarity Series:
The Bold Kard.', PRODUCT_NAME => 'Clarity Series: The Bold Kard', +SHORT_FORM => 'bold', + DESC => 'Laser-Etched Clear Acrylic', NAME => 'big_acrylic_clear', -FIELDS => ["Line 1 (James Bond)", "Line 2 (jbond\@mi6.co.uk)"], +FIELDS => ["Name", "Email"], DEFAULTS => ['James Bond','jbond@mi6.co.uk'], COSTS_NAMES => ['40 cards — $125', '4 cards — $30'], @@ -27,10 +29,11 @@ ( TITLE => 'Clarity Series:
The Arrow Kard.', PRODUCT_NAME => 'Clarity Series: The Arrow Kard', +SHORT_FORM => 'arrow', NAME => 'basic_acrylic_clear', -FIELDS => ["Line 1 (James Bond)", "Line 2 (MI6)","Line 3 (Secret Agent)","Line 4 (jbond\@mi6.co.uk)"], +FIELDS => ["Name", "Company","Occupation","Email"], DEFAULTS => ['James Bond','MI6','Secret Agent','jbond@mi6.co.uk'], COSTS_NAMES => ['40 cards — $125', '4 cards — $30'], @@ -48,17 +51,18 @@ ( TITLE => 'Clarity Series:
The Classic Kard.', PRODUCT_NAME => 'Clarity Series: The Classic Kard', +SHORT_FORM => 'classic', NAME => 'classic_acrylic_clear', -FIELDS => ["Line 1 (jbond\@mi6.co.uk)", "Line 2 (123.456.7890)","Line 3 (James Bond)","Line 4 (MI6)","Line 5 (Secret Agent)","Side (http://www.jamesbond.com)"], +FIELDS => ["Email", "Phone","Name","Company","Occupation","Website"], DEFAULTS => ['jbond@mi6.co.uk','123.456.7890','James Bond','MI6','Secret Agent','http://www.jamesbond.com'], COSTS_NAMES => ['40 cards — $125', '4 cards — $30'], COSTS_CODE => ['40 cards @125.00', '4 cards @30.00'], INITIAL_PRICE => '$125.00', -ADD_PENNY => 0, +ADD_PENNY => 1, ); } @@ -70,10 +74,11 @@ ( TITLE => 'Clarity Series:
The Direct Kard.', PRODUCT_NAME => 'Clarity Series: The Direct Kard', +SHORT_FORM => 'direct', NAME => 'lines_acrylic_clear', -FIELDS => ["Line 1 (James Bond)", "Line 2 (Secret Agent)","Line 3 (MI6)","Line 4 (123.456.7890)","Line 5 (jbond\@domain.com)","Line 6 (www.domain.com)"], +FIELDS => ["Name", "Occupation","Company","Phone","Email","Website"], DEFAULTS => ['James Bond','Secret Agent','MI6','123.456.7890','jbond@domain.com','www.domain.com'], COSTS_NAMES => ['40 cards — $125', '4 cards — $30'],