From: swa <swa@users.sourceforge.net> Date: Wed, 3 Apr 2002 19:36:04 +0000 (+0000) Subject: consistent look X-Git-Tag: v_2_9_14~239 X-Git-Url: http://www.privoxy.org/gitweb/%22https:/@default-cgi@/man-page/static/gitweb.js?a=commitdiff_plain;h=33599262c2a261423d4aed1413f37aae93bceb96;p=privoxy.git consistent look --- diff --git a/doc/webserver/actions/index.php b/doc/webserver/actions/index.php index f8e1f3bc..f1a9d434 100755 --- a/doc/webserver/actions/index.php +++ b/doc/webserver/actions/index.php @@ -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 @@ -51,15 +54,7 @@ --> <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> diff --git a/doc/webserver/actions/step2.php b/doc/webserver/actions/step2.php index 9020ffdb..adea4d75 100644 --- a/doc/webserver/actions/step2.php +++ b/doc/webserver/actions/step2.php @@ -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 @@ -42,14 +45,7 @@ --> <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> diff --git a/doc/webserver/actions/step3.php b/doc/webserver/actions/step3.php index bd855766..2a19e141 100644 --- a/doc/webserver/actions/step3.php +++ b/doc/webserver/actions/step3.php @@ -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 @@ -42,14 +45,7 @@ --> <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 index 00000000..e04f9a6b --- /dev/null +++ b/doc/webserver/p_feedback.css @@ -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; }