<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>firebug-1.4.2-fx.xpi</filename>
    </added>
    <added>
      <filename>venk/chrome.manifest</filename>
    </added>
    <added>
      <filename>venk/chrome/venkman.jar</filename>
    </added>
    <added>
      <filename>venk/components/venkman-service.js</filename>
    </added>
    <added>
      <filename>venk/install.js</filename>
    </added>
    <added>
      <filename>venk/install.rdf</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -7,8 +7,8 @@ this_dir = os.path.abspath(os.path.dirname(__file__))
 
 def cli():
     sys.argv.append('--launch')
-    # global_settings.MOZILLA_PLUGINS.append(os.path.join(this_dir, 'firebug-1.3.0-fx.xpi'))
-    # global_settings.MOZILLA_PLUGINS.append(os.path.join(this_dir, 'venk.xpi'))
+    global_settings.MOZILLA_PLUGINS.append(os.path.join(this_dir, 'firebug-1.4.2-fx.xpi'))
+    global_settings.MOZILLA_PLUGINS.append(os.path.join(this_dir, 'venk'))
     global_settings.MOZILLA_PLUGINS.append(os.path.join(this_dir, 'mytabs/extension'))
     
     jsbridge.cli(shell=False)</diff>
      <filename>manage.py</filename>
    </modified>
    <modified>
      <diff>@@ -36,8 +36,8 @@
 
 var controller = {}; Components.utils.import('resource://mytabs/modules/controller.js', controller);
 var elementslib = {}; Components.utils.import('resource://mytabs/modules/elementslib.js', elementslib);
-
-Components.utils.import(&quot;resource://gre/modules/JSON.jsm&quot;);
+// 
+//Components.utils.import(&quot;resource://gre/modules/JSON.jsm&quot;);
 var prefManager = Components.classes[&quot;@mozilla.org/preferences-service;1&quot;]
                           .getService(Components.interfaces.nsIPrefBranch);
                           
@@ -110,7 +110,12 @@ var mytabs = new function(){
         var tab = new controller.MozMillController(tabWin.contentDocument.defaultView);
         var doc = tabWin.contentDocument;
         var win = doc.defaultView;
-        eval(script);
+        try {
+          eval(script);
+        }
+        catch(err){
+          alert('There was a problem with the provided script! \n\n' + err.lineNumber + '\n' + err.fileName + '\n' + err.message );
+        }
         tabWin.removeEventListener(&quot;load&quot;, runit, true);
       }
      </diff>
      <filename>mytabs/extension/content/js/mytabs.js</filename>
    </modified>
    <modified>
      <diff>@@ -47,7 +47,13 @@
         height: 250,
         width: 400,
         modal:true,
-        resizable:false,
+        resizable:true,
+        resize: function(event, ui) { 
+          var h = $(&quot;#newDialog&quot;).css('height');
+          h.replace('px','');
+          var hInt = parseInt(h) - 100;
+          $('#script').css('height', hInt+'px');
+        },
         overlay: { 
             opacity: 0.5, 
             background: &quot;black&quot; 
@@ -86,6 +92,12 @@
           }
         }
       });
+      
+      var h = $(&quot;#newDialog&quot;).css('height');
+      h.replace('px','');
+      var hInt = parseInt(h) - 100;
+      $('#script').css('height', hInt+'px');
+      
   	});
   &lt;/script&gt;
 
@@ -119,7 +131,7 @@
 	&lt;/div&gt;
 	
 	&lt;div id=&quot;newDialog&quot; title=&quot;New Tab&quot;&gt;
-    &lt;div id=&quot;dialogTabs&quot; style=&quot;font-size:9px;&quot;&gt;
+    &lt;div id=&quot;dialogTabs&quot; style=&quot;font-size:9px;height:90%&quot;&gt;
     	&lt;ul&gt;
     		&lt;li&gt;&lt;a href=&quot;#dtabs-1&quot;&gt;Profile&lt;/a&gt;&lt;/li&gt;
     		&lt;li&gt;&lt;a href=&quot;#dtabs-2&quot;&gt;Script&lt;/a&gt;&lt;/li&gt;
@@ -134,7 +146,7 @@
         Open on startup? &lt;input type=checkbox name=&quot;onopen&quot; id=&quot;onopen&quot; checked&gt;
     	&lt;/div&gt;
     	&lt;div id=&quot;dtabs-2&quot;&gt;
-        &lt;textarea id=&quot;script&quot; rows=8 cols=60&gt;&lt;/textarea&gt;
+        &lt;textarea id=&quot;script&quot; style=&quot;height:75px;width:98%&quot;&gt;&lt;/textarea&gt;
     	&lt;/div&gt;
     &lt;/div&gt;
 </diff>
      <filename>mytabs/extension/content/mytabs.html</filename>
    </modified>
    <modified>
      <diff>@@ -31,7 +31,7 @@ var MyTabs = {
       mt.focus();
     }
     else {
-      var w = window.open(&quot;chrome://mytabs/content/mytabs.html&quot;, &quot;&quot;, &quot;chrome,centerscreen,height=300,width=500&quot;); 
+      var w = window.open(&quot;chrome://mytabs/content/mytabs.html&quot;, &quot;&quot;, &quot;chrome,centerscreen,height=300,width=500,resizable&quot;); 
     }
   }
 };
@@ -69,7 +69,7 @@ var Overlay = {
         // The example below loads a page by opening a new tab.
         // Useful for loading a mini tutorial
         window.setTimeout(function(){
-          gBrowser.selectedTab = gBrowser.addTab(&quot;about:mytabs&quot;);
+          gBrowser.selectedTab = gBrowser.addTab(&quot;about:MyTabs&quot;);
         }, 1500); //Firefox 2 fix - or else tab will get closed
 				
       }		</diff>
      <filename>mytabs/extension/content/overlay.js</filename>
    </modified>
    <modified>
      <diff>@@ -4,12 +4,32 @@
 &lt;html lang=&quot;en&quot;&gt;
 &lt;head&gt;
 	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
