Use CSS to let the URL and pattern input fields scale with
[privoxy.git] / templates / show-url-info
index 3fc9f6f..61cd860 100644 (file)
@@ -1,6 +1,6 @@
 ########################################################################
 #
-# File        :  $Source:$
+# File        :  $Source: /cvsroot/ijbswa/current/templates/show-url-info,v $
 #
 # Purpose     :  Template for Privoxy's show-url-info CGI page.
 #
 #
 # Revisions   :
 #    $Log: show-url-info,v $
+#    Revision 1.21  2007/11/15 19:11:11  fabiankeil
+#    Reword HTTPS URL information.
+#
+#    Revision 1.20  2007/07/21 12:19:50  fabiankeil
+#    If show-url-info is called with an URL that Privoxy
+#    would reject as invalid, don't show unresolved forwarding
+#    variables, "final matches" or claim the site's secure.
+#
+#    Revision 1.19  2007/02/10 16:55:22  fabiankeil
+#    - Show forwarding settings on the show-url-info page
+#    - Fix some HTML syntax errors.
+#
 #
 #########################################################################
 # USING HTML TEMPLATES:
 <!-- @if-url-given-start -->
     <tr>
       <td class="box">
+<!-- @if-valid-url-start -->
         <h2>Forwarding settings:</h2>
         <p>
           Requests for <a href="@url@">@url@</a> will be <!--
 
-# "Interesting" formatting to prevent white space at the end of the sentence..
+# "Interesting" formatting to prevent white space at the end of the sentence.
 
           @if-no-forwarder-start -->
 
       <td class="box">
 <!-- @if-https-start -->
         <h2>NOTE:</h2>
-        <p>This is a secure (https:) URL, so the part after the "/" is ignored.
-          This is a feature of the HTTPS protocol - the exact address of the
-          page you're visiting is hidden.  Privoxy can only detect the host
-          part of the URL.</p>
-        <p>&nbsp;</p>
+        <p>This is a HTTPS URL, so the part after the "/" is ignored
+          as Privoxy doesn't see the path for real HTTPS requests either.</p>
 <!-- if-https-end@ -->
+<!-- if-valid-url-end@ -->
         <h2>Matches for <a href="@url@">@url@</a>:</h2>
         @matches@
       </td>
     </tr>
-
+<!-- @if-valid-url-start -->
     <tr>
       <td class="box">
         <h2>Final results:</h2>
         <p><b>@final@</b></p>
       </td>
     </tr>
+<!-- if-valid-url-end@ -->
 <!-- if-url-given-end@ -->
 
 <!-- @if-privoxy-is-toggled-off-start -->
           URL:</h2>
         <form method="GET" action="@default-cgi@show-url-info">
           <p>
-            <input type="text" name="url" size="80" value="@url@"> 
+            <input type="text" name="url" size="80" value="@url@" class="url"
             <input type="submit" value="Go">
           </p>
         </form>