rename files to be more logical
authorunknown <JKKN@.(none)>
Fri, 4 Jan 2008 16:09:40 +0000 (17:09 +0100)
committerunknown <JKKN@.(none)>
Fri, 4 Jan 2008 16:09:40 +0000 (17:09 +0100)
content/browser_overlay.xul
content/quickbox.js

index 4c462b4c9a516aa8d7597070c04dcea2c3ac0fd0..ce8e101a07c40c5094f77e873f9513ef4435dce1 100755 (executable)
@@ -7,7 +7,7 @@
 
 <script type="application/x-javascript" src="util.js" />
 <script type="application/x-javascript" src="tv2developer.js" />
-<script type="application/x-javascript" src="main.js" />
+<script type="application/x-javascript" src="browser.js" />
 <stringbundleset id="stringbundleset">
     <stringbundle id="tv2developer_strings" src="chrome://tv2developer/locale/tv2developer.properties"/>
 </stringbundleset>
index 4943653df093b753739c307d685abc5b4110da69..885e91d34c65b15231267486e98b873d4d8928b4 100644 (file)
@@ -340,14 +340,14 @@ var TV2DeveloperQuickBox = {
             case 'go-viewcvs':
                 // Magically handle classnames (Enter as e.x. Tree_Node)
                 var classname = this._reg_classname.exec(shorturl);
-                if (classname) { // way want to move this section up a bit due to entered_url already set
+                if (classname) { // may want to move this section up a bit due to entered_url already set
                     var clsname = classname[0];
                     // remove ".php" :
                     if (classname[1]) {
                         clsname = clsname.substring(0, clsname.length-classname[1].length);
                     }
                     clsname = clsname.replace(/_/,'/');
-                    // add php if not entering on a slash:
+                    // add php if not entered ends on a slash:
                     if (clsname.substr(-1) != '/') clsname += '.php';
                     uri = uriOnly = '/' + clsname;
                     site = 'globals';