svn commit: r1579559 [23/23] - in /james/hupa/trunk: ./ client/ client/src/main/java/com/google/web/bindery/requestfactory/server/ client/src/main/java/org/apache/hupa/ client/src/main/java/org/apache

2014-03-20 Thread manolo
Modified: 
james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EditableTree.java
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EditableTree.java?rev=1579559r1=1579558r2=1579559view=diff
==
--- 
james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EditableTree.java
 (original)
+++ 
james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EditableTree.java
 Thu Mar 20 08:16:02 2014
@@ -1,69 +1,69 @@
-/
- * Licensed to the Apache Software Foundation (ASF) under one   *
- * or more contributor license agreements.  See the NOTICE file *
- * distributed with this work for additional information*
- * regarding copyright ownership.  The ASF licenses this file   *
- * to you under the Apache License, Version 2.0 (the*
- * License); you may not use this file except in compliance   *
- * with the License.  You may obtain a copy of the License at   *
- *  *
- *   http://www.apache.org/licenses/LICENSE-2.0 *
- *  *
- * Unless required by applicable law or agreed to in writing,   *
- * software distributed under the License is distributed on an  *
- * AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY   *
- * KIND, either express or implied.  See the License for the*
- * specific language governing permissions and limitations  *
- * under the License.   *
- /
-
-package org.apache.hupa.widgets.ui;
-
-import com.google.gwt.user.client.DOM;
-import com.google.gwt.user.client.Event;
-import com.google.gwt.user.client.ui.Tree;
-import com.google.gwt.user.client.ui.TreeItem;
-
-/**
- * Tree which can holds EditableTreeItem instances
- * 
- *
- */
-public class EditableTree extends Tree {
-public EditableTree(Tree.Resources images, boolean leaf) {
-super(images, leaf);
-}
-
-public EditableTree() {
-super();
-}
-
-public EditableTree(Tree.Resources images) {
-super(images);
-}
-
-/**
- * Prevent  Event.ONCLICK, Event.ONMOUSEDOWN, Event.ONKEYDOWN from bubble 
down if the item is in editing mode
- */
-public void onBrowserEvent(Event event) {
-TreeItem item = getSelectedItem();
-
-// Check if the selectedItem is Editable and if so make sure the 
events are not fired
-if (item instanceof HasEditable) {
-if (item != null  ((HasEditable) item).isEdit()) {
-int type = DOM.eventGetType(event);
-switch (type) {
-case Event.ONCLICK:
-return;
-case Event.ONMOUSEDOWN:
-return;
-case Event.ONKEYDOWN:
-return;
-default:
-break;
-}
-}
-}
-super.onBrowserEvent(event);
-}
-}
+/
+ * Licensed to the Apache Software Foundation (ASF) under one   *
+ * or more contributor license agreements.  See the NOTICE file *
+ * distributed with this work for additional information*
+ * regarding copyright ownership.  The ASF licenses this file   *
+ * to you under the Apache License, Version 2.0 (the*
+ * License); you may not use this file except in compliance   *
+ * with the License.  You may obtain a copy of the License at   *
+ *  *
+ *   http://www.apache.org/licenses/LICENSE-2.0 *
+ *  *
+ * Unless required by applicable law or agreed to in writing,   *
+ * software distributed under the License is distributed on an  *
+ * AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY   *
+ * KIND, either express or implied.  See the License for the*
+ * specific language governing permissions and limitations  *
+ * under the License.   *
+ /
+
+package org.apache.hupa.widgets.ui;
+
+import com.google.gwt.user.client.DOM;
+import com.google.gwt.user.client.Event;
+import com.google.gwt.user.client.ui.Tree;
+import com.google.gwt.user.client.ui.TreeItem;
+
+/**
+ * Tree which can holds EditableTreeItem instances
+ *
+ *
+ */
+public class EditableTree extends Tree {
+public EditableTree(Tree.Resources images, boolean leaf) {
+super(images, leaf);
+}
+
+public EditableTree() {
+super();
+}
+
+public EditableTree(Tree.Resources images) {
+super(images);
+}

svn commit: r1579567 - /james/hupa/trunk/src/site/resources/demo/index.html

2014-03-20 Thread manolo
Author: manolo
Date: Thu Mar 20 09:03:39 2014
New Revision: 1579567

URL: http://svn.apache.org/r1579567
Log:
Fix site doc

Modified:
james/hupa/trunk/src/site/resources/demo/index.html

Modified: james/hupa/trunk/src/site/resources/demo/index.html
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/src/site/resources/demo/index.html?rev=1579567r1=1579566r2=1579567view=diff
==
--- james/hupa/trunk/src/site/resources/demo/index.html (original)
+++ james/hupa/trunk/src/site/resources/demo/index.html Thu Mar 20 09:03:39 2014
@@ -72,14 +72,6 @@ p {
margin-top: 5px;
margin-bottom: 0px;
 }
- HEAD
- HEAD
- HEAD
- HEAD
-===
- constantly changed by manolo
-===
- constantly changed by manolo
 .red {
   font-weight: bold;
   color: red;
@@ -89,7 +81,6 @@ pre {
   font-family: courier;
   font-size: 14px;
 }
- HEAD
 /style
   !-- Google Analytics --
 script type=text/javascript
@@ -102,29 +93,7 @@ pre {
 var s = document.getElementsByTagName('script').item(0); 
s.parentNode.insertBefore(ga, s);
   })();
 /script
- HEAD
-===
 /style
- first commit
-===
- constantly changed by manolo
-===
-/style
- first commit
-===
-/style
-  !-- Google Analytics --
-script type=text/javascript
-  var _gaq = _gaq || [];
-  _gaq.push(['_setAccount', 'UA-1384591-1']);
-  _gaq.push(['_trackPageview']);
-  (function() {
-var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
-ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
-var s = document.getElementsByTagName('script').item(0); 
s.parentNode.insertBefore(ga, s);
-  })();
-/script
- constantly changed by manolo
 /head
 
 body
@@ -135,86 +104,15 @@ pre {
 /div
 
 div class='text box'
- HEAD
- HEAD
- HEAD
- HEAD
-p
-ul
-liHupa in a href=/hupa.demoDemo/a mode:
-===
 pYou can select one of our demo instances:
 ul
 liHupa in bDemo/b mode: a href=/hupa.demohttp/a:
- first commit
-===
-p
-ul
-liHupa in a href=/hupa.demoDemo/a mode:
- constantly changed by manolo
-===
-pYou can select one of our demo instances:
-ul
-liHupa in bDemo/b mode: a href=/hupa.demohttp/a:
- first commit
-===
-p
-ul
-liHupa in a href=/hupa.demoDemo/a mode:
- constantly changed by manolo
 ul
 liUsername is set to b'demo'/b and the password is 
b'demo'/b/li
 liUses a collection of example messages and stub
 implementations of IMAP and SMTP servers./li
 liIn this instance you can test almost the Hupa features,
- HEAD
- HEAD
- HEAD
- HEAD
-but emails you send will never reach the 
addressee./li
-/ul/li
-/li
-
-liHupa for bGmail/b: br/br/We have
-span class='red'disabled/span this instance to 
avoid risks  and legal issues.br/Nevertheless you can
-a 
href=https://builds.apache.org/job/hupa-trunk/lastBuild/org.apache.hupa$hupa/artifact/org.apache.hupa/hupa/0.0.2-SNAPSHOT/hupa-0.0.2-SNAPSHOT.war;
 download /a
-the last built of Hupa and run it in your system:
-pre
-$ java -jar hupa-0.0.2-SNAPSHOT.war
-/pre
-  Your instance on Hupa:
-ul
-liWill work with any imap enabled account in gmail./li
-===
-but emails you send will never reach the addressee,
-and message search is not 
implemented./li
-===
-but emails you send will never reach the 
addressee./li
- constantly changed by manolo
-/ul/li
-/li
-
-liHupa for bGmail/b: br/br/We have
-span class='red'disabled/span this instance to 
avoid risks  and legal issues.br/Nevertheless you can
-a 
href=https://builds.apache.org/job/hupa-trunk/lastBuild/org.apache.hupa$hupa/artifact/org.apache.hupa/hupa/0.0.2-SNAPSHOT/hupa-0.0.2-SNAPSHOT.war;
 download /a
-the last built of Hupa and run it in your system:
-pre
-$ java -jar hupa-0.0.2-SNAPSHOT.war
-/pre
-  Your instance on Hupa:
-ul
- HEAD
-liIt will work with any imap enabled account in 
gmail./li
- first commit
-===
-liWill work with any imap enabled account in gmail./li
- constantly changed by manolo
-===
-but emails you send will never reach the addressee,
-and message search is not 
implemented./li
-===
 

svn commit: r1579571 - /james/hupa/trunk/pom.xml

2014-03-20 Thread manolo
Author: manolo
Date: Thu Mar 20 09:17:54 2014
New Revision: 1579571

URL: http://svn.apache.org/r1579571
Log:
Fix site doc creation due to a maven issue

Modified:
james/hupa/trunk/pom.xml

Modified: james/hupa/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/pom.xml?rev=1579571r1=1579570r2=1579571view=diff
==
--- james/hupa/trunk/pom.xml (original)
+++ james/hupa/trunk/pom.xml Thu Mar 20 09:17:54 2014
@@ -386,6 +386,11 @@
 version${gwtMavenVersion}/version
 /plugin
 plugin
+groupIdorg.apache.maven.plugins/groupId
+artifactIdmaven-site-plugin/artifactId
+version3.3/version
+/plugin
+plugin
 groupIdorg.bsc.maven/groupId
 artifactIdmaven-processor-plugin/artifactId
 dependencies



-
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org



Jenkins build is still unstable: james-server-trunk » Apache James :: Karaf :: Integration tests #4309

2014-03-20 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/james-server-trunk/org.apache.james.karaf$james-karaf-integration/4309/


-
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org



Jenkins build is still unstable: james-server-trunk #4309

2014-03-20 Thread Apache Jenkins Server
See https://builds.apache.org/job/james-server-trunk/4309/


-
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org



Jenkins build is back to normal : jdkim-trunk » Apache James :: jDKIM :: DomainKey Project #1973

2014-03-20 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/jdkim-trunk/org.apache.james.jdkim$apache-jdkim-project/1973/


-
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org



Jenkins build is back to normal : jdkim-trunk #1973

2014-03-20 Thread Apache Jenkins Server
See https://builds.apache.org/job/jdkim-trunk/1973/


-
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org



svn commit: r1579882 - /james/hupa/trunk/pom.xml

2014-03-20 Thread dongxu
Author: dongxu
Date: Fri Mar 21 04:47:14 2014
New Revision: 1579882

URL: http://svn.apache.org/r1579882
Log:
Change gQuery version to the latest 1.4.1

Modified:
james/hupa/trunk/pom.xml

Modified: james/hupa/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/pom.xml?rev=1579882r1=1579881r2=1579882view=diff
==
--- james/hupa/trunk/pom.xml (original)
+++ james/hupa/trunk/pom.xml Fri Mar 21 04:47:14 2014
@@ -331,7 +331,7 @@
 dependency
 groupIdcom.googlecode.gwtquery/groupId
 artifactIdgwtquery/artifactId
-version1.4.1-SNAPSHOT/version
+version1.4.1/version
 scopeprovided/scope
 /dependency
 /dependencies



-
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org