Changes between Version 12 and Version 13 of JiraToTracIntegration
- Timestamp:
- Oct 10, 2016, 7:41:56 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
JiraToTracIntegration
v12 v13 23 23 - Attachments 24 24 - Users 25 26 The following snippet runs the jira2trac script to migrate a Jira database backup file into a Trac database: 27 28 {{{#!sh 29 #!/bin/bash 30 31 BACKUP=../../data/backup.xml 32 ATTACHMENTS=../../data/attachments 33 HTPASSWD=../test/.htpasswd 34 35 USERNAME=admin 36 PASSWORD=admin 37 HOST=localhost:8080/test 38 39 ./jira2trac -i $BACKUP -a $ATTACHMENTS -u $USERNAME -p $PASSWORD -l $HOST -t $HTPASSWD 40 }}} 25 41 26 42 This plugin was developed with: … … 57 73 - HttpAuthPlugin 58 74 59 == Example60 61 The following snippet runs the jira2trac script to migrate a Jira database backup file into a Trac database:62 {{{#!sh63 #!/bin/bash64 65 BACKUP=../../data/backup.xml66 ATTACHMENTS=../../data/attachments67 HTPASSWD=../test/.htpasswd68 69 USERNAME=admin70 PASSWORD=admin71 HOST=localhost:8080/test72 73 ./jira2trac -i $BACKUP -a $ATTACHMENTS -u $USERNAME -p $PASSWORD -l $HOST -t $HTPASSWD74 }}}75 76 75 == Recent Changes 77 76