home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / komunikace / netscape / nsb-install-8-0.exe / chrome / comm.jar / content / cookie / p3pDialog.xul < prev    next >
Extensible Markup Language  |  2005-09-26  |  4KB  |  118 lines

  1. <?xml version="1.0"?>
  2. <!-- 
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla.org code.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Netscape Communications Corp.
  19.    - Portions created by Netscape Communications Corp are Copyright (C) 2001
  20.    - Netscape Communications Corp. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36. -->
  37.  
  38. <!-- CHANGE THIS WHEN MOVING FILES -->
  39. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?> 
  40.  
  41. <!-- CHANGE THIS WHEN MOVING FILES -->
  42. <!DOCTYPE dialog SYSTEM "chrome://cookie/locale/p3p.dtd">
  43.  
  44. <dialog id="p3pDialog"
  45.         buttons="accept,cancel,extra1,extra2,help"
  46.         buttonalign="center"
  47.         acceptLabel="&p3pDialogOff.label;"
  48.         cancelLabel="&p3pDialogClose.label;"
  49.         extra1Label="&p3pDialogViewCookies.label;"
  50.         extra2Label="&p3pDialogViewLevels.label;"
  51.         title="&p3pDialogTitle.label;"
  52.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  53.         onload="init();"
  54.         ondialogaccept="return P3POff();"
  55.         ondialogextra1="ViewCookieManager();"
  56.         ondialogextra2="ViewPrivacyLevels();"
  57.         ondialoghelp="return doHelpButton();"
  58.         style="width: 45em;">
  59.  
  60.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js" />
  61.   <script type="application/x-javascript">
  62.   <![CDATA[
  63.  
  64.   function init()
  65.   {
  66.     window.arguments[0].gButtonPressed = "";
  67.  
  68.     // label the buttons
  69.     var dialog = document.documentElement;
  70.     dialog.getButton("accept").label = dialog.getAttribute("acceptLabel");
  71.     dialog.getButton("cancel").label = dialog.getAttribute("cancelLabel");
  72.     dialog.getButton("extra1").label = dialog.getAttribute("extra1Label");
  73.     dialog.getButton("extra2").label = dialog.getAttribute("extra2Label");
  74.  
  75.     // focus on the cancel button
  76.     dialog.getButton("cancel").focus();
  77.   }
  78.  
  79.   function ViewCookieManager() {
  80.     window.arguments[0].gButtonPressed = "cookie";
  81.     window.close();
  82.   }
  83.  
  84.   function ViewPrivacyLevels() {
  85.  
  86.     window.arguments[0].gButtonPressed = "p3p";
  87.     window.close();
  88.   }
  89.  
  90.   function P3POff() {
  91.     var pref = Components.classes['@mozilla.org/preferences-service;1'];
  92.     pref = pref.getService();
  93.     pref = pref.QueryInterface(Components.interfaces.nsIPrefBranch);
  94.     pref.setIntPref("network.cookie.cookieBehavior", 0);
  95.  
  96.     return true;
  97.   }
  98.  
  99.   function doHelpButton()
  100.   {
  101.     openHelp('cookie_notify');
  102.   }
  103.  
  104.   ]]>
  105.   </script>
  106.   <description>&p3pDialogMessage1.label;</description>
  107.   <separator class="thin"/>
  108.  
  109.   <box>
  110.     <spacer flex="1"/>
  111.     <image src="chrome://communicator/skin/cookie/status-cookie.gif"/>
  112.     <spacer flex="1"/>
  113.   </box>
  114.  
  115.   <separator class="thin"/>
  116.   <description>&p3pDialogMessage2.label;</description>
  117. </dialog>
  118.