<html>
<head>
<style><!--
body {background-color:#ffffff;}
.file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
.pathname {font-family:monospace; float:right;}
.fileheader {margin-bottom:.5em;}
.diff {margin:0;}
.tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
.tasklist ul {margin-top:0;margin-bottom:0;}
tr.alt {background-color:#eeeeee}
#added {background-color:#ddffdd;}
#addedchars {background-color:#99ff99;font-weight:bolder;}
tr.alt #added {background-color:#ccf7cc;}
#removed {background-color:#ffdddd;}
#removedchars {background-color:#ff9999;font-weight:bolder;}
tr.alt #removed {background-color:#f7cccc;}
#copied {background-color:#ccccff;}
tr.alt #copied {background-color:#bbbbf7;}
#info {color:#888888;}
#context {background-color:#eeeeee;}
td {padding-left:.3em;padding-right:.3em;}
tr.head {border-bottom-width:1px;border-bottom-style:solid;}
tr.head td {padding:0;padding-top:.2em;}
.task {background-color:#ffff00;}
.comment {white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd}
.error {color:red;}
hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="5">Commit in <b><tt>metaas/trunk</tt></b></td></tr>
<tr><td><tt><a href="#file1">pom.xml</a></tt> </td><td></td><td align="right" id="added">+2</td><td></td><td nowrap="nowrap" align="center">364 -> 365</td></tr>
<tr class="alt"><td><tt>src/main/java/<a href="#file2">overview.html</a></tt> </td><td></td><td align="right" id="added">+9</td><td align="right" id="removed">-9</td><td nowrap="nowrap" align="center">364 -> 365</td></tr>
<tr><td><tt>src/main/javadoc/<a href="#file3"><span id="added">stylesheet.css</span></a></tt> </td><td></td><td align="right" id="added">+32</td><td></td><td nowrap="nowrap" align="right">added 365</td></tr>
<tr><td></td><td></td><td align="right" id="added">+43</td><td align="right" id="removed">-9</td><td></td></tr>
</table>
<small id="info">1 added + 2 modified, total 3 files</small><br />
<pre class="comment">
small JavaDoc stylesheet changes
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">metaas/trunk</span><br />
<div class="fileheader"><big><b>pom.xml</b></big> <small id="info">364 -> 365</small></div>
<pre class="diff"><small id="info">--- trunk/pom.xml        2007-01-20 19:42:53 UTC (rev 364)
+++ trunk/pom.xml        2007-01-20 20:26:20 UTC (rev 365)
@@ -161,6 +161,7 @@
</small></pre><pre class="diff" id="context"> <configuration>
<excludePackageNames>uk.co.badgersinfoil.metaas.impl,org.asdt.core.internal.antlr</excludePackageNames>
<overview>${basedir}/src/main/java/overview.html</overview>
</pre><pre class="diff" id="added">+ <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
</pre><pre class="diff" id="context"> </configuration>
<goals>
<goal>javadoc</goal>
</pre><pre class="diff"><small id="info">@@ -227,6 +228,7 @@
</small></pre><pre class="diff" id="context"> <configuration>
<excludePackageNames>uk.co.badgersinfoil.metaas.impl,org.asdt.core.internal.antlr</excludePackageNames>
<overview>${basedir}/src/main/java/overview.html</overview>
</pre><pre class="diff" id="added">+ <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
</pre><pre class="diff" id="context"> </configuration>
</plugin>
</pre></div>
<hr /><a name="file2" /><div class="file">
<span class="pathname">metaas/trunk/src/main/java</span><br />
<div class="fileheader"><big><b>overview.html</b></big> <small id="info">364 -> 365</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/java/overview.html        2007-01-20 19:42:53 UTC (rev 364)
+++ trunk/src/main/java/overview.html        2007-01-20 20:26:20 UTC (rev 365)
@@ -18,7 +18,7 @@
</small></pre><pre class="diff" id="context">
<p>Here is a minimal example that generates a simple file in the current
directory:</p>
</pre><pre class="diff" id="removed">-<pre>ActionScriptFactory fact = new ActionScriptFactory();
</pre><pre class="diff" id="added">+<pre<span id="addedchars"> class="eg"</span>>ActionScriptFactory fact = new ActionScriptFactory();
</pre><pre class="diff" id="context"> ActionScriptProject proj = fact.newEmptyASProject(".");
ASCompilationUnit unit = proj.newClass("Test");
ASClassType clazz = (ASClassType)unit.getType();
</pre><pre class="diff"><small id="info">@@ -29,7 +29,7 @@
</small></pre><pre class="diff" id="context"> <p>The expression <code>proj.newClass("Test")</code> generates the
following ActionScript code,</p>
</pre><pre class="diff" id="removed">-<pre>package {
</pre><pre class="diff" id="added">+<pre class="eg">package {
</pre><pre class="diff" id="context">         public class Test {
        }
}</pre>
</pre><pre class="diff"><small id="info">@@ -37,7 +37,7 @@
</small></pre><pre class="diff" id="context"> <p>Then, the expression <code>clazz.newMethod("test", Visibility.PUBLIC, "void")</code>
adds a method definition to the body of the class as follows,</p>
</pre><pre class="diff" id="removed">-<pre>
</pre><pre class="diff" id="added">+<pre class="eg">
</pre><pre class="diff" id="context">                 public function test():void {
                }</pre>
</pre><pre class="diff"><small id="info">@@ -45,13 +45,13 @@
</small></pre><pre class="diff" id="context"> adds a line of ActionScript code to the method body (notice that a ';' was
added),
</pre><pre class="diff" id="removed">-<pre>
</pre><pre class="diff" id="added">+<pre class="eg">
</pre><pre class="diff" id="context">                         trace('Hello world');</pre>
<p>Finally, <code>proj.writeAll()</code> cases a file called Test.as to be
written to the current folder, containing the complete code,</p>
</pre><pre class="diff" id="removed">-<pre>package {
</pre><pre class="diff" id="added">+<pre class="eg">package {
</pre><pre class="diff" id="context">         public class Test {
                public function test():void {
                        trace('Hello world');
</pre><pre class="diff"><small id="info">@@ -81,7 +81,7 @@
</small></pre><pre class="diff" id="context"> 'fully qualified' references to other types (i.e. include the package-prefix
on all references to class names). For instance,</p>
</pre><pre class="diff" id="removed">-<pre>meth.addStatement("com.example.util.Debug.trace('Hello world')");</pre>
</pre><pre class="diff" id="added">+<pre<span id="addedchars"> class="eg"</span>>meth.addStatement("com.example.util.Debug.trace('Hello world')");</pre>
</pre><pre class="diff" id="context">
<p>When you call the method {@link uk.co.badgersinfoil.metaas.ActionScriptProject#writeAll()}, all
compilation units in the project will be inspected for references like this
</pre><pre class="diff"><small id="info">@@ -106,7 +106,7 @@
</small></pre><pre class="diff" id="context"> <p>metaas tries to enforce ActionScript syntax rules. For instance, the
following code,</p>
</pre><pre class="diff" id="removed">-<pre>meth.addStmt("trace(i]");</pre>
</pre><pre class="diff" id="added">+<pre<span id="addedchars"> class="eg"</span>>meth.addStmt("trace(i]");</pre>
</pre><pre class="diff" id="context">
<p>Will raise the a {@link uk.co.badgersinfoil.metaas.SyntaxException}:</p>
</pre><pre class="diff"><small id="info">@@ -118,7 +118,7 @@
</small></pre><pre class="diff" id="context"> <p>To read code from the file 'Test.as' you can use the following snippet of
Java:</p>
</pre><pre class="diff" id="removed">-<pre>FileInputStream in = new FileInputStream("Test.as");
</pre><pre class="diff" id="added">+<pre<span id="addedchars"> class="eg"</span>>FileInputStream in = new FileInputStream("Test.as");
</pre><pre class="diff" id="context"> InputStreamReader reader = new InputStreamReader(in);
ActionScriptFactory fact = new ActionScriptFactory();
ActionScriptParser parser = fact.newParser();
</pre><pre class="diff"><small id="info">@@ -131,7 +131,7 @@
</small></pre><pre class="diff" id="context"> <p>For example, to list all the methods defined by the type in 'Test.as',
you could add the following lines to the above example:</p>
</pre><pre class="diff" id="removed">-<pre>ASPackage pkg = unit.getPackage();
</pre><pre class="diff" id="added">+<pre<span id="addedchars"> class="eg"</span>>ASPackage pkg = unit.getPackage();
</pre><pre class="diff" id="context"> ASType type = pkg.getType();
List methods = type.getMethods();
for (Iterator i=methods.iterator(); i.hasNext(); ) {
</pre></div>
<hr /><a name="file3" /><div class="file">
<span class="pathname" id="added">metaas/trunk/src/main/javadoc</span><br />
<div class="fileheader" id="added"><big><b>stylesheet.css</b></big> <small id="info">added at 365</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/javadoc/stylesheet.css        2007-01-20 19:42:53 UTC (rev 364)
+++ trunk/src/main/javadoc/stylesheet.css        2007-01-20 20:26:20 UTC (rev 365)
@@ -0,0 +1,32 @@
</small></pre><pre class="diff" id="added">+/* Page background color */
+body { background-color: #FFFFFF }
+
+/* headings, and heading-like elements */
+h1, h2, h3, h4, h5, tr.TableHeadingColor {
+        font-family: sans-serif
+}
+
+/* Table colors */
+.TableHeadingColor { background: #CCCCFF } /* Dark mauve */
+.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */
+.TableRowColor { background: #FFFFFF } /* White */
+
+/* Font used in left-hand frame lists */
+.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif }
+.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif }
+.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif }
+
+/* Navigation bar fonts and colors */
+.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */
+.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */
+.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;}
+.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
+
+.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
+.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
+
+pre.eg {
+        border: 1px dashed black;
+        padding: 0.5em;
+        background-color: #eeeeff;
+}
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -> email">CVSspam</a> 0.2.12</small></center>
</body></html>