<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,10 @@
 = Change Log
 
-== Version 0.6.2 (2009-03-23)
+== Version 0.7 (2009-03-30)
+* add method to create a symbolic from the OpenLaszlo directory
+
+
+== Version 0.6.3 (2009-03-23)
 * unquote html entities in errors and warnings
 
 == Version 0.6.2 (2009-03-23)</diff>
      <filename>CHANGES.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -39,7 +39,7 @@ The following includes such a task:
 0:: Download and install the {OpenLaszlo SDK}[openlaszlo.org]
 
 1: Install this gem
-  $ gem install osteele-ropenlaszlo -s http://gems.github.com
+  $ sudo gem install ropenlaszlo
 
 2:: Set your +OPENLASZLO_HOME+ environment variable to the directory that contains the {OpenLaszlo SDK}[openlaszlo.org].  If the following prints something, you've got it right:
   $ grep Laszlo &quot;$OPENLASZLO_HOME/README.txt&quot;
@@ -48,6 +48,17 @@ The following includes such a task:
 
 &lt;b&gt;Note:&lt;/b&gt; The command-line compiler is broken in the Windows version of Open&lt;tt&gt;&lt;/tt&gt;Laszlo 3.1.1.  If you are running Windows, step (3) is required.  ({OpenLaszlo bug 1428}[http://www.openlaszlo.org/jira/browse/LPP-1428])
 
+== Tips
+
+The Ruby front end to the compiler uses two compilation methods.  If OPENLASZLO_URL is set, and the source file is in a subdirectory of the OpenLaszlo servlet directory, then the compiler will request the URL that corresponds to the source location.  Otherwise, the OpenLaszlo command-line compiler is used.
+
+If the compiler is going to be invoked more than once (because several files are being compiled, or because the compiler is being used in an edit/compile/run cycle), the compile server is faster.
+
+You can place a symbolic link to a source directory in the OpenLaszlo servlet directory thus:
+  require 'openlaszlo/utils'
+  OpenLaszlo::symlink_to '.'
+
+
 == Additional Resources
 
 * The {OpenLaszlo Rails plugin}[laszlo-plugin.rubyforge.org] provides generators, view tasks, and rake tasks for using Open&lt;tt&gt;&lt;/tt&gt;Laszlo with Ruby on Rails.</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,3 @@
-# Author:: Oliver Steele
-# Copyright:: Copyright (c) 2005-2008 Oliver Steele.  All rights reserved.
-# License:: MIT License
 module OpenLaszlo
   class Applet
     attr_reader :source
@@ -16,13 +13,13 @@ module OpenLaszlo
 
     def compile(target=nil, options={})
       target ||= source + '.swf'
-      return if up2date?(target) unless options[:force]
+      return if uptodate?(target) unless options[:force]
 
       puts &quot;Compiling #{source} -&gt; #{target}&quot; if options[:verbose]
       OpenLaszlo::compile(source, options)
     end
 
-    def up2date?(target=nil)
+    def uptodate?(target=nil)
       target ||= source + '.swf'
       return false unless File.exists?(target)
       sources = Dir[&quot;#{source_dir}/**/*&quot;].reject { |fname| fname =~ /\.lzx\.swf/ } -</diff>
      <filename>lib/openlaszlo/applet.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1658182125cb426702f8c04ca2d15317ed9ff42a</id>
    </parent>
  </parents>
  <author>
    <name>Oliver Steele</name>
    <email>steele@osteele.com</email>
  </author>
  <url>http://github.com/osteele/ropenlaszlo/commit/f3bc00a604585e2ad43ae594f34840666d870dab</url>
  <id>f3bc00a604585e2ad43ae594f34840666d870dab</id>
  <committed-date>2009-03-30T06:57:50-07:00</committed-date>
  <authored-date>2009-03-30T06:57:50-07:00</authored-date>
  <message>add symlink_to; move back to rubyforge</message>
  <tree>76b8aa7483d8a63adae63ffae6da8f7b58a55832</tree>
  <committer>
    <name>Oliver Steele</name>
    <email>steele@osteele.com</email>
  </committer>
</commit>
