Skip to content

Commit

Permalink
Merge bugfixes from v0_9_7.
Browse files Browse the repository at this point in the history
  • Loading branch information
aquark committed Apr 3, 2009
1 parent 610719c commit 26b00a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Orchard/src/orc/OrchardDemo.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
import org.mortbay.jetty.nio.SelectChannelConnector;
import org.mortbay.jetty.webapp.WebAppContext;

import com.centerkey.utils.BareBonesBrowserLaunch;

/**
* Run this from the command line to start a standalone Orchard server.
* @author quark
Expand Down Expand Up @@ -37,5 +39,6 @@ public static void main(String args[]) throws Exception {

server.setStopAtShutdown(true);
server.start();
BareBonesBrowserLaunch.openURL("http://localhost:" + PORT + "/demo.shtml");
}
}
4 changes: 2 additions & 2 deletions Orchard/src/orc/orchard/OilSecurityValidator.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public class OilSecurityValidator extends Walker {
allowedClasses.add("java.util.Vector");

// orc.lib
allowedClasses.add("orc.lib.data.Set");
allowedClasses.add("orc.lib.data.Map");
allowedClasses.add("orc.lib.state.Set");
allowedClasses.add("orc.lib.state.Map");
allowedClasses.add("orc.lib.net.Upcoming");
allowedClasses.add("orc.lib.net.Geocoder");
allowedClasses.add("orc.lib.net.GoogleCalendar");
Expand Down

0 comments on commit 26b00a2

Please sign in to comment.