wxWidgets/docs/tech/tn0005.txt
Vadim Zeitlin 3f66f6a5b3 Remove all lines containing cvs/svn "$Id$" keyword.
This keyword is not expanded by Git which means it's not replaced with the
correct revision value in the releases made using git-based scripts and it's
confusing to have lines with unexpanded "$Id$" in the released files. As
expanding them with Git is not that simple (it could be done with git archive
and export-subst attribute) and there are not many benefits in having them in
the first place, just remove all these lines.

If nothing else, this will make an eventual transition to Git simpler.

Closes #14487.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2013-07-26 16:02:46 +00:00

30 lines
1.1 KiB
Plaintext

Adding a wxWidgets contribution
===============================
Here are some different kinds of contribution:
1. Bug fixes. You can send these to the wx-dev list.
2. New classes. They should go somewhere in the wxWidgets
hierarchy if they are deemed to be 'core', otherwise they
could be placed in external repositories of wxWidgets
utilities, like wxCode (see http://wxcode.sf.net).
3. A utility application, such as a new dialog editor or
file format conversion utility. If adding to the SVN
archive, you may put it under the utils hierarchy,
preferably with further src and docs directories.
You may or may not wish to add your code to the main wxWidgets SVN
archive. Whether your code is appropriate for this archive
should first be ascertained by discussing it on wx-dev@wxwidgets.org.
Also, in order to be included in wxWidgets, your code should
follow the wxWidgets coding conventions
(see http://www.wxwidgets.org/develop/standard.htm) and fit in the
wxWidgets src, include, docs directories hierarchy.
Author: Julian Smart