summaryrefslogtreecommitdiff
path: root/cgi-bin
diff options
context:
space:
mode:
authorpepper <peppersclothescult@gmail.com>2014-01-20 01:20:54 -0800
committerpepper <peppersclothescult@gmail.com>2014-01-20 01:20:54 -0800
commitfdf32609f44dc8eb6ae291864f0d7c9e0379782f (patch)
treedf0ceafdfe241e412bbaeb56e198b6e5caee4f77 /cgi-bin
parent5301a264c8da39a9401ab9d619477e0ea2c83dc1 (diff)
added cgi-bin proxy, sql stuff
Diffstat (limited to 'cgi-bin')
-rw-r--r--cgi-bin/js_check/__init__.pycbin156 -> 190 bytes
-rw-r--r--cgi-bin/js_check/jsparser.pycbin27289 -> 28605 bytes
-rw-r--r--cgi-bin/js_check/validate.pycbin2770 -> 2756 bytes
-rwxr-xr-xcgi-bin/test.cgi13
4 files changed, 13 insertions, 0 deletions
diff --git a/cgi-bin/js_check/__init__.pyc b/cgi-bin/js_check/__init__.pyc
index 5d23962..e3d1cac 100644
--- a/cgi-bin/js_check/__init__.pyc
+++ b/cgi-bin/js_check/__init__.pyc
Binary files differ
diff --git a/cgi-bin/js_check/jsparser.pyc b/cgi-bin/js_check/jsparser.pyc
index 42b15b8..5ce5c81 100644
--- a/cgi-bin/js_check/jsparser.pyc
+++ b/cgi-bin/js_check/jsparser.pyc
Binary files differ
diff --git a/cgi-bin/js_check/validate.pyc b/cgi-bin/js_check/validate.pyc
index 0905b8f..a3c7071 100644
--- a/cgi-bin/js_check/validate.pyc
+++ b/cgi-bin/js_check/validate.pyc
Binary files differ
diff --git a/cgi-bin/test.cgi b/cgi-bin/test.cgi
new file mode 100755
index 0000000..e33ee3e
--- /dev/null
+++ b/cgi-bin/test.cgi
@@ -0,0 +1,13 @@
+#!/usr/bin/perl
+ print "Content-type: text/html\n\n";
+ print <<HTML;
+ <html>
+<head>
+ <title>A Simple Perl CGI</title>
+ </head>
+ <body>
+ <h1>A Simple Perl CGI</h1>
+ <p>Hello World</p>
+ </body>
+HTML
+ exit;