- From: Daniel Weck via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 13 Jul 2011 23:15:03 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-speech In directory hutz:/tmp/cvs-serv32522 Modified Files: Overview.html Overview.src.html Log Message: fixed pitch and range syntax to allow combining keyword and relative change (consistent with voice-volume and voice-rate) Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-speech/Overview.html,v retrieving revision 1.82 retrieving revision 1.83 diff -u -d -r1.82 -r1.83 --- Overview.html 13 Jul 2011 22:48:29 -0000 1.82 +++ Overview.html 13 Jul 2011 23:15:01 -0000 1.83 @@ -90,13 +90,13 @@ <h1 id=top>CSS Speech Module</h1> - <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 13 July 2011</h2> + <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 14 July 2011</h2> <dl> <dt>This version: <dd> - <!--<a href="http://www.w3.org/TR/2011/WD-css3-speech-20110713">http://www.w3.org/TR/2011/ED-css3-speech-20110713/</a>--> + <!--<a href="http://www.w3.org/TR/2011/WD-css3-speech-20110714">http://www.w3.org/TR/2011/ED-css3-speech-20110714/</a>--> <a href="http://dev.w3.org/csswg/css3-speech">http://dev.w3.org/csswg/css3-speech</a> @@ -2166,8 +2166,9 @@ <tr> <td> <em>Value:</em> - <td><frequency> && absolute? | <semitones> | - <percentage> | x-low | low | medium | high | x-high + <td><frequency> && absolute | [[x-low | low | medium | + high | x-high] || [<frequency> | <semitones> | + <percentage>]] <tr> <td> <em>Initial:</em> @@ -2308,8 +2309,9 @@ <tr> <td> <em>Value:</em> - <td><frequency> && absolute? | <semitones> | - <percentage> | x-low | low | medium | high | x-high + <td><frequency> && absolute | [[x-low | low | medium | + high | x-high] || [<frequency> | <semitones> | + <percentage>]] <tr> <td> <em>Initial:</em> @@ -3113,8 +3115,9 @@ <tr> <td><a class=property href="#voice-pitch">voice-pitch</a> - <td><frequency> && absolute? | <semitones> | - <percentage> | x-low | low | medium | high | x-high + <td><frequency> && absolute | [[x-low | low | medium | + high | x-high] || [<frequency> | <semitones> | + <percentage>]] <td>medium @@ -3129,8 +3132,9 @@ <tr> <td><a class=property href="#voice-range">voice-range</a> - <td><frequency> && absolute? | <semitones> | - <percentage> | x-low | low | medium | high | x-high + <td><frequency> && absolute | [[x-low | low | medium | + high | x-high] || [<frequency> | <semitones> | + <percentage>]] <td>medium @@ -3627,7 +3631,8 @@ <li>Fixed "computed value" for ‘<a href="#voice-pitch"><code class=property>voice-pitch</code></a>’ and ‘<a href="#voice-range"><code class=property>voice-range</code></a>’ - properties. + properties, and added the possibility to combine a keyword with a + relative change. <li>Removed the "phonemes" property (and its associated "@alphabet" at-rule). @@ -3679,6 +3684,9 @@ between stereo left-right sound axis and three-dimensional sound stage (azimuth support in future versions of CSS-Speech). + <li>Fixed the "computed value" for ‘<a href="#voice-balance"><code + class=property>voice-balance</code></a>’. + <li>Added the ‘<code class=property>normal</code>’ value for voice-rate ("default" in SSML 1.1). Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-speech/Overview.src.html,v retrieving revision 1.83 retrieving revision 1.84 diff -u -d -r1.83 -r1.84 --- Overview.src.html 13 Jul 2011 22:48:29 -0000 1.83 +++ Overview.src.html 13 Jul 2011 23:15:01 -0000 1.84 @@ -1712,8 +1712,8 @@ <td> <em>Value:</em> </td> - <td><frequency> && absolute? | <semitones> | <percentage> | - x-low | low | medium | high | x-high </td> + <td><frequency> && absolute | [[x-low | low | medium | high | x-high] || + [<frequency> | <semitones> | <percentage>]] </td> </tr> <tr> <td> @@ -1847,8 +1847,8 @@ <td> <em>Value:</em> </td> - <td><frequency> && absolute? | <semitones> | <percentage> | - x-low | low | medium | high | x-high </td> + <td><frequency> && absolute | [[x-low | low | medium | high | x-high] || + [<frequency> | <semitones> | <percentage>]] </td> </tr> <tr> <td> @@ -2592,7 +2592,8 @@ <li>Renamed 'voice-pitch-range' to 'voice-range', which is compatible with SSML's notation, and removes the possibility to interpret this property as being a subset of 'voice-pitch'.</li> - <li>Fixed "computed value" for 'voice-pitch' and 'voice-range' properties.</li> + <li>Fixed "computed value" for 'voice-pitch' and 'voice-range' properties, and added the + possibility to combine a keyword with a relative change.</li> <li>Removed the "phonemes" property (and its associated "@alphabet" at-rule).</li> <li>Renamed 'speakability' to 'speak', and 'speak' to 'speak-as'. Reorganized the 'speak-as' values to allow mixing different types.</li> @@ -2613,6 +2614,7 @@ <li>Added prose for 'voice-balance' to describe the mapping between stereo left-right sound axis and three-dimensional sound stage (azimuth support in future versions of CSS-Speech).</li> + <li>Fixed the "computed value" for 'voice-balance'.</li> <li>Added the 'normal' value for voice-rate ("default" in SSML 1.1).</li> <li>Fixed the "computed value" for voice-rate, and added the possibility to combine keywords and percentages (to be consistent with 'voice-volume'). Added an example to illustrate
Received on Wednesday, 13 July 2011 23:15:04 UTC