<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>
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';