-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_old.html
146 lines (140 loc) · 5.75 KB
/
index_old.html
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title> luapower - Lua, JIT, batteries </title>
<script src="jquery.js"></script>
<script src="jquery-cookie.js"></script>
<script src="jquery-tablesorter.js"></script>
<script src="strftime.js"></script>
<script src="mustache.js"></script>
<script src="config.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="templates/reset.css" />
<link rel="stylesheet" type="text/css" href="templates/hack.css" />
<link rel="stylesheet" type="text/css" id="lights_css" />
<script>
var DOCNAME = 'index'
var PROJECT = ''
//set the lights before rendering starts
set_lights()
</script>
</head>
<body>
<header>
<div class="container">
<div class="btn-container btn-lights-container">
<a href="#" class="btn btn-lights" id="lights">lights</a>
</div>
<table id="header_table">
<tr>
<td style="vertical-align: middle;" width="100%">
<h1> luapower </h1>
<h2> Lua, JIT, batteries </h2>
</td>
<td style="vertical-align: middle;" align="right" style="height: 150px">
<table><tr><td>
<a href="https://github.com/luapower" class="btn btn-rightside btn-github"><span class="icon"></span>View on GitHub</a>
</td></tr><tr><td>
<a style="visibility: hidden" href="https://github.com/luapower//tarball/master" class="btn btn-rightside">Download as .tar.gz</a>
</td></tr><tr><td>
<a style="visibility: hidden" href="https://github.com/luapower//zipball/master" class="btn btn-rightside">Download as .zip</a>
</td></tr></table>
</td>
</tr>
</table>
</div>
</header>
<div class="bg-container">
<div class="bg-center-container">
<div class="bg bg-index" style="background-image: url('bg/index.png');"></div>
</div>
</div>
<div class="under-header">
<div class="container">
<div id="toc_container" class="toc_container doc"></div>
<button id=tab1_button class="tab_button hidden">Documentation</button>
<button id=tab2_button class="tab_button hidden">Package Info</button>
<div id="tabs_cointainer">
<div id="tab1_container">
<section class="doc">
<span id="module_info"></span>
<div class="figure">
<img src="luapower.png" />
</div>
<h2 id="news">News</h2>
<div id="news_table">
loading...
</div>
<h2 id="modules">Modules</h2>
<div id="package_table">
loading...
</div>
<div style="width: 100%; text-align: right; font-size: 80%">
manifest file: <a href="packages.lua">Lua</a> | <a href="packages.json">JSON</a>
</div>
<h2 id="lua-power-is">LUA POWER IS</h2>
<ul>
<li>a binary + source distribution of LuaJIT and Lua modules</li>
<li>a platform for publishing Lua modules</li>
</ul>
<h2 id="features">FEATURES</h2>
<ul>
<li><strong>LOW-TECH</strong>: based on http, zip, and git</li>
<li><strong>PORTABLE</strong>: no install, no deploy, just run</li>
<li><strong>MODULAR</strong>: each module is a separate git project</li>
<li><strong>ON GITHUB</strong>: fork/pull-request-based collaboration</li>
<li><strong>NO DIRECTORIES</strong>: all modules in a single directory</li>
<li><strong>BINARIES</strong> for all platforms: get code running in minutes</li>
<li><strong>SOURCES & BUILD SCRIPTS</strong>: upgrade it yourself, don't wait for others</li>
<li><strong>PACKAGE DATABASE</strong>: self-maintaining, auto-generated</li>
<li><strong>DOCUMENTED</strong>: online browsing or offline grepping; powered by pandoc</li>
<li><strong>FREE</strong>: no-strings attached</li>
</ul>
<blockquote>
<p>Read <a href="problem-solution.html">more</a> about the motivations behind these choices.</p>
</blockquote>
<h2 id="get-started">Get Started</h2>
<ol style="list-style-type: decimal">
<li>download <a href="luajit.html">luajit</a></li>
<li>choose/download wanted packages along with their listed dependencies</li>
<li>unzip all <em>over the same directory</em></li>
<li>(optional) <a href="building.html">rebuild</a> binaries</li>
<li>run a demo: <code>luajit ..._demo.lua</code></li>
</ol>
<p>This will give you an instantly <strong>portable luajit distro</strong> that will work reagardless of where you run it from. The luajit binary is in <code>bin/<your-platform>/</code> (cross-platform shell wrappers are in the root dir).</p>
<h2 id="get-started-git-way">Get Started / Git Way</h2>
<p>Alternatively you can go the git way with <a href="luapower-git.html">luapower-git</a> which allows you to:</p>
<ul>
<li>clone/build everything in one shot</li>
<li>keep your modules up-to-date by pulling</li>
<li><a href="get-involved.html">create your own modules</a> and publish them</li>
</ul>
<blockquote>
<p>NOTE: The listed dependencies for a package are for the modules of that package only. Associated demos and test units can sometimes have additional dependencies which are not listed, so I better tell you now: some test units need <a href="https://github.com/luapower/unit">unit</a>, and most demos need <a href="cplayer.html">cplayer</a> and <a href="glue.html">glue</a>.</p>
</blockquote>
<blockquote>
<p>NOTE: Packages marked <code>dev</code> are either in active development or are planned for more development in the future. In any case, they are not yet ready for public consumption. Poke around of course, just don't expect stability.</p>
</blockquote>
</section>
</div>
<div id="tab2_container" class="doc"></div>
</div>
</div>
<div class="container">
<footer>
<div id="disqus_thread"></div>
<div class="faint">cosmin.apreutesei@gmail.com | <a href="http://unlicense.org/">public domain</a></div>
</footer>
</div>
</div>
<script type="text/x-mustache" id=info_tab_template>
<h3>Modules</h3>
<ul>
{{#module_array}}
<li>{{name}}</li>
{{/module_array}}
</ul>
</script>
</body>
</html>