projects
/
WebThing.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Set WM bits and user agent
[WebThing.git]
/
plugins
/
DefaultPage.cs
1
using System;
2
using bytex64.WebThing;
3
4
public class Plugin {
5
public Plugin(WebThing wt) {
6
if (wt.Arguments.Length > 0) {
7
wt.OpenUri(wt.Arguments[0]);
8
} else {
9
wt.OpenUri("http://dominionofawesome.com/");
10
}
11
}
12
}