WWW/2011/tracking-protection/drafts tracking-compliance.html,1.66,1.67

Update of /w3ccvs/WWW/2011/tracking-protection/drafts
In directory hutz:/tmp/cvs-serv2290

Modified Files:
	tracking-compliance.html 
Log Message:
removing jQuery and nonnormative section hiding which is incompatible with ReSpec v3

Index: tracking-compliance.html
===================================================================
RCS file: /w3ccvs/WWW/2011/tracking-protection/drafts/tracking-compliance.html,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- tracking-compliance.html	18 Aug 2012 02:37:13 -0000	1.66
+++ tracking-compliance.html	19 Aug 2012 02:58:26 -0000	1.67
@@ -4,7 +4,6 @@
   <title>Tracking Compliance and Scope Specification</title>
   <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
   <script src='http://www.w3.org/Tools/respec/respec-w3c-common' class='remove' async></script>
-  <script src="http://code.jquery.com/jquery-1.7.2.min.js" type="text/javascript" charset="utf-8"></script>
   <script class="remove">
     var respecConfig = {
       specStatus:          "ED",
@@ -33,88 +32,8 @@
   </script>
   <link rel="stylesheet" href="additional.css" type="text/css"
 media="screen" title="custom formatting for TPWG editors" charset="utf-8" />
-  <style type="text/css" media="screen">
-    #toggle-widget {
-      position: fixed;
-      left: 3px;
-      bottom: 0;
-      -webkit-transform: rotate(-90deg);
-      -webkit-transform-origin: 0 0;
-      -ms-transform: rotate(-90deg);
-      -ms-transform-origin: 0 0;
-      -o-transform: rotate(-90deg);
-      -o-transform-origin: 0 0;
-      -moz-transform: rotate(-90deg);
-      -moz-transform-origin: 0 0;
-    }
-    
-    .informative-hidden * {
-      display: none;
-    }
-    
-    .informative-hidden *:first-child {
-      display: block;
-    }
-
-    .informative-hidden *:first-child span {
-      display: inline;
-    }
-
-    .informative-hidden h5:first-child:after, .informative-hidden h6:first-child:after, .informative-hidden h4:first-child:after {
-      font-style: italic;
-      content: " (show this section)";
-      font-size: 80%;
-    }
-    
-    .informative-hidden h5:first-child, .informative-hidden h6:first-child, .informative-hidden h4:first-child {
-      cursor: pointer;
-    }
-    
-    .informative:not(.informative-hidden) p:nth-of-type(1):after {
-      content: " (hide this section)";
-      font-style: italic;
-      font-size: 80%;
-    }
-    
-    .informative:not(.informative-hidden) p:nth-of-type(1) {
-      cursor: pointer;
-    }
-    
-  </style>
-  <script type="text/javascript" charset="utf-8">
-    $(function() {
-      var informativeVisible = true;
-      $('#toggle-button').click(function() {
-        if (informativeVisible) {
-          //$('.informative').hide();
-          $('.informative').addClass('informative-hidden');
-          
-          
-        } else {
-          $('.informative').removeClass('informative-hidden');
-        }
-        
-        informativeVisible = !informativeVisible;
-        
-        var text = informativeVisible ? 'Hide non-normative sections' : 'Show non-normative sections';
-        $('#toggle-button').text(text);
-        return false;
-      });
-      
-      $('.informative-hidden h4, .informative-hidden h5, .informative-hidden h6').live('click', function(event) {
-        $(event.target).closest('.informative').removeClass('informative-hidden');
-        return false;
-      });
-      
-      $('.informative:not(.informative-hidden) p:nth-of-type(1)').live('click', function(event) {
-        $(event.target).closest('.informative').addClass('informative-hidden');        
-      });
-    });
-  </script>
 </head>
 <body>
-
-
 <section id="abstract">
 	<p>This specification defines the meaning of a Do Not Track (DNT) preference and sets out practices for websites to comply with this preference.</p>
 </section>
@@ -993,8 +912,5 @@
 <p>This specification consists of input from many discussions within and around the W3C Tracking Protection Working Group, along with written contributions from Haakon Flage Bratsberg (Opera Software), Amy Colando (Microsoft Corporation), Roy T. Fielding (Adobe), Tom Lowenthal (Mozilla), Ted Leung (The Walt Disney Company), Jonathan Mayer (Stanford University), Ninja Marnau (Invited Expert), Matthias Schunter (IBM), John M. Simpson (Invited Expert), Kevin G. Smith (Adobe), Rob van Eijk (Invited Expert), Rigo Wenning (W3C), and Shane Wiley (Yahoo!).</p>
 <p>The DNT header field is based on the original Do Not Track submission by Jonathan Mayer (Stanford), Arvind Narayanan (Stanford), and Sid Stamm (Mozilla). The DOM API for NavigatorDoNotTrack is based on the Web Tracking Protection submission by Andy Zeigler, Adrian Bateman, and Eliot Graff (Microsoft). Many thanks to Robin Berjon for ReSpec.js.</p>
 </section>
-<div id="toggle-widget">
-  <a href="#" id="toggle-button">Hide non-normative sections</a>
-</div>
 </body>
 </html>

Received on Sunday, 19 August 2012 02:58:41 UTC