You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2011/03/06 23:17:19 UTC

svn commit: r1078628 - in /incubator/easyant/site/sources: reference.html template.html xooki/messages.json xooki/tiddly/util.js

Author: jlboudart
Date: Sun Mar  6 23:17:19 2011
New Revision: 1078628

URL: http://svn.apache.org/viewvc?rev=1078628&view=rev
Log:
Updating easyant webiste template and fixing \n messages due to wrong refactoring

Removed:
    incubator/easyant/site/sources/reference.html
Modified:
    incubator/easyant/site/sources/template.html
    incubator/easyant/site/sources/xooki/messages.json
    incubator/easyant/site/sources/xooki/tiddly/util.js

Modified: incubator/easyant/site/sources/template.html
URL: http://svn.apache.org/viewvc/incubator/easyant/site/sources/template.html?rev=1078628&r1=1078627&r2=1078628&view=diff
==============================================================================
--- incubator/easyant/site/sources/template.html (original)
+++ incubator/easyant/site/sources/template.html Sun Mar  6 23:17:19 2011
@@ -61,7 +61,11 @@
 </div>
 <!-- end #content -->
 <div id="footer">
-    <p id="legal">Copyright &copy; 2008-2010 EasyAnt project. Designed by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a></p>
+    <p id="legal">
+        <i>Copyright © 2011 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</a>.</i><br>
+        <i>Apache EasyAnt, Apache Ivy, Apache Ant, Ivy, Ant, Apache, the Apache Ivy logo, the Apache Ant logo and the Apache feather logo are trademarks of The Apache Software Foundation.</i><br>
+        <i>All other marks mentioned may be trademarks or registered trademarks of their respective owners. </i>
+    </p>
 </div>
 <!-- end #footer -->
 </body>

Modified: incubator/easyant/site/sources/xooki/messages.json
URL: http://svn.apache.org/viewvc/incubator/easyant/site/sources/xooki/messages.json?rev=1078628&r1=1078627&r2=1078628&view=diff
==============================================================================
--- incubator/easyant/site/sources/xooki/messages.json (original)
+++ incubator/easyant/site/sources/xooki/messages.json Sun Mar  6 23:17:19 2011
@@ -16,6 +16,5 @@
  *
  */
 {
-            "Impossible to save changes to ${0}": "Impossible to save changes to ${0}.
- This could be because your browser doesn't support saving (instead, use FireFox if you can), or because the pathname to your Xooki file contains illegal characters"
+            "Impossible to save changes to ${0}": "Impossible to save changes to ${0}.\n This could be because your browser doesn't support saving (instead, use FireFox if you can), or because the pathname to your Xooki file contains illegal characters"
 }

Modified: incubator/easyant/site/sources/xooki/tiddly/util.js
URL: http://svn.apache.org/viewvc/incubator/easyant/site/sources/xooki/tiddly/util.js?rev=1078628&r1=1078627&r2=1078628&view=diff
==============================================================================
--- incubator/easyant/site/sources/xooki/tiddly/util.js (original)
+++ incubator/easyant/site/sources/xooki/tiddly/util.js Sun Mar  6 23:17:19 2011
@@ -93,9 +93,7 @@ function ieSaveFile(filePath, content)
         }
     catch(e)
         {
-        //alert("Exception while attempting to save
-
-" + e.toString());
+        //alert("Exception while attempting to save \n\n" + e.toString());
         return(null);
         }
     var file = fso.OpenTextFile(filePath,2,-1,0);
@@ -116,9 +114,7 @@ function ieLoadFile(filePath)
         }
     catch(e)
         {
-        //alert("Exception while attempting to load
-
-" + e.toString());
+        //alert("Exception while attempting to load\n\n" + e.toString());
         return(null);
         }
     return(content);
@@ -171,9 +167,7 @@ function mozillaLoadFile(filePath)
             }
         catch(e)
             {
-            //alert("Exception while attempting to load
-
-" + e);
+            //alert("Exception while attempting to load \n\n" + e);
             return(false);
             }
     return(null);