Changes between Version 3 and Version 4 of quintagroup.transmogrifier


Ignore:
Timestamp:
Feb 28, 2010 10:30:23 AM (14 years ago)
Author:
koval
Comment:

added instruction for preparing content archive for import

Legend:

Unmodified
Added
Removed
Modified
  • quintagroup.transmogrifier

    v3 v4  
    108108Now let's get to exporting process. In the browser open the following address: http://localhost:8080; in ZMI go to the Plone site, which content you want to migrate. 
    109109 
    110 Add '''CMF Setup tool''' in this site, which will be added with a '''portal_setup''' name. Open this tool and on '''Properties''' tab in '''Active site configuration''' field select '''Transmogrifier''', then click on '''Update''' button. Then go to '''Export''' tab and from the list of '''Available Export Steps''' select '''Content''' and click on '''Export selected steps''' button. Content exporting process will begin, its progress will be displayed in the terminal, in case Zope was started in fg mode. As a result content will be exported and you'll get content archive in the browser. 
     110Add '''CMF Setup tool''' in this site, which will be added with a '''portal_setup''' name. Open this tool and on '''Properties''' tab in '''Active site configuration''' field select '''Transmogrifier''', then click on '''Update''' button. Then go to '''Export''' tab and from the list of '''Available Export Steps''' select '''Content''' and click on '''Export selected steps''' button. Content exporting process will begin, its progress will be displayed in the terminal, in case Zope was started in fg mode. As a result content will be exported and you'll get content archive in the browser. Save this archive somewhere in a file system add unpack it to some directory. Then add empty '''quintagroup.transmogrifier-import.txt''' file in that directory and pack it. This can be done with next commands: 
     111{{{ 
     112mkdir content 
     113cd content 
     114tar -xzf path/to/setup_tool-xxxxxxxxxxxxxx.tar.gz 
     115touch quintagroup.transmogrifier-import.txt 
     116tar -czf content.tgz quintagroup.transmogrifier-import.txt structure 
     117}}} 
     118After that '''content.tgz''' is the archive which will be used for importing content. 
    111119 
    112120== Creating buildout for Plone 3.2 site ==