-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
executable file
·173 lines (129 loc) · 5.76 KB
/
team.html
File metadata and controls
executable file
·173 lines (129 loc) · 5.76 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<title>attoparser: powerful and easy java parser for XML and HTML markup</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="powerful and easy java parser for XML and HTML markup" />
<meta name="author" content="Attoparser" />
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet" />
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="css/bootstrap-responsive.css" rel="stylesheet" />
<link href="css/google-code-prettify/prettify.css" rel="stylesheet" />
</head>
<body lang="en" dir="ltr" onload="prettyPrint()">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.html"><img src="img/attoparser.png" alt="attoparser" /></a>
<div class="nav-collapse collapse">
<p class="navbar-text pull-right">
<img src="img/attoparser_motto.png" alt="powerful and easy java parser for XML and HTML markup" />
</p>
<ul class="nav">
<li><a href="index.html">home</a></li>
<li><a href="download.html">download</a></li>
<li><a href="usingattoparser.html">using attoparser</a></li>
<li><a href="javadoc.html">javadoc</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<!-- --------------------------------------------------------------------- -->
<!-- SIDEBAR -->
<!-- --------------------------------------------------------------------- -->
<div class="span2">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">ATTOPARSER</li>
<li><a href="index.html">home</a></li>
<li><a href="download.html">download</a></li>
<li class="nav-header">DOCS & HELP</li>
<li><a href="usingattoparser.html">using attoparser</a></li>
<li><a href="javadoc.html">javadoc API</a></li>
<li><a href="issuetracking.html">issue tracking</a></li>
<li><a href="license.html">license</a></li>
<li><a href="faq.html">faq</a></li>
<li class="active"><a href="team.html">team</a></li>
<li class="nav-header">SOURCE REPOSITORIES</li>
<li><a href="https://github.com/attoparser/attoparser">attoparser @GitHub</a></li>
</ul>
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<!-- CONTENT -->
<!-- --------------------------------------------------------------------- -->
<div class="span10">
<h3>Team</h3>
<p>
The team is comprised of <em>Members</em> and <em>Contributors</em>. Members have direct access to the
source of a project and actively evolve the code-base. Contributors improve the
project through submission of patches and suggestions to the Members. The number of
Contributors to the project is unbounded. Get involved today. All contributions to
the project are greatly appreciated!
</p>
<h3>Members</h3>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>GitHub ID</th>
<th>Name</th>
<th>Location</th>
<th>Role</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/danielfernandez">danielfernandez</a></td>
<td>Daniel Fernández</td>
<td>Spain</td>
<td>Lead Developer (Project founder)</td>
</tr>
</tbody>
</table>
<h3>Contributors</h3>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>GitHub ID</th>
<th>Name</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/facboy">facboy</a></td>
<td>Christopher Ng</td>
<td>United Kingdom</td>
</tr>
</tbody>
</table>
</div>
</div>
<hr />
<footer>
<p>Copyright © <a href="team.html">Attoparser</a>.</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/google-code-prettify/prettify.js"></script>
</body>
</html>