Implemeted action for uploading Wikipedia articles (thanks to D.Wunsch)
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / config / IWikipedia.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.config;
2 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
3 //http://www.djini.de/software/wikipedia/index.html
4 //
5 //The modified sources are available under the "Common Public License"
6 //with permission from the original author: Daniel Wunsch
7
8 public interface IWikipedia {
9
10   /**
11    * @return Returns the actionPath.
12    */
13   public String getActionPath();
14   /**
15    * @return Returns the actionPath2.
16    */
17   public String getActionPath2();
18   /**
19    * @return Returns the baseURL.
20    */
21   public String getBaseURL();
22   /**
23    * @return Returns the charSet.
24    */
25   public String getCharSet();
26   /**
27    * @return Returns the loginNoUser.
28    */
29   public String getLoginNoUser();
30   /**
31    * @return Returns the loginSuccess.
32    */
33   public String getLoginSuccess();
34   /**
35    * @return Returns the loginTitle.
36    */
37   public String getLoginTitle();
38   /**
39    * @return Returns the loginWrongPw.
40    */
41   public String getLoginWrongPw();
42   /**
43    * @return Returns the logoutSuccess.
44    */
45   public String getLogoutSuccess();
46   /**
47    * @return Returns the logoutTitle.
48    */
49   public String getLogoutTitle();
50   /**
51    * @return Returns the metaNs.
52    */
53   public String getMetaNs();
54   /**
55    * @return Returns the nameSpaces.
56    */
57   public String[] getNameSpaces();
58   /**
59    * @return Returns the readPath.
60    */
61   public String getReadPath();
62   /**
63    * @return Returns the specialNs.
64    */
65   public String getSpecialNs();
66   /**
67    * @return Returns the uploadNoLogin.
68    */
69   public String getUploadNoLogin();
70   /**
71    * @return Returns the uploadSuccess.
72    */
73   public String getUploadSuccess();
74   /**
75    * @return Returns the uploadTitle.
76    */
77   public String getUploadTitle();
78 }