Added xstream handiling for Wikipedia upload/download
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / connect / Parsed.java
index c8bb20d..8adf257 100644 (file)
@@ -1,5 +1,7 @@
 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.connect;
 
+import java.io.InputStream;
+
 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
 //http://www.djini.de/software/wikipedia/index.html
 //
@@ -62,6 +64,21 @@ public class Parsed {
   public String getTimestamp() {
     return timestamp;
   }
+  
+  public String getDateTimestamp() {
+    if (timestamp!=null) {
+      StringBuffer buffer = new StringBuffer();
+      // 2004-11-22T12:41:10Z
+      buffer.append(timestamp.substring(0,4));  //year
+      buffer.append(timestamp.substring(5,7));  //month
+      buffer.append(timestamp.substring(8,10)); //day
+      buffer.append(timestamp.substring(11,13));//hour
+      buffer.append(timestamp.substring(14,16));//minute
+      buffer.append(timestamp.substring(17,19));//second
+      return buffer.toString();
+    } 
+    return "";
+  }
   /**
    * @return Returns the title.
    */