Changes

Jump to: navigation, search

Learning Collaborative Development Lab Fall 2008 Results

1,244 bytes added, 12:39, 9 September 2008
no edit summary
</pre>
----
--[[User:pplam3|Patrick Lam]]
 
This command opens up the ChatZilla extension and connect to moznet
CmdUtils.CreateCommand({
name: "irc",
icon: "https://addons.mozilla.org/en-US/firefox/images/addon_icon/16",
preview: "Starts ChatZilla 0.9.83 and connects to irc://moznet/",
execute: function() {
Utils.openUrlInBrowser( "irc://moznet/" );
}
})
 
This command goes to any users blog at Blogspot
CmdUtils.CreateCommand({
name: "blog",
takes: {"user": noun_arb_text},
icon: "http://pplam3.blogspot.com/favicon.ico",
preview: "Goes to (user).blogspot.com",
execute: function( directObj ) {
Utils.openUrlInBrowser( "http://" + directObj.text + ".blogspot.com" );
}
})
 
This command goes to either Weekly Schedule or the Planet blog
CmdUtils.CreateCommand({
name: "osd",
takes: {"blog": noun_arb_text},
preview: "Goes to OSD600 Weekly Schedule.<br/>By typing 'blog' after, it goes to the Planet's Blog",
execute: function( directObj ) {
if( directObj == null) {
Utils.openUrlInBrowser( "http://zenit.senecac.on.ca/wiki/index.php/DPS909_and_OSD600_Fall_2008_Weekly_Schedule" );
}
else {
Utils.openUrlInBrowser( "http://zenit.senecac.on.ca/~chris.tyler/planet/" );
}
}
})
----
1
edit

Navigation menu