Upload/Download of multiple files now possible
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / post / PostPlog4UORGFilesAction.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.post;
2
3 import net.sourceforge.phpeclipse.wiki.editor.WikiEditorPlugin;
4 import net.sourceforge.phpeclipse.wiki.internal.Configuration;
5 import net.sourceforge.phpeclipse.wiki.internal.ConfigurationWorkingCopy;
6
7 public class PostPlog4UORGFilesAction extends PostWikiFilesAction {
8
9   protected Configuration getConfiguration() {
10     ConfigurationWorkingCopy configuration = new ConfigurationWorkingCopy(super
11         .getConfigurationPrefix(WikiEditorPlugin.PLOG4U_ORG_STORE));
12     configuration.setName("www.Plog4U.org Upload");
13     configuration.setURL("http://www.plog4u.org/index.php");
14     configuration.setType(WikiEditorPlugin.PLOG4U_ORG_STORE);
15     return configuration;
16   }
17
18   /**
19    *  
20    */
21   public PostPlog4UORGFilesAction() {
22     super();
23   }
24
25 }