Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 09BCC17DC9 for ; Tue, 4 Nov 2014 10:44:34 +0000 (UTC) Received: (qmail 60350 invoked by uid 500); 4 Nov 2014 10:44:34 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 60324 invoked by uid 500); 4 Nov 2014 10:44:33 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 60313 invoked by uid 99); 4 Nov 2014 10:44:33 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Nov 2014 10:44:33 +0000 Date: Tue, 4 Nov 2014 10:44:33 +0000 (UTC) From: "Michael Schmidt (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CB-7883) toURL() returns invalid URL values on windows MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-7883?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14195988#comment-14195988 ] Michael Schmidt commented on CB-7883: ------------------------------------- Related to this: [Windows] requestFileSystem returns inconsistent path compared to iOS/Android https://issues.apache.org/jira/browse/CB-7934 > toURL() returns invalid URL values on windows > --------------------------------------------- > > Key: CB-7883 > URL: https://issues.apache.org/jira/browse/CB-7883 > Project: Apache Cordova > Issue Type: Bug > Components: Plugin File, Windows > Affects Versions: 4.0.0 > Reporter: Vladimir Avdonin > > toURL method called on etnries returned by resolveLocalFileSystemURL and getDirectory produces path instead of URL. Note also inconsistent use of forward/backward slash separator in test output below. > Below is test program and its output, demonstrating the problem: > {code} > -----------------test program----------------------- > window.resolveLocalFileSystemURL( > 'file:///', > function(entry) { > console.log('Root URL is '+entry.toURL()); > entry.getDirectory( > 'Subdir', > {create:true}, > function(entry1) { > console.log('Subdir URL is '+entry1.toURL()); > }, > function(err) { console.log(err); } > ); > }, > function(err) { console.log(err); } > ); > -------------output------------------------ > Root URL is C:/Users/vladimir/AppData/Local/Packages/com.example.hello_dsh9t8a1qg3mw/LocalState/ > Subdir URL is C:\Users\vladimir\AppData\Local\Packages\com.example.hello_dsh9t8a1qg3mw\LocalState\Subdir/ > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org