Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 297A910549 for ; Wed, 18 Dec 2013 15:34:10 +0000 (UTC) Received: (qmail 54211 invoked by uid 500); 18 Dec 2013 15:33:55 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 54187 invoked by uid 500); 18 Dec 2013 15:33:54 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 54173 invoked by uid 99); 18 Dec 2013 15:33:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Dec 2013 15:33:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Dec 2013 15:33:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B6A8823889EA; Wed, 18 Dec 2013 15:33:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1551979 - /flex/site/trunk/content/js/showcase.js Date: Wed, 18 Dec 2013 15:33:27 -0000 To: commits@flex.apache.org From: mamsellem@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131218153327.B6A8823889EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mamsellem Date: Wed Dec 18 15:33:27 2013 New Revision: 1551979 URL: http://svn.apache.org/r1551979 Log: DONE - FLEX-33907 Showcase section in web site Update goal manager Modified: flex/site/trunk/content/js/showcase.js Modified: flex/site/trunk/content/js/showcase.js URL: http://svn.apache.org/viewvc/flex/site/trunk/content/js/showcase.js?rev=1551979&r1=1551978&r2=1551979&view=diff ============================================================================== --- flex/site/trunk/content/js/showcase.js (original) +++ flex/site/trunk/content/js/showcase.js Wed Dec 18 15:33:27 2013 @@ -17,18 +17,18 @@ // TITLE var entry = '

'+props.title+'

' + '
    ' + - '
  • Summary: '+props.description+'
  • ' + - '
  • Author: '+props.author+'
  • ' ; + '
  • Summary:  '+props.description+'
  • ' + + '
  • Author:  '+props.author+'
  • ' ; if (props.dev){ - entry += '
  • Dev details:' + props.dev + '
  • '; + entry += '
  • Dev details:  ' + props.dev + '
  • '; } if (props.website) { - entry += '
  • Web site: ' + props.website + '
  • '; + entry += '
  • Web site:  ' + props.website + '
  • '; } var links = props.links; if (links){ for (i=0; i < links.length; i+= 2){ - entry += '
  • '+links[i]+': ' + links[i+1] + '
  • '; + entry += '
  • '+links[i]+':  ' + links[i+1] + '
  • '; } } entry += '
' ;