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
|
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
#
# Copyright 2010, Richard Lowe
#
# This file constitutes an informal registry for information tracking
# systems. Its intended use is to facilitate resolving references to
# multiple such systems in SCM-embedded comments.
#
# Systems are listed alphabetically by unique PREFIX. No priority of
# reference should be inferred from this ordering. Applications
# using this information should provide their own methods to prioritize
# systems of record.
#
#
# The following fields are valid for each information tracking system.
# Fields not designated as required are optional.
#
# PREFIX (required)
#
# A unique, three-character abbreviation. Please avoid generic
# terms like "bug," and instead use something derivative of the name
# or URL of the actual system.
#
# INFO
#
# A URL for additional information about the system. Should be the
# home page, essentially.
#
# EXTERNAL_URL (required)
#
# A URL to resolve reference to a unique key. See NOTES below.
#
# INTERNAL_URL_domain
#
# A URL that is valid only in the specified domain. Arbitrarily many
# INTERNAL_URLs may be provided. Define only if different from EXTERNAL_URL
# in specified domain.
#
# REGEX (required)
#
# A regexp(7) to tokenize a valid, unique key. See NOTES below.
#
# CONTACT
#
# A valid e-mail address for support of the system.
#
#
# NOTES
#
# REGEX should use parenthesization via \(\) to provide one or more
# tokens to be substituted in *_URLs. See regexp(7) for syntax.
#
# A REGEX for a particular system is required to match any unique keys
# that are valid for that system. For the common case, where such a key
# is numeric, it may be matched by the REGEX entries for multiple systems.
# Resolution of such ambiguity may be accomplished through prioritization
# or use of PREFIX, and is left to individual applications.
#
#
# The case logs for Sun Microsystems, Inc. Architecture Review Committees.
# The database for this system is inside Sun's firewall, so the access URLs
# are different on- and off-SWAN. The off-SWAN URL actually references a
# redacted, external mirror of the internal database.
#
PREFIX=arc
INFO=http://opensolaris.org/os/community/arc/
EXTERNAL_URL=http://arc.opensolaris.org/caselog/\\1/\\2/\\3
INTERNAL_URL_sun.com=http://sac.sfbay.sun.com/Archives/CaseLog/arc/\\1/\\2/\\3
REGEX=\\([A-Z]\\{1\,2\\}ARC\\)[ \\/]\\([0-9]\\{4\\}\\)\\/\\([0-9]\\{3\\}\\)
CONTACT=arc-discuss@opensolaris.org
#
# grommit is maintained by stevel, and was used for early tools work
# in the scm-migration project.
#
PREFIX=bgc
INFO=http://bugs.grommit.com/
EXTERNAL_URL=http://bugs.grommit.com/show_bug.cgi?id=\\1
REGEX=\\([0-9]\\{1\,5\\}\\)
CONTACT=
#
# This is the bugzilla instance on opensolaris.org.
#
PREFIX=doo
INFO=http://defect.opensolaris.org/bz/
EXTERNAL_URL=http://defect.opensolaris.org/bz/show_bug.cgi?id=\\1
REGEX=\\([0-9]\\{1\,6\\}\\)
CONTACT=tools-discuss@opensolaris.org
#
# This is the bugzilla instance on freedesktop.org, used by X.Org and a
# variety of open source desktop modules shared by multiple desktops.
#
PREFIX=fdo
INFO=http://bugs.freedesktop.org/
EXTERNAL_URL=http://bugs.freedesktop.org/show_bug.cgi?id=\\1
REGEX=\\([0-9]\\{1\,6\\}\\)
CONTACT=sitewranglers@lists.freedesktop.org
#
# The Roundup instance used at Selenic to track defects in Mercurial.
#
PREFIX=mer
INFO=http://roundup.sourceforge.net/doc-1.0/
EXTERNAL_URL=http://www.selenic.com/mercurial/bts/issue\\1
REGEX=\\([0-9]\\{1\,5\\}\\)
CONTACT=
#
# The proprietary defect tracking system used by Sun Microsystems, Inc.
# The database for this system is inside Sun's firewall, so the access URLs
# are different on- and off-SWAN. The off-SWAN URL provides restricted,
# redacted access to the internal database through a controlled boundary
# system.
#
PREFIX=sun
INFO=http://bugs.opensolaris.org/
EXTERNAL_URL=http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=\\1
INTERNAL_URL_sun.com=http://monaco.sfbay.sun.com/detail.jsf?cr=\\1
REGEX=\\([0-9]\\{7\\}\\)
CONTACT=opendev-discuss@opensolaris.org
#
# The redmine instance on illumos.org
#
PREFIX=illumos
INFO=http://illumos.org
EXTERNAL_URL=https://illumos.org/issues/\\1
REGEX=\\([0-9]\\{1\,6\\}\\)
CONTACT=developer@lists.illumos.org
|