<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.gnustep.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Aeruder</id>
	<title>GNUstepWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.gnustep.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Aeruder"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php/Special:Contributions/Aeruder"/>
	<updated>2026-06-17T09:28:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.7</generator>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2941</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2941"/>
		<updated>2006-01-31T06:58:47Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: adding link to the ssh connection caching&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the [[Svn SSH Setup]] page (this includes if you have to specify a different user).&lt;br /&gt;
&lt;br /&gt;
== Some background on repository layout ==&lt;br /&gt;
&lt;br /&gt;
To familiarize yourself with the layout, I would recommend looking at the [http://svn.gna.org/viewcvs/gnustep/ web-access to svn]&lt;br /&gt;
for GNUstep.  You will notice that every project is in its own portion of the repository.  For example:&lt;br /&gt;
&lt;br /&gt;
 /libs&lt;br /&gt;
 /libs/gui&lt;br /&gt;
 /libs/gui/trunk&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/branches&lt;br /&gt;
 /libs/gui/branches/dawn&lt;br /&gt;
 /libs/gui/branches/...&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/tags&lt;br /&gt;
 /libs/gui/tags/alex_last_semistable&lt;br /&gt;
 /libs/gui/tags/...&lt;br /&gt;
&lt;br /&gt;
This layout is very handy for having a per-project repository.  I can easily branch or tag just /libs/gui and it all stays in its own namespace.  However, what this DOES mean is that you cannot simply checkout /libs/gui or you will end up with several copies of the source.  To get around this, we are using a nifty feature of Subversion called externals.  Externals are metadata on a directory that basically tell the svn client to checkout some other url into a subdirectory when it is checked out.  So if I type:&lt;br /&gt;
&lt;br /&gt;
 svn proplist -v svn+ssh://svn.gna.org/svn/gnustep/devmodules/core&lt;br /&gt;
&lt;br /&gt;
It will tell me that the svn:externals property contains:&lt;br /&gt;
 &lt;br /&gt;
 gui     svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk&lt;br /&gt;
 back    svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk&lt;br /&gt;
 base    svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk&lt;br /&gt;
 make    svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk&lt;br /&gt;
&lt;br /&gt;
So everytime I checkout /devmodules/core the svn client will automatically go to these URLs and check them out into subdirectories.  When I make changes in gui/ and commit them, it will really commit to /libs/gui/trunk.  For the most part if you checkout /devmodules, the externals have already been setup such that it will checkout something similar to checking out the whole repository before.&lt;br /&gt;
&lt;br /&gt;
== Tips, Tricks, and Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://svnbook.red-bean.com Version Control with Subversion]&lt;br /&gt;
* [http://svnbook.red-bean.com/en/1.1/apa.html Appendix A: Subversion for CVS Users]&lt;br /&gt;
* [http://gcc.gnu.org/wiki/SvnSetup GCC's SVN Setup page] - Look especially at the section on [http://gcc.gnu.org/wiki/SSH%20connection%20caching ssh connection caching].&lt;br /&gt;
* [[Subversion_Migration]] - Some initial notes on the layout of the repository.&lt;br /&gt;
* [http://www.aeruder.net/software/misc/softwarelist.html ZSH svn tab completion] - On this page is a tab completion module that can tab complete into subversion repositories.  Very handy for ZSH users.&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Project_Development&amp;diff=2937</id>
		<title>Project Development</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Project_Development&amp;diff=2937"/>
		<updated>2006-01-30T22:39:06Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GNUstep project, as many open-source software (OSS) is being developed by many developers from all around the world. The project uses various tools for supporting the development.&lt;br /&gt;
&lt;br /&gt;
== [https://savannah.gnu.org/projects/gnustep/ Main project development page] ==&lt;br /&gt;
&lt;br /&gt;
Contains:&lt;br /&gt;
&lt;br /&gt;
* '''[https://savannah.gnu.org/bugs/?group=gnustep Bug tracking]'''&lt;br /&gt;
* [https://savannah.gnu.org/mail/?group=gnustep Mailing Lists]&lt;br /&gt;
* [https://savannah.gnu.org/cvs/?group=gnustep CVS information]&lt;br /&gt;
* [http://savannah.gnu.org/cgi-bin/viewcvs/gnustep/ Browse CVS Repository]&lt;br /&gt;
* [https://savannah.gnu.org/patch/?group=gnustep Patches]&lt;br /&gt;
&lt;br /&gt;
* [https://savannah.gnu.org/support/?group=gnustep Support request tracking] ''(not used)''&lt;br /&gt;
* [https://savannah.gnu.org/news/?group=gnustep News]  ''(not used)''&lt;br /&gt;
* Tasks ''(not used)''&lt;br /&gt;
&lt;br /&gt;
== Mailing Lists ==&lt;br /&gt;
&lt;br /&gt;
You can sign up with the following mailing lists to ask questions and get answers. Recently GNUstep Mailing Lists are being archived into a searchable [http://www.nabble.com/GNUstep-f1880.html GNUstep Forum] by [http://www.nabble.com Nabble]. You can cross browse or search GNUstep discussions there. You can also post questions there which will get forwarded to the corresponding mailing list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://mail.gnu.org/mailman/listinfo/discuss-gnustep discuss-gnustep@gnu.org] &lt;br /&gt;
;: For all discussions and questions. We also would like to hear about ideas for the applications for the GNUstep environment and related issues.&lt;br /&gt;
&lt;br /&gt;
* [http://mail.gnu.org/mailman/listinfo/info-gnustep info-gnustep@gnu.org]&lt;br /&gt;
;: For info and announcements related to GNUstep libraries and applications.&lt;br /&gt;
&lt;br /&gt;
* [http://mail.gnu.org/mailman/listinfo/help-gnustep help-gnustep@gnu.org]&lt;br /&gt;
;: For help with GNUstep libraries and applications. This list is rarely read, so it is better to use discuss-gnustep.&lt;br /&gt;
&lt;br /&gt;
* [http://mail.gnu.org/mailman/listinfo/bug-gnustep bug-gnustep@gnu.org]&lt;br /&gt;
;: A mailing list for submitting bug reports and patches.&lt;br /&gt;
&lt;br /&gt;
* [http://mail.gnu.org/mailman/listinfo/apps-gnustep apps-gnustep@gnu.org]&lt;br /&gt;
;: For discussion related specifically to GNUstep applications.&lt;br /&gt;
&lt;br /&gt;
* [http://mail.gnu.org/mailman/listinfo/gnustep-dev GNUstep developers list]&lt;br /&gt;
;: This mailing list has been established to keep the noise low when it comes to core topics and generally boring discussion about technical aspects of GNUstep.&lt;br /&gt;
&lt;br /&gt;
* [http://d2dc.net/cgi-bin/mailman/listinfo/desktop Desktop]&lt;br /&gt;
;:Discussion for a GNUstep-based desktop project&lt;br /&gt;
&lt;br /&gt;
* DGS developers list &lt;br /&gt;
;: This mailing list has been established to keep the noise low when it comes to DGS topics. To subscribe you have to contact The GNUstep Maintainers directly [mailto:gnustep-maintainers@gnu.org]&lt;br /&gt;
&lt;br /&gt;
== IRC Channel ==&lt;br /&gt;
&lt;br /&gt;
You can talk to some (not all use IRC) GNUstep developers on IRC:&lt;br /&gt;
&lt;br /&gt;
'''Server''': irc.freenode.net or ''irc.gnu.org'' or ''irc.debian.org'' - all are the same network&lt;br /&gt;
&lt;br /&gt;
'''Channel''': #gnustep&lt;br /&gt;
&lt;br /&gt;
Configure your IRC client and join the channel:   &amp;lt;tt&amp;gt;/join #GNUstep&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Examples of IRC clients you can use: [http://www.xchat.org/ xchat] (UNICES and Windows), [http://gaim.sourceforge.net gaim] (UNICES and Windows), [http://www.mirc.com/ mirc] (Windows) or [http://www.aeruder.net/talksoup/ TalkSoup] on GNUstep's [http://livecd.gnustep.org/ LiveCD for Intel].&lt;br /&gt;
&lt;br /&gt;
== News Groups ==&lt;br /&gt;
&lt;br /&gt;
http://www.gmane.org carries the GNUstep mailinglists by NNTP&lt;br /&gt;
&lt;br /&gt;
* comp.lang.objective-c* : The Objective-C language and environment.&lt;br /&gt;
* gnu.gnustep.announce* : Info and announcements (Moderated)&lt;br /&gt;
* gnu.gnustep.bug* : Bug reports for gnustep.&lt;br /&gt;
* gnu.gnustep.discuss* : Discussion of gnustep.&lt;br /&gt;
* gnu.gnustep.help* : Requests for help with gnustep.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Project procedures]]&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2936</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2936"/>
		<updated>2006-01-30T22:38:10Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: /* Developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border:1px solid black; background-color:lavender; padding:10pt;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
| '''GNUstep''' is a [[Portability|cross-platform]], object-oriented set of [[Frameworks|frameworks]] for desktop application [[Development tools|development]]. The set of frameworks, based on [[OpenStep]] (now [[Cocoa]]), enables developers to rapidly build sophisticated software by employing a large library of reusable software components. GNUstep is already used [[GNUstep in production|in production]] environments at several organizations.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &lt;br /&gt;
&lt;br /&gt;
== About GNUstep ==&lt;br /&gt;
&lt;br /&gt;
'''[http://www.gnustep.org GNUstep home page]'''&lt;br /&gt;
&lt;br /&gt;
[[Blogs]] concerning GNUstep&lt;br /&gt;
&lt;br /&gt;
[[Project development|Contact and Project development]]&lt;br /&gt;
&lt;br /&gt;
[[Architecture]]&lt;br /&gt;
&lt;br /&gt;
[[FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Application News ]]&lt;br /&gt;
&lt;br /&gt;
== Users ==&lt;br /&gt;
[[GNUstep_Installation_Process|GNUstep Installation Process]]&lt;br /&gt;
&lt;br /&gt;
[[Internationalisation]]&lt;br /&gt;
&lt;br /&gt;
[[GNUstep environments]]&lt;br /&gt;
&lt;br /&gt;
[[Wish list]]&lt;br /&gt;
&lt;br /&gt;
[[Artworks]]&lt;br /&gt;
&lt;br /&gt;
== Developers ==&lt;br /&gt;
&lt;br /&gt;
[[Development Subprojects]] ([[Themability]], [[Portability]], [[Package management]], [[I18n]], ...)&lt;br /&gt;
&lt;br /&gt;
[[Using Subversion]]&lt;br /&gt;
&lt;br /&gt;
[[Development tools]]&lt;br /&gt;
&lt;br /&gt;
[[Applications]]&lt;br /&gt;
&lt;br /&gt;
[[Frameworks]]&lt;br /&gt;
&lt;br /&gt;
[[Installation process]]&lt;br /&gt;
&lt;br /&gt;
[[Scripting]]&lt;br /&gt;
&lt;br /&gt;
[[Programming topics]] and [[Snippets]]&lt;br /&gt;
&lt;br /&gt;
== [[Glossary]] ==&lt;br /&gt;
&lt;br /&gt;
== About Wiki ==&lt;br /&gt;
&lt;br /&gt;
[http://www.possibility.com/epowiki/Wiki.jsp?page=HowToOrganizeWiki How To Organize Wiki]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_development Wiki Dev Doc]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide User'sGuide]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.sourceforge.net WikiPedia]&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2935</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2935"/>
		<updated>2006-01-30T22:33:12Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: adding link to zsh tab completion module&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the [[Svn SSH Setup]] page (this includes if you have to specify a different user).&lt;br /&gt;
&lt;br /&gt;
== Some background on repository layout ==&lt;br /&gt;
&lt;br /&gt;
To familiarize yourself with the layout, I would recommend looking at the [http://svn.gna.org/viewcvs/gnustep/ web-access to svn]&lt;br /&gt;
for GNUstep.  You will notice that every project is in its own portion of the repository.  For example:&lt;br /&gt;
&lt;br /&gt;
 /libs&lt;br /&gt;
 /libs/gui&lt;br /&gt;
 /libs/gui/trunk&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/branches&lt;br /&gt;
 /libs/gui/branches/dawn&lt;br /&gt;
 /libs/gui/branches/...&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/tags&lt;br /&gt;
 /libs/gui/tags/alex_last_semistable&lt;br /&gt;
 /libs/gui/tags/...&lt;br /&gt;
&lt;br /&gt;
This layout is very handy for having a per-project repository.  I can easily branch or tag just /libs/gui and it all stays in its own namespace.  However, what this DOES mean is that you cannot simply checkout /libs/gui or you will end up with several copies of the source.  To get around this, we are using a nifty feature of Subversion called externals.  Externals are metadata on a directory that basically tell the svn client to checkout some other url into a subdirectory when it is checked out.  So if I type:&lt;br /&gt;
&lt;br /&gt;
 svn proplist -v svn+ssh://svn.gna.org/svn/gnustep/devmodules/core&lt;br /&gt;
&lt;br /&gt;
It will tell me that the svn:externals property contains:&lt;br /&gt;
 &lt;br /&gt;
 gui     svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk&lt;br /&gt;
 back    svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk&lt;br /&gt;
 base    svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk&lt;br /&gt;
 make    svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk&lt;br /&gt;
&lt;br /&gt;
So everytime I checkout /devmodules/core the svn client will automatically go to these URLs and check them out into subdirectories.  When I make changes in gui/ and commit them, it will really commit to /libs/gui/trunk.  For the most part if you checkout /devmodules, the externals have already been setup such that it will checkout something similar to checking out the whole repository before.&lt;br /&gt;
&lt;br /&gt;
== Tips, Tricks, and Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://svnbook.red-bean.com Version Control with Subversion]&lt;br /&gt;
* [http://svnbook.red-bean.com/en/1.1/apa.html Appendix A: Subversion for CVS Users]&lt;br /&gt;
* [http://gcc.gnu.org/wiki/SvnSetup GCC's SVN Setup page] - Look especially at the section on ssh connection caching.&lt;br /&gt;
* [[Subversion_Migration]] - Some initial notes on the layout of the repository.&lt;br /&gt;
* [http://www.aeruder.net/software/misc/softwarelist.html ZSH svn tab completion] - On this page is a tab completion module that can tab complete into subversion repositories.  Very handy for ZSH users.&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2934</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2934"/>
		<updated>2006-01-30T22:07:18Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: adding some resources&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the [[Svn SSH Setup]] page (this includes if you have to specify a different user).&lt;br /&gt;
&lt;br /&gt;
== Some background on repository layout ==&lt;br /&gt;
&lt;br /&gt;
To familiarize yourself with the layout, I would recommend looking at the [http://svn.gna.org/viewcvs/gnustep/ web-access to svn]&lt;br /&gt;
for GNUstep.  You will notice that every project is in its own portion of the repository.  For example:&lt;br /&gt;
&lt;br /&gt;
 /libs&lt;br /&gt;
 /libs/gui&lt;br /&gt;
 /libs/gui/trunk&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/branches&lt;br /&gt;
 /libs/gui/branches/dawn&lt;br /&gt;
 /libs/gui/branches/...&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/tags&lt;br /&gt;
 /libs/gui/tags/alex_last_semistable&lt;br /&gt;
 /libs/gui/tags/...&lt;br /&gt;
&lt;br /&gt;
This layout is very handy for having a per-project repository.  I can easily branch or tag just /libs/gui and it all stays in its own namespace.  However, what this DOES mean is that you cannot simply checkout /libs/gui or you will end up with several copies of the source.  To get around this, we are using a nifty feature of Subversion called externals.  Externals are metadata on a directory that basically tell the svn client to checkout some other url into a subdirectory when it is checked out.  So if I type:&lt;br /&gt;
&lt;br /&gt;
 svn proplist -v svn+ssh://svn.gna.org/svn/gnustep/devmodules/core&lt;br /&gt;
&lt;br /&gt;
It will tell me that the svn:externals property contains:&lt;br /&gt;
 &lt;br /&gt;
 gui     svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk&lt;br /&gt;
 back    svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk&lt;br /&gt;
 base    svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk&lt;br /&gt;
 make    svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk&lt;br /&gt;
&lt;br /&gt;
So everytime I checkout /devmodules/core the svn client will automatically go to these URLs and check them out into subdirectories.  When I make changes in gui/ and commit them, it will really commit to /libs/gui/trunk.  For the most part if you checkout /devmodules, the externals have already been setup such that it will checkout something similar to checking out the whole repository before.&lt;br /&gt;
&lt;br /&gt;
== Tips, Tricks, and Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://svnbook.red-bean.com Version Control with Subversion]&lt;br /&gt;
* [http://svnbook.red-bean.com/en/1.1/apa.html Appendix A: Subversion for CVS Users]&lt;br /&gt;
* [http://gcc.gnu.org/wiki/SvnSetup GCC's SVN Setup page] (especially the ssh connection caching)&lt;br /&gt;
* [[Subversion_Migration]] (notes on the initial migration)&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2928</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2928"/>
		<updated>2006-01-30T00:17:51Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: notes on layout&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the [[Svn SSH Setup]] page (this includes if you have to specify a different user).&lt;br /&gt;
&lt;br /&gt;
== Some background on repository layout ==&lt;br /&gt;
&lt;br /&gt;
To familiarize yourself with the layout, I would recommend looking at the [http://svn.gna.org/viewcvs/gnustep/ web-access to svn]&lt;br /&gt;
for GNUstep.  You will notice that every project is in its own portion of the repository.  For example:&lt;br /&gt;
&lt;br /&gt;
 /libs&lt;br /&gt;
 /libs/gui&lt;br /&gt;
 /libs/gui/trunk&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/branches&lt;br /&gt;
 /libs/gui/branches/dawn&lt;br /&gt;
 /libs/gui/branches/...&lt;br /&gt;
 &lt;br /&gt;
 /libs/gui/tags&lt;br /&gt;
 /libs/gui/tags/alex_last_semistable&lt;br /&gt;
 /libs/gui/tags/...&lt;br /&gt;
&lt;br /&gt;
This layout is very handy for having a per-project repository.  I can easily branch or tag just /libs/gui and it all stays in its own namespace.  However, what this DOES mean is that you cannot simply checkout /libs/gui or you will end up with several copies of the source.  To get around this, we are using a nifty feature of Subversion called externals.  Externals are metadata on a directory that basically tell the svn client to checkout some other url into a subdirectory when it is checked out.  So if I type:&lt;br /&gt;
&lt;br /&gt;
 svn proplist -v svn+ssh://svn.gna.org/svn/gnustep/devmodules/core&lt;br /&gt;
&lt;br /&gt;
It will tell me that the svn:externals property contains:&lt;br /&gt;
 &lt;br /&gt;
 gui     svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk&lt;br /&gt;
 back    svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk&lt;br /&gt;
 base    svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk&lt;br /&gt;
 make    svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk&lt;br /&gt;
&lt;br /&gt;
So everytime I checkout /devmodules/core the svn client will automatically go to these URLs and check them out into subdirectories.  When I make changes in gui/ and commit them, it will really commit to /libs/gui/trunk.  For the most part if you checkout /devmodules, the externals have already been setup such that it will checkout something similar to checking out the whole repository before.&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Svn_SSH_Setup&amp;diff=2927</id>
		<title>Svn SSH Setup</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Svn_SSH_Setup&amp;diff=2927"/>
		<updated>2006-01-30T00:07:18Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== If you have a different username than on svn.gna.org ==&lt;br /&gt;
&lt;br /&gt;
To get around this problem, you can setup per host SSH settings.  To do this, open ~/.ssh/config&lt;br /&gt;
and at the end add the lines&lt;br /&gt;
&lt;br /&gt;
 Host svn.gna.org&lt;br /&gt;
       User aeruder&lt;br /&gt;
&lt;br /&gt;
This makes it so that everytime I connect to svn.gna.org with SSH, it will automatically use the username&lt;br /&gt;
aeruder instead of my unix username.&lt;br /&gt;
&lt;br /&gt;
== If you are prompted for a private key password ==&lt;br /&gt;
&lt;br /&gt;
This will look something like:&lt;br /&gt;
&lt;br /&gt;
 Enter passphrase for key '/home/andy/.ssh/id_dsa': &lt;br /&gt;
&lt;br /&gt;
To get around this you can either setup ssh-agent to cache this password or you can simply turn off the password on your private key.&lt;br /&gt;
To do the latter, simply type:&lt;br /&gt;
&lt;br /&gt;
 ssh-keygen -t dsa -p&lt;br /&gt;
&lt;br /&gt;
and follow the prompts, and when it prompts for a new passphrase, simply hit enter.&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2926</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2926"/>
		<updated>2006-01-30T00:03:16Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the [[Svn SSH Setup]] page (this includes if you have to specify a different user).&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2925</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2925"/>
		<updated>2006-01-30T00:02:53Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the [[Svn SSH Setup] page (this includes if you have to specify a different user).&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2924</id>
		<title>Using Subversion</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Using_Subversion&amp;diff=2924"/>
		<updated>2006-01-30T00:02:14Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Setting up Subversion for Developer Use ==&lt;br /&gt;
&lt;br /&gt;
The first thing you will want to do is setup the ssh access to svn.gna.org.  If you cannot type&lt;br /&gt;
&lt;br /&gt;
 svn list svn+ssh://svn.gna.org/svn/gnustep/devmodules&lt;br /&gt;
&lt;br /&gt;
without having to type a password or in some way change the above command, you will need to visit the above-mentioned page (this includes if you have to specify a different user).&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2923</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2923"/>
		<updated>2006-01-29T23:41:44Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: Adding subversion page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border:1px solid black; background-color:lavender; padding:10pt;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
| '''GNUstep''' is a [[Portability|cross-platform]], object-oriented set of [[Frameworks|frameworks]] for desktop application [[Development tools|development]]. The set of frameworks, based on [[OpenStep]] (now [[Cocoa]]), enables developers to rapidly build sophisticated software by employing a large library of reusable software components. GNUstep is already used [[GNUstep in production|in production]] environments at several organizations.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &lt;br /&gt;
&lt;br /&gt;
== About GNUstep ==&lt;br /&gt;
&lt;br /&gt;
'''[http://www.gnustep.org GNUstep home page]'''&lt;br /&gt;
&lt;br /&gt;
[[Blogs]] concerning GNUstep&lt;br /&gt;
&lt;br /&gt;
[[Project development|Contact and Project development]]&lt;br /&gt;
&lt;br /&gt;
[[Architecture]]&lt;br /&gt;
&lt;br /&gt;
[[FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Application News ]]&lt;br /&gt;
&lt;br /&gt;
== Users ==&lt;br /&gt;
[[GNUstep_Installation_Process|GNUstep Installation Process]]&lt;br /&gt;
&lt;br /&gt;
[[Internationalisation]]&lt;br /&gt;
&lt;br /&gt;
[[GNUstep environments]]&lt;br /&gt;
&lt;br /&gt;
[[Wish list]]&lt;br /&gt;
&lt;br /&gt;
[[Artworks]]&lt;br /&gt;
&lt;br /&gt;
== Developers ==&lt;br /&gt;
&lt;br /&gt;
[[Development Subprojects]] ([[Themability]], [[Portability]], [[Package management]], [[I18n]], [[Subversion Migration]], ...)&lt;br /&gt;
&lt;br /&gt;
[[Using Subversion]]&lt;br /&gt;
&lt;br /&gt;
[[Development tools]]&lt;br /&gt;
&lt;br /&gt;
[[Applications]]&lt;br /&gt;
&lt;br /&gt;
[[Frameworks]]&lt;br /&gt;
&lt;br /&gt;
[[Installation process]]&lt;br /&gt;
&lt;br /&gt;
[[Scripting]]&lt;br /&gt;
&lt;br /&gt;
[[Programming topics]] and [[Snippets]]&lt;br /&gt;
&lt;br /&gt;
== [[Glossary]] ==&lt;br /&gt;
&lt;br /&gt;
== About Wiki ==&lt;br /&gt;
&lt;br /&gt;
[http://www.possibility.com/epowiki/Wiki.jsp?page=HowToOrganizeWiki How To Organize Wiki]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_development Wiki Dev Doc]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide User'sGuide]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.sourceforge.net WikiPedia]&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2860</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2860"/>
		<updated>2005-11-21T00:58:19Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: /* Developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border:1px solid black; background-color:lavender; padding:10pt;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
| '''GNUstep''' is a [[Portability|cross-platform]], object-oriented set of [[Frameworks|frameworks]] for desktop application [[Development tools|development]]. The set of frameworks, based on [[OpenStep]] (now [[Cocoa]]), enables developers to rapidly build sophisticated software by employing a large library of reusable software components. GNUstep is already used [[GNUstep in production|in production]] environments at several organizations.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &lt;br /&gt;
&lt;br /&gt;
== About GNUstep ==&lt;br /&gt;
&lt;br /&gt;
'''[http://www.gnustep.org GNUstep home page]'''&lt;br /&gt;
&lt;br /&gt;
[[Blogs]] concerning GNUstep&lt;br /&gt;
&lt;br /&gt;
[[Project development|Contact and Project development]]&lt;br /&gt;
&lt;br /&gt;
[[Architecture]]&lt;br /&gt;
&lt;br /&gt;
[[FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Application News ]]&lt;br /&gt;
&lt;br /&gt;
== Users ==&lt;br /&gt;
[[GNUstep_Installation_Process|GNUstep Installation Process]]&lt;br /&gt;
&lt;br /&gt;
[[Internationalisation]]&lt;br /&gt;
&lt;br /&gt;
[[GNUstep environments]]&lt;br /&gt;
&lt;br /&gt;
[[Wish list]]&lt;br /&gt;
&lt;br /&gt;
[[Artworks]]&lt;br /&gt;
&lt;br /&gt;
== Developers ==&lt;br /&gt;
&lt;br /&gt;
[[Development Subprojects]] ([[Themability]], [[Portability]], [[Package management]], [[I18n]], [[Subversion Migration]], ...)&lt;br /&gt;
&lt;br /&gt;
[[Development tools]]&lt;br /&gt;
&lt;br /&gt;
[[Applications]]&lt;br /&gt;
&lt;br /&gt;
[[Frameworks]]&lt;br /&gt;
&lt;br /&gt;
[[Installation process]]&lt;br /&gt;
&lt;br /&gt;
[[Scripting]]&lt;br /&gt;
&lt;br /&gt;
[[Programming topics]] and [[Snippets]]&lt;br /&gt;
&lt;br /&gt;
== [[Glossary]] ==&lt;br /&gt;
&lt;br /&gt;
== About Wiki ==&lt;br /&gt;
&lt;br /&gt;
[http://www.possibility.com/epowiki/Wiki.jsp?page=HowToOrganizeWiki How To Organize Wiki]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_development Wiki Dev Doc]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide User'sGuide]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.sourceforge.net WikiPedia]&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2859</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Main_Page&amp;diff=2859"/>
		<updated>2005-11-21T00:57:57Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: /* Developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border:1px solid black; background-color:lavender; padding:10pt;&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
| '''GNUstep''' is a [[Portability|cross-platform]], object-oriented set of [[Frameworks|frameworks]] for desktop application [[Development tools|development]]. The set of frameworks, based on [[OpenStep]] (now [[Cocoa]]), enables developers to rapidly build sophisticated software by employing a large library of reusable software components. GNUstep is already used [[GNUstep in production|in production]] environments at several organizations.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__ &lt;br /&gt;
&lt;br /&gt;
== About GNUstep ==&lt;br /&gt;
&lt;br /&gt;
'''[http://www.gnustep.org GNUstep home page]'''&lt;br /&gt;
&lt;br /&gt;
[[Blogs]] concerning GNUstep&lt;br /&gt;
&lt;br /&gt;
[[Project development|Contact and Project development]]&lt;br /&gt;
&lt;br /&gt;
[[Architecture]]&lt;br /&gt;
&lt;br /&gt;
[[FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Application News ]]&lt;br /&gt;
&lt;br /&gt;
== Users ==&lt;br /&gt;
[[GNUstep_Installation_Process|GNUstep Installation Process]]&lt;br /&gt;
&lt;br /&gt;
[[Internationalisation]]&lt;br /&gt;
&lt;br /&gt;
[[GNUstep environments]]&lt;br /&gt;
&lt;br /&gt;
[[Wish list]]&lt;br /&gt;
&lt;br /&gt;
[[Artworks]]&lt;br /&gt;
&lt;br /&gt;
== Developers ==&lt;br /&gt;
&lt;br /&gt;
[[Development Subprojects]] ([[Themability]], [[Portability]], [[Package management]], [[I18n]], [[Subversion]], ...)&lt;br /&gt;
&lt;br /&gt;
[[Development tools]]&lt;br /&gt;
&lt;br /&gt;
[[Applications]]&lt;br /&gt;
&lt;br /&gt;
[[Frameworks]]&lt;br /&gt;
&lt;br /&gt;
[[Installation process]]&lt;br /&gt;
&lt;br /&gt;
[[Scripting]]&lt;br /&gt;
&lt;br /&gt;
[[Programming topics]] and [[Snippets]]&lt;br /&gt;
&lt;br /&gt;
== [[Glossary]] ==&lt;br /&gt;
&lt;br /&gt;
== About Wiki ==&lt;br /&gt;
&lt;br /&gt;
[http://www.possibility.com/epowiki/Wiki.jsp?page=HowToOrganizeWiki How To Organize Wiki]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_development Wiki Dev Doc]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide User'sGuide]&lt;br /&gt;
&lt;br /&gt;
[http://meta.wikimedia.org/wiki/MediaWiki_FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.sourceforge.net WikiPedia]&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Development_Subprojects&amp;diff=2857</id>
		<title>Development Subprojects</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Development_Subprojects&amp;diff=2857"/>
		<updated>2005-11-21T00:26:32Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: adding notes on subversion migration&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Themability]]&lt;br /&gt;
&lt;br /&gt;
[[Portability]]&lt;br /&gt;
&lt;br /&gt;
[[Package management]]&lt;br /&gt;
&lt;br /&gt;
[[I18n|Internationalisation]]&lt;br /&gt;
&lt;br /&gt;
[[Subversion Migration]]&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Blogs&amp;diff=1098</id>
		<title>Blogs</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Blogs&amp;diff=1098"/>
		<updated>2005-09-10T20:04:09Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is the list of blogs concerning GNUstep and blogs of GNUstep people:&lt;br /&gt;
&lt;br /&gt;
{| {{prettytable}}&lt;br /&gt;
! Blog&lt;br /&gt;
! Description&lt;br /&gt;
! Owner (#gnustep IRC nick)&lt;br /&gt;
|+&lt;br /&gt;
| [http://camaelon.blogspot.com/ Random thoughts of a Camaelon]&lt;br /&gt;
| programming stuff, free software and gnustep things&lt;br /&gt;
| Nicolas Roard (rIO)&lt;br /&gt;
|+&lt;br /&gt;
| [http://heronsperch.blogspot.com/ Heron's Perch]&lt;br /&gt;
| Mostly Apple, GNUstep and stuff about me personally&lt;br /&gt;
| Gregory Casamento (bheron)&lt;br /&gt;
|+&lt;br /&gt;
| [http://steptalk.blogspot.com/ StepTalk]&lt;br /&gt;
| Talks about software, programming and GNUstep&lt;br /&gt;
| Stefan Urbanek (Stiivi)&lt;br /&gt;
|+&lt;br /&gt;
| [http://stefankst.blogspot.com/ Think Blog]&lt;br /&gt;
| ''(none)''&lt;br /&gt;
| Stefan Kleine Stegemann (stefankst)&lt;br /&gt;
|+&lt;br /&gt;
| [http://gnustep.blogspot.com/ GNUstep News]&lt;br /&gt;
| Not an Official GNUstep News Site&lt;br /&gt;
| ''(unknown)''&lt;br /&gt;
|+&lt;br /&gt;
| [http://multixden.blogspot.com/ The Art is Long]&lt;br /&gt;
| The Den of Multix (aka grey gandalf)&lt;br /&gt;
| Riccardo  (grey_gandalf)&lt;br /&gt;
|+&lt;br /&gt;
| [http://www.aeruder.net/software/gnustep/ andrew ruder :: software :: gnustep]&lt;br /&gt;
| Posts concerning GNUstep and GNUstep software.&lt;br /&gt;
| Andrew Ruder (aeruder)&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Blogs&amp;diff=1097</id>
		<title>Blogs</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Blogs&amp;diff=1097"/>
		<updated>2005-09-10T05:31:21Z</updated>

		<summary type="html">&lt;p&gt;Aeruder: Adding aeruder post&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is the list of blogs concerning GNUstep and blogs of GNUstep people:&lt;br /&gt;
&lt;br /&gt;
{| {{prettytable}}&lt;br /&gt;
! Blog&lt;br /&gt;
! Description&lt;br /&gt;
! Owner (#gnustep IRC nick)&lt;br /&gt;
|+&lt;br /&gt;
| [http://camaelon.blogspot.com/ Random thoughts of a Camaelon]&lt;br /&gt;
| programming stuff, free software and gnustep things&lt;br /&gt;
| Nicolas Roard (rIO)&lt;br /&gt;
|+&lt;br /&gt;
| [http://heronsperch.blogspot.com/ Heron's Perch]&lt;br /&gt;
| Mostly Apple, GNUstep and stuff about me personally&lt;br /&gt;
| Gregory Casamento (bheron)&lt;br /&gt;
|+&lt;br /&gt;
| [http://steptalk.blogspot.com/ StepTalk]&lt;br /&gt;
| Talks about software, programming and GNUstep&lt;br /&gt;
| Stefan Urbanek (Stiivi)&lt;br /&gt;
|+&lt;br /&gt;
| [http://stefankst.blogspot.com/ Think Blog]&lt;br /&gt;
| ''(none)''&lt;br /&gt;
| Stefan Kleine Stegemann (stefankst)&lt;br /&gt;
|+&lt;br /&gt;
| [http://gnustep.blogspot.com/ GNUstep News]&lt;br /&gt;
| Not an Official GNUstep News Site&lt;br /&gt;
| ''(unknown)''&lt;br /&gt;
|+&lt;br /&gt;
| [http://multixden.blogspot.com/ The Art is Long]&lt;br /&gt;
| The Den of Multix (aka grey gandalf)&lt;br /&gt;
| Riccardo  (grey_gandalf)&lt;br /&gt;
|+&lt;br /&gt;
| [http://www.aeruder.net/software/gnustep/ Andrew Ruder :: software/gnustep]&lt;br /&gt;
| Posts concerning GNUstep and GNUstep software.&lt;br /&gt;
| Andrew Ruder (aeruder)&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Aeruder</name></author>
	</entry>
</feed>