-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevelopment.php
More file actions
55 lines (49 loc) · 2.01 KB
/
development.php
File metadata and controls
55 lines (49 loc) · 2.01 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="KEYWORDS" content="Toobs Java Web Framework" />
<meta name="DESCRIPTION" content="Toobs, The java web framework" />
<!-- <meta name="robots" content="index,follow" /> -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<title>Toobs</title>
<link href="css/main.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include("includes/header.php"); ?>
<div id="main">
<h1>Development</h1>
<div class="info">
Toobs uses <a href="http://git-scm.com/">git</a> and <a href="http://github.com">github</a> for source control. We rather like the distributed nature of git and the social coding aspect of github.
</div>
<div class="pad"></div>
<div class="info">
<h2>get the code</h2>
<pre><code>git clone git://github.com/toobs/toobs.git</code></pre>
</div>
<div class="pad"></div>
<div class="info">
<h2>submitting code</h2>
The preferred way of submitting your code to the project is in the form of a github pull request.
<h4>You simply:</h4>
<ol>
<li>fork our main repository.</li>
<li>make your improvements</li>
<li>push your changes to your repo on github</li>
<li>click on send pull request</li>
<li>select toobs</li>
<li>write a little explanation and justification for your changes</li>
<li>submit</li>
</ol>
The other, and less preferred way, is to create a patch and submit it via email to toobs@yahoogroups.com
</div>
<div class="pad"></div>
<div class="info">
<h2>What will get your patch accepted</h2>
</div>
<div class="pad"></div>
</div>
<?php include("includes/footer.php"); ?>
</body>
</html>