consistent look
authorswa <swa@users.sourceforge.net>
Wed, 3 Apr 2002 19:36:04 +0000 (19:36 +0000)
committerswa <swa@users.sourceforge.net>
Wed, 3 Apr 2002 19:36:04 +0000 (19:36 +0000)
doc/webserver/actions/index.php
doc/webserver/actions/step2.php
doc/webserver/actions/step3.php
doc/webserver/p_feedback.css [new file with mode: 0644]

index f8e1f3b..f1a9d43 100755 (executable)
@@ -8,9 +8,12 @@
               This file belongs in
               ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
 
-  $Id: index.php,v 1.8 2002/04/02 08:45:22 oes Exp $
+  $Id: index.php,v 1.9 2002/04/02 19:32:45 oes Exp $
 
   $Log: index.php,v $
+  Revision 1.9  2002/04/02 19:32:45  oes
+  Adding temporary fix for missing curl support on SF (step 2 + 3 on oesterhelt.org)
+
   Revision 1.8  2002/04/02 08:45:22  oes
   Made script location indepandant
 
  -->
 
  <head>
-  <style type="text/css">
-   body, div, p, h1, h2, ul, ol, li, td, th, dl, dt, dd { font-family:helvetica,helv,arial,sans-serif; font-size:10px }
-   body { background-color: #ffffff }
-   div.title    { background-color:#dddddd; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:15px; font-weight:bold }
-   div.box      { background-color:#eeeeee; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:10px }
-   div.infobox  { background-color:#ccccff; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
-   div.errorbox { background-color:#ffdddd; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
-  </style>
-
+    <link rel="stylesheet" type="text/css" href="../p_feedback.css">
 <?php
 
 /*
@@ -103,7 +98,9 @@ $headers = getallheaders();
 
 if (!isset($headers["X-Actions-File-Version"]) || $headers["X-Actions-File-Version"] < $required_actions_file_version)
 {
-   echo ("<title>Invalid Privoxy Action List Feedback</title></head>
+   echo ("<title>Invalid Privoxy Action List Feedback</title>
+    <link rel="stylesheet" type="text/css" href="../p_feedback.css">
+       </head>
           <body><div class=\"title\">Invalid Feedback Submission</div>
            <div align=\"center\">
             <div class=\"errorbox\" align=\"left\"><p>As much as we welcome your feedback, please note that
@@ -123,6 +120,7 @@ if (!isset($headers["X-Actions-File-Version"]) || $headers["X-Actions-File-Versi
 ?>
 
   <title>Privoxy Action List Feedback - Step 1 of 2</title>
+    <link rel="stylesheet" type="text/css" href="../p_feedback.css">
  </head>
 
  <body>
index 9020ffd..adea4d7 100644 (file)
@@ -8,9 +8,12 @@
               This file belongs in
               ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
 
-  $Id: step2.php,v 1.4 2002/04/01 19:13:47 oes Exp $
+  $Id: step2.php,v 1.6 2002/04/02 07:22:19 oes Exp $
 
   $Log: step2.php,v $
+  Revision 1.6  2002/04/02 07:22:19  oes
+  Elimnating duplicate images; using relative link for step3
+
   Revision 1.4  2002/04/01 19:13:47  oes
   Extended, fixed bugs, beefed up design, made IE-safe
 
  -->
 
  <head>
-  <style type="text/css">
-   body, div, p, h1, h2, ul, ol, li, td, th, dl, dt, dd { font-family:helvetica,helv,arial,sans-serif; font-size:10px }
-   body { background-color: #ffffff }
-   div.title    { background-color:#dddddd; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:15px; font-weight:bold }
-   div.box      { background-color:#eeeeee; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:10px }
-   div.infobox  { background-color:#ccccff; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
-   div.errorbox { background-color:#ffdddd; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
-  </style>
+    <link rel="stylesheet" type="text/css" href="../p_feedback.css">
 
   <script language="javascript">
    //
@@ -112,6 +108,7 @@ error_reporting(E_NONE);
 if (!isset($referrer_url))
 {
    echo ("  <title>Invalid Feedback Submission</title>
+           <link rel="stylesheet" type="text/css" href="../p_feedback.css">
            </head>
            <body>
             <div class=\"title\">Invalid Feedback Submission</div>
@@ -132,6 +129,7 @@ if (!isset($referrer_url))
 if (!isset($problem) || $problem == "INVALID")
 {
    echo ("  <title>Invalid Feedback Submission</title>
+           <link rel="stylesheet" type="text/css" href="../p_feedback.css">
            </head>
            <body>
             <div class=\"title\">Invalid Feedback Submission</div>
@@ -172,6 +170,7 @@ curl_close ($ch);
 if (!$success)
 {
    echo ("  <title>Invalid Feedback Submission</title>
+           <link rel="stylesheet" type="text/css" href="../p_feedback.css">
            </head>
            <body>
             <div class=\"title\">Invalid Feedback Submission</div>
@@ -206,6 +205,7 @@ switch($problem)
 ?>
 
   <title>Privoxy Action List Feedback - Step 2 of 2</title>
+    <link rel="stylesheet" type="text/css" href="../p_feedback.css">
  </head>
  <body>
 
index bd85576..2a19e14 100644 (file)
@@ -8,9 +8,12 @@
               This file belongs in
               ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
 
-  $Id: step3.php,v 1.4 2002/04/01 19:13:47 oes Exp $
+  $Id: step3.php,v 1.5 2002/04/02 07:22:43 oes Exp $
 
   $Log: step3.php,v $
+  Revision 1.5  2002/04/02 07:22:43  oes
+  Cosmetics
+
   Revision 1.4  2002/04/01 19:13:47  oes
   Extended, fixed bugs, beefed up design, made IE-safe
 
  -->
 
  <head>
-  <style type="text/css">
-   body, div, p, h1, h2, ul, ol, li, td, th, dl, dt, dd { font-family:helvetica,helv,arial,sans-serif; font-size:10px }
-   body { background-color: #ffffff }
-   div.title    { background-color:#dddddd; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:15px; font-weight:bold }
-   div.box      { background-color:#eeeeee; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:10px }
-   div.infobox  { background-color:#ccccff; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
-   div.errorbox { background-color:#ffdddd; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
-  </style>
+    <link rel="stylesheet" type="text/css" href="../p_feedback.css">
 
 <?php
 
@@ -68,6 +64,7 @@ error_reporting(E_NONE);
 if (!isset($referrer_url))
 {
    echo ("  <title>Invalid Feedback Submission</title>
+           <link rel="stylesheet" type="text/css" href="../p_feedback.css">
            </head>
            <body>
             <div class=\"title\">Invalid Feedback Submission</div>
@@ -88,6 +85,7 @@ if (!isset($referrer_url))
 if (!isset($problem))
 {
    echo ("  <title>Invalid Feedback Submission</title>
+           <link rel="stylesheet" type="text/css" href="../p_feedback.css">
            </head>
            <body>
             <div class=\"title\">Invalid Feedback Submission</div>
@@ -120,6 +118,7 @@ $fp = fopen($logfile, "a");
 if(!$fp)
 {
    echo ("  <title>Internal Script Error</title>
+           <link rel="stylesheet" type="text/css" href="../p_feedback.css">
            </head>
            <body>
             <div class=\"title\">Internal Script Error</div>
@@ -205,6 +204,7 @@ fclose($fp);
 ?>
 
   <title>Privoxy Action List Feedback - Result</title>
+  <link rel="stylesheet" type="text/css" href="../p_feedback.css">
  </head>
 
  <body>
@@ -218,7 +218,7 @@ fclose($fp);
    </p>
 
    <p>
-    It will be reviewed by the developers and used to improve the
+    The developers will review and use your submission to improve the
     distribution actions file.
    </p>
    
diff --git a/doc/webserver/p_feedback.css b/doc/webserver/p_feedback.css
new file mode 100644 (file)
index 0000000..e04f9a6
--- /dev/null
@@ -0,0 +1,6 @@
+body, div, p, h1, h2, ul, ol, li, td, th, dl, dt, dd { font-family:helvetica,helv,arial,sans-serif; font-size:10px }
+body { background-color: #ffffff }
+div.title    { background-color:#dddddd; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:15px; font-weight:bold }
+div.box      { background-color:#eeeeee; border:solid black 1px; margin:20px; min-width: 80%; padding:20px; font-size:10px }
+div.infobox  { background-color:#ccccff; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }
+div.errorbox { background-color:#ffdddd; border:solid black 1px; margin:20px; min-width: 60%; max-width: 60%; padding:20px; font-size:10px; }