Changes between Version 12 and Version 13 of JiraToTracIntegration


Ignore:
Timestamp:
Oct 10, 2016, 7:41:56 PM (8 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • JiraToTracIntegration

    v12 v13  
    2323 - Attachments
    2424 - Users
     25
     26The following snippet runs the jira2trac script to migrate a Jira database backup file into a Trac database:
     27
     28{{{#!sh
     29#!/bin/bash
     30
     31BACKUP=../../data/backup.xml
     32ATTACHMENTS=../../data/attachments
     33HTPASSWD=../test/.htpasswd
     34
     35USERNAME=admin
     36PASSWORD=admin
     37HOST=localhost:8080/test
     38
     39./jira2trac -i $BACKUP -a $ATTACHMENTS -u $USERNAME -p $PASSWORD -l $HOST -t $HTPASSWD
     40}}}
    2541
    2642This plugin was developed with:
     
    5773 - HttpAuthPlugin
    5874
    59 == Example
    60 
    61 The following snippet runs the jira2trac script to migrate a Jira database backup file into a Trac database:
    62 {{{#!sh
    63 #!/bin/bash
    64 
    65 BACKUP=../../data/backup.xml
    66 ATTACHMENTS=../../data/attachments
    67 HTPASSWD=../test/.htpasswd
    68 
    69 USERNAME=admin
    70 PASSWORD=admin
    71 HOST=localhost:8080/test
    72 
    73 ./jira2trac -i $BACKUP -a $ATTACHMENTS -u $USERNAME -p $PASSWORD -l $HOST -t $HTPASSWD
    74 }}}
    75 
    7675== Recent Changes
    7776