diff options
author | Thomas ten Cate <ttencate@gmail.com> | 2011-05-13 08:31:18 -0700 |
---|---|---|
committer | Thomas ten Cate <ttencate@gmail.com> | 2011-05-13 08:31:18 -0700 |
commit | 7b8a052d05e0210052dfcd69bb06dee5742d77a5 (patch) | |
tree | fceee39e102a8e46a220e055a8ca9293a3b623bb /README.md | |
parent | ad7f699e39fb8474eb6405e821e0ec2bedeab12f (diff) | |
parent | 441437721ff75cb0634c15b1fd6b482a6a1153e9 (diff) |
Merge pull request #1 from albertz/master
multiple trackers. more safety. more output
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,11 +22,19 @@ Limitations: * Only a single tracker is supported, though this could be easily fixed. * All issues and comments will be owned by the project's owner on GitHub, but mention the SF username of the original submitter. * There's some rubbish in the comment text sometimes (Logged In, user_id, Originator) but this is in the SF XML export. +* There are encoding errors in the SF export of (at least) comments. Non-ASCII characters are encoded with UTF-8, then decoded (interpreted) as CP1252, and those code points gets encoded as XML entities. The script does not work around this. See also http://stackoverflow.com/questions/5291081/how-did-sourceforge-maim-this-unicode-character + +Code migration +-------------- + +This script doesn't help you to migrate code from SF's Subversion to GitHub. However, I found the following page helpful in doing that: http://help.github.com/svn-importing/ Usage ----- -Run the `issues.py` script and it will print instructions. Basically, if your SF XML export is in `foo.xml`, your GitHub username is `john` and your repository is `bar`: +From SourceForge, you need to export the tracker data in XML. Read [here](https://sourceforge.net/apps/trac/sourceforge/wiki/XML%20export) for instructions. + +Run the `issues.py` script and it will print further instructions. Basically, if your SF XML export is in `foo.xml`, your GitHub username is `john` and your repository is `bar`: ./issues.py foo.xml john/bar |