Author: mamsellem
Date: Mon Dec 16 23:55:47 2013
New Revision: 1551411
URL: http://svn.apache.org/r1551411
Log:
IN PROGRESS - FLEX-33907 Showcase section in web site
try#4 javascript generated showcase entries
Modified:
flex/site/trunk/content/community-showcase.cmsPage
flex/site/trunk/content/js/showcase.js
Modified: flex/site/trunk/content/community-showcase.cmsPage
URL:
http://svn.apache.org/viewvc/flex/site/trunk/content/community-showcase.cmsPage?rev=1551411&r1=1551410&r2=1551411&view=diff
==============================================================================
--- flex/site/trunk/content/community-showcase.cmsPage (original)
+++ flex/site/trunk/content/community-showcase.cmsPage Mon Dec 16 23:55:47 2013
@@ -16,32 +16,5 @@ To speed up the process, you can include
<div id="showcaseContainer"></div>
-<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>
- <img src="images/showcase/bCommunities/Communications Inbox.jpg" />
+ <!-- the showcase entries are in js/showcase.js -->
-
-<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>
- <img src="images/showcase/TrafficLive/TrafficLIVE-data-visualisation.png"
/>
Modified: flex/site/trunk/content/js/showcase.js
URL:
http://svn.apache.org/viewvc/flex/site/trunk/content/js/showcase.js?rev=1551411&r1=1551410&r2=1551411&view=diff
==============================================================================
--- flex/site/trunk/content/js/showcase.js (original)
+++ flex/site/trunk/content/js/showcase.js Mon Dec 16 23:55:47 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: [ "" ]
+ });
+ */
+
+
});