Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8703135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:48:34+00:00 2026-06-13T02:48:34+00:00

Originally we use Redmine as issue management system, now we are planning to migrate

  • 0

Originally we use Redmine as issue management system, now we are planning to migrate to Tuleap system.

Both system have features to import/export issues into .csv file.

I want to know whether there is standard / simple way to migrate issues.

The main items inside issues are status, title and description.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T02:48:35+00:00Added an answer on June 13, 2026 at 2:48 am

    Since both system can export the csv file, which contains the item header that they needed, some header is different.

    It needs scripts to map from one system to another system, code snippet is shown below.

    It can work for other ALM system if they don’t support from application (I mean migration).

    #!/usr/bin/env python
    import csv
    import sys
    
    # read sample tuleap csv header to avoid some field changes
    tuleapcsvfile = open('tuleap.csv', 'rb')
    reader = csv.DictReader(tuleapcsvfile)
    to_del = ["remaining_effort","cross_references"]
    # remove unneeded items
    issueheader = [i for i in reader.fieldnames if not i in to_del]
    
    # open stdout for output
    w = csv.DictWriter(sys.stdout, fieldnames=issueheader,lineterminator="\n")
    w.writeheader()
    
    # read redmine csv files for converting
    redminecsvfile = open('redmine.csv', 'rb')
    redminereader = csv.DictReader(redminecsvfile)
    for row in redminereader:
        newrow = {}
        if row['Status']=='New':
            newrow['status'] = "Not Started"
        # some simple one to one mapping
        newrow['i_want_to' ]= row['Subject']
        newrow['so_that'] = row['Description']
        w.writerow(newrow)
    

    some items in exported csv can’t be imported back in tuleap like
    remaining_effort,cross_references.

    These two items are shown inside exported .csv file from tuleap issues.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a project that originally did not use ajax. Now I want to
I originally used JQuery for this project, but now I'm having to use Prototype,
I have a web layout originally designed for use with televisions (running from a
I'm working on a multi-user phonebank software. I originally was planning to use Windows
I have a website that was originally designed for enclosed intranet use under IE
I need to migrate some C# code to Python. The original code makes use
I originally intended to use MATLAB to tackle this problem but the in-built function
How do i use rails console with the wirble gem? I originally had the
I've been finding that a lot of Github projects use Markdown . I originally
I'm trying to use Jackson to deserialize some JSON originally created using Jackson. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.