rbrindley: branch 2.0 r4143 - /branches/2.0/developer_info/CODING-GUIDELINES
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Wed Nov 19 11:00:31 CST 2008
Author: rbrindley
Date: Wed Nov 19 11:00:31 2008
New Revision: 4143
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=4143
Log:
added an html formatting example
Modified:
branches/2.0/developer_info/CODING-GUIDELINES
Modified: branches/2.0/developer_info/CODING-GUIDELINES
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/developer_info/CODING-GUIDELINES?view=diff&rev=4143&r1=4142&r2=4143
==============================================================================
--- branches/2.0/developer_info/CODING-GUIDELINES (original)
+++ branches/2.0/developer_info/CODING-GUIDELINES Wed Nov 19 11:00:31 2008
@@ -118,7 +118,25 @@
(http://www.w3c.org/TR/xhtml1/) as much as possible. We'll make special
notes below of any changes to their suggestions.
-- A good guideline cheatsheet can be found at:
+- Use the following example as a quick reference for html formatting. Note
+ key aspects like: capitalization, spacing, newlines, and quotation.
+
+ <div id="main"></div>
+
+ <table class="myTable">
+ <tr>
+ <td class="cell odd"> <a href="#test">test</a> </td>
+ <td class="cell even" rowspan="3"> blah </td>
+ <td class="cell odd">
+ <span class="first">first</span>
+ <span class="last">last</span>
+ </td>
+ </tr>
+ </table>
+
+ <img src="refresh.gif" title="Refresh" />
+
+- A good/thorough guideline can be found at:
http://www.w3c.org/TR/xhtml1/#guidelines
More information about the asterisk-gui-commits
mailing list