This repository was archived by the owner on Feb 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (85 loc) · 4.32 KB
/
Copy pathindex.html
File metadata and controls
102 lines (85 loc) · 4.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>goosh.org - the unofficial google shell</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="goosh is a google-interface that behaves similar to a unix-shell." />
<meta name="keywords" content="google, shell, google shell, commandline, cli, bash, interface, ajax, api, unix, search" />
<meta name="author" content="Stefan Grothkopp" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" title="main" charset="utf-8" />
<script type="text/javascript">
/*
Goosh.org (c) 2008 - Stefan Grothkopp
This script is a google-interface that behaves similar to a unix-shell.
goosh is written by Stefan Grothkopp (grothkopp (at) gmail (dot) com)
it is NOT an official google product!
If you want to extend goosh.org, please take a look at the load command.
You can see an example module at http://goosh.org/ext/spon.js
Uncompressed source can be found at:
http://code.google.com/p/goosh/
Instructions for svn access are at:
http://code.google.com/p/goosh/source/checkout
If you have problems/bug reports/etc please write me an email.
*/
var goosh = new Object();
goosh.lib = new Object();
</script>
<script src="lib/namespace.js" type="text/javascript"></script>
<script src="lib/in_array.js" type="text/javascript"></script>
<script src="lib/chop.js" type="text/javascript"></script>
<script src="lib/get.js" type="text/javascript"></script>
<script src="lib/cookie.js" type="text/javascript"></script>
<script src="lang/lang.js" type="text/javascript"></script>
<script src="gui/gui.js" type="text/javascript"></script>
<script src="set/set.js" type="text/javascript"></script>
<script src="ajax/ajax.js" type="text/javascript"></script>
<script src="config/config.js" type="text/javascript"></script>
<script src="lib/keyboard.js" type="text/javascript"></script>
<script src="modules/modules.js" type="text/javascript"></script>
<script src="module/web.js" type="text/javascript"></script>
<script src="module/addengine.js" type="text/javascript"></script>
<script src="module/blogs.js" type="text/javascript"></script>
<script src="module/calc.js" type="text/javascript"></script>
<script src="module/cd.js" type="text/javascript"></script>
<script src="module/clear.js" type="text/javascript"></script>
<script src="module/feed.js" type="text/javascript"></script>
<script src="module/go.js" type="text/javascript"></script>
<script src="module/help.js" type="text/javascript"></script>
<script src="module/images.js" type="text/javascript"></script>
<script src="module/inurl.js" type="text/javascript"></script>
<script src="module/load.js" type="text/javascript"></script>
<script src="module/ls.js" type="text/javascript"></script>
<script src="module/lucky.js" type="text/javascript"></script>
<script src="module/more.js" type="text/javascript"></script>
<script src="module/news.js" type="text/javascript"></script>
<script src="module/open.js" type="text/javascript"></script>
<script src="module/place.js" type="text/javascript"></script>
<script src="module/read.js" type="text/javascript"></script>
<script src="module/settings.js" type="text/javascript"></script>
<script src="module/translate.js" type="text/javascript"></script>
<script src="module/video.js" type="text/javascript"></script>
<script src="module/wiki.js" type="text/javascript"></script>
<script src="module-exp/gmail.js" type="text/javascript"></script>
<script src="module-exp/login.js" type="text/javascript"></script>
<script src="module-exp/logout.js" type="text/javascript"></script>
<script src="goosh.js" type="text/javascript"></script>
</head>
<body id="body">
<div id="output">
</div>
<div id="input">
<form name='f' onsubmit='return false;' class='cmdline' action=''>
<table class="inputtable">
<tr>
<td>
<div id='prompt' class='less'></div>
</td>
<td class="inputtd">
<input id='inputfield' name='q' type='text' class='cmdline' autocomplete='off' value="" />
</td>
</tr>
</table>
</form>
</div>
</body>
</html>