-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeveloper.php
More file actions
100 lines (83 loc) · 3.46 KB
/
developer.php
File metadata and controls
100 lines (83 loc) · 3.46 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>The AspectJ project at Eclipse.org: Developers</title>
<link rel="stylesheet" href="aspectj_style.css" type="text/css"/>
</head>
<body>
<div id="container">
<?php require("banner.html"); ?>
<div id="main">
<!-- ================ Page specific content starts here ================ -->
<h1>aspectj: developer resources</h1>
<!-- =========== BUG REPORTS ================= -->
<h2>Bug Reports</h2>
<dl>
<dt><a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ">
Submit a new AspectJ bug report</a>
</dt>
<dd>
For guidance on writing bug reports and feature requests, see the
<a href="https://dev.eclipse.org/bugs/bugwritinghelp.html">
Eclipse Bug Writing Guidelines</a>
and the FAQ entries for
<a href="doc/released/faq.html#q:idebugs">writing IDE bugs</a>
and
<a href="doc/released/faq.html#q:ajcbugs">writing compiler bugs</a>.
</dd>
<dt><a href="https://dev.eclipse.org/bugs/query.cgi">View
AspectJ bug reports</a>
</dt>
<dd>Query the Bugzilla database for AspectJ bug reports and feature
requests, e.g., unresolved bugs in the
<a href="https://dev.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Compiler&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED">
compiler</a> or in support for
<a href="https://dev.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=IDE&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED">
IDE's </a> or
<a href="https://dev.eclipse.org/bugs/buglist.cgi?&product=AspectJ&component=Ant&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED">
Ant</a>.
</dd>
</dl>
<!-- =========== ASPECTJ-DEV ================= -->
<h2>Developer Mailing List</h2>
<dl>
<dt><a target="_top" href="https://dev.eclipse.org/mailman/listinfo/aspectj-dev">
aspectj-dev at eclipse.org</a> or
<a target="_top" href="https://dev.eclipse.org/mhonarc/lists/aspectj-dev/maillist.html">
archives</a>
(<a href="https://www.eclipse.org/search/search.cgi?ul=%2Fmhonarc%2Flists%2Faspectj-dev">
search</a>).
</dt>
<dd>
Supports discussion among AspectJ developers on topics such as
language design, new features, and best usage practices.
</dd>
</dl>
<!-- =========== DEVELOPER DOCS ================= -->
<h2>Developer Documentation</h2>
<dl>
<dt><a href="doc/released/faq.html#Developers">Developer FAQ</a>
</dt>
<dd>Answers to questions about building and extending AspectJ.
</dd>
<dt><a href="plans.php">Plans</a>
</dt>
<dd>Plans for the next release of AspectJ (scheduled features, bug fixes etc.).
</dd>
</dl>
<!-- =========== SOURCE CODE ================= -->
<h2>Sources</h2>
<dl>
<dt><a href="https://dev.eclipse.org/viewcvs/index.cgi?cvsroot=Technology_Project">
AspectJ CVS Repository</a>
</dt>
<dd> Use the web interface to browse the AspectJ source code or
<a href="doc/released/faq.html#q:buildingsource">use CVS to download it</a>.
</dd>
</dl>
<!-- ================ End of page specific content ===================== -->
</div>
</div>
</body>
</html>