From commits-return-3237-archive-asf-public=cust-asf.ponee.io@royale.apache.org Sun Mar 25 23:22:55 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4EC8018067E for ; Sun, 25 Mar 2018 23:22:55 +0200 (CEST) Received: (qmail 37332 invoked by uid 500); 25 Mar 2018 21:22:54 -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 37315 invoked by uid 99); 25 Mar 2018 21:22:54 -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; Sun, 25 Mar 2018 21:22:54 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A902E80917; Sun, 25 Mar 2018 21:22:53 +0000 (UTC) Date: Sun, 25 Mar 2018 21:22:54 +0000 To: "commits@royale.apache.org" Subject: [royale-compiler] 01/01: I think this solves the problem that generates the error at runtime. But runtime not works. Still don't know how is procesed the array at runtime I think this should be audit by Alex to see if it's ok, and provide some guidance with SimpleCSSValuesImpl MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: carlosrovira@apache.org In-Reply-To: <152201297362.25874.8317684311468707983@gitbox.apache.org> References: <152201297362.25874.8317684311468707983@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: royale-compiler X-Git-Refname: refs/heads/bug/#35 X-Git-Reftype: branch X-Git-Rev: f26d3370711a8a2f9e08ae738879117335107bcf X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20180325212253.A902E80917@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. carlosrovira pushed a commit to branch bug/#35 in repository https://gitbox.apache.org/repos/asf/royale-compiler.git commit f26d3370711a8a2f9e08ae738879117335107bcf Author: Carlos Rovira AuthorDate: Sun Mar 25 23:22:49 2018 +0200 I think this solves the problem that generates the error at runtime. But runtime not works. Still don't know how is procesed the array at runtime I think this should be audit by Alex to see if it's ok, and provide some guidance with SimpleCSSValuesImpl --- .../royale/compiler/internal/css/CSSURLAndFormatPropertyValue.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/src/main/java/org/apache/royale/compiler/internal/css/CSSURLAndFormatPropertyValue.java b/compiler/src/main/java/org/apache/royale/compiler/internal/css/CSSURLAndFormatPropertyValue.java index 1543d13..96cf0d3 100644 --- a/compiler/src/main/java/org/apache/royale/compiler/internal/css/CSSURLAndFormatPropertyValue.java +++ b/compiler/src/main/java/org/apache/royale/compiler/internal/css/CSSURLAndFormatPropertyValue.java @@ -57,6 +57,10 @@ public class CSSURLAndFormatPropertyValue extends CSSFunctionCallPropertyValue @Override public String toString() { + if(super.toString().contains("data:")) + { + return super.toString().replace("(\"", "(").replace("\")", ")"); + } if (format == null) return super.toString(); return super.toString() + " " + format; -- To stop receiving notification emails like this one, please contact carlosrovira@apache.org.