public
Description: Pembuat sources.list
Homepage:
Clone URL: git://github.com/fajran/pembuat-sourceslist.git
pembuat-sourceslist / index.html
100644 105 lines (81 sloc) 3.83 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
103
104
105
<?xml version="1.0" encoding="utf-8" ?>
 
<!--
Copyright (c) 2008 Fajran Iman Rusadi
http://github.com/fajran/pembuat-sourceslist
 
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
 
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
 
<!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>sources.list generator</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="mirrors.js"></script>
</head><body><div id="c">
 
<h1 class="t">sources.list generator</h1>
 
<div id="form">
<div><label for="dist" class="t">Release</label>
<select id="release" name="release">
<option value=""></option>
</select></div>
 
<div><label class="t">Component</label>
<ul id="component">
</ul></div>
 
<div><label class="t">Source code repository</label>
<input type="checkbox" name="source" id="source" value="source"/><span class="t">Include source code repository</span></div>
 
<div><label class="t">Additional repositories</label>
<ul id="extra">
</ul></div>
 
<div><label class="t">Mirror</label>
<div id="mirrors">
<p class="country"><span class="label t">Location</span>
<select id="country" name="country">
<option value='+main'>main repository</option>
<option value='+other'>other..</option>
</select></p>
 
<p class="provider" style="display:none"><span class="label t">Provider</span>
<select id="provider" name="mirror">
<option value=''></option>
</select></p>
 
<p class="protocol"><span class="label t">Protocol</span>
<select id="protocol" name="protocol">
<option value=''></option>
</select></p>
 
<p class="othermirror" style="display:none">
<input type="text" id="othermirror" value=""/> <br/>
<span class="othermirror">e.g. <strong></strong></span></p>
</div></div>
 
<div><input type="button" class="t" onclick="generate()" value="Generate sources.list"/></div>
 
<div><p id="error"></p></div>
</div>
 
<div id="sourceslist" style="display:none">
<h2>sources.list</h2>
<p>Write the following lines to
<code>/etc/apt/sources.list</code> and run <code>sudo apt-get
update</code> afterwards.</p>
 
<pre><code></code></pre>
</div>
 
<div id="footer">
<p>Copyright &copy; 2008 <a href="http://fajran.web.id">Fajran Iman Rusadi</a>
- <a href="http://www.ubuntu-id.org">Indonesian Ubuntu LoCo Team</a>.</p>
<p>This script is released under <a href="http://www.opensource.org/licenses/mit-license.php">MIT License</a>,
check it out at <a href="http://github.com/fajran/pembuat-sourceslist">http://github.com/fajran/pembuat-sourceslist</a>.</p>
</div>
 
<div id="overlay" style="display:none"><span class="loading">loading..</span></div>
 
 
</div></body></html>