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/17 00:55:52 UTC

svn commit: r890646 - in /websites/staging/flex/trunk: cgi-bin/ content/ content/community-showcase.html content/js/showcase.js

Author: buildbot
Date: Mon Dec 16 23:55:52 2013
New Revision: 890646

Log:
Staging update by buildbot for flex

Modified:
    websites/staging/flex/trunk/cgi-bin/   (props changed)
    websites/staging/flex/trunk/content/   (props changed)
    websites/staging/flex/trunk/content/community-showcase.html
    websites/staging/flex/trunk/content/js/showcase.js

Propchange: websites/staging/flex/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec 16 23:55:52 2013
@@ -1 +1 @@
-1551409
+1551411

Propchange: websites/staging/flex/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec 16 23:55:52 2013
@@ -1 +1 @@
-1551409
+1551411

Modified: websites/staging/flex/trunk/content/community-showcase.html
==============================================================================
--- websites/staging/flex/trunk/content/community-showcase.html (original)
+++ websites/staging/flex/trunk/content/community-showcase.html Mon Dec 16 23:55:52 2013
@@ -194,33 +194,7 @@ To speed up the process, you can include
 </li>
 </ul></p>
 <p><div id="showcaseContainer"></div></p>
-<div class="headline"><h4>bCommunities - Secure B2B Collaboration</h4></div>
-
-<ul class="arrow_list">
-<li> Summary:  We've created bCommunities, a disruptively efficient online platform that enables businesses to powerfully
-and securely interconnect their operations with their clients and suppliers in minutes.
-Features silo-bursting project management, communications, CRM and microblogging while fostering best practices and accountability.   </li>
- <li>Author:   Dan Samper </li>
- <li> Web site:   <A href=" http://bcommunities.com" target="_blank"> http://bcommunities.com</A></li>
- <li> Videos: <A href="http://youtube.com/bcommunities" target="_blank">http://youtube.com/bcommunities</A>  </li>
- </ul>
-
-<p><img src="images/showcase/bCommunities/Communications Inbox.jpg"      /></p>
-<div class="headline"><h4>Goal Manager</h4></div>
-
-<div class="headline"><h4>My Dojo for Dota 2</h4></div>
-
-<div class="headline"><h4>Online Designer Tool</h4></div>
-
-<div class="headline"><h4>TrafficLIVE AIR Application</h4></div>
-
-<ul class="arrow_list">
-<li> Summary:  TrafficLIVE is a comprehensive creative business management system that provides visibility into resources, work and finances all in one place. Creative businesses all over the globe are using TrafficLIVE to improve efficiency and increase profit.  </li>
- <li>Author:   Marcus Wilkinson </li>
- <li> Web site:   <A href="http://trafficlive.com" target="_blank">http://trafficlive.com</A></li>
- </ul>
-
-<p><img src="images/showcase/TrafficLive/TrafficLIVE-data-visualisation.png"      /></p>
+<!--  the showcase entries are in js/showcase.js -->
 
 <!-- Home Page Exception -->
 

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 Mon Dec 16 23:55:52 2013
@@ -3,10 +3,10 @@
 *  title: app title
 *  author: string
 *  description: app description
-*  website: url
-*  videos: url
+*  [ website: url  ]
+*  [ videos: url   ]
 *  imgDir: subdirectory for images
-*  images:  Array
+*  images:  Array of file names
 * */
  /*
   <div class='headline'><h4>%TITLE%</h4></div>
@@ -30,7 +30,7 @@
      // TITLE
     var entry = '<div class="headline"><h4>'+props.title+'</h4></div>' +
       ' <ul class="arrow_list">' +
-        '<li> Summary:  '+props.summary+'  </li>'  +
+        '<li> Summary:  '+props.description+'  </li>'  +
         '<li>Author:   '+props.author+' </li>' ;
      if (props.website) {
          entry += '<li> Web site:   <A href="'+ props.website+'" target="_blank">' + props.website + '</A></li>';
@@ -77,4 +77,58 @@ $(document).ready(function () {
         imgDir: "bCommunities"  ,
         images: [ "Communications Inbox.jpg" , "Directory - Company Level.jpg" ]
     });
+
+    addShowcaseEntry({
+        title: "Goal Manager",
+        description: "",
+        author: "",
+        website: "",
+        video: "",
+        imgDir: "",
+        images: [  ]
+    });
+
+    addShowcaseEntry({
+        title: "My Dojo for Dota 2",
+        description: "",
+        author: "",
+        website: "",
+        video: "",
+        imgDir: "",
+        images: [  ]
+    });
+
+    addShowcaseEntry({
+        title: "Online Designer Tool",
+        description: "",
+        author: "",
+        website: "",
+        video: "",
+        imgDir: "",
+        images: [  ]
+    });
+
+    addShowcaseEntry({
+        title: 'TrafficLIVE AIR Application',
+        description: "TrafficLIVE is a comprehensive creative business management system that provides visibility into resources, work and finances all in one place. " +
+            "Creative businesses all over the globe are using TrafficLIVE to improve efficiency and increase profit. " ,
+        author: "Marcus Wilkinson",
+        website: 'http://trafficlive.com',
+        imgDir: "TrafficLive",
+        images: [ "TrafficLIVE-data-visualisation.png" ]
+    });
+
+    /*  Template for new entry
+     addShowcaseEntry({
+     title: "",
+     description: "" ,
+     author: "",
+     website: "",
+     video: "",
+     imgDir: "",
+     images: [ "" ]
+     });
+    */
+
+
 });