- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 22 Apr 2011 23:18:38 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists In directory hutz:/tmp/cvs-serv23393 Modified Files: Overview.html Overview.src.html Added Files: black.svg white.svg Log Message: Substantially rewrote the counter-style section to not suck, and added examples for every type. --- NEW FILE: black.svg --- <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" width="16" height="16"> <defs> <radialGradient id="black" cx="30%" cy="30%"> <stop offset="0%" stop-color="#888" /> <stop offset="100%" stop-color="black" /> </radialGradient> </defs> <circle cx="50%" cy="50%" r="50%" fill="url(#black)" /> </svg> Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-lists/Overview.html,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- Overview.html 22 Apr 2011 00:31:19 -0000 1.30 +++ Overview.html 22 Apr 2011 23:18:35 -0000 1.31 @@ -8,18 +8,11 @@ <link href="http://dev.w3.org/csswg/default.css" rel=stylesheet type="text/css"> - <style type="text/css"> - td, th { padding: 0 0.5em; } - .numbering td, .numbering th { vertical-align: top; } - .mapping th { text-align: right; } - .mapping td { text-align: center; } - .roman-example { padding: 0.75em; background: white; color: black; margin: 0.25em 0; display: block; } - .hebrew { display: block; } - .hebrew-example thead { display: none; } [...1487 lines suppressed...] <li>simp-chinese-formal, <a href="#simp-chinese-formal" title=simp-chinese-formal><strong>4.3.2.</strong></a> @@ -3908,13 +4313,14 @@ <li><string>, <a href="#ltstring" title="<string>"><strong>3.</strong></a> - <li>symbolic, <a href="#symbolic" - title=symbolic><strong>10.1.1.</strong></a> + <li>suffix, <a href="#suffix0" title=suffix><strong>10.4.</strong></a> <li>trad-chinese-formal, <a href="#trad-chinese-formal" title=trad-chinese-formal><strong>4.3.2.</strong></a> <li>trad-chinese-informal, <a href="#trad-chinese-informal" title=trad-chinese-informal><strong>4.3.2.</strong></a> + + <li>type, <a href="#type" title=type><strong>10.1.</strong></a> </ul> <!--end-index--> --- NEW FILE: white.svg --- <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" width="16" height="16"> <defs> <radialGradient id="white" cx="30%" cy="30%"> <stop offset="0%" stop-color="white" /> <stop offset="100%" stop-color="#ccc" /> </radialGradient> </defs> <circle cx="50%" cy="50%" r="48" fill="url(#white)" stroke="black" stroke-width="4"/> </svg> Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v retrieving revision 1.70 retrieving revision 1.71 diff -u -d -r1.70 -r1.71 --- Overview.src.html 22 Apr 2011 00:31:19 -0000 1.70 +++ Overview.src.html 22 Apr 2011 23:18:35 -0000 1.71 @@ -3,18 +3,11 @@ <title>CSS Lists and Counters Module Level 3</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" > <link rel="stylesheet" type="text/css" href="http://dev.w3.org/csswg/default.css"> - <style type="text/css"> - td, th { padding: 0 0.5em; } - .numbering td, .numbering th { vertical-align: top; } - .mapping th { text-align: right; } - .mapping td { text-align: center; } - .roman-example { padding: 0.75em; background: white; color: black; margin: 0.25em 0; display: block; } - .hebrew { display: block; } - .hebrew-example thead { display: none; } [...1063 lines suppressed...] - type: non-repeating 1; + type: non-repeating; glyphs: '\320E' '\320F' '\3210' '\3211' '\3212' '\3213' '\3214' '\3215' '\3216' '\3217' '\3218' '\3219' '\321A'; /* '㈎' '㈏' '㈐' '㈑' '㈒' '㈓' '㈔' '㈕' '㈖' '㈗' '㈘' '㈙' '㈚' */ suffix: ''; } @counter-style persian-abjad { - type: non-repeating 1; + type: non-repeating; glyphs: '\627' '\628' '\62C' '\62F' '\647\200D' '\648' '\632' '\62D' '\637' '\6CC' '\6A9' '\644' '\645' '\646' '\633' '\639' '\641' '\635' '\642' '\631' '\634' '\62A' '\62B' '\62E' '\630' '\636' '\638' '\63A'; /* 'ا' 'ب' 'ج' 'د' 'ه' 'و' 'ز' 'ح' 'ط' 'ی' 'ک' 'ل' 'م' 'ن' 'س' 'ع' 'ف' 'ص' 'ق' 'ر' 'ش' 'ت' 'ث' 'خ' 'ذ' 'ض' 'ظ' 'غ' */ } @counter-style persian-alphabetic { - type: non-repeating 1; + type: non-repeating; glyphs: '\627' '\628' '\67E' '\62A' '\62B' '\62C' '\686' '\62D' '\62E' '\62F' '\630' '\631' '\632' '\698' '\633' '\634' '\635' '\636' '\637' '\638' '\639' '\63A' '\641' '\642' '\6A9' '\6AF' '\644' '\645' '\646' '\648' '\647\200D' '\6CC'; /* 'ا' 'ب' 'پ' 'ت' 'ث' 'ج' 'چ' 'ح' 'خ' 'د' 'ذ' 'ر' 'ز' 'ژ' 'س' 'ش' 'ص' 'ض' 'ط' 'ظ' 'ع' 'غ' 'ف' 'ق' 'ک' 'گ' 'ل' 'م' 'ن' 'و' 'ه' 'ی' */ }
Received on Friday, 22 April 2011 23:18:39 UTC