-	&lt;title&gt;MyTabs Config&lt;/title&gt;
+	&lt;title&gt;Thanks for installing MyTabs&lt;/title&gt;
 	&lt;meta name=&quot;generator&quot; content=&quot;TextMate http://macromates.com/&quot;&gt;
 	&lt;meta name=&quot;author&quot; content=&quot;adam&quot;&gt;
+  &lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
+    body, html
+    {	
+    	font-size: 10px;
+    	margin: 0px;
+    	padding: 0px;
+    	text-align: left;
+    	font-family: verdana, sans-serif;
+      padding: 0 0 0 0;
+      margin: 0 0 0 0; 
+      overflow: auto; overflow-y: hidden; overflow-x: hidden;
+      width:100%;
+      height:100%;
+      position:absolute;
+    }
+  &lt;/style&gt;
 	&lt;!-- Date: 2009-02-18 --&gt;
 &lt;/head&gt;
 &lt;body&gt;
-W00p W00p
+&lt;h2&gt;Thanks for installing MyTabs!&lt;/h2&gt;
+&lt;br&gt;
+You can always find updated information at the &lt;a href=&quot;http://wiki.github.com/admc/mytabs&quot;&gt;MyTabs Github Page&lt;/a&gt;.
+&lt;br&gt;
+Contact me at adam at adamchristian dot com, or log issues or requests in the &lt;a href=&quot;http://github.com/admc/mytabs/issues&quot;&gt;MyTabs Issue Tracker&lt;/a&gt;.
 &lt;/body&gt;
 &lt;/html&gt;</diff>
      <filename>mytabs/extension/content/prefs.html</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@
    &lt;Description about=&quot;urn:mozilla:install-manifest&quot;&gt;
      &lt;em:id&gt;mytabs@adamchristian.com&lt;/em:id&gt;
      &lt;em:name&gt;MyTabs&lt;/em:name&gt;
-     &lt;em:version&gt;0.1&lt;/em:version&gt;
+     &lt;em:version&gt;2.0&lt;/em:version&gt;
      &lt;em:creator&gt;Adam Christian&lt;/em:creator&gt;
      &lt;em:description&gt;MyTabs is a micro bookmarking tool to help you set your tabs straight.&lt;/em:description&gt;
      &lt;em:iconURL&gt;chrome://mytabs/content/mytabs.png&lt;/em:iconURL&gt;
@@ -13,7 +13,7 @@
        &lt;Description&gt;
          &lt;em:id&gt;{ec8030f7-c20a-464f-9b0e-13a3a9e97384}&lt;/em:id&gt;
          &lt;em:minVersion&gt;1.5&lt;/em:minVersion&gt;
-         &lt;em:maxVersion&gt;3.2a1pre&lt;/em:maxVersion&gt;
+         &lt;em:maxVersion&gt;3.6&lt;/em:maxVersion&gt;
        &lt;/Description&gt;
      &lt;/em:targetApplication&gt;
      &lt;em:iconURL&gt;chrome://mytabs/content/mytabs.png&lt;/em:iconURL&gt;</diff>
      <filename>mytabs/extension/install.rdf</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;!ENTITY title.label &quot;mytabs&quot;&gt;
+&lt;!ENTITY title.label &quot;MyTabs&quot;&gt;
 &lt;!ENTITY separate.label &quot;This is a separate window!&quot;&gt;
 &lt;!ENTITY close.label &quot;Close&quot;&gt;
\ No newline at end of file</diff>
      <filename>mytabs/extension/locale/en-US/mytabs.dtd</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;!ENTITY mytabs &quot;mytabs&quot;&gt;
\ No newline at end of file
+&lt;!ENTITY mytabs &quot;MyTabs&quot;&gt;
\ No newline at end of file</diff>
      <filename>mytabs/extension/locale/en-US/overlay.dtd</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,10 @@
-mytabs: set document.domain to itself to fix bug in FF
+MyTabs Firefox Extension
 
-Infos
\ No newline at end of file
+MyTabs is a designed for the person that uses there browser tabs as micro-bookmarks. When the browser doesn&#8217;t have a specific set of resources available at all times, you start feeling like something is missing. Not only do you care about having those resources open in a tab, but you also like them in a certain state (ie. logged in to..).
+
+You should now have everything you need to create all those tabs when Firefox opens, but also to create new tabs and build the steps required to get you back where you want to be.
+
+http://wiki.github.com/admc/mytabs
+http://github.com/admc/mytabs/issues
+
+adam@adamchristian.com
\ No newline at end of file</diff>
      <filename>mytabs/extension/readme.txt</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>venk.xpi</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>firebug-1.3.0-fx.xpi</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>c57534bd70505b2db9fdff78444ab6fe106d116a</id>
    </parent>
  </parents>
  <author>
    <name>Adam Christian</name>
    <email>adam.christian@gmail.com</email>
  </author>
  <url>http://github.com/admc/mytabs/commit/b6be728cef3cb206770928ee73555ff51d255621</url>
  <id>b6be728cef3cb206770928ee73555ff51d255621</id>
  <committed-date>2009-08-24T00:51:25-07:00</committed-date>
  <authored-date>2009-08-24T00:51:25-07:00</authored-date>
  <message>Fixing mytabs for FF 3.5, adding some polish and usability, bump to 2.0</message>
  <tree>d7789893ce75bfed8ad7fa6244399823d407aa46</tree>
  <committer>
    <name>Adam Christian</name>
    <email>adam.christian@gmail.com</email>
  </committer>
</commit>
