zaach (owner)

Revisions

gist: 122600 Download_button fork
public
Public Clone URL: git://gist.github.com/122600.git
Embed All Files: show embed
chrome.manifest #
1
2
3
4
5
6
content narwhal-xpc content/
resource narwhal-xpc resources/
 
content narwhal narwhal/
 
skin narwhal-xpc classic/1.0 skin/classic/
directory structure #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 $ find .
.
./extensions
./defaults
./defaults/preferences
./defaults/preferences/debug.js
./defaults/preferences/prefs.js
./chrome
./chrome/chrome.manifest
./chrome/skin
./chrome/skin/classic
./chrome/skin/classic/main.css
./chrome/content
./chrome/content/main.js
./chrome/content/main.xul
./chrome/narwhal
./chrome/resources
./application.ini
./updates
./updates/0
./.xuldev
./components
 
main.xul #
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://narwhal-xpc/skin/main.css" type="text/css"?>
 
<window id="main" title="Narwhal on XUL" width="300" height="300"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 
  <script type="application/javascript" src="chrome://narwhal/content/platforms/xpc/bootstrap.js" />
 
  <vbox flex='1'>
    <button label="Hello World" oncommand="alert(42);"/>
  </vbox>
 
</window>