<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>LICENSE</filename>
    </added>
    <added>
      <filename>README</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 module ActionhaXe.Data where
 
 import ActionhaXe.Lexer</diff>
      <filename>ActionhaXe/Data.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 -- Turn the as3 source into Tokens for parsing
 
 module ActionhaXe.Lexer (runLexer, Token, tokenSource, tokenLine, tokenCol, tokenItem, tokenItemS, TokenType(..), TokenNum(..), keywords, operators) where</diff>
      <filename>ActionhaXe/Lexer.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 -- Parse the tokens generated by Lexer
 -- TODO:
 --       updating Array parameter type,</diff>
      <filename>ActionhaXe/Parser.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 module ActionhaXe.Prim where
 
 import ActionhaXe.Lexer</diff>
      <filename>ActionhaXe/Prim.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 -- Translate an Actionscript 3 AST to haXe and hxml for Flash 9
 
 module ActionhaXe.Translator where</diff>
      <filename>ActionhaXe/Translator.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 module Main where
 
 import ActionhaXe.Lexer</diff>
      <filename>Lexitall.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 -- Parse a file
 
 import ActionhaXe.Lexer</diff>
      <filename>Parseit.hs</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 module Main where
 
 import ActionhaXe.Lexer</diff>
      <filename>Tokenize.hs</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>as3tohaxe</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+{-
+    as3tohaxe - An Actionscript 3 to haXe source file translator
+    Copyright (C) 2008 Don-Duong Quach
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
+-}
 -- Translate a file
 
 import ActionhaXe.Lexer
@@ -32,7 +49,7 @@ isFile f = do t &lt;- doesFileExist f
               return $ not o &amp;&amp; t &amp;&amp; (&quot;as&quot; == (map toLower $ reverse $ take 2 $ reverse f))
 
 isDir d = do t &lt;- doesDirectoryExist d
-             return $ t -- &amp;&amp; d /= &quot;.&quot; &amp;&amp; d /= &quot;..&quot; &amp;&amp; d /= &quot;.svn&quot;
+             return $ t
 
 translateDir dir = do 
     contents &lt;- getDirectoryContents dir
@@ -46,7 +63,7 @@ translateDir dir = do
 
 main = do args &lt;- getArgs
           if length args == 0
-              then do putStrLn &quot;as3tohaxe Copyright (c) 2008 Don-Duong Quach\nUsage: as3tohaxe [directory | filename]\nOutput in hx_output/&quot;
+              then do putStrLn &quot;as3tohaxe Copyright (c) 2008 Don-Duong Quach\nUsage: as3tohaxe [directory | filename]&quot;
                       exitWith ExitSuccess
               else return ()
           if isSuffixOf &quot;.as&quot; (args!!0)</diff>
      <filename>as3tohaxe.hs</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>Translate.hs</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>051cf11566fc807afbfd3337292a579348478b3a</id>
    </parent>
  </parents>
  <author>
    <name>Don-Duong Quach</name>
    <email>geekrelief@gmail.com</email>
  </author>
  <url>http://github.com/geekrelief/as3tohaxe/commit/b45c0ddd4ee6bb7a22ef05a404a84e0c78b81ec8</url>
  <id>b45c0ddd4ee6bb7a22ef05a404a84e0c78b81ec8</id>
  <committed-date>2008-10-15T23:13:37-07:00</committed-date>
  <authored-date>2008-10-15T23:13:37-07:00</authored-date>
  <message>Added license and readme</message>
  <tree>1ae7d0789b6dc88134a8884b0663c27c6f237e02</tree>
  <committer>
    <name>Don-Duong Quach</name>
    <email>geekrelief@gmail.com</email>
  </committer>
</commit>
