View | Details | Raw Unified | Return to bug 79239
Collapse All | Expand All

(-)usergroups/Makefile (+65 lines)
Added Link Here
1
# $FreeBSD$
2
3
.if exists(../Makefile.conf)
4
.include "../Makefile.conf"
5
.endif
6
.if exists(../Makefile.inc)
7
.include "../Makefile.inc"
8
.endif
9
10
DOCS=   usergroups.sgml
11
12
DATA=	usergroups-au.html
13
DATA+=	usergroups-eu.html
14
DATA+=	usergroups-na.html
15
DATA+=	usergroups-rest.html
16
17
CLEANFILES=  usergroups.html
18
CLEANFILES+=  usergroups-au.html
19
CLEANFILES+=  usergroups-eu.html
20
CLEANFILES+=  usergroups-na.html
21
CLEANFILES+=  usergroups-rest.html
22
23
INDEXLINK= usergroups.html
24
25
XMLLINT?= /usr/local/bin/xmllint # Part of textproc/libxml2.
26
27
usergroups-au.html: entries.xsl usergroups-au.xml ../includes.xsl
28
	${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
29
		--param pagename "'Usergroups Australia'" \
30
		${.CURDIR}/entries.xsl ${.CURDIR}/usergroups-au.xml
31
.if !defined(NO_TIDY)
32
	-${TIDY} ${TIDYOPTS} ${.TARGET}
33
.endif
34
35
usergroups-eu.html: entries.xsl usergroups-eu.xml ../includes.xsl
36
	${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
37
		--param pagename "'Usergroups Europe'" \
38
		${.CURDIR}/entries.xsl ${.CURDIR}/usergroups-eu.xml
39
.if !defined(NO_TIDY)
40
	-${TIDY} ${TIDYOPTS} ${.TARGET}
41
.endif
42
43
usergroups-na.html: entries.xsl usergroups-na.xml ../includes.xsl
44
	${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
45
		--param pagename "'Usergroups North-America'" \
46
		${.CURDIR}/entries.xsl ${.CURDIR}/usergroups-na.xml
47
.if !defined(NO_TIDY)
48
	-${TIDY} ${TIDYOPTS} ${.TARGET}
49
.endif
50
51
usergroups-rest.html: entries.xsl usergroups-rest.xml ../includes.xsl
52
	${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
53
		--param pagename "'Usergroups in the rest of the world'" \
54
		${.CURDIR}/entries.xsl ${.CURDIR}/usergroups-rest.xml
55
.if !defined(NO_TIDY)
56
	-${TIDY} ${TIDYOPTS} ${.TARGET}
57
.endif
58
59
lint:
60
	${XMLLINT} --valid -o /dev/null ${.CURDIR}/usergroups-au.xml
61
	${XMLLINT} --valid -o /dev/null ${.CURDIR}/usergroups-eu.xml
62
	${XMLLINT} --valid -o /dev/null ${.CURDIR}/usergroups-na.xml
63
	${XMLLINT} --valid -o /dev/null ${.CURDIR}/usergroups-rest.xml
64
65
.include "${WEB_PREFIX}/share/mk/web.site.mk"
(-)usergroups/entries.dtd (+41 lines)
Added Link Here
1
<!-- DTD for usergroup entries on the FreeBSD website. -->
2
<!-- $FreeBSD$ -->
3
4
<!ELEMENT entries (cvs:keywords?, entry+)>
5
6
<!ELEMENT entry (name, url, description)>
7
<!ATTLIST entry id ID #REQUIRED>
8
<!ATTLIST entry continent (africa | asia | australia
9
	| europe | nzealand | namerica | samerica | meast) #IMPLIED>
10
11
<!ATTLIST entry location (DATABASE | DEV | ECOMMERCE | EMAIL
12
	| MISC | MULTIMEDIA | NETWORK | SCIENTIFIC | SECURITY | SYSADMIN) #IMPLIED>
13
14
<!ELEMENT name (#PCDATA)>
15
<!ELEMENT url (#PCDATA)>
16
<!ELEMENT description (#PCDATA|a|b|i|tt|em|p|code|strong|img|ul)*>
17
18
<!-- misc HTML tags -->
19
<!ELEMENT a (#PCDATA|img)*>
20
<!ATTLIST a href CDATA #REQUIRED>
21
22
<!ELEMENT b (#PCDATA|a)*>
23
<!ELEMENT i (#PCDATA|a)*>
24
<!ELEMENT tt (#PCDATA|a)*>
25
<!ELEMENT em (#PCDATA|a)*>
26
<!ELEMENT code (#PCDATA|a)*>
27
<!ELEMENT p (#PCDATA|a)*>
28
<!ELEMENT strong (#PCDATA|a)*>
29
<!ELEMENT ul (li)*>
30
<!ELEMENT li (#PCDATA|a)*>
31
<!ELEMENT img (#PCDATA|a)*>
32
<!ATTLIST img alt CDATA #IMPLIED>
33
<!ATTLIST img src CDATA #REQUIRED>
34
35
<!-- common cvs tags -->
36
<!ELEMENT cvs:keywords (cvs:keyword+)>
37
<!ATTLIST cvs:keywords xmlns:cvs CDATA #FIXED 'http://www.FreeBSD.org/XML/CVS'>
38
<!ATTLIST cvs:keywords version CDATA #FIXED '1.0'>
39
40
<!ELEMENT cvs:keyword (#PCDATA)>
41
<!ATTLIST cvs:keyword name CDATA #REQUIRED>
(-)usergroups/entries.xsl (+74 lines)
Added Link Here
1
<?xml version="1.0"?>
2
3
<!-- Copyright (c) 2004 Josef El-Rayes <josef at FreeBSD.org>
4
     All rights reserved.
5
6
     Redistribution and use in source and binary forms, with or without
7
     modification, are permitted provided that the following conditions
8
     are met:
9
     1. Redistributions of source code must retain the above copyright
10
	notice, this list of conditions and the following disclaimer.
11
     2. Redistributions in binary form must reproduce the above copyright
12
	notice, this list of conditions and the following disclaimer in the
13
	documentation and/or other materials provided with the distribution.
14
15
     THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16
     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
     ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19
     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21
     OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22
     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23
     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24
     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
     SUCH DAMAGE.
26
27
     $FreeBSD$
28
-->
29
30
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
31
  xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
32
  exclude-result-prefixes="cvs">
33
34
  <xsl:import href="../includes.xsl"/>
35
36
  <xsl:variable name="base" select="'..'"/>
37
  <xsl:variable name="date">
38
    <xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
39
  </xsl:variable>
40
  <xsl:variable name="email" select="'freebsd-www'"/>
41
  <xsl:variable name="title" select="'Usergroups'"/>
42
  <xsl:param name="pagename" select="''"/>
43
44
  <xsl:output method="xml" encoding="iso-8859-1"
45
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
46
    doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
47
48
  <xsl:template match="entries">
49
    <html>
50
      <xsl:copy-of select="$header1"/>
51
52
      <body xsl:use-attribute-sets="att.body">
53
	<xsl:copy-of select="$header2"/>
54
55
    	<p>FreeBSD's widespread popularity has spawned a number of user groups
56
      	  around the world.  If you know of a FreeBSD user group not listed here,
57
	  please fill out a <a href="http://www.freebsd.org/send-pr.html">
58
	    problem report</a> for category www.  Submissions should be in HTML
59
	  and must offer a short description.</p>
60
61
	<h2><xsl:value-of select="$pagename"/></h2>
62
63
	<xsl:for-each select="entry">
64
	  <xsl:sort select="name" order="ascending"/>
65
	  <a name="{@id}" href="{url}">
66
	    <xsl:value-of select="name"/>
67
	  </a><br/>
68
	  <xsl:copy-of select="description/child::node()"/><br/><br/>
69
	</xsl:for-each>
70
	<xsl:copy-of select="$footer"/>
71
      </body>
72
    </html>
73
  </xsl:template>
74
</xsl:stylesheet>
(-)usergroups/usergroups-au.xml (+68 lines)
Added Link Here
1
<?xml version="1.0"?>
2
<!DOCTYPE entries SYSTEM "entries.dtd">
3
<!--
4
  Available continents: < africa | asia | australia | europe
5
  | nzealand | namerica | samerica >
6
-->
7
8
<entries>
9
  <cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
10
    <cvs:keyword name="freebsd">
11
      $FreeBSD$
12
    </cvs:keyword>
13
  </cvs:keywords>
14
15
  <entry id="bugs" continent="australia">
16
    <name>BSD Users Group Sydney (BUGS)</name>
17
    <url>http://www.bugs.au.FreeBSD.org/</url>
18
    <description>The BSD Users Group Sydney (BUGS) mees every two
19
      months and have mailing list members from all over NSW.  To
20
      join the mailing list send a message to <a
21
        href="mailto:majordomo at bugs.au.FreeBSD.org">
22
        majordomo at bugs.au.FreeBSD.org</a> with <code>subscribe bugs</code>
23
      in the body of the message. Located in New South Wales.
24
    </description>
25
  </entry>
26
27
  <entry id="humbug" continent="australia">
28
    <name>Home Unix Users Group for Brisbane</name>
29
    <url>http://www.humbug.org.au/</url>
30
    <description>We meet fortnightly at meeting rooms provided by the
31
      <a href="http://www.uq.edu.au/">University of Queensland</a>.
32
      More information, including how to join the mailing lists, is
33
      available at <a
34
        href="http://www.humbug.org.au/">http://www.humbug.org.au</a>.
35
      Located in Queensland.
36
    </description>
37
  </entry>
38
39
  <entry id="buga" continent="australia">
40
    <name>BUGA, The BSD User Group of Adelaide</name>
41
    <url>mailto:majordomo at lemis.com</url>
42
    <description>We meet at irregular intervals. Join the mailing list
43
      by sending a message to <a
44
      href="mailto:majordomo at lemis.com">majordomo at lemis.com</a> with
45
      the text <code>subscribe BUGA</code> in the body. Located in
46
      South Australia.
47
    </description>
48
  </entry>
49
50
  <entry id="vicfug" continent="australia">
51
    <name>Victoria's FreeBSD Users Group (VicFUG)</name>
52
    <url>http://www.vicfug.au.FreeBSD.org/</url>
53
    <description>Based in Melbourne. You can join the mailing list by
54
      sending an empty message to <a
55
        href="mailto:general-subscribe at vicfug.au.FreeBSD.org">
56
	  general-subscribe at vicfug.au.FreeBSD.org</a>. Located in
57
      Victoria
58
    </description>
59
  </entry>
60
61
  <entry id="pandaemonium" continent="australia">
62
    <name>Pandaemonium</name>
63
    <url>http://www.pandaemonium.newmillenium.net.au/</url>
64
    <description>The BSD Users Group for Western Australia.
65
      Located in West Australia.
66
    </description>
67
  </entry>
68
</entries>
(-)usergroups/usergroups-eu.xml (+338 lines)
Added Link Here
1
<?xml version="1.0"?>
2
<!DOCTYPE entries SYSTEM "entries.dtd">
3
<!--
4
  Available continents: < africa | asia | australia | europe
5
  | nzealand | namerica | samerica >
6
-->
7
8
<entries>
9
  <cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
10
    <cvs:keyword name="freebsd">
11
      $FreeBSD$
12
    </cvs:keyword>
13
  </cvs:keywords>
14
15
  <entry id="bugat" continent="europe">
16
    <name>The BSD User Group Austria (BUGAT)</name>
17
    <url>http://www.bugat.at/</url>
18
    <description>The BSD User Group Austria (BUGAT) is a
19
      german-language oriented user group.  Visit our <a
20
        href="http://www.bugat.at">server</a> for more
21
      information.  Located in Austria.
22
    </description>
23
  </entry>
24
25
  <entry id="bsd-dk" continent="europe">
26
    <name>BSD-DK</name>
27
    <url>http://www.bsd-dk.dk/</url>
28
    <description>The Danish BSD User Group. Promotion and support of the
29
      BSD derived Operating Systems in Denmark. Mailing lists, lecture
30
      and workshops. Send mail subscription requests to <a
31
        href="mailto:bsd-dk-request at bsd-dk.dk">
32
	bsd-dk-request at bsd-dk.dk</a>.  Located in Denmark.
33
    </description>
34
  </entry>
35
36
  <entry id="aauug" continent="europe">
37
    <name>AaUUG</name>
38
    <url>http://www.aauug.dk/</url>
39
    <description>AaUUG is a general Unix Group with most interest in
40
      Linux and BSD. <a href="http://aauug.dk/postlister.html">
41
        Mailinglists</a>, lectures and meetings.  Located in Denmark,
42
      Aarhus.
43
    </description>
44
  </entry>
45
46
  <entry id="freebsd-fr" continent="europe">
47
    <name>The French FreeBSD UG</name>
48
    <url>http://www.FreeBSD-fr.org/</url>
49
    <description>Please follow the link for details.  Located in France.
50
    </description>
51
  </entry>
52
53
  <entry id="Aachener-BSD" continent="europe">
54
    <name>The Aachener BSD Stammtisch</name>
55
    <url>http://foldr.org/mailman/listinfo/bsd-ac/</url>
56
    <description>The Aachener BSD Stammtisch is meeting infrequently
57
      to discuss BSD and related matters over a glass of beer.
58
      Meetings are coordinated through our <a
59
      href="http://foldr.org/mailman/listinfo/bsd-ac">mailing
60
        list</a>.  Located in Germany, Aachen.
61
    </description>
62
  </entry>
63
64
  <entry id="bsdberlin" continent="europe">
65
    <name>BSD Berlin</name>
66
    <url>http://www.bsdberlin.org/</url>
67
    <description>The BSD Berlin meets every 3rd Friday of the month.
68
      For more information about meetings and related issues, please
69
      subscribe to our <a href="http://www.bsdberlin.org/kontakt.html">
70
      mailing list</a>.  Located in Germany, Berlin.
71
    </description>
72
  </entry>
73
74
  <entry id="bsd-crew" continent="europe">
75
    <name>BSD-Crew Dresden</name>
76
    <url>http://www.bsd-crew.de/</url>
77
    <description>BSD-Crew Dresden is a User Group who has some projects
78
      related in bringing the BSD to the desktop and electronic
79
      communication.  Located in Germany, Dresden.
80
    </description>
81
  </entry>
82
83
  <entry id="cosmo-project" continent="europe">
84
    <name>The Cosmo-Project</name>
85
    <url>http://www.cosmo-project.de/</url>
86
    <description>The Cosmo-Project is a User Group with a difference.
87
      Instead of just meeting, they actively develop project such as
88
      robots.  Most users use FreeBSD, but it is not a specifically
89
      FreeBSD-related group.  Located in Germany, Duisburg.
90
    </description>
91
  </entry>
92
93
  <entry id="frankfurtbsd" continent="europe">
94
    <name>FrankfurtBSD</name>
95
    <url>http://www.morix.de/frankfurtbsd/</url>
96
    <description>FrankfurtBSD is a User Group for the Rhein-Main area.
97
      We are currently looking for new members.  As soon as we have
98
      grown later, we would like to meet monthly and maintain minor
99
      projects.  Located in Germany, Frankfurt.
100
    </description>
101
  </entry>
102
103
  <entry id="bsdhh" continent="europe">
104
    <name>BSD User Group Hamburg (BSDHH)</name>
105
    <url>http://www.bsdhhh.org/bsdhh-faq.en.html/</url>
106
    <description>The BSD User Group Hamburg (BSDHH) meets on the first
107
      Wednesday of the month at 7.00pm in the Chinese restaurant
108
      <em>Lotosblute</em>, Luwenstrasse 22 in Hamburg-Eppendorf.  Most
109
      members are FreeBSD users, although users of all BSD flavors are
110
      welcome.  Located in Germany, Hamburg.
111
    </description>
112
  </entry>
113
114
  <entry id="uugrn" continent="europe">
115
    <name>Unix Users Group Rhein-Neckar eV (UUGRN eV)</name>
116
    <url>http://www.uugrn.org/</url>
117
    <description>The Unix Users Group Rhein-Neckar eV (UUGRN eV)
118
      provides a regional forum for users of all Unix flavors, with a
119
      stress on Linux and BSD. <a
120
        href="http://www.uugrn.org/kalender.php">Meetings</a> are
121
      held on the second Thursday of each month at the
122
      "hafenschenke" in Mannheim and the fourth Wednesday of each
123
      month at the "Vater Rhein" in Heidelberg.  Located in Germany,
124
      Mannheim.
125
    </description>
126
  </entry>
127
128
  <entry id="bim" continent="europe">
129
    <name>Berkeley in Munich (BIM)</name>
130
    <url>http://bim.bsn.com/</url>
131
    <description>The Berkeley in Munich (BIM) caters for users of BSD
132
      based systems in Oberbayern.  Located in Germany, Munich.
133
    </description>
134
  </entry>
135
136
  <entry id="freeunix" continent="europe">
137
    <name>Unix and Linux User Group</name>
138
    <url>http://www.2use.de/freeunix/</url>
139
    <description>The Unix and Linux User Group is a general Unix Users
140
      Group for anyone in Regensburg (Bavaria, Germany).  We meet on
141
      every first Monday of the month in the pub ``Filmbuhne'' in
142
      Regensburg.  Visit the website or send a message to <a
143
        href="mailto:m.suess at 2use.org">m.suess at 2use.org</a>.  Located
144
      in Germany, Regensburg.
145
    </description>
146
  </entry>
147
148
  <entry id="bugi" continent="europe">
149
    <name>BSD User Group Ireland (BUGI)</name>
150
    <url>http://bugi.redbrick.dcu.ie/</url>
151
    <description>The BSD User Group Ireland (BUGI) is currently a
152
      rather grandiose term for a mailing list and super minimal
153
      webpage.  All BSD users and enthusiasts are welcome.  Located
154
      in Ireland.
155
    </description>
156
  </entry>
157
158
  <entry id="gufi" continent="europe">
159
    <name>Gruppo Utenti FreeBSD Italia (GUFI)</name>
160
    <url>http://www.gufi.org/</url>
161
    <description>The Gruppo Utenti FreeBSD Italia (GUFI) is a "italian
162
      powered" FreeBSD User Group. It is intended to help Italian
163
      FreeBSD users to find support and articles on/about FreeBSD in
164
      the italian language. Please follow this <a
165
        href="http://www.gufi.org/">link</a> to know more about us.
166
      Located in Italia.
167
    </description>
168
  </entry>
169
170
  <entry id="bug-lv" continent="europe">
171
    <name>BSD User Group Latvia</name>
172
    <url>http://www.bug.lv</url>
173
    <description>To learn more about the BSD User Group Latvia,
174
      please visit our <a href="http://www.bug.lv/">site</a> and
175
      our <a href="http://www.bug.lv/">forums</a>.  Located in Latvia.
176
    </description>
177
  </entry>
178
179
  <entry id="nlfug" continent="europe">
180
    <name>The Dutch FreeBSD User Group (NLFUG)</name>
181
    <url>http://www.nlfug.nl</url>
182
    <description>The Dutch FreeBSD User Group (NLFUG) has had our first
183
      meeting on oct 2, 1999. On this day 30 years before that, the
184
      second IMP was installed in Doug Englebart's lab at SRI.  This,
185
      as you all know, was the start of something that grew to be the
186
      Internet (thanks to Edwin Kremer for bringing this under our
187
      attention).  Located in the Netherlands.
188
    </description>
189
  </entry>
190
191
  <entry id="nobug" continent="europe">
192
    <name>The Norwegian BSD User Group (NOBUG)</name>
193
    <url>http://www.nobug.no/</url>
194
    <description>The Norwegian BSD User Group (NOBUG) is a User Group
195
      for BSD users and enthusiasts in Norway.  Meetings are currently
196
      held in Oslo and Bergen.  Visit our website for more information.
197
      There is also a Unix User Group (<a href="http://www.nuug.no/">
198
        NUUG</a>) with more regular meetings, sometimes even with a BSD
199
      subject.  Located in Norway.
200
    </description>
201
  </entry>
202
203
  <entry id="lublin" continent="europe">
204
    <name>The Lublin BSD Users Group</name>
205
    <url>http://www.FreeBSD.lublin.pl/</url>
206
    <description>Please follow the link for details.  Located in Poland.
207
    </description>
208
  </entry>
209
210
  <entry id="ptbsd" continent="europe">
211
    <name>The Portuguese *BSD Users Group</name>
212
    <url>mailto:ptbsd at yahoo.com</url>
213
    <description>The Portuguese *BSD Users Group is a User Group for
214
      Portuguese users of BSD operating systems.  Contact Rui Pereira
215
      <a href="mailto:ptbsd at yahoo.com">ptbsd at yahoo.com</a> for more
216
      information.  Located in Portugal, Amadora.
217
    </description>
218
  </entry>
219
220
  <entry id="npf" continent="europe">
221
    <name>Nucleo Portogues de FreeBSD (NPF)</name>
222
    <url>http://npf.pt.FreeBSD.org/</url>
223
    <description>The Nucleo Portogues de FreeBSD (NPF) is a Portuguese
224
      FreeBSD User Group that is engaged in the production of
225
      documentation in Portuguese language.  Currently the activities
226
      are centred on the translation of the FreeBSD Handbook and on the
227
      production of CF's (aka HowTos) that try to answer questions or
228
      propose solutions to problems that are experienced by Portuguese
229
      users. See <a href="http://npf.pt.FreeBSD.org/">
230
        http://npf.pt.FreeBSD.org</a> for more information.  Located in
231
      Portugal.
232
    </description>
233
  </entry>
234
235
  <entry id="rofug" continent="europe">
236
    <name>The Romanian FreeBSD Users Group/Free Unix Group
237
      (ROFUG)</name>
238
    <url>http://www.rofug.ro/</url>
239
    <description>The ROFUG (Romanian FreeBSD Users Group/Free Unix Group)
240
      is a User Group for the Romanian users of FreeBSD and Open Source
241
      in general, promoting and supporting FreeBSD and Open Source usage.
242
      To join the mailing lists, send an email to <a
243
        href="mailto:listar at rofug.ro">listar at rofug.ro</a> with
244
      <code>subscribe rofug</code> and/or <code>subscribe
245
        rofug-announce</code> in the body of the message. Located in
246
      Romania.
247
    </description>
248
  </entry>
249
250
  <entry id="ifug" continent="europe">
251
    <name>IFUG</name>
252
    <url>http://www.ifug.unixware.ro/</url>
253
    <description>The IFUG is a FreeBSD Users Group who support the
254
      Romanian FreeBSD community, promoting FreeBSD and Open Source
255
      solutions.  The contact address of the group is <a
256
        href="mailto:ifug at unixware.ro">ifug at unixware.ro</a>. Located in
257
      Romania, Iasi.
258
    </description>
259
  </entry>
260
261
  <entry id="lfug" continent="europe">
262
    <name>Lund Linux User Group (LFUG)</name>
263
    <url>http://www.pentagon.nu/</url>
264
    <description>The Lund Linux User Group (LFUG) has nearly 50 members
265
      and cover FreeBSD and Solaris in addition to Linux.  To join,
266
      contact <a href="mailto:admin at pentagon.nu">Omar Dedovic</a>.
267
      Located in Sweden, Lund.
268
    </description>
269
  </entry>
270
271
  <entry id="bus" continent="europe">
272
    <name>BSD Users Sweden (BUS)</name>
273
    <url>http://www.stacken.kth.se/projekt/bus/</url>
274
    <description>The BSD Users Sweden (BUS) maintains a mailing list. To
275
      join send an email to <a href="mailto:majordomo at stacken.kth.se">
276
        majordomo at stacken.kth.se</a> with <code>subscribe bus</code>
277
      in the body. Located in Sweden.
278
    </description>
279
  </entry>
280
281
  <entry id="swissbug" continent="europe">
282
    <name>Swiss BSD User Group (SwissBUG)</name>
283
    <url>http://www.swissbug.org</url>
284
    <description>The Swiss BSD User Group (SwissBUG) caters for users
285
      of BSD-based systems in Switzerland. Located in Switzerland.
286
    </description>
287
  </entry>
288
289
  <entry id="uafug" continent="europe">
290
    <name>Ukrainian FreeBSD User Group (UAFUG)</name>
291
    <url>http://www.uafug.org.ua/</url>
292
    <description>The Ukranian FreeBSD User Group (UAFUG) is a
293
      Russian/Ukrainian languages oriented user group for the
294
      Ukrainian users of BSD-derivatives, promoting and
295
      supporting BSD flavours and Open Source usage.  The UAFUG has
296
      had its first meeting on 2 June 2002 and meets every 2-3 weeks.
297
      We also provide an open forum for all BSD-related things in the
298
      Russian and Ukrainian languages (though we can read/write in
299
      english as well).  To join the mailing list send a message to <a
300
        href="mailto:majordomo at FreeBSDDiary.org.ua">
301
        majordomo at FreeBSDDiary.org.ua</a> with <code>subscribe
302
       	freebsd</code> in the body of the message. Check the <a
303
	href="http://www.uafug.org.ua/">link</a> above for more
304
      information.  Located in the Ukraine.
305
    </description>
306
  </entry>
307
308
  <entry id="bsdgroups" continent="europe">
309
    <name>Manchester BSD Users Group</name>
310
    <url>http://www.bsdgroups.org.uk/manchester</url>
311
    <description>The Manchester BSDUsers Group meets reasonably often in
312
      the Lass O'Gowrie, on Charles Street, Manchester.  Contact <a
313
        href="mailto:sams at bsdgroups.org.uk">Sam Smith</a> for more
314
      information.  Located in The United Kingdom, Manchester.
315
    </description>
316
  </entry>
317
318
  <entry id="ukug" continent="europe">
319
    <name>FreeBSD UK Users group (FreeBSD UKUG)</name>
320
    <url>http://ukug.uk.FreeBSD.org/</url>
321
    <description>The FreeBSD UKUG (FreeBSD UK User's Group) exists for
322
      the benefit of FreeBSD users in the United Kingdom.  Please
323
      follow the link for details.  Located in The United Kingdom.
324
    </description>
325
  </entry>
326
327
  <entry id="ybug" continent="europe">
328
    <name>Yugoslavia BSD Users Group</name>
329
    <url>http://www.bsd.org.yu/</url>
330
    <description>The Yugoslavia BSD Users Group provides an open forum
331
      for all things BSD-related in the Serbian language.  To join the
332
      mailing list, send an email to <a
333
        href="mailto:majordomo at bsd.org.yu">majordomo at bsd.org.yu</a> with
334
      <code>subscribe bsdyu</code> in the body of the message. Located in
335
      Yugoslavia.
336
    </description>
337
  </entry>
338
</entries>
(-)usergroups/usergroups-na.xml (+435 lines)
Added Link Here
1
<?xml version="1.0"?>
2
<!DOCTYPE entries SYSTEM "entries.dtd">
3
<!--
4
  Available continents: < africa | asia | australia | europe
5
  | nzealand | namerica | samerica >
6
-->
7
8
<entries>
9
  <cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
10
    <cvs:keyword name="freebsd">
11
      $FreeBSD$
12
    </cvs:keyword>
13
  </cvs:keywords>
14
15
  <entry id="aafugit" continent="namerica">
16
    <name>The Ames Free-Unix Group (AAFUGIT)</name>
17
    <url>http://www.aafugit.org</url>
18
    <description>The Ames Free-Unix Group aims to promote the use of
19
      Free Unix.  We meet on the compus of Iowa State Univerity once a
20
      month and hold a presentation with an open question and answer
21
      session afterwards.  You can join our mailing list by sending a
22
      blank email to <a href="mailto:aafugit-subscribe at aafugit.org">
23
        aafugit-subscribe at aafugit.org</a>.  Located in Ames, Iowa.
24
    </description>
25
  </entry>
26
27
  <entry id="buug" continent="namerica">
28
    <name>The Berkeley Unix User Group</name>
29
    <url>http://www.weak.org/buug</url>
30
    <description>The Berkeley Unix User Group is a general Unix Users
31
      Group for anyone in the San Fransico Bay Area.  We meet on a
32
      weeklybasis in downtown Berkeley.  Visit the web site or send a
33
      message to <a href="mailto:buug-request at weak.org">
34
        buug-request at weak.org</a> with <code>subscribe</code> in the
35
      body.  Located in Berkeley, CA.
36
    </description>
37
  </entry>
38
39
  <entry id="chifug" continent="namerica">
40
    <name>The Users of Free Operating Systems (UFO Chicago)</name>
41
    <url>http://www.chifug.org</url>
42
    <description>The Users of Free Operating Systems (UFO Chicago) is
43
      an open-source Unix User Group that meets twice a month
44
      in Chicago.  For directions and mailing list information, please
45
      check our web site <a href="http://ufo.chicago.il.us">
46
        http://ufo.chicago.il.ul</a>.  Chicago, IL.
47
    </description>
48
  </entry>
49
50
  <entry id="cfug" continent="namerica">
51
    <name>The Connecticut Free Unix Users Group (CFUG)</name>
52
    <url>http://www.cfug.org</url>
53
    <description>The Connecticut Free Unix Users Group (CFUG) is
54
      devoted to free Unix, but has resources for almost all Unixen.
55
      Their area of operation is Connecticut and Western Massachusetts.
56
      More information can be found at <a href="http://www.cfug.org/">
57
        http://www.cfug.org</a>.  Located in Connecticut.
58
    </description>
59
  </entry>
60
61
  <entry id="houfug" continent="namerica">
62
    <name>The Houston FreeBSD Users Group</name>
63
    <url>http://www.houfug.org</url>
64
    <description>The <strong>Houston TX</strong> Houston FreeBSD Users
65
      Group was formed March 1999.  Our goal is to promote and educate
66
      Houston area computer users on FreeBSD Unix.  We meet on the
67
      third Saturday of the month.  The group operates a mailing list at
68
      <a href="http://www.houfug.org/mailman/listinfo/hou-freebsd">
69
        http://www.houfug.org/mailman/listinfo/hou-freebsd</a>.  Visit
70
      our website at <a href="http://www.houfug.org">
71
        http://www.houfug.org</a> for more information.  Located in
72
      Houston.
73
    </description>
74
  </entry>
75
76
  <entry id="fufin" continent="namerica">
77
    <name>Free Unix for Indianapolis</name>
78
    <url>http://www.fufin.org</url>
79
    <description>Free Unix for Indianapolis is a non-profit organization
80
      dedicated to encouraging the use of Free Unix variants in and
81
      around Indianapolis.  Essentially, we are a bunch of geeks who
82
      share a common passion: Unix.  Visit the web site or send a
83
      message to <a href="mailto:info at fufin.org">info at fufin.org</a>
84
      for additional information.  Located in Indianapolis, IN.
85
    </description>
86
  </entry>
87
88
  <entry id="kulua" continent="namerica">
89
    <name>Kansas Unix &amp; Linux Users Association (KULUA)</name>
90
    <url>http://kulua.org</url>
91
    <description>The Kansas Unix &amp; Linux Users Association (KULUA)
92
      is a Free Unix User Group based in Lawrence, Kansas, but with
93
      users throughout eastern Kansas and western Missouri.  We have
94
      about 120 members and meet biweekly.  Visit the web site or email
95
      <a href="mailto:kulua at kulua.org">kulua at kulua.org</a> for more
96
      information.  Located in Lawrence, Kansas.
97
    </description>
98
  </entry>
99
100
  <entry id="wafug" continent="namerica">
101
    <name>Wichita Area FreeBSD Users Group (WAFUG)</name>
102
    <url>http://wafug.yi.org</url>
103
    <description>The Wichita Area FreeBSD Users Group (WAFUG) is a free
104
      Users Group provided to anyone in the Whichita area for support
105
      with FreeBSD and other Unix and Unix-like operating systems.  We
106
      meet twice a month, usually in a restaurant where you can smoke
107
      or drink if you like.  Please send us <a
108
        href="mailto:bfs at kscable.com">Email</a> for more information or
109
      to find out how to get free shell account, www or ftp space on
110
      our system.  Located in Wichita, Kansas.
111
    </description>
112
  </entry>
113
114
  <entry id="yahoo-club" continent="namerica">
115
    <name>The Yahoo Club</name>
116
    <url>http://clubs.yahoo.com/clubs/bsdusersoflosangeles</url>
117
    <description>The Yahoo Club group is a foundation for a Los Angeles
118
      based BSD User Group.  Located in Los Angeles, CA.
119
    </description>
120
  </entry>
121
122
  <entry id="tcbug" continent="namerica">
123
    <name>Twin Cities BSD User Group (TCBUG)</name>
124
    <url>http://www.tcbug.org</url>
125
    <description>The Twin Cities BSD User Group (TCBUG) meets once a
126
      month to discuss issues importand to the BSD community.  The
127
      website carries our major announcements, while you are encouraged
128
      to join the mailing list <a href="mailto:tcbug at tcbug.org">
129
        tcbug at tcbug.org</a> to keep up with general group discussion.
130
      Look at the site, join the mailing list, come to a meeting.  We
131
      look forward to learning from you and with you about BSD Unix.
132
      Located in Minneapolis/St. Paul, MN.
133
    </description>
134
  </entry>
135
136
  <entry id="nmlug" continent="namerica">
137
    <name>NMLUG</name>
138
    <url>mailto:majordomo at swcp.com</url>
139
    <description>The NMLUG in Alburquerque meets once a month and
140
      supports both BSD and Linux users.  To join the mailing list,
141
      send a message to <a href="mailto:majordomo at swcp.com">
142
        majordomo at swcp.com</a> with <code>subscribe nmlug</code> in
143
      the body.  Located in New Mexico.
144
    </description>
145
  </entry>
146
147
  <entry id="new-orleans-bug" continent="namerica">
148
    <name>New Orleans *BSD User Group</name>
149
    <url>mailto:krzeszut at cs.uno.edu</url>
150
    <description>The New Orleans *BSD User Group meets twice a month.
151
      contact <a href="mailto:krzeszut at cs.uno.edu">Konrad Rzeszutek</a>
152
      for more details.  A web page will be posted soon. Located in
153
      New Orleans, LA
154
    </description>
155
  </entry>
156
157
  <entry id="nycbug" continent="namerica">
158
    <name>New York City *BSD User Group (NYCBUG)</name>
159
    <url>http://www.nycbug.org</url>
160
    <description>The New York City *BSD User Group (NYCBUG) meets the
161
      first Wednesday of the month.  Mailing lists are available at
162
      <a href="http://lists.nycbug.org">http://lists.nycbug.org</a>.
163
      Located in New York, NY.
164
    </description>
165
  </entry>
166
167
  <entry id="yfuug" continent="namerica">
168
    <name>Yavapai Free Unix Users Group</name>
169
    <url>mailto:rcarter at consys.com</url>
170
    <description>The Yavapai Free Unix Users Group is now forming for
171
      *BSD/Linux, etc., users in Northern Arizona.  Please contact
172
      Russel Carter (<a href="mailto:rcarter at consys.com">
173
        rcarter at consys.com</a>) for details.  Located in Northern
174
      Arizona.
175
    </description>
176
  </entry>
177
178
  <entry id="bugo" continent="namerica">
179
    <name>BSD Users Group of Orlando (BUGO)</name>
180
    <url>http://bugo.zepa.net</url>
181
    <description>The BSD Users Group of Orlando (BUGO) is a group based
182
      Orlando, FL that aims to bring a <i>friendly</i> forum to all
183
      Unix users in the central Florida area, and hopefully beyond.
184
      See the <a href="http://bugo.zepa.net">BUGO web page</a> for
185
      further details.  Located in Orlando, FL.
186
    </description>
187
  </entry>
188
189
  <entry id="wplug" continent="namerica">
190
    <name>Westsern Pennsylvania Linux Users Group (WPLUG)</name>
191
    <url>http://www.wplug.org</url>
192
    <description>The Western Pennysylvania Linux Users Group (WPLUG)
193
      has a strong and growing community of BSD users that it supports.
194
      See our home page (<a href="http://www.wplug.org">
195
        http://www.wplug.org</a>) for information on regular meetings
196
      and join the mailing lists.  Located in Pennsylvania.
197
    </description>
198
  </entry>
199
200
  <entry id="phoenix" continent="namerica">
201
    <name>Phoenix BSD Users Group</name>
202
    <url>http://bsd.phoenix.az.us</url>
203
    <description>The Phoenix BSD Users Group is fully open for business.
204
      Anyone from the Phoenix area please feel free to join in <a
205
        href="http://bsd.phoenix.az.us">http://bsd.phoenix.az.us</a>.
206
      Located in Phoenis, AZ.
207
    </description>
208
  </entry>
209
210
  <entry id="portland" continent="namerica">
211
    <name>Portland (Oregon) FreeBSD Users Group</name>
212
    <url>mailto:pdx-freebsd at toybox.placo.com</url>
213
    <description>The Portland (Oregon) FreeBSD Users Group meets on the
214
      third Thursday of each month.  Mail <a
215
        href="mailto:pdx-freebsd at toybox.placo.com">The Portland FreeBSD
216
	Users Group</a>.  Located in Portland, OR.
217
    </description>
218
  </entry>
219
220
  <entry id="rlug" continent="namerica">
221
    <name>Reno Linux Users Group (RLUG)</name>
222
    <url>http://www.rlug.org</url>
223
    <description>The Reno Linux Users Group (RLUG) meets monthly in
224
      Reno Nevada and discusses the use of BSD and Linux.  Contact
225
      <a href="mailto:info at rlug.org">info at rlug.org</a> for more
226
      information.  You may also want to join our mailing list at
227
      <a href="http://lists.rlug.org/mailman/listinfo/rlug">
228
        http://lists.rlug.org/mailman/listinfo/rlug</a>.  Located in
229
      Reno, NV.
230
    </description>
231
  </entry>
232
233
  <entry id="tribug" continent="namerica">
234
    <name>Triangle Area BSD Users Group</name>
235
    <url>http://www.tribug.org</url>
236
    <description>The Triangle Area BSD Users Group is a Users Group for
237
      BSD users in the Research Triangle Park area of Raleigh, Durham
238
      and Chapel Hill.  People interested in this group may subscribe
239
      to the mailing list by sending a message to <a
240
        href="mailto:majordomo at tribug.org">majordomo at tribug.org</a>
241
      with <code>subscribe tribug-members</code> in the body.
242
      Located in Research Triangle, NC.
243
    </description>
244
  </entry>
245
246
  <entry id="rifug" continent="namerica">
247
    <name>Rhode Island Free Unix Group</name>
248
    <url>http://users.tmok.com/~rifug</url>
249
    <description>The Rhode Island Free Unix Group supports every form
250
      of Unix that can be obtained freely.  They can be contacted at:
251
      <a href="http://users.tmok.com/~rifug">
252
        http://users.tmok.com/~rifug</a> or by e-mail at: <a
253
	href="mailto:rifug at entropy.tmok.com">rifug at entropy.tmok.com</a>
254
      Located in Rhode Island.
255
    </description>
256
  </entry>
257
258
  <entry id="seabug" continent="namerica">
259
    <name>Seattle BSD Users Group (SeaBUG)</name>
260
    <url>http://www.seabug.org</url>
261
    <description>The Seattle BSD Users Group (SeaBUG) meets
262
      occasianally.  View our web site for more details and for
263
      information on how to join our mailing list.  Located in
264
      Seattle, WA.
265
    </description>
266
  </entry>
267
268
  <entry id="stlbsd" continent="namerica">
269
    <name>St. Louis BSD User Group (STLBSD)</name>
270
    <url>http://www.stlbsd.org</url>
271
    <description>The St. Louis BSD User Group (STLBSD) has just formed
272
      on July 20, 2000 to promote BSD operating systems in the St. Louis
273
      area.  We have strong ties to the 10 year old St. Louis Unix
274
      Users Group (<a href="http://www.sluug.org">SLUUG</a>) and expect
275
      to be a positive for within our community.  Our membership is
276
      open to anyone interested in learning more about BSD, several
277
      mailing lists are available through our web site. Located in
278
      St. Louis, MO.
279
    </description>
280
  </entry>
281
282
  <entry id="sdbug" continent="namerica">
283
    <name>San Diego BSD Users Group</name>
284
    <url>http://www.sdbug.org</url>
285
    <description>The San Diego BSD Users Group for users of FreeBSD,
286
      OpenBSD and NetBSD.  The meeting is first Thursday of every month
287
      at Boll Weevil off Clairemont Mesa Blvd., near the intersection
288
      with Ruffin Road.  More information can be found <a
289
        href="http://www.sdbug.org">here</a>.  Located in San Diego, CA.
290
    </description>
291
  </entry>
292
293
  <entry id="bafug" continent="namerica">
294
    <name>Bay Area BSD Users Group (BABUG)</name>
295
    <url>http://www.bafug.org</url>
296
    <description>The Bay Area BSD Users Group (BABUG) has monthly
297
      meetings, alternating between San Fransisco and Berkeley.  Those
298
      interested in attending should visit the web site or send mail to
299
      the <a href="mailto:jgrosch at mooseriver.com">BABUG Web Master</a>.
300
      Located in North San Fransisco Bay Area.
301
    </description>
302
  </entry>
303
304
  <entry id="svbug" continent="namerica">
305
    <name>Silicon Valley BSD User Group (SVBUG)</name>
306
    <url>http://www.svbug.com</url>
307
    <description>The Silicon Valley BSD User Group (SVBUG), a forum for
308
      BSD and BSD embedded systems, meets on the first Thursday of the
309
      month.  Meetings are held at the Carl's JR. on First Street and
310
      Trimble Road in San Jose, California.  For details on events or
311
      what is going on visit the web site or send a message to <a
312
        href="mailto:webmaster at svbug.com">webmaster at svbug.com</a>.
313
      Located in Silicon Valley, CA.
314
    </description>
315
  </entry>
316
317
  <entry id="silbsd" continent="namerica">
318
    <name>Southern Illinois *BSD Group</name>
319
    <url>http://www.silbsd.org</url>
320
    <description>The Southern Illinois *BSD Group is a meeting place
321
      for BSD users to experiment with networks and provide help with
322
      installs.  Emphasis is on FreeBSD and it's KDE and GNOME desktops.
323
      Located in Southern Illinois.
324
    </description>
325
  </entry>
326
327
  <entry id="uudet" continent="namerica">
328
    <name>Unix Users of Deep East Texas</name>
329
    <url>http://uudet.org</url>
330
    <description>The Unix Users of Deep East Texas is dedicated to all
331
      things Unix.  This group is open to users of all flavors of Unix.
332
      We meet on the last Saturday of the month at the Angelina County
333
      Court House.  See the web page for details, or send e-mail to <a
334
        href="mailto:admin at uudet.org">admin at uudet.org</a>.  Located
335
      in East Texas.
336
    </description>
337
  </entry>
338
339
  <entry id="tug" continent="namerica">
340
    <name>Tampa Florida Users Group</name>
341
    <url>mailto:bsd-tug-request at bangheadhere.org</url>
342
    <description>The Tampa Florida Users Group is now being formed.
343
      Interested parties can join the mailing list by sending e-mail
344
      to <a href="mailto:bsd-tug-request at bangheadhere.org">
345
        bsd-tug-request at bangheadhere.org</a> with <code>subscribe</code>
346
      in the body.  Located in Tampa, FL.
347
    </description>
348
  </entry>
349
350
  <entry id="gtabug" continent="namerica">
351
    <name>GTABUG</name>
352
    <url>http://www.gtabug.ca</url>
353
    <description>The GTABUG User Group welcomes all BSD users.  Monthly
354
      meetings give attendees a chance to share ideas, discussion and
355
      information.  Installations and other events help preach the good
356
      news of BSD to the community.  Come drop by for a meeting!.
357
      Located in Greater Toronto Area, Ontario.
358
    </description>
359
  </entry>
360
361
  <entry id="tfug" continent="namerica">
362
    <name>Tucson Free Unix Group (TFUG)</name>
363
    <url>http://www.tfug.org</url>
364
    <description>Tucson Free Unix Group, Arizona.  Located in Tucson,
365
      AZ.
366
    </description>
367
  </entry>
368
369
  <entry id="gubug" continent="namerica">
370
    <name>Greater Utah BSD Users Group (GUBUG)</name>
371
    <url>http://www.gubug.org</url>
372
    <description>The Greather Utah BSD Users Group (GUBUG), formerly
373
      known as SLLUG-BUG, and affiliated with the Salt Lake Linux Users
374
      Group, is based in Salt Lake City, Utah.  We welcome users of
375
      FreeBSD, OpenBSD, NetBSD or even Unix or Linux.
376
    </description>
377
  </entry>
378
379
  <entry id="vanbug" continent="namerica">
380
    <name>Vancouver BSD Users Group (VanBUG)</name>
381
    <url>http://www.vanbug.com</url>
382
    <description>The Vancouver BSD Users Group (VanBUG) is a group of
383
      volunteers who are passionate about FreeBSD, NetBSD and OpenBSD.
384
      Their current goal is to raise awareness and also provide local
385
      assistance as much as we can.  Located in Vancouver, BC.
386
    </description>
387
  </entry>
388
389
  <entry id="wcfug" continent="namerica">
390
    <name>Washington DC FreeBSD User Group</name>
391
    <url>mailto:rcramer at sytex.net</url>
392
    <description>Washington DC (DC Metropolitan Area) FreeBSD
393
      User Group.  Please contact Richard Cramer, Sytex Access Ltd.
394
      at 703-425-2515, or preferred, email at <a
395
        href="mailto:rcramer at sytex.net">rcramer at sytex.net</a> to be put
396
      on a member distribution list.  Located in Washington DC.
397
    </description>
398
  </entry>
399
400
  <entry id="wafug-dynip" continent="namerica">
401
    <name>WAFUG</name>
402
    <url>http://wafug.dynip.com</url>
403
    <description>A new FreeBSD Users Group has been created in Wichita,
404
      Ks.  We are fairly new and working on our site, but we wanted to
405
      it up as soon as we had it available.  We do not currently meet.
406
      Visit our site <a href="http://wafug.dynip.com">
407
        http://wafug.dynip.com</a> or e-mail the group organiser (<a
408
	href="mailto:ben177 at yahoo.com">ben177 at yahoo.com</a>) for more
409
      information!  Located in Wichita, Kansas.
410
    </description>
411
  </entry>
412
413
  <entry id="wuug" continent="namerica">
414
    <name>Windsor Unix Users Group</name>
415
    <url>http://www.wuug.org</url>
416
    <description>The Windsor Unix Users Group (Windsor, Ontario, Canada)
417
      covers BSD, Solaris, SCO and others.  This is not specifically a
418
      FreeBSD User Group, but we do already have members running
419
      FreeBSD.  The group operates a mailing list
420
      (wuug-list at unixpower.org).  More information can be found at <a
421
      href="http://www.wuug.org">http://www.wuug.org</a>.
422
    </description>
423
  </entry>
424
425
  <entry id="freebsd-mke" continent="namerica">
426
    <name>FreeBSD-Milwaukee</name>
427
    <url>http://www.sol.net/freebsd-mke</url>
428
    <description>FreeBSD-Milwaukee Wisconsin meets occasionally and
429
      has a mailing list: <a href="mailto:freebsd-mk-l at ns.sol.net">
430
      freebsd-mke-l at ns.sol.net</a> send e-mail to <a
431
        href="mailto:freebsd-mke-l-request at ns.sol.net">
432
	freebsd-mke-l-request at ns.sol.net</a> to subscribe.
433
    </description>
434
  </entry>
435
</entries>
(-)usergroups/usergroups-rest.xml (+165 lines)
Added Link Here
1
<?xml version="1.0"?>
2
<!DOCTYPE entries SYSTEM "entries.dtd">
3
<!--
4
  Available continents: < africa | asia | australia | europe
5
  | nzealand | namerica | samerica | meast >
6
-->
7
8
<entries>
9
  <cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
10
    <cvs:keyword name="freebsd">
11
      $FreeBSD$
12
    </cvs:keyword>
13
  </cvs:keywords>
14
15
  <entry id="cnfug" continent="asia">
16
    <name>The China FreeBSD User Group (CNFUG)</name>
17
    <url>http://www.cnfug.org</url>
18
    <description>The China FreeBSD User Group (CNFUG) was formed May
19
      2003.  It publishes the CNFUG Journal (A FreeBSD Tehnical Journal
20
      in Simplified Chinese) monthly.  In addition, we offer a BSD
21
      UNIX Support forum, IRC and several mailing lists in Chinese.
22
      Located in China.
23
    </description>
24
  </entry>
25
26
  <entry id="bsdcolombia" continent="samerica">
27
    <name>FreeBSD User Group Colombia</name>
28
    <url>http://www.bsdcolombia.org</url>
29
    <description>Visit <a href="http://www.bsdcolombia.org">
30
        http://www.bsdcolombia.org</a> for the FreeBSD User Group
31
      Colombia.
32
    </description>
33
  </entry>
34
35
  <entry id="debug" continent="asia">
36
    <name>The Daibou East *BSD Users Group (DEBUG)</name>
37
    <url>http://www.debug.gr.jp</url>
38
    <description>The Daibou East *BSD Users Group (DEBUG) is now
39
      forming for "*BSD users in Tsukuba area.  Located in Ibaraki,
40
      Japan.
41
    </description>
42
  </entry>
43
44
  <entry id="jfug" continent="asia">
45
    <name>The Jogja FreeBSD Users Group</name>
46
    <url>mailto:22961476 at students.ukdw.ac.id</url>
47
    <description>The Jogja FreeBSD Users Group is based in Yogyakarta
48
      City, Indonesia.  Send email to <a
49
        href="mailto:22961476 at students.ukdw.ac.id">
50
	22961476 at students.ukdw.ac.id</a> for more information.
51
    </description>
52
  </entry>
53
54
  <entry id="ibug" continent="meast">
55
    <name>The Israeli *BSD Users Group</name>
56
    <url>mailto:bsd-il at libagent.org</url>
57
    <description>The Israeli *BSD Users Group has a mailing list for
58
      general discussion of *BSD operating systems for Israeli users
59
      , which includes topics such as setting up and working with
60
      Hewbrew in BSD and setting up Internet connections with ISPs.
61
      The Israeli *BSD mailing list promotes the use of *BSD throughout
62
      the country, and acts as an information center for all *BSD users.
63
      Mailing list posts can be sent to <a
64
        href="mailto:bsd-il at libagent.org">bsd-il at libagent.org</a>.
65
      Visit <a href="http://www.libagent.org/mailman/listinfo/bsd-il">
66
        http://www.libagent.org/mailman/listinfo/bsd-il</a> to
67
      subscribe. Located in Israel.
68
    </description>
69
  </entry>
70
71
  <entry id="kbug" continent="asia">
72
    <name>The Kansai *BSD Users Group (K*BUG)</name>
73
    <url>http://www.kbug.gr.jp</url>
74
    <description>The Kansai *BSD Users Group was established on
75
      November 13, 1999.  It is expected to promote communication of
76
      any of the BSD variants' users.  Some of its activitities are to
77
      hold friendly parties of the members, and to hold seminars
78
      covering wide variety of topics.  Please e-mail here (<a
79
        href="mailto:kbug-admin at kbug.gr.jp">kbug-admin at kbug.gr.jp</a>).
80
      Located in Kansai, Japan.
81
    </description>
82
  </entry>
83
84
  <entry id="mybsd-malaysia" continent="asia">
85
    <name>The MyBSD Malaysia Project</name>
86
    <url>http://www.mybsd.org.my</url>
87
    <description>The MyBSD Malaysia Project is a Kuala Lumpur based User
88
      Group for BSD users and open-source in general, promoting and
89
      supporting FreeBSD, OpenBSD, NetBSD and open source usage.  We
90
      meet once a month, usually at Universiti Malaya or Restaurant
91
      Bahadur Shah.  One of our projects is to develop a <a
92
        href="http://staff.mybsd.org.my/skywizard/bsd-exploerer">Unix
93
	file manager</a>.  Visit our web site or contact <a
94
	href="mailto:info at mybsd.org.my">info at MyBSD.org.my</a> for more
95
      information.
96
    </description>
97
  </entry>
98
99
  <entry id="bsd-malaysia" continent="asia">
100
    <name>BSD Malaysia</name>
101
    <url>http://www.freebsd.org.my</url>
102
    <description>The BSD Malaysia web pages aim to be a central site
103
      for users of *BSD Unix variants (including FreeBSD, NetBSD and
104
      OpenBSD).  BSD support forums, technical BSD-related articles and
105
      recent news items are published online.  Both English and
106
      Malaysian can be used as the language on this site.
107
    </description>
108
  </entry>
109
110
  <entry id="freebsd-mexico" continent="samerica">
111
    <name>FreeBSD Mexico</name>
112
    <url>http://www.freebsd.org.mx</url>
113
    <description>FreeBSD Mexico is a spanish oriented User Group not
114
      only for people in Mexico but also in other Spanish speaking
115
      countries.  Please contact <a href="mailto:acosta at tre-systems.com">
116
        Alejandro Acosta</a> for more information.
117
    </description>
118
  </entry>
119
120
  <entry id="nzfug" continent="nzealand">
121
    <name>The New Zealand FreeBSD Users Group</name>
122
    <url>http://www.nzfug.nz.freebsd.org</url>
123
    <description>The New Zealand FreeBSD UsersGroup is located in
124
      Wellington.  No meetings have been scheduled yet.
125
    </description>
126
  </entry>
127
128
  <entry id="ebug" continent="asia">
129
    <name>The Echigo BSD Users Group (EBUG)</name>
130
    <url>http://www.ebug.jp</url>
131
    <description>The Echigo BSD Users Group is the users group for BSD
132
      users around Echigo (aka Niigata).  For more information on our
133
      events and mailing lists, please check the EBUG web site.
134
    </description>
135
  </entry>
136
137
  <entry id="bsdperu" continent="samerica">
138
    <name>The BSD Users Group Peru</name>
139
    <url>http://www.bsdperu.org</url>
140
    <description>The BSD Users Group Peru is a group of people with the
141
      objective to promote the use of the different *BSD systems in
142
      Peru.  They provide information, documentation and forums for
143
      discussion.  For more information you can use their web site, <a
144
        href="http://www.bsdperu.org">http://www.bsdperu.org</a>, or
145
      write to <a href="mailto:contacto at bsdperu.org">
146
        contacto at bsdperu.org</a>.
147
    </description>
148
  </entry>
149
150
  <entry id="fugspbr" continent="samerica">
151
    <name>The Brazilian FreeBSD User Group (FUG-BR)</name>
152
    <url>http://www.fugspbr.org</url>
153
    <description>The Brazilian FreeBSD User Group (FUB-BR) is a
154
      Portuguese language oriented User Group intended to help
155
      Brazilian FreeBSD users to find support and articles on and
156
      about FreeBSD in the Portuguese language.  We keep some projects
157
      such as the "<a href="http://www.sourceforge.net/projects/livecd">
158
      FreeBSD LiveCD</a>".  Currently the group has 600 members and our
159
      mailing list has an average traffic of 80 messages per day.  To
160
      join FUG-BR mailing list, visit <a
161
        href="http://www2.fugspbr.org/mailman/listinfo/fugspbr">
162
	http://www2.fugspbr.org/mailman/listinfo/fugspbr</a>.
163
    </description>
164
  </entry>
165
</entries>
(-)usergroups/usergroups.sgml (+41 lines)
Added Link Here
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
2
<!ENTITY base CDATA "..">
3
<!ENTITY date "$FreeBSD$">
4
<!ENTITY title "User Groups">
5
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
6
]>
7
8
<html>
9
&header;
10
11
<p>The power, flexibility, and reliability of FreeBSD attract a wide
12
  variety of users,vendors and User Groups.  Below you can select your
13
  region and view what User Groups are in your available in your
14
  neighboorhood.</p>
15
16
<ul>
17
  <li><a href="usergroups-au.html">User Groups</a> in Australia.</li>
18
  <li><a href="usergroups-eu.html">User Groups</a> in Europe.</li>
19
  <li><a href="usergroups-na.html">User Groups</a> in Nothern America.</li>
20
  <li><a href="usergroups-rest.html">User Groups</a> in the rest of the world.</li>
21
</ul>
22
23
<p>If you have a User Group that focusses on BSD that should be added
24
  to this page, please fill out a
25
  <a href="http://www.freebsd.org/send-pr.html">problem report</a>
26
  for category www.  Submissions should contain a short description of
27
  your group.</p>
28
29
&footer;
30
31
</body>
32
</html>
33
34
<!--
35
     Local Variables:
36
     mode: sgml
37
     sgml-indent-data: t
38
     sgml-omittag: nil
39
     sgml-always-quote-attributes: t
40
     End:
41
-->

Return to bug 79239