Mercurial > p > roundup > code
comparison scripts/import_sf.py @ 3904:91008ec8f9a0
retire "topic" usage
"Topic" still appears in the locale files. I'm sure we need to support
that for existing trackers. I *think* they don't care about any of the other
changes that have been made.
I also left Ka-Ping Yee's original design document unchanged.
This takes care of sf feature request [SF#953161]
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Sun, 16 Sep 2007 02:45:11 +0000 |
| parents | 7f1e2d650486 |
| children | eddb82d0964c |
comparison
equal
deleted
inserted
replaced
| 3903:a90fa2e08a0a | 3904:91008ec8f9a0 |
|---|---|
| 222 d['creation'] = artifact['open_date'] | 222 d['creation'] = artifact['open_date'] |
| 223 activity = artifact['open_date'] | 223 activity = artifact['open_date'] |
| 224 d['creator'] = users[artifact['submitted_by']] | 224 d['creator'] = users[artifact['submitted_by']] |
| 225 actor = d['creator'] | 225 actor = d['creator'] |
| 226 if categories[artifact['category']]: | 226 if categories[artifact['category']]: |
| 227 d['topic'] = [categories[artifact['category']]] | 227 d['keyword'] = [categories[artifact['category']]] |
| 228 issue_journal.append(( | 228 issue_journal.append(( |
| 229 d['id'], d['creation'].get_tuple(), d['creator'], "'create'", {} | 229 d['id'], d['creation'].get_tuple(), d['creator'], "'create'", {} |
| 230 )) | 230 )) |
| 231 | 231 |
| 232 p = int(artifact['priority']) | 232 p = int(artifact['priority']) |
