From commits-return-1875-archive-asf-public=cust-asf.ponee.io@royale.apache.org Fri Feb 2 23:09:06 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 02718180608 for ; Fri, 2 Feb 2018 23:09:06 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E6665160C49; Fri, 2 Feb 2018 22:09:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3AC61160C25 for ; Fri, 2 Feb 2018 23:09:05 +0100 (CET) Received: (qmail 67972 invoked by uid 500); 2 Feb 2018 22:09:04 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 67963 invoked by uid 99); 2 Feb 2018 22:09:04 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2018 22:09:04 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8D481859E8; Fri, 2 Feb 2018 22:09:03 +0000 (UTC) Date: Fri, 02 Feb 2018 22:09:03 +0000 To: , "' commits@royale.apache.org" , '@gitbox.apache.org, Subject: [royale-asjs] branch feature/royalesite updated (ad357d8 -> f36cdb5) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151760934305.21911.13143084515053479058@gitbox.apache.org> From: aharui@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/feature/royalesite X-Git-Reftype: branch X-Git-Oldrev: ad357d88126a35f458f2ec026a2eae5e77efe576 X-Git-Newrev: f36cdb5efd26f6425a4e1f06eaa209dec4c3d97b X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aharui pushed a change to branch feature/royalesite in repository https://gitbox.apache.org/repos/asf/royale-asjs.git. from ad357d8 put second icon on separate line new 5ac0fae start copying from doc template new 6215ade should use typenames instead of classname to avoid being overwritten by app dev new 9c82e73 update site components to try to use them in asdoc new 8f31e43 put custom fonts in template new 6cd45fe refactor example to use new components and remove clutter new edef66c handle display specified in stylesheets new 87ba068 tune up site components new 6b941bf make ASDoc look a bit better new 026ff12 try using padding instead of fixed height to center text vertically and handle different font sizes new 41eb804 AlternatingBackgroundColor renderer new 818c715 use typenames new bd31916 use hash anchor links new 71484c4 simple routing for JS new f36cdb5 implement routing in ASDoc The 14 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../ASDoc/src/main/config/compile-app-config.xml | 1 + .../src/main/resources/royale-index-template.html | 274 +++++++++++++++++++++ examples/royale/ASDoc/src/main/royale/ASDoc.mxml | 7 + .../ASDoc/src/main/royale/ASDocMainView.mxml | 108 +++++++- ...gBackgroundColorHashAnchorStringItemRenderer.as | 87 ++++--- .../main/royale/HashAnchorStringItemRenderer.as | 64 ++--- .../ASDoc/src/main/royale/models/ASDocModel.as | 11 +- .../src/main/resources/royale-index-template.html | 242 ++++++++++++++++++ .../src/main/royale/RoyaleWebsite.mxml | 70 +----- .../Basic/src/main/resources/basic-manifest.xml | 3 + .../projects/Basic/src/main/resources/defaults.css | 3 +- .../main/royale/org/apache/royale/core/ViewBase.as | 2 +- .../OneFlexibleChildVerticalLayoutForOverflow.as | 3 +- ...lternatingBackgroundColorStringItemRenderer.as} | 87 ++++--- .../html/supportClasses/StringItemRenderer.as | 3 +- .../HashChangeNotifierBead.as} | 70 +++--- .../RoyaleSite/src/main/resources/defaults.css | 169 +++++++++++-- .../src/main/resources/royalesite-manifest.xml | 12 + .../royale/site/{CurvedTop.as => DocFooter.as} | 21 +- .../royale/site/{CurvedTop.as => DocPage.as} | 21 +- .../site/{CurvedTop.as => DocSocialButtons.as} | 19 +- .../royale/org/apache/royale/site/DocTagline.as} | 33 ++- .../royale/org/apache/royale/site/DocTopBar.mxml | 23 +- .../royale/site/{CurvedTop.as => DocTopMenu.as} | 21 +- .../main/royale/org/apache/royale/site/Footer.mxml | 73 ++++++ .../royale/site/{CurvedTop.as => MainPage.as} | 21 +- .../main/royale/org/apache/royale/site/Tagline.as} | 33 ++- .../main/royale/org/apache/royale/site/TopBar.mxml | 23 +- .../royale/org/apache/royale/site/TopMenu.mxml | 25 +- .../royale/site/{TopMenu.as => TopMenuBase.as} | 6 +- 30 files changed, 1155 insertions(+), 380 deletions(-) create mode 100644 examples/royale/ASDoc/src/main/resources/royale-index-template.html copy frameworks/projects/Basic/src/main/royale/org/apache/royale/html/BinaryImage.as => examples/royale/ASDoc/src/main/royale/AlternatingBackgroundColorHashAnchorStringItemRenderer.as (51%) copy frameworks/projects/HTML/src/main/royale/org/apache/royale/html/elements/A.as => examples/royale/ASDoc/src/main/royale/HashAnchorStringItemRenderer.as (54%) copy frameworks/projects/Basic/src/main/royale/org/apache/royale/html/{BinaryImage.as => supportClasses/AlternatingBackgroundColorStringItemRenderer.as} (51%) copy frameworks/projects/Basic/src/main/royale/org/apache/royale/{html/beads/TextOverflow.as => routing/HashChangeNotifierBead.as} (63%) copy frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/{CurvedTop.as => DocFooter.as} (80%) copy frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/{CurvedTop.as => DocPage.as} (81%) copy frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/{CurvedTop.as => DocSocialButtons.as} (77%) copy frameworks/projects/{Basic/src/main/royale/org/apache/royale/html/TableHeader.as => RoyaleSite/src/main/royale/org/apache/royale/site/DocTagline.as} (75%) copy examples/royale/MDLBlogExample/src/main/royale/App.mxml => frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/DocTopBar.mxml (67%) copy frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/{CurvedTop.as => DocTopMenu.as} (79%) create mode 100644 frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/Footer.mxml copy frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/{CurvedTop.as => MainPage.as} (81%) copy frameworks/projects/{Basic/src/main/royale/org/apache/royale/html/TableHeader.as => RoyaleSite/src/main/royale/org/apache/royale/site/Tagline.as} (75%) copy examples/royale/MDLBlogExample/src/main/royale/App.mxml => frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/TopBar.mxml (67%) copy examples/royale/MDLBlogExample/src/main/royale/App.mxml => frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/TopMenu.mxml (55%) rename frameworks/projects/RoyaleSite/src/main/royale/org/apache/royale/site/{TopMenu.as => TopMenuBase.as} (93%) -- To stop receiving notification emails like this one, please contact aharui@apache.org.