TIP ImportExportPlugin is not installed on Foswiki.org.

Import Export Plugin

Import and export wiki data

This plugin is intended to help import and export data (webs, topics, attachments) from your foswiki, or from some other source into your foswiki.

Initially, it will import from an existing foswiki or twiki on the same filesystem, but I'm intending it to import using ssh, zip, or some custom mechanism.

The data should then be able to transformed (for eg, twiki based topic links re-written to the new foswiki names)

Import into this foswiki

(re-implement using a FOREACH over a IMPORTFROMHANDLER macro), and extract UI's so that others can add new handlers in their own contribs

Sorry, you can only import if you are in the AdminGroup (or sudo to it)

Check topics in this foswiki

This checker was initially written to find links to missing topics or attachments (and to list external url's in case they could cause issues.

In the process of rendering, It also lists all topics that cause a crash, so can help you debug issues caused by plugins.

It will also report what MACRO's were not expanded, thus alerting you to potentially missing plugins.

Sorry, you can only check content if you are in the AdminGroup (or sudo to it)

pre-development thinking

  1. a set of ImportExportPlugin::From classes that implement getListOfWebs, getListOfTopics, getListOfAttachments and getItem
  2. have a UI that allows the user to select the From class and add parameters to it
    • From::FS and From::SSH would require permissions (somehow), whereas From::Zip or From::Http might work differently
  3. given a From handler, the user can select a 'set' of items that are available (from a UI) and a destination, and hit 'go'
  4. a set of ImportExportPlugin::Transforms can be selected to be used while importing a set (none, twiki->foswiki, cvs->forms topics, funny encoding->utf8, change topic name)

Installation

You do not need to install anything in the browser to use this extension. The following instructions are for the administrator who installs the extension on the server.

Open configure, and open the "Extensions" section. Use "Find More Extensions" to get a list of available extensions. Select "Install".

If you have any problems, or if the extension isn't available in configure, then you can still install manually from the command-line. See http://foswiki.org/Support/ManuallyInstallingExtensions for more help.

Info

Author: Foswiki:Main.SvenDowideit
Copyright: © 2011, SvenDowideit@fosiki.com
License: GPL (GNU General Public License)
Release: 0.0.8
Version: 14300 (2012-03-13)
Change History:  
0.6 (5 Mar 2012: Initial version
Home: http://foswiki.org/Extensions/ImportExportPlugin
Support: http://foswiki.org/Support/ImportExportPlugin

%STARTSECTION{import-app}%
%TABPANE% 
 %TAB{"FS"}% 
<form name="main" enctype="multipart/form-data" action="%SCRIPTURLPATH{"rest"}%/ImportExportPlugin/import" method="post">
<table width="100%" summary="%MAKETEXT{"Attach a file"}%">
<input type="hidden" name="fromtype" value="FS" />
<tr>
__you need to be foswiki admin to use this__
  <td align="right">
   %MAKETEXT{"local filesystem directory to import from"}%
  </td><td>
   <input type="text" name="fspath" value="/home/sven/src/twiki_backup" size="50" />
  </td>
 </tr>
<tr>
  <td align="right">
   %MAKETEXT{"Import data from"}% 
  </td><td>
   <select name="importFrom">
    <option value="wiki">wiki (enter path to dir containing both data and pub)</option>
    <option value="topics">web topics (ignores attachments)</option>
    <option value="attachments">add multiple files to a wiki  (ignores topics)</option>
    </select>
  </td>
 </tr>
<tr>
  <td align="right">
   %MAKETEXT{"filter list"}%
  </td><td>
   <select name="filterlist">
    <option value="none">none</option>
    <option value="twiki">convert from twiki</option>
    </select>
  </td>
 </tr>
  <td align="right">
   %MAKETEXT{"Web names to import (comma separated)"}%
  </td><td>
   <input type="text" name="webs" value="Bugs,Know,Hsa,Plugins,Templates,Support,Sven" size="50" />
  </td>
 </tr>
 <tr>
  <td align="right">
  </td><td>
    <input type="submit" class="foswikiSubmit" value="%MAKETEXT{"Import"}%" />  </td>
 </tr>
</table>
</form>
 %ENDTAB% 
 %TAB{"ZIP"}% 
---+++ implement later
upload zip, select topic and zip attachment or enter filesystem path to zip file
 %ENDTAB% 
 %TAB{"SSH"}% 
---+++ implement later
enter ssh path to FS? (or is this?)
 %ENDTAB% 
 %TAB{"foswiki"}% 
---+++ implement later
a way to copy one or more web's contents into one or more web
 %ENDTAB% 
%ENDTABPANE% 
%ENDSECTION{import-app}%
----------------------
%STARTSECTION{check-app}%
%TABPANE% 
 %TAB{"Foswiki"}% 
<form name="main" enctype="multipart/form-data" action="%SCRIPTURLPATH{"rest"}%/ImportExportPlugin/check" method="post">
<table width="100%" summary="%MAKETEXT{""}%">
<input type="hidden" name="fromtype" value="foswiki" />
<tr>
Will create a report in the Sandbox web ImportExportPluginCheckReport  __TODO: with restricted ACL?__
  <td align="right">
   %MAKETEXT{"webs to perform checks on"}%
  </td><td>
   <select name="webs" class="foswikiSelect"> %WEBLIST{ "<option $marker>$name</option>" webs="webtemplate,public" selection="Sandbox" separator=" "}%</select>
  </td>
 </tr>
<tr>
  <td align="right">
   %MAKETEXT{"checks to perform"}%
  </td><td>
   <select name="filterlist">
    <option value="none">none</option>
    <option value="chklinks">check links (renders each topic to html then looks for urls)</option>
    </select>
  </td>
 </tr>
 <tr>
  <td align="right">
  </td><td>
    <input type="submit" class="foswikiSubmit" value="%MAKETEXT{"Check"}%" />  </td>
 </tr>
</table>
</form>
 %ENDTAB% 
%ENDTABPANE% 
%ENDSECTION{check-app}%
I Attachment Action Size Date Who Comment
ImportExportPlugin.md5md5 ImportExportPlugin.md5 manage 177 bytes 25 Mar 2012 - 23:30 SvenDowideit  
ImportExportPlugin.sha1sha1 ImportExportPlugin.sha1 manage 201 bytes 25 Mar 2012 - 23:30 SvenDowideit  
ImportExportPlugin.tgztgz ImportExportPlugin.tgz manage 14 K 25 Mar 2012 - 23:30 SvenDowideit  
ImportExportPlugin.zipzip ImportExportPlugin.zip manage 20 K 25 Mar 2012 - 23:30 SvenDowideit  
ImportExportPlugin_installerEXT ImportExportPlugin_installer manage 4 K 25 Mar 2012 - 23:30 SvenDowideit  
Topic revision: r3 - 25 Mar 2012, SvenDowideit
The copyright of the content on this website is held by the contributing authors, except where stated elsewhere. See Copyright Statement. Creative Commons License    Legal Imprint    Privacy Policy