[Tracker-discuss] schema ideas

"Martin v. Löwis" martin at v.loewis.de
Tue Nov 14 20:49:12 CET 2006


Stefan Seefeld schrieb:
>> After the conversion, it should refer to the equivalent
>> roundup page; the bugid should stay the same even if
>> the import renumbers them. To implement that, a static
>> mapping could be used: there won't be any new SF bugs
>> after the conversion is completed.
> 
> That sounds like an interesting challenge. Erik, didn't
> you look into how to create issues with specific ids ?
> Or am I making that up now ?
> It would be nice if we could avoid http redirection.

Sure. However, one level of redirection is unavoidable,
anyway, because it's different computer systems
(www.python.org vs. bugs.python.org). At that redirection,
renumbering can occur, e.g.

 http://python.org/sf?id=1593751

could get redirected to

 http://bugs.python.org/3426

(say). The renumbering database would live on www.python.org,
and it wouldn't ever need to change, since no new items are
added to the SF trackers. The database would have to be created
during the transition. As it is a static database, a pickled
Python dictionary or a bsddb database might work just fine.

Regards,
Martin


More information about the Tracker-discuss mailing list