<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -6,8 +6,8 @@
 
 * Install CouchApp
 * push the app to a CouchDB database
-* create a document with the id &quot;presentation&quot; and upload an svg file with the name &quot;presentation.svg&quot;, for example using Futon (http://localhost:5984/_utils)
-* Go to http://localhost:5984/your_db/boom_amazing/_design/boom_amazing/index.html
+* create a document and upload your svg file, for example using Futon (http://localhost:5984/_utils)
+* Go to http://localhost:5984/your_db/boom_amazing/_design/boom_amazing/index.html?svg={relative path to svg file}
 * Start moving around, click save to add a slide
 * Replay the saved positions by clicking the next/previous links
 * Hack the code, add something awesome, share it on GitHub</diff>
      <filename>README.md</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,18 @@
 $(function() {
   
+  var svg_path = window.location.href.match(/svg=(.+\.svg)/)[1];
+  if(svg_path == null) {
+    alert('Plese specify the url of the svg file via the svg parameter');
+    return;
+  };
+  
   var couchapp = null;
   $.CouchApp(function(app) {
     couchapp = app;
   });
 
   var _screen = null;
-  Screen.init('#screen', '../../presentation/presentation.svg', function(__screen) {
+  Screen.init('#screen', svg_path, function(__screen) {
     _screen = __screen;
   });
 </diff>
      <filename>_attachments/javascripts/app.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5aa8111ee214958a08d14f4b1b228274eebda1d9</id>
    </parent>
  </parents>
  <author>
    <name>Alexander Lang</name>
    <email>alex@upstream-berlin.com</email>
  </author>
  <url>http://github.com/langalex/boom_amazing/commit/9b7978a5e772d6086da3e3af7d2010e76f55440b</url>
  <id>9b7978a5e772d6086da3e3af7d2010e76f55440b</id>
  <committed-date>2009-05-25T15:44:49-07:00</committed-date>
  <authored-date>2009-05-25T15:44:49-07:00</authored-date>
  <message>made svg file a parameter so that i can serve multiple svgs per presentation</message>
  <tree>c63973c8b31aab51368a917223fba715ab4b3feb</tree>
  <committer>
    <name>Alexander Lang</name>
    <email>alex@upstream-berlin.com</email>
  </committer>
</commit>
