You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bu...@apache.org on 2013/12/19 13:50:10 UTC

svn commit: r891048 - in /websites/staging/flex/trunk: cgi-bin/ content/ content/data/ content/data/showcase.xml content/js/showcase.js

Author: buildbot
Date: Thu Dec 19 12:50:10 2013
New Revision: 891048

Log:
Staging update by buildbot for flex

Added:
    websites/staging/flex/trunk/content/data/
    websites/staging/flex/trunk/content/data/showcase.xml   (with props)
Modified:
    websites/staging/flex/trunk/cgi-bin/   (props changed)
    websites/staging/flex/trunk/content/   (props changed)
    websites/staging/flex/trunk/content/js/showcase.js

Propchange: websites/staging/flex/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 19 12:50:10 2013
@@ -1 +1 @@
-1552034
+1552299

Propchange: websites/staging/flex/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 19 12:50:10 2013
@@ -1 +1 @@
-1552034
+1552299

Added: websites/staging/flex/trunk/content/data/showcase.xml
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/data/showcase.xml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Modified: websites/staging/flex/trunk/content/js/showcase.js
==============================================================================
--- websites/staging/flex/trunk/content/js/showcase.js (original)
+++ websites/staging/flex/trunk/content/js/showcase.js Thu Dec 19 12:50:10 2013
@@ -80,6 +80,19 @@ added when document is ready
 
     $("a.gallery").fancybox({ cyclic: false});
 
+     alert("showcase-ready");
+     // retrieve showcase XML file
+   //   $.get("data/showcase.xml", "false", processShowcaseXML,"xml")   ;
+
+      $.ajax({ url: "data/showcase.xml", type: "GET", dataType: "xml",
+          sucess: processShowcaseXML,
+          error: function (result, state, error) {
+              alert("data/showcase.xml file is not reachable:" + error)
+          }
+      });
+
+
+
     /* add showcase entries when document is loaded */
     addShowcaseEntry({
         title: 'bCommunities -  Secure B2B Collaboration',
@@ -183,3 +196,8 @@ added when document is ready
 
 
 });
+
+function processShowcaseXML( xmlData)  {
+       alert("XML="+xmlData);
+
+}