[jira] [Commented] (CB-5308) Contact.save() call failure callback even if contact data is successfully saved on device

2014-11-06 Thread Pavankumar Joshi (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201703#comment-14201703
 ] 

Pavankumar Joshi commented on CB-5308:
--

I am constantly getting contact.save()(already existing contact) method test 
failure.
If I apply the patch as mentioned in JIRA 
https://issues.apache.org/jira/browse/CB-5308 pickContacts API fails.
But without the patch conact.save()(already existing contact) method always 
fails.

I observed that the query to retrieve the contact which already exists 
RAWCONTACTS_ID is used This is implemented in onActivityResult() in 
ContactManager.java

Hence i made the change even to pickContact API.

Earlier Code 
 public void onActivityResult(int requestCode, int resultCode, final Intent 
intent) {
if (requestCode == CONTACT_PICKER_RESULT) {
if (resultCode == Activity.RESULT_OK) {
String contactId = intent.getData().getLastPathSegment();
// to populate contact data we require  Raw Contact ID
// so we do look up for contact raw id first
Cursor c =  
this.cordova.getActivity().getContentResolver().query(RawContacts.CONTENT_URI,
new String[] {RawContacts._ID}, 
RawContacts.CONTACT_ID + " = " + contactId, null, null);
if (!c.moveToFirst()) {
this.callbackContext.error("Error occured while retrieving 
contact raw id");
return;
}
String id = c.getString(c.getColumnIndex(RawContacts._ID));
c.close();

try {
JSONObject contact = contactAccessor.getContactById(id);
  
this.callbackContext.success(contact);
return;
} catch (JSONException e) {
Log.e(LOG_TAG, "JSON fail.", e);
}
} else if (resultCode == Activity.RESULT_CANCELED){
this.callbackContext.sendPluginResult(new 
PluginResult(PluginResult.Status.NO_RESULT, UNKNOWN_ERROR));
return;
}
this.callbackContext.sendPluginResult(new 
PluginResult(PluginResult.Status.ERROR, UNKNOWN_ERROR));
}
}

Modified Code : Changed the call " JSONObject contact = 
contactAccessor.getContactByRawId(id);"
 public void onActivityResult(int requestCode, int resultCode, final Intent 
intent) {
if (requestCode == CONTACT_PICKER_RESULT) {
if (resultCode == Activity.RESULT_OK) {
String contactId = intent.getData().getLastPathSegment();
// to populate contact data we require  Raw Contact ID
// so we do look up for contact raw id first
Cursor c =  
this.cordova.getActivity().getContentResolver().query(RawContacts.CONTENT_URI,
new String[] {RawContacts._ID}, 
RawContacts.CONTACT_ID + " = " + contactId, null, null);
if (!c.moveToFirst()) {
this.callbackContext.error("Error occured while retrieving 
contact raw id");
return;
}
String id = c.getString(c.getColumnIndex(RawContacts._ID));
c.close();

try {
//JSONObject contact = contactAccessor.getContactById(id);
JSONObject contact = contactAccessor.getContactByRawId(id);
this.callbackContext.success(contact);
return;
} catch (JSONException e) {
Log.e(LOG_TAG, "JSON fail.", e);
}
} else if (resultCode == Activity.RESULT_CANCELED){
this.callbackContext.sendPluginResult(new 
PluginResult(PluginResult.Status.NO_RESULT, UNKNOWN_ERROR));
return;
}
this.callbackContext.sendPluginResult(new 
PluginResult(PluginResult.Status.ERROR, UNKNOWN_ERROR));
}
}

Please let me know if this is correct or are we missing something

> Contact.save() call failure callback even if contact data is successfully 
> saved on device
> -
>
> Key: CB-5308
> URL: https://issues.apache.org/jira/browse/CB-5308
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, mobile-spec, Plugin Contacts
>Affects Versions: 3.1.0
> Environment: Android 4.1.2 physical device
>Reporter: Shingo Toda
>Priority: Minor
>
> When I run contact mobile-spec, following specs sometimes fail.
> - contacts.spec.6
> - contacts.spec.20
> - contacts.spec.21
> - contacts.spec.24
> In Java side, it looks that {{ContactAccessorSdk5.save()}} returns contact id 
> but {{ContactAccessorSdk5.getContactById()}} return

[jira] [Created] (CB-7984) encodingType in Camera Plugin not supported on Android

2014-11-06 Thread Pavankumar Joshi (JIRA)
Pavankumar Joshi created CB-7984:


 Summary: encodingType in Camera Plugin not supported on Android
 Key: CB-7984
 URL: https://issues.apache.org/jira/browse/CB-7984
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: 3.6.3
 Environment: testing mobilespec 3.6.3 version on Android 4.4.3 and 
Android 4.0.4
Reporter: Pavankumar Joshi
Priority: Minor


There is already a JIRA for “unsupported PNG format on Android”
https://issues.apache.org/jira/browse/CB-7122.
The Docs have to be updated to indicate that encodingType is not supported on 
Android Platform





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7983) volumedownbutton volumeupbutton in Android Supported but not mentioned in cordova-docs

2014-11-06 Thread Pavankumar Joshi (JIRA)
Pavankumar Joshi created CB-7983:


 Summary: volumedownbutton volumeupbutton in Android Supported but 
not mentioned in cordova-docs
 Key: CB-7983
 URL: https://issues.apache.org/jira/browse/CB-7983
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
 Environment: mobilespec 3.6.3 version on Android 4.4.3 and Android 
4.0.4 versions and these events work fine
Reporter: Pavankumar Joshi
Priority: Minor


I have a question regarding volumeup and volumedown events on Android platform. 
These 2 events work fine on Android platform.
I am currently testing mobilespec 3.6.3 version on Android 4.4.3 and Android 
4.0.4 versions and these events work fine.
But the latest cordova-docs mentions that these 2 events are only supported on 
Blackberry platform. Is it deliberately not mentioned in docs or Should the 
docs be updated and platform Android mentioned in the supported platform for 
these 2 events?




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7624) cordova-medic couchdb version not available in archive

2014-11-06 Thread Angela Fowler (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201570#comment-14201570
 ] 

Angela Fowler edited comment on CB-7624 at 11/7/14 4:33 AM:


The grunt cordova-js fails with "platformVersion is required!"
which comes from this task :
https://github.com/apache/cordova-js/blob/master/tasks/compile.js

Changing master_cfg to obtain the version and use it in grunt step 
build_version = json_config['app','release']
..
 ShellCommand(command=["grunt","compile","--platformVersion", build_version], 
workdir='build/cordova-js',description='Grunt', descriptionDone='Grunt')

Build Successful.
Not sure if this is the right way to go, any tips appreciated.


was (Author: amfowler):
The grunt cordova-js fails with "platformVersion is required!"
which comes from this task :
https://github.com/apache/cordova-js/blob/master/tasks/compile.js

Changing master_cfg to obtain the version and use it in grunt step 
build_version = json_config['app','release']
..
 ShellCommand(command=["grunt","compile","--platformVersion", build_version], 
workdir='build/cordova-js',description='Grunt', descriptionDone='Grunt')

Not sure if this is the right way to go, any tips appreciated.

> cordova-medic couchdb version not available in archive
> --
>
> Key: CB-7624
> URL: https://issues.apache.org/jira/browse/CB-7624
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Medic
>Affects Versions: 3.5.0, 3.6.0
> Environment: All
>Reporter: Angela Fowler
>Priority: Minor
>
> The setup instructions at https://github.com/apache/cordova-medic have
> 1. Get and install couchdb 1.3.1 
> The current version of coudb is 1.6. Version 1.3.1 is not listed in the 
> archive at
> http://archive.apache.org/dist/couchdb/
> Is there another recommended version?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7624) cordova-medic couchdb version not available in archive

2014-11-06 Thread Angela Fowler (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201570#comment-14201570
 ] 

Angela Fowler commented on CB-7624:
---

The grunt cordova-js fails with "platformVersion is required!"
which comes from this task :
https://github.com/apache/cordova-js/blob/master/tasks/compile.js

Changing master_cfg to obtain the version and use it in grunt step 
build_version = json_config['app','release']
..
 ShellCommand(command=["grunt","compile","--platformVersion", build_version], 
workdir='build/cordova-js',description='Grunt', descriptionDone='Grunt')

Not sure if this is the right way to go, any tips appreciated.

> cordova-medic couchdb version not available in archive
> --
>
> Key: CB-7624
> URL: https://issues.apache.org/jira/browse/CB-7624
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Medic
>Affects Versions: 3.5.0, 3.6.0
> Environment: All
>Reporter: Angela Fowler
>Priority: Minor
>
> The setup instructions at https://github.com/apache/cordova-medic have
> 1. Get and install couchdb 1.3.1 
> The current version of coudb is 1.6. Version 1.3.1 is not listed in the 
> archive at
> http://archive.apache.org/dist/couchdb/
> Is there another recommended version?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7982) Shield webView and loadUrl(), Make Cordova Plugin Reusable for other Frameworks

2014-11-06 Thread Liming Xie (JIRA)
Liming Xie created CB-7982:
--

 Summary: Shield webView and loadUrl(), Make Cordova Plugin 
Reusable for other Frameworks
 Key: CB-7982
 URL: https://issues.apache.org/jira/browse/CB-7982
 Project: Apache Cordova
  Issue Type: New Feature
  Components: CordovaLib
Affects Versions: Master
Reporter: Liming Xie
 Fix For: Master


This idea "CordovaX" is to make hundreds of Cordova plugin reusable, not only 
in Cordova, but also for Unity3d, cocos2dx, etc.

Cordova plugin manager is bridging function call between javascript and native 
languages, actually, it can be ported to bridge with C, C++, C#, then it can be 
reused for Unity, Cocos2d-X and other frameworks.

To achieve the purpose, need make the interface between plugin and framework 
more common, the adapter interface below is usually enough for a plugin author:

getActivity(), for Android / getViewController, for iOS
getView()
sendPluginResult()
fireEvent(obj, eventName, jsonData), the obj can be window, document, cordova, 
etc.

Some prototype based on current interface:
https://github.com/floatinghotpot/cordova-plugin-ext

If allow modify current implementation:
1. use cordova.getView(), instead of access webView directly.
2. call commandDelegate.fireEvent(), instead of call webView.loadUrl().
3. hide ref to webView in CordovaPlugin.

Plugin Manager for Unity3d/Cocos2dX can be implemented based on current Cordova 
framework by changing to corresponding adapter (cordova, commandDelegate)

Discussed with Shazron, and decide to add a Jira tracker here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-5429) cordova-plugin-network-information fails on iOS when updateReachability is executed

2014-11-06 Thread Christian Schmitz (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5429?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14165083#comment-14165083
 ] 

Christian Schmitz edited comment on CB-5429 at 11/7/14 1:54 AM:


I use 
xCode 6.1 Beta 2 
iOS 8.1 beta 2 (bug appears also in iOS 8.1 beta 1)
cordova 3.6.3

Once the app started and I turn off connection at all (Plane mode) the app 
crashes as described.
Is there a fix in a earlyer version?

UPDATE: I found the bug: 
http://stackoverflow.com/questions/26790729/ios8-phonegap-cordova-network-information-app-crashes/26792735#26792735


was (Author: katamshut):
I use 
xCode 6.1 Beta 2 
iOS 8.1 beta 2 (bug appears also in iOS 8.1 beta 1)
cordova 3.6.3

Once the app started and I turn off connection at all (Plane mode) the app 
crashes as described.
Is there a fix in a earlyer version?

> cordova-plugin-network-information fails on iOS when updateReachability is 
> executed
> ---
>
> Key: CB-5429
> URL: https://issues.apache.org/jira/browse/CB-5429
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Affects Versions: 3.1.0
> Environment: iOS
>Reporter: Pepe Cano
> Fix For: 3.6.0
>
>
> The use case is:
> - app has not any active network connection
> - put the "app" in background and access to WIFI settings to active any WIFI 
> connection
> - "updateReachability" is executed and the [self sendPluginResult] call 
> originates and EXC_BAD_ACCESS exception on the _callbackId variable.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7981) serve ... appears to do prepare/build before serving with no way to turn these phases off

2014-11-06 Thread Darryl L. Miles (JIRA)
Darryl L. Miles created CB-7981:
---

 Summary: serve ... appears to do prepare/build before serving with 
no way to turn these phases off
 Key: CB-7981
 URL: https://issues.apache.org/jira/browse/CB-7981
 Project: Apache Cordova
  Issue Type: Improvement
Affects Versions: 3.6.0
Reporter: Darryl L. Miles
Priority: Minor


Often during automated building we have already just done a "prepare" and/or 
"build", then some other tasks, then we wish to "serve" (like for development 
with LiveReload etc...)

So either:

* those tasks (prepare/build) need to support incremental building, meaning 
running it again a 2nd time in a row would find no new work to do and therefore 
complete the task quickly.

Or

* the "serve" command needs a "--no-prepare" and/or "--no-build" option to 
allow those phases to be inhibited, because the user knows better.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7980) Multi-APK building depending on webview

2014-11-06 Thread Mark Koudritsky (JIRA)
Mark Koudritsky created CB-7980:
---

 Summary: Multi-APK building depending on webview
 Key: CB-7980
 URL: https://issues.apache.org/jira/browse/CB-7980
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android
Reporter: Mark Koudritsky
Assignee: Mark Koudritsky


Set versionCode depending on whether we are building multiple APKs and which 
minSdkVersion is set.

versionCode = (major * 10,000 + minor * 100 + micro) * 10
Then the last digit is set to
9: if minSdkVersion is 20+
0: crorss-platfrom but minSdkVersion < 20
2: arm 32
3: reserved for arm64
4: x86
5: reserved for x86-64




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201131#comment-14201131
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-media/pull/36

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-media deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-media/pull/36.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #36


commit 52b547f90b4ba627615d3d95f36d8abc33f012b6
Author: Josh Soref 
Date:   2014-11-06T22:12:22Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201133#comment-14201133
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-statusbar/pull/17

CB-7977 Mention deviceready in plugin docs

CB-7979 Each plugin doc should have a ## Installation section

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-statusbar deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-statusbar/pull/17.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #17


commit f1c76226e184f140542a84508d0419f804effe57
Author: Josh Soref 
Date:   2014-11-06T22:13:34Z

Inserting leading space after # for consistency

commit 1e9d588101c4d587e6a0dc1601d6d85865b5e78f
Author: Josh Soref 
Date:   2014-11-06T22:15:57Z

CB-7979 Each plugin doc should have a ## Installation section

commit 8685564ec1d5e520eefedecb6a76759954cdb811
Author: Josh Soref 
Date:   2014-11-06T22:16:06Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201134#comment-14201134
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-vibration/pull/24

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-vibration deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-vibration/pull/24.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #24


commit 1282468c09c5d9b4a676feae5604c9ea3602aa20
Author: Josh Soref 
Date:   2014-11-06T22:21:19Z

Add comma to match a later section

commit a520f0de030a217868dcf409bf9612defe20170f
Author: Josh Soref 
Date:   2014-11-06T22:21:27Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201132#comment-14201132
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-media-capture/pull/29

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-media-capture 
deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-media-capture/pull/29.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #29


commit 6a7cd162f118b38f6ae211ca7b687e6d452f43ca
Author: Josh Soref 
Date:   2014-11-06T22:13:05Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201118#comment-14201118
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-camera/pull/53

CB-7977 Mention deviceready in plugin docs

CB-7979 Each plugin doc should have a ## Installation section

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-camera deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-camera/pull/53.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #53


commit fb4cff9cc047b9ceb5d42db7027bdbbc9d03053b
Author: Josh Soref 
Date:   2014-11-06T22:01:19Z

CB-7979 Each plugin doc should have a ## Installation section

commit 032531ae77cb00bd77b547ed2708c4eff123deb4
Author: Josh Soref 
Date:   2014-11-06T22:02:58Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201128#comment-14201128
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-geolocation/pull/30

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-geolocation deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-geolocation/pull/30.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #30


commit 7dc440053469300efc6c8f31904f1e09358318f2
Author: Josh Soref 
Date:   2014-11-06T22:11:11Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201130#comment-14201130
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-inappbrowser/pull/70

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-inappbrowser deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-inappbrowser/pull/70.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #70


commit b88cd839aab61c7f76cefd77e725d15670039be5
Author: Josh Soref 
Date:   2014-11-06T22:11:34Z

Dropping trailing whitespace

commit a8879da4ae29f21172c1d211302199f0508c615f
Author: Josh Soref 
Date:   2014-11-06T22:11:47Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201122#comment-14201122
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-contacts/pull/50

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-contacts deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-contacts/pull/50.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #50


commit c5c265ac0706342c7640a17da20c8892d92c7732
Author: Josh Soref 
Date:   2014-11-06T22:08:51Z

Dropping trailing whitespace

commit 13e7898a361551239df90bdb1ee5bcf4a8efbec4
Author: Josh Soref 
Date:   2014-11-06T22:09:06Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201124#comment-14201124
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-device-orientation/pull/17

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-device-orientation 
deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-device-orientation/pull/17.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #17


commit 41cdaeabd5d6b25ea127875da9e914c4985908a1
Author: Josh Soref 
Date:   2014-11-06T22:09:52Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201126#comment-14201126
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-file/pull/90

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-file deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-file/pull/90.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #90


commit 5f42c6d35e3ed10fd2b50ed1ea55934e6f95c203
Author: Josh Soref 
Date:   2014-11-06T22:10:37Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201129#comment-14201129
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-globalization/pull/30

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-globalization 
deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-globalization/pull/30.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #30


commit 40ab77499c231734818aa18882c837b71e1411d7
Author: Josh Soref 
Date:   2014-11-06T22:24:11Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201119#comment-14201119
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-console/pull/7

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-console deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-console/pull/7.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #7


commit c0aa66c98af3920dc1f9a1f2ec000372d4e48ec1
Author: Josh Soref 
Date:   2014-11-06T22:08:13Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201127#comment-14201127
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-file-transfer/pull/49

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-file-transfer 
deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-file-transfer/pull/49.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #49


commit 96ae0e36d3ba4880f2681053dbba455c1b2d18bf
Author: Josh Soref 
Date:   2014-11-06T22:10:57Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201123#comment-14201123
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-device-motion/pull/19

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-device-motion 
deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-device-motion/pull/19.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #19


commit 2eab1bb8b9d887fc024e79d5a6668051f692f56a
Author: Josh Soref 
Date:   2014-11-06T22:09:28Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201125#comment-14201125
 ] 

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-plugin-dialogs/pull/40

CB-7977 Mention deviceready in plugin docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jsoref/cordova-plugin-dialogs deviceready

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-dialogs/pull/40.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #40


commit 9e377f9e2c086b17fb6e0aa83c6918e557c9fa91
Author: Josh Soref 
Date:   2014-11-06T22:10:15Z

CB-7977 Mention deviceready in plugin docs




> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Assigned] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread Josh Soref (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7977?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Josh Soref reassigned CB-7977:
--

Assignee: Josh Soref

> mention deviceready in plugin docs
> --
>
> Key: CB-7977
> URL: https://issues.apache.org/jira/browse/CB-7977
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
> Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
> Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
> Plugin Media Capture, Plugin Statusbar, Plugin Vibration
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>Assignee: Josh Soref
>
> for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
> $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
> deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
> cordova-plugin-battery-status/doc/index.md
> cordova-plugin-device/doc/index.md
> cordova-plugin-network-information/doc/index.md
> cordova-plugin-splashscreen/doc/index.md
> no deviceready in: cordova-plugin-camera/doc/index.md
> no deviceready in: cordova-plugin-console/doc/index.md
> no deviceready in: cordova-plugin-contacts/doc/index.md
> no deviceready in: cordova-plugin-device-motion/doc/index.md
> no deviceready in: cordova-plugin-device-orientation/doc/index.md
> no deviceready in: cordova-plugin-dialogs/doc/index.md
> no deviceready in: cordova-plugin-file-transfer/doc/index.md
> no deviceready in: cordova-plugin-file/doc/index.md
> no deviceready in: cordova-plugin-geolocation/doc/index.md
> no deviceready in: cordova-plugin-globalization/doc/index.md
> no deviceready in: cordova-plugin-inappbrowser/doc/index.md
> no deviceready in: cordova-plugin-media-capture/doc/index.md
> no deviceready in: cordova-plugin-media/doc/index.md
> no deviceready in: cordova-plugin-statusbar/doc/index.md
> no deviceready in: cordova-plugin-vibration/doc/index.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7979) Each plugin doc should have a ## Installation section

2014-11-06 Thread Josh Soref (JIRA)
Josh Soref created CB-7979:
--

 Summary: Each plugin doc should have a ## Installation section
 Key: CB-7979
 URL: https://issues.apache.org/jira/browse/CB-7979
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera, Plugin Statusbar
Affects Versions: 3.5.0
Reporter: Josh Soref
Assignee: Josh Soref


It'd be nice if we consistently had a ## Installation section

(nearly every does)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7978) Can't run browser platform on Linux

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7978?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14201061#comment-14201061
 ] 

ASF GitHub Bot commented on CB-7978:


GitHub user sosahvictor opened a pull request:

https://github.com/apache/cordova-browser/pull/4

CB-7978 Fixed launching chrome in Linux

- Fixed launching chrome in linux. It either launches chrome or 
google-chrome processes
- Reads config.xml looking for the source file to be used at the lauching 
of the browser. This will work for Linux, Windows and MacOs

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/sosahvictor/cordova-browser master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-browser/pull/4.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #4


commit 87e19e2d69fadcc4909e9858ec94655436857ffe
Author: Victor Sosa 
Date:   2014-11-06T22:13:46Z

CB-7978 Fixed launching chrome in Linux

- Fixed launching chrome in linux. It either launches chrome or 
google-chrome processes
- Reads config.xml looking for the source file to be used at the lauching 
of the browser. This will work for Linux, Windows and MacOs




> Can't run browser platform on Linux
> ---
>
> Key: CB-7978
> URL: https://issues.apache.org/jira/browse/CB-7978
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Browser
>Affects Versions: 4.0.0
> Environment: Linux
>Reporter: Victor Adrian Sosa Herrera
>
> Command "cordova run browser" doesn't work on Linux. The run command handles 
> the cases of when using Windows and Darwin (MacOS) but no Linux.
> Moreover, I have Chrome installed in my machine, but it doesn't respond to 
> the typical "chrome" command because I get an error in the standard 
> output[1], so I have to use "google-chrome" command to launch it
> One more thing I noticed is that in the run script of the browser platform, 
> it is directly pointing to "www/index.html", instead of reading config.xml 
> file looking for 
> [1] Error
> chrome: error while loading shared libraries: libudev.so.0: cannot open 
> shared object file: No such file or directory



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7978) Can't run browser platform on Linux

2014-11-06 Thread Victor Adrian Sosa Herrera (JIRA)
Victor Adrian Sosa Herrera created CB-7978:
--

 Summary: Can't run browser platform on Linux
 Key: CB-7978
 URL: https://issues.apache.org/jira/browse/CB-7978
 Project: Apache Cordova
  Issue Type: Bug
  Components: Browser
Affects Versions: 4.0.0
 Environment: Linux
Reporter: Victor Adrian Sosa Herrera


Command "cordova run browser" doesn't work on Linux. The run command handles 
the cases of when using Windows and Darwin (MacOS) but no Linux.

Moreover, I have Chrome installed in my machine, but it doesn't respond to the 
typical "chrome" command because I get an error in the standard output[1], so I 
have to use "google-chrome" command to launch it

One more thing I noticed is that in the run script of the browser platform, it 
is directly pointing to "www/index.html", instead of reading config.xml file 
looking for 

[1] Error
chrome: error while loading shared libraries: libudev.so.0: cannot open shared 
object file: No such file or directory



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread Andrew Grieve (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7976?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrew Grieve resolved CB-7976.
---
Resolution: Fixed

fixed in: 
org.apache.cordova.network-information@0.2.14-dev
org.apache.cordova.battery-status@0.2.12-dev
cordova-android@3.7.0-dev


> Android: registerReciever() calls should attache to webView's context rather 
> than activity's context
> 
>
> Key: CB-7976
> URL: https://issues.apache.org/jira/browse/CB-7976
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> I'm experimenting with creating a webview that is transferred from one 
> activity to another. Problem is that many plugins attach themselves to the 
> lifespan of `cordova.getActivity()` rather than `webView.getContext()`.
> In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200963#comment-14200963
 ] 

ASF subversion and git services commented on CB-7976:
-

Commit 165b4f01209e6cbdb83619c2b1fb1b860cc1dccc in 
cordova-plugin-network-information's branch refs/heads/master from [~agrieve]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;h=165b4f0
 ]

CB-7976 Android: Use webView's context rather than Activity's context for 
intent receiver


> Android: registerReciever() calls should attache to webView's context rather 
> than activity's context
> 
>
> Key: CB-7976
> URL: https://issues.apache.org/jira/browse/CB-7976
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> I'm experimenting with creating a webview that is transferred from one 
> activity to another. Problem is that many plugins attach themselves to the 
> lifespan of `cordova.getActivity()` rather than `webView.getContext()`.
> In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200962#comment-14200962
 ] 

ASF subversion and git services commented on CB-7976:
-

Commit 9f477a136e2ec83bf3c085ac12574b4a9c16fca1 in 
cordova-plugin-battery-status's branch refs/heads/master from [~agrieve]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=9f477a1
 ]

CB-7976 Android: Use webView's context rather than Activity's context for 
intent receiver


> Android: registerReciever() calls should attache to webView's context rather 
> than activity's context
> 
>
> Key: CB-7976
> URL: https://issues.apache.org/jira/browse/CB-7976
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> I'm experimenting with creating a webview that is transferred from one 
> activity to another. Problem is that many plugins attach themselves to the 
> lifespan of `cordova.getActivity()` rather than `webView.getContext()`.
> In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200958#comment-14200958
 ] 

ASF subversion and git services commented on CB-7976:
-

Commit ac284fd39c86c4fc7b83477ad960ef20892f5e8c in cordova-android's branch 
refs/heads/master from [~agrieve]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=ac284fd ]

CB-7976 Use webView's context rather than Activity's context for intent receiver


> Android: registerReciever() calls should attache to webView's context rather 
> than activity's context
> 
>
> Key: CB-7976
> URL: https://issues.apache.org/jira/browse/CB-7976
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> I'm experimenting with creating a webview that is transferred from one 
> activity to another. Problem is that many plugins attach themselves to the 
> lifespan of `cordova.getActivity()` rather than `webView.getContext()`.
> In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200957#comment-14200957
 ] 

ASF subversion and git services commented on CB-7976:
-

Commit ac284fd39c86c4fc7b83477ad960ef20892f5e8c in cordova-android's branch 
refs/heads/4.0.x from [~agrieve]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=ac284fd ]

CB-7976 Use webView's context rather than Activity's context for intent receiver


> Android: registerReciever() calls should attache to webView's context rather 
> than activity's context
> 
>
> Key: CB-7976
> URL: https://issues.apache.org/jira/browse/CB-7976
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> I'm experimenting with creating a webview that is transferred from one 
> activity to another. Problem is that many plugins attach themselves to the 
> lifespan of `cordova.getActivity()` rather than `webView.getContext()`.
> In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7977) mention deviceready in plugin docs

2014-11-06 Thread Josh Soref (JIRA)
Josh Soref created CB-7977:
--

 Summary: mention deviceready in plugin docs
 Key: CB-7977
 URL: https://issues.apache.org/jira/browse/CB-7977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
Plugin Media Capture, Plugin Statusbar, Plugin Vibration
Affects Versions: 3.5.0
Reporter: Josh Soref


for a in cordova-plugin-*; do test -f  $a/doc/index.md && grep -l deviceready 
$a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
deviceready in: /'; grep -lr decideready $a/*); done 2>/dev/null |sort
cordova-plugin-battery-status/doc/index.md
cordova-plugin-device/doc/index.md
cordova-plugin-network-information/doc/index.md
cordova-plugin-splashscreen/doc/index.md
no deviceready in: cordova-plugin-camera/doc/index.md
no deviceready in: cordova-plugin-console/doc/index.md
no deviceready in: cordova-plugin-contacts/doc/index.md
no deviceready in: cordova-plugin-device-motion/doc/index.md
no deviceready in: cordova-plugin-device-orientation/doc/index.md
no deviceready in: cordova-plugin-dialogs/doc/index.md
no deviceready in: cordova-plugin-file-transfer/doc/index.md
no deviceready in: cordova-plugin-file/doc/index.md
no deviceready in: cordova-plugin-geolocation/doc/index.md
no deviceready in: cordova-plugin-globalization/doc/index.md
no deviceready in: cordova-plugin-inappbrowser/doc/index.md
no deviceready in: cordova-plugin-media-capture/doc/index.md
no deviceready in: cordova-plugin-media/doc/index.md
no deviceready in: cordova-plugin-statusbar/doc/index.md
no deviceready in: cordova-plugin-vibration/doc/index.md




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread Andrew Grieve (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200945#comment-14200945
 ] 

Andrew Grieve commented on CB-7976:
---

This shows up in 3 places:

{quote}
cordova-plugin-battery-status/src/android/BatteryListener.java:
cordova.getActivity().registerReceiver(this.receiver, intentFilter);
cordova-plugin-network-information/src/android/NetworkManager.java:
cordova.getActivity().registerReceiver(this.receiver, intentFilter);
framework//src/org/apache/cordova/CoreAndroid.java:
this.cordova.getActivity().registerReceiver(this.telephonyReceiver, 
intentFilter);
{quote}

> Android: registerReciever() calls should attache to webView's context rather 
> than activity's context
> 
>
> Key: CB-7976
> URL: https://issues.apache.org/jira/browse/CB-7976
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> I'm experimenting with creating a webview that is transferred from one 
> activity to another. Problem is that many plugins attach themselves to the 
> lifespan of `cordova.getActivity()` rather than `webView.getContext()`.
> In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7976) Android: registerReciever() calls should attache to webView's context rather than activity's context

2014-11-06 Thread Andrew Grieve (JIRA)
Andrew Grieve created CB-7976:
-

 Summary: Android: registerReciever() calls should attache to 
webView's context rather than activity's context
 Key: CB-7976
 URL: https://issues.apache.org/jira/browse/CB-7976
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Andrew Grieve
Assignee: Andrew Grieve
Priority: Minor


I'm experimenting with creating a webview that is transferred from one activity 
to another. Problem is that many plugins attach themselves to the lifespan of 
`cordova.getActivity()` rather than `webView.getContext()`.

In general, these are the same, but not in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7975) Errant Behavior with AngularJS UI-Router with Cordova on Windows 8/8.1

2014-11-06 Thread James Polenski (JIRA)
James Polenski created CB-7975:
--

 Summary: Errant Behavior with AngularJS UI-Router with Cordova on 
Windows 8/8.1 
 Key: CB-7975
 URL: https://issues.apache.org/jira/browse/CB-7975
 Project: Apache Cordova
  Issue Type: Bug
  Components: Windows
Affects Versions: 3.5.0
 Environment: Windows 8.1 Pro, Visual Studio 2013 Pro, AngularJS 
1.2.26, UI-Router 0.2.11, npm installed, built with grunt, managed by bower
Reporter: James Polenski
 Fix For: Master


Not sure if this is a Cordova problem or a Windows problem. However, the 
problem does not manifest on Android, iOS, or any desktop browser. The 
Windows-built Cordova application injects extra head and body sections when 
using ui-router to swap in content in a single-page application. These multiple 
root nodes then proceed to cause issues in other Angular constructs.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7974) Android load timeout isn't cancelled when view is destroyed

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7974?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200891#comment-14200891
 ] 

ASF subversion and git services commented on CB-7974:
-

Commit e78db000c611405ba35188fdf613b4d56f84516b in cordova-android's branch 
refs/heads/master from [~agrieve]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=e78db00 ]

CB-7974 Cancel timeout timer if view is destroyed


> Android load timeout isn't cancelled when view is destroyed
> ---
>
> Key: CB-7974
> URL: https://issues.apache.org/jira/browse/CB-7974
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Andrew Grieve
>Priority: Minor
>
> This affects multi-webview apps. If you call handleDestroy() on one webview 
> before it's done loading, its timeout timer eventually fires and shows an 
> alert. 
> We just need to cancel this timer in handleDestroy().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7758) Support for content:// URIs

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7758?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200888#comment-14200888
 ] 

ASF subversion and git services commented on CB-7758:
-

Commit fc63f66e8970ab537dda1397a6b58e6d61252c17 in cordova-android's branch 
refs/heads/4.0.x from [~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=fc63f66 ]

CB-7758: Allow content-url-hosted pages to access the bridge

This allows e.g. jsHybugger to create pages with access to Cordova APIs.
We restrict access to content provider URLs which are at subdomains of the 
application itself, ie, begin with "content://com.your.package.id."


> Support for content:// URIs
> ---
>
> Key: CB-7758
> URL: https://issues.apache.org/jira/browse/CB-7758
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Android
>Affects Versions: 3.6.0
> Environment: Android 4.3
>Reporter: Wolfgang Flohr-Hochbichler
>Assignee: Ian Clelland
>Priority: Minor
>
> Device ready event is not fired if page is loaded via content:// protocol. 
> I assume it has something to do with a security check done within 
> CordovaBridge.java which triggers the following gap_init error message.
> 10-09 10:10:18.071 16719 16719 E CordovaBridge: gap_init called from 
> restricted origin: 
> content://com.ionicframework.ionicapp795549.jsHybugger/file:///android_asset/www/index.html#/tab/dash
> 10-09 10:10:23.075 16719 16719 D CordovaLog: 
> content://com.ionicframework.ionicapp795549.jsHybugger/jshybugger.js: Line 
> 112 : deviceready has not fired after 5 seconds.
> 10-09 10:10:23.075 16719 16719 I Web Console: deviceready has not fired after 
> 5 seconds. at 
> content://com.ionicframework.ionicapp795549.jsHybugger/jshybugger.js:112



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7974) Android load timeout isn't cancelled when view is destroyed

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7974?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200890#comment-14200890
 ] 

ASF subversion and git services commented on CB-7974:
-

Commit e78db000c611405ba35188fdf613b4d56f84516b in cordova-android's branch 
refs/heads/4.0.x from [~agrieve]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=e78db00 ]

CB-7974 Cancel timeout timer if view is destroyed


> Android load timeout isn't cancelled when view is destroyed
> ---
>
> Key: CB-7974
> URL: https://issues.apache.org/jira/browse/CB-7974
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Andrew Grieve
>Priority: Minor
>
> This affects multi-webview apps. If you call handleDestroy() on one webview 
> before it's done loading, its timeout timer eventually fires and shows an 
> alert. 
> We just need to cancel this timer in handleDestroy().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7940) Android's exec() bridge secret should not allow infinite attempts.

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200889#comment-14200889
 ] 

ASF subversion and git services commented on CB-7940:
-

Commit 032ea8a8d386d8bcffc5de7fd3e4202478effb7d in cordova-android's branch 
refs/heads/4.0.x from [~agrieve]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=032ea8a ]

CB-7940 Disable exec bridge if bridgeSecret is wrong


> Android's exec() bridge secret should not allow infinite attempts.
> --
>
> Key: CB-7940
> URL: https://issues.apache.org/jira/browse/CB-7940
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
>
> The bridge secret is a 31 bit integer that ensures the bridge is exposed only 
> to trusted origins (aka, blocked from malicious iframe content). However, 
> right now a malicious iframe can just keep guessing the secret until it finds 
> it.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7726) Typo in .gitignore template

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200887#comment-14200887
 ] 

ASF subversion and git services commented on CB-7726:
-

Commit 832e6265735ac75685625b917b81d374c55a3926 in cordova-android's branch 
refs/heads/4.0.x from [~themightychris]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=832e626 ]

CB-7726 fix typo in gitignore: ant-built -> ant-build

github: close #131


> Typo in .gitignore template
> ---
>
> Key: CB-7726
> URL: https://issues.apache.org/jira/browse/CB-7726
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.6.0
>Reporter: Alessandro Miliucci
>Priority: Trivial
> Fix For: 3.7.0
>
>
> The gitignore template ingores the *ant-built* directory instead of 
> *ant-build*.
> Ref. 
> https://github.com/apache/cordova-android/blob/master/bin/templates/project/gitignore



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7973) js/index.js is TL;DR and obscures the key point

2014-11-06 Thread Josh Soref (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7973?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200873#comment-14200873
 ] 

Josh Soref commented on CB-7973:


[~mwbrooks]: the structure seems to be yours...

> js/index.js is TL;DR and obscures the key point
> ---
>
> Key: CB-7973
> URL: https://issues.apache.org/jira/browse/CB-7973
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: App Hello World
>Affects Versions: 3.5.0
>Reporter: Josh Soref
>
> Today, on #cordova, we had a user acknowledge that they looked over 
> js/index.js, didn't understand that it was doing anything important, and 
> replaced it.
> Unfortunately, in doing this, they removed 
> document.addEventListener('deviceready', ..., false);
> Which is really the only important part of the code.
> Object Oriented Code is nice for reuse, but it's awful for samples where 
> people aren't going to use your code and won't be able to tease out what's 
> important, and what's just app-specific.
> A number of suggestions were given.
> * highlight jQuery equivalence (jQuery(...).ready() ?))
> * drop OOP
> I toyed with the idea of including a link to the documentation on deviceready 
> with a comment explaining that you can't use any cordova stuff before it has 
> been called.
> But, I'm just opening this bug to track the issue.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7974) Android load timeout isn't cancelled when view is destroyed

2014-11-06 Thread Andrew Grieve (JIRA)
Andrew Grieve created CB-7974:
-

 Summary: Android load timeout isn't cancelled when view is 
destroyed
 Key: CB-7974
 URL: https://issues.apache.org/jira/browse/CB-7974
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Reporter: Andrew Grieve
Priority: Minor


This affects multi-webview apps. If you call handleDestroy() on one webview 
before it's done loading, its timeout timer eventually fires and shows an 
alert. 

We just need to cancel this timer in handleDestroy().



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7973) js/index.js is TL;DR and obscures the key point

2014-11-06 Thread Josh Soref (JIRA)
Josh Soref created CB-7973:
--

 Summary: js/index.js is TL;DR and obscures the key point
 Key: CB-7973
 URL: https://issues.apache.org/jira/browse/CB-7973
 Project: Apache Cordova
  Issue Type: Bug
  Components: App Hello World
Affects Versions: 3.5.0
Reporter: Josh Soref


Today, on #cordova, we had a user acknowledge that they looked over 
js/index.js, didn't understand that it was doing anything important, and 
replaced it.

Unfortunately, in doing this, they removed 
document.addEventListener('deviceready', ..., false);

Which is really the only important part of the code.

Object Oriented Code is nice for reuse, but it's awful for samples where people 
aren't going to use your code and won't be able to tease out what's important, 
and what's just app-specific.

A number of suggestions were given.
* highlight jQuery equivalence (jQuery(...).ready() ?))
* drop OOP

I toyed with the idea of including a link to the documentation on deviceready 
with a comment explaining that you can't use any cordova stuff before it has 
been called.

But, I'm just opening this bug to track the issue.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-3445) Move Cordova-Android Build Setup to Gradle

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200757#comment-14200757
 ] 

ASF GitHub Bot commented on CB-3445:


Github user clelland commented on the pull request:

https://github.com/apache/cordova-lib/pull/111#issuecomment-62038387
  
Pushed to apache/cordova-android as well, on a new CB-3445 branch.


> Move Cordova-Android Build Setup to Gradle
> --
>
> Key: CB-3445
> URL: https://issues.apache.org/jira/browse/CB-3445
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Reporter: Joe Bowser
>Assignee: Ian Clelland
>Priority: Minor
>
> Currently we're using ant for our setup, and our setup can break every time 
> that the Android SDK updates and change its build.xml.  However, the Android 
> Team has created Gradle to be more robust such that it doesn't have the same 
> problems as ant-based scripts.
> This also has the advantage of using Android Studio for development instead 
> of Eclipse, and the ability for us to bundle resources, which is something we 
> haven't been able to do before.
> Moving to Gradle has numerous advantages, but will break scripts, so this is 
> to be moved in the post-3.0 timeframe.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-3445) Move Cordova-Android Build Setup to Gradle

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200745#comment-14200745
 ] 

ASF GitHub Bot commented on CB-3445:


Github user clelland commented on the pull request:

https://github.com/apache/cordova-lib/pull/111#issuecomment-62037534
  
I've rebased this against master now, and pushed it up on a feature branch 
(`CB-3445-2`, to not conflict with the previous branch)


> Move Cordova-Android Build Setup to Gradle
> --
>
> Key: CB-3445
> URL: https://issues.apache.org/jira/browse/CB-3445
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Reporter: Joe Bowser
>Assignee: Ian Clelland
>Priority: Minor
>
> Currently we're using ant for our setup, and our setup can break every time 
> that the Android SDK updates and change its build.xml.  However, the Android 
> Team has created Gradle to be more robust such that it doesn't have the same 
> problems as ant-based scripts.
> This also has the advantage of using Android Studio for development instead 
> of Eclipse, and the ability for us to bundle resources, which is something we 
> haven't been able to do before.
> Moving to Gradle has numerous advantages, but will break scripts, so this is 
> to be moved in the post-3.0 timeframe.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-3445) Move Cordova-Android Build Setup to Gradle

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200741#comment-14200741
 ] 

ASF subversion and git services commented on CB-3445:
-

Commit 759c4cb1cff2b440742ed265277497f11e020996 in cordova-lib's branch 
refs/heads/CB-3445-2 from [~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=759c4cb ]

CB-3445: Android: Add library projects to gradle build config on plugin install


> Move Cordova-Android Build Setup to Gradle
> --
>
> Key: CB-3445
> URL: https://issues.apache.org/jira/browse/CB-3445
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Reporter: Joe Bowser
>Assignee: Ian Clelland
>Priority: Minor
>
> Currently we're using ant for our setup, and our setup can break every time 
> that the Android SDK updates and change its build.xml.  However, the Android 
> Team has created Gradle to be more robust such that it doesn't have the same 
> problems as ant-based scripts.
> This also has the advantage of using Android Studio for development instead 
> of Eclipse, and the ability for us to bundle resources, which is something we 
> haven't been able to do before.
> Moving to Gradle has numerous advantages, but will break scripts, so this is 
> to be moved in the post-3.0 timeframe.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-3445) Move Cordova-Android Build Setup to Gradle

2014-11-06 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200742#comment-14200742
 ] 

ASF subversion and git services commented on CB-3445:
-

Commit 1805d4cbe0b30cd1965d1445ba4a1637219b73fc in cordova-lib's branch 
refs/heads/CB-3445-2 from [~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=1805d4c ]

CB-3445: Android: Fail gracefully when adding plugins to nongradle project


> Move Cordova-Android Build Setup to Gradle
> --
>
> Key: CB-3445
> URL: https://issues.apache.org/jira/browse/CB-3445
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Reporter: Joe Bowser
>Assignee: Ian Clelland
>Priority: Minor
>
> Currently we're using ant for our setup, and our setup can break every time 
> that the Android SDK updates and change its build.xml.  However, the Android 
> Team has created Gradle to be more robust such that it doesn't have the same 
> problems as ant-based scripts.
> This also has the advantage of using Android Studio for development instead 
> of Eclipse, and the ability for us to bundle resources, which is something we 
> haven't been able to do before.
> Moving to Gradle has numerous advantages, but will break scripts, so this is 
> to be moved in the post-3.0 timeframe.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-7969) plugin add ... makes it install for all platform when plugin.xml only supports 1 platform

2014-11-06 Thread Andrew Grieve (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7969?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrew Grieve resolved CB-7969.
---
Resolution: Duplicate

> plugin add ... makes it install for all platform when plugin.xml only 
> supports 1 platform
> -
>
> Key: CB-7969
> URL: https://issues.apache.org/jira/browse/CB-7969
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 3.6.0
>Reporter: Darryl L. Miles
>
> plugin add ... makes it installed for all platform when plugin.xml only 
> supports 1 platform
> $ cordova platform add blackberry10
> $ cordova platform add browser --usegit
> $ cordova plugin add com.blackberry.notification
> $ cordova build browser -d
> See the output include the plugin when build 'browser'.
> Now examine plugins\browser.json and the "installed_plugins" section, you 
> will see it got added there.
> Now examine plugins\com.blackberry.notification\plugin.xml and see that the 
> element plugin.platform[name]="blackberry10" exists, but no other platform is 
> supported and not default platform config is provided.
> So why was it installed for the "browser" platform ?
> I think it is expected it only gets installed into the "blackberry10" 
> platform.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7969) plugin add ... makes it install for all platform when plugin.xml only supports 1 platform

2014-11-06 Thread Darryl L. Miles (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7969?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Darryl L. Miles updated CB-7969:

Summary: plugin add ... makes it install for all platform when plugin.xml 
only supports 1 platform  (was: plugin add ... makes it installed for all 
platform when plugin.xml only supports 1 platform)

> plugin add ... makes it install for all platform when plugin.xml only 
> supports 1 platform
> -
>
> Key: CB-7969
> URL: https://issues.apache.org/jira/browse/CB-7969
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 3.6.0
>Reporter: Darryl L. Miles
>
> plugin add ... makes it installed for all platform when plugin.xml only 
> supports 1 platform
> $ cordova platform add blackberry10
> $ cordova platform add browser --usegit
> $ cordova plugin add com.blackberry.notification
> $ cordova build browser -d
> See the output include the plugin when build 'browser'.
> Now examine plugins\browser.json and the "installed_plugins" section, you 
> will see it got added there.
> Now examine plugins\com.blackberry.notification\plugin.xml and see that the 
> element plugin.platform[name]="blackberry10" exists, but no other platform is 
> supported and not default platform config is provided.
> So why was it installed for the "browser" platform ?
> I think it is expected it only gets installed into the "blackberry10" 
> platform.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7827) manifest/application/activity[android:name] always CordovaApp

2014-11-06 Thread David Hogg (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7827?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200469#comment-14200469
 ] 

David Hogg commented on CB-7827:


Note that when building an apk for the fire OS platform the apk is named 
properly (as opposed to CordovaApp.apk). Having differences like this does get 
tedious fast :(

> manifest/application/activity[android:name] always CordovaApp
> -
>
> Key: CB-7827
> URL: https://issues.apache.org/jira/browse/CB-7827
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 4.0.0
> Environment: Windows 8.1 x64, NodeJs 0.10.32
>Reporter: Sergey
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6756) Restore Platforms from config.xml

2014-11-06 Thread Mick Staugaard (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6756?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200453#comment-14200453
 ] 

Mick Staugaard commented on CB-6756:


Platform versions are lost. I don't see restore.js even reading the the 
platform version string.

> Restore Platforms from config.xml
> -
>
> Key: CB-6756
> URL: https://issues.apache.org/jira/browse/CB-6756
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: CLI
>Affects Versions: 3.4.0
>Reporter: Gorkem ERCAN
>Assignee: Gorkem ERCAN
>
> save platforms command should record the currently installed platforms on a 
> project to config.xml
> restore platforms should restore them.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7972) Add cordova-plugin-globalization support for Windows Phone 8.1

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7972:
---

 Summary: Add cordova-plugin-globalization support for Windows 
Phone 8.1
 Key: CB-7972
 URL: https://issues.apache.org/jira/browse/CB-7972
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin Globalization
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7971) Add cordova-plugin-battery-status support for Windows Phone 8.1

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7971:
---

 Summary: Add cordova-plugin-battery-status support for Windows 
Phone 8.1
 Key: CB-7971
 URL: https://issues.apache.org/jira/browse/CB-7971
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin Battery Status
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7970) Add cordova-plugin-vibration support for Windows Phone 8.1

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7970:
---

 Summary: Add cordova-plugin-vibration support for Windows Phone 8.1
 Key: CB-7970
 URL: https://issues.apache.org/jira/browse/CB-7970
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin Vibration
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7969) plugin add ... makes it installed for all platform when plugin.xml only supports 1 platform

2014-11-06 Thread Darryl L. Miles (JIRA)
Darryl L. Miles created CB-7969:
---

 Summary: plugin add ... makes it installed for all platform when 
plugin.xml only supports 1 platform
 Key: CB-7969
 URL: https://issues.apache.org/jira/browse/CB-7969
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 3.6.0
Reporter: Darryl L. Miles


plugin add ... makes it installed for all platform when plugin.xml only 
supports 1 platform


$ cordova platform add blackberry10
$ cordova platform add browser --usegit
$ cordova plugin add com.blackberry.notification
$ cordova build browser -d

See the output include the plugin when build 'browser'.

Now examine plugins\browser.json and the "installed_plugins" section, you will 
see it got added there.

Now examine plugins\com.blackberry.notification\plugin.xml and see that the 
element plugin.platform[name]="blackberry10" exists, but no other platform is 
supported and not default platform config is provided.

So why was it installed for the "browser" platform ?

I think it is expected it only gets installed into the "blackberry10" platform.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-5706) Make cordova-ios/bin/create work on Windows

2014-11-06 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5706?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200347#comment-14200347
 ] 

ASF GitHub Bot commented on CB-5706:


Github user eymorale commented on the pull request:

https://github.com/apache/cordova-ios/pull/118#issuecomment-61998319
  
Sure thing. Fixed


> Make cordova-ios/bin/create work on Windows
> ---
>
> Key: CB-5706
> URL: https://issues.apache.org/jira/browse/CB-5706
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: iOS
>Reporter: kpandian
>Priority: Minor
>
>  I try to create the ios app the following error generate. So pls the 
> solutions.
> C:\Documents and 
> Settings\Administrator\.cordova\lib\ios\cordova\3.3.0\bin\cre
> ate"' is not recognized as an internal or external command
> operable program or batch file.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7679) [InAppBrowser][iOS 8] Plugin closes itself before image picker shown

2014-11-06 Thread Roy Solberg (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7679?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200308#comment-14200308
 ] 

Roy Solberg commented on CB-7679:
-

I found a workaround that seems to fix the issue.

{code:title=CDVInAppBrowser.m|borderStyle=solid}
@implementation CDVInAppBrowserNavigationController : UINavigationController
[...]
- (void)dismissViewControllerAnimated:(BOOL)flag completion:(void 
(^)(void))completion
{
if ( self.presentedViewController)
{
[super dismissViewControllerAnimated:flag completion:completion];
}
}
[...]
@end
{code}

See http://stackoverflow.com/a/26782732/467650 and 
http://stackoverflow.com/a/26238123/467650 for more details about the issue and 
solution.


> [InAppBrowser][iOS 8] Plugin closes itself before image picker shown
> 
>
> Key: CB-7679
> URL: https://issues.apache.org/jira/browse/CB-7679
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Plugin InAppBrowser
>Affects Versions: 3.5.0
> Environment: IOS8,Cordova Plugin
>Reporter: Nattapol Taboonma
>Priority: Critical
>
> I use inappbrowser plugin from the following link : 
> https://github.com/apache/cordova-plugin-inappbrowser
> Firstly,I open the Disqus on the inapp browser and it perform perfectly fine. 
> Unfortunately, when I click the upload photo icon, then the 2 native buttons 
> will show up. The buttons are 'Take Photo' and 'Choose Existing'. No matter 
> buttons I tapped, the inappbrowser close immediately, and it lead to error 
> Warning: Attempt to present  on 
>  whose view is not in the 
> window hierarchy!
> After that, the inappbrowser seem to broke permanently. I have to close and 
> re-start my app to make it work again.
> For more info, I already try the tutorial from this: 
> http://www.codepool.biz/tech-frontier/html5/take-a-photo-and-upload-it-on-mobile-phones-with-html5.html
> with out the inappbrowser the image ui picker work perfectly fine, it surely 
> that the error not come from the image select code, but it from the 
> inappbrowser itself.
> I'm waiting for hearing from you.
> Best Regards.
> Nattapol Taboonma



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7939) Android CordovaChromeClient doesn't respect Wifi proxy bypass list

2014-11-06 Thread Andrew Grieve (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200214#comment-14200214
 ] 

Andrew Grieve commented on CB-7939:
---

That's super cool! You should put it together as a plugin and post it to 
http://plugins.cordova.io

> Android CordovaChromeClient doesn't respect Wifi proxy bypass list
> --
>
> Key: CB-7939
> URL: https://issues.apache.org/jira/browse/CB-7939
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.5.0
> Environment: Android 4.4.2
>Reporter: Jon Tancer
>Assignee: Andrew Grieve
>  Labels: android, proxy, webview
>
> When running a cordova app on an Android 4.4.2 device, the device does not 
> respect the "Bypass proxy for:" list in the device's WiFi settings.
> My ajax request ultimately fails, because authentication to the proxy fails.  
> The end points I am requesting are internal servers which are listed as 
> exclusions in the setting mentioned above, so they should never be going 
> through the proxy and ultimately failing.
> My listed exclusions are:
> company.com,subdomain.company.com
> Changing the Wifi exclusion setting to only include 
> hostname.subdomain.company.com fixes the issue, but this is not a feasible.
> This issue is not present in older versions of Android, holding all other 
> variables constant.  The issue is also not present when creating a 
> HttpURLConnection in native java code, it only happens with ajax requests 
> through javascript.  This leads me to believe it has something to do with the 
> Chrome WebView which was introduced in Android 4.4 KitKat.
> Any ideas?  Can the proxy exclusion be manually over ridden from the app?
> More details about the Chrome Web View here:
> https://developer.chrome.com/multidevice/webview/overview



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7939) Android CordovaChromeClient doesn't respect Wifi proxy bypass list

2014-11-06 Thread Jon Tancer (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14200209#comment-14200209
 ] 

Jon Tancer commented on CB-7939:


Thanks Andrew for confirming my suspicion.  Just incase anyone else runs into 
this issue, I posted a workaround for it up on stack overflow.  I was able to 
override the chrome webview's proxy settings at runtime using reflection.

http://stackoverflow.com/a/26781539/1015387

> Android CordovaChromeClient doesn't respect Wifi proxy bypass list
> --
>
> Key: CB-7939
> URL: https://issues.apache.org/jira/browse/CB-7939
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.5.0
> Environment: Android 4.4.2
>Reporter: Jon Tancer
>Assignee: Andrew Grieve
>  Labels: android, proxy, webview
>
> When running a cordova app on an Android 4.4.2 device, the device does not 
> respect the "Bypass proxy for:" list in the device's WiFi settings.
> My ajax request ultimately fails, because authentication to the proxy fails.  
> The end points I am requesting are internal servers which are listed as 
> exclusions in the setting mentioned above, so they should never be going 
> through the proxy and ultimately failing.
> My listed exclusions are:
> company.com,subdomain.company.com
> Changing the Wifi exclusion setting to only include 
> hostname.subdomain.company.com fixes the issue, but this is not a feasible.
> This issue is not present in older versions of Android, holding all other 
> variables constant.  The issue is also not present when creating a 
> HttpURLConnection in native java code, it only happens with ajax requests 
> through javascript.  This leads me to believe it has something to do with the 
> Chrome WebView which was introduced in Android 4.4 KitKat.
> Any ideas?  Can the proxy exclusion be manually over ridden from the app?
> More details about the Chrome Web View here:
> https://developer.chrome.com/multidevice/webview/overview



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7968) ConcurrentModificationException in postMessage

2014-11-06 Thread Clayton Grassick (JIRA)
Clayton Grassick created CB-7968:


 Summary: ConcurrentModificationException in postMessage
 Key: CB-7968
 URL: https://issues.apache.org/jira/browse/CB-7968
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Nexus 7 (2G) razorg
Reporter: Clayton Grassick


Crash observed in Cordova messaging code:

java.util.ConcurrentModificationException
 at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
 at java.util.HashMap$ValueIterator.next(HashMap.java:838)
 at org.apache.cordova.PluginManager.postMessage(PluginManager.java:271)
 at org.apache.cordova.CordovaWebView.postMessage(CordovaWebView.java:528)
 at org.apache.cordova.App$1.run(App.java:78)
 at android.os.Handler.handleCallback(Handler.java:733)
 at android.os.Handler.dispatchMessage(Handler.java:95)
 at android.os.Looper.loop(Looper.java:136)
 at android.app.ActivityThread.main(ActivityThread.java:5017)
 at java.lang.reflect.Method.invokeNative(Native Method)
 at java.lang.reflect.Method.invoke(Method.java:515)
 at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
 at dalvik.system.NativeStart.main(Native Method)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7967) [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input element

2014-11-06 Thread Maxim Balyaba (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7967?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Balyaba updated CB-7967:
--
Description: 
Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If open test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device

Maybe bug of CordovaWebView


  was:
Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If open test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device





> [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input 
> element
> ---
>
> Key: CB-7967
> URL: https://issues.apache.org/jira/browse/CB-7967
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: WP8
>Affects Versions: 3.5.0, 3.6.0
> Environment: Windows Phone 8.1 device
>Reporter: Maxim Balyaba
>Assignee: Jesse MacFadyen
>Priority: Minor
>
> Steps:
> 1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
> ( in config.xml can be used)
> 2. Tap and hold on input element
> Actual result: Nothing happens
> Expected result: alert message "tapHold" appears.
> Notice: In windows phone 8 emulator all works as expected. 
> If open test page from IE on device, it works too.
> Doesn't work only from cordova app installed on wp8 device
> Maybe bug of CordovaWebView



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7967) [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input element

2014-11-06 Thread Maxim Balyaba (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7967?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Balyaba updated CB-7967:
--
Description: 
Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If oped test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device




  was:
Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ CordovaWebView ( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If oped test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device





> [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input 
> element
> ---
>
> Key: CB-7967
> URL: https://issues.apache.org/jira/browse/CB-7967
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: WP8
>Affects Versions: 3.5.0, 3.6.0
> Environment: Windows Phone 8.1 device
>Reporter: Maxim Balyaba
>Assignee: Jesse MacFadyen
>Priority: Minor
>
> Steps:
> 1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
> ( in config.xml can be used)
> 2. Tap and hold on input element
> Actual result: Nothing happens
> Expected result: alert message "tapHold" appears.
> Notice: In windows phone 8 emulator all works as expected. 
> If oped test page from IE on device, it works too.
> Doesn't work only from cordova app installed on wp8 device



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7967) [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input element

2014-11-06 Thread Maxim Balyaba (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7967?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Balyaba updated CB-7967:
--
Description: 
Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If open test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device




  was:
Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If oped test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device





> [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input 
> element
> ---
>
> Key: CB-7967
> URL: https://issues.apache.org/jira/browse/CB-7967
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: WP8
>Affects Versions: 3.5.0, 3.6.0
> Environment: Windows Phone 8.1 device
>Reporter: Maxim Balyaba
>Assignee: Jesse MacFadyen
>Priority: Minor
>
> Steps:
> 1. Load test page to http://jsbin.com/lexufimozo/1/ into CordovaWebView 
> ( in config.xml can be used)
> 2. Tap and hold on input element
> Actual result: Nothing happens
> Expected result: alert message "tapHold" appears.
> Notice: In windows phone 8 emulator all works as expected. 
> If open test page from IE on device, it works too.
> Doesn't work only from cordova app installed on wp8 device



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7967) [Windows Phone 8.1] Events "taphold" and "swipe" doesn't works on input element

2014-11-06 Thread Maxim Balyaba (JIRA)
Maxim Balyaba created CB-7967:
-

 Summary: [Windows Phone 8.1] Events "taphold" and "swipe" doesn't 
works on input element
 Key: CB-7967
 URL: https://issues.apache.org/jira/browse/CB-7967
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 3.5.0, 3.6.0
 Environment: Windows Phone 8.1 device
Reporter: Maxim Balyaba
Assignee: Jesse MacFadyen
Priority: Minor


Steps:
1. Load test page to http://jsbin.com/lexufimozo/1/ CordovaWebView ( in config.xml can be used)
2. Tap and hold on input element
Actual result: Nothing happens
Expected result: alert message "tapHold" appears.

Notice: In windows phone 8 emulator all works as expected. 
If oped test page from IE on device, it works too.
Doesn't work only from cordova app installed on wp8 device






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7958) touchend event not firing when released outside webview

2014-11-06 Thread Knut Eirik Leira Hjelle (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Knut Eirik Leira Hjelle updated CB-7958:

Description: 
When starting a touch event inside of webview, it is possible to slowly slide 
the finger to (and off) the edge of the screen and never get the touchend 
event. Making the webview fullscreen seems to remove the issue.

The only information I have found about this issue is a stack overflow post 
(http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
 which is why I tried to replicate the problem with a fullscreen webview.

I have not been able to reproduce this problem on any devices except the 
iPhone6 on iOS 8.

Created a small cordova project which makes the bug reproducible.
https://github.com/hjellek/cordova-ios-touch-issue

  was:
When starting a touch event inside of webview, it is possible to slowly slide 
the finger to (and off) the edge of the screen and never get the touchend 
event. Making the webview fullscreen seems to remove the issue.

The only information I have found about this issue is a stack overflow post 
(http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
 which is why I tried to replicate the problem with a fullscreen webview.

I have not been able to reproduce this problem on any devices except the 
iPhone6 on iOS 8.

Created a small cordova project which makes the code reproducible.
https://github.com/hjellek/cordova-ios-touch-issue


> touchend event not firing when released outside webview
> ---
>
> Key: CB-7958
> URL: https://issues.apache.org/jira/browse/CB-7958
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 3.6.3
> Environment: iOS 8, iPhone 6
>Reporter: Knut Eirik Leira Hjelle
>
> When starting a touch event inside of webview, it is possible to slowly slide 
> the finger to (and off) the edge of the screen and never get the touchend 
> event. Making the webview fullscreen seems to remove the issue.
> The only information I have found about this issue is a stack overflow post 
> (http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
>  which is why I tried to replicate the problem with a fullscreen webview.
> I have not been able to reproduce this problem on any devices except the 
> iPhone6 on iOS 8.
> Created a small cordova project which makes the bug reproducible.
> https://github.com/hjellek/cordova-ios-touch-issue



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7958) touchend event not firing when released outside webview

2014-11-06 Thread Knut Eirik Leira Hjelle (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Knut Eirik Leira Hjelle updated CB-7958:

Description: 
When starting a touch event inside of webview, it is possible to slowly slide 
the finger to (and off) the edge of the screen and never get the touchend 
event. Making the webview fullscreen seems to remove the issue.

The only information I have found about this issue is a stack overflow post 
(http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
 which is why I tried to replicate the problem with a fullscreen webview.

I have not been able to reproduce this problem on any devices except the 
iPhone6 on iOS 8.

Created a small cordova project which makes the code reproducible.
https://github.com/hjellek/cordova-ios-touch-issue

  was:
When starting a touch event inside of webview, it is possible to slowly slide 
the finger to (and off) the edge of the screen and never get the touchend 
event. Making the webview fullscreen seems to remove the issue.

The only information I have found about this issue is a stack overflow post 
(http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
 which is why I tried to replicate the problem with a fullscreen webview.

I have not been able to reproduce this problem on any devices except the 
iPhone6 on iOS 8.


> touchend event not firing when released outside webview
> ---
>
> Key: CB-7958
> URL: https://issues.apache.org/jira/browse/CB-7958
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 3.6.3
> Environment: iOS 8, iPhone 6
>Reporter: Knut Eirik Leira Hjelle
>
> When starting a touch event inside of webview, it is possible to slowly slide 
> the finger to (and off) the edge of the screen and never get the touchend 
> event. Making the webview fullscreen seems to remove the issue.
> The only information I have found about this issue is a stack overflow post 
> (http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
>  which is why I tried to replicate the problem with a fullscreen webview.
> I have not been able to reproduce this problem on any devices except the 
> iPhone6 on iOS 8.
> Created a small cordova project which makes the code reproducible.
> https://github.com/hjellek/cordova-ios-touch-issue



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7966) Add cordova-plugin-vibration support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7966:
---

 Summary: Add cordova-plugin-vibration support for browser platform
 Key: CB-7966
 URL: https://issues.apache.org/jira/browse/CB-7966
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7964) Add cordova-plugin-splashscreen support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7964:
---

 Summary: Add cordova-plugin-splashscreen support for browser 
platform
 Key: CB-7964
 URL: https://issues.apache.org/jira/browse/CB-7964
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7965) Add cordova-plugin-statusbar support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7965:
---

 Summary: Add cordova-plugin-statusbar support for browser platform
 Key: CB-7965
 URL: https://issues.apache.org/jira/browse/CB-7965
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7963) Add cordova-plugin-media-capture support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7963:
---

 Summary: Add cordova-plugin-media-capture support for browser 
platform
 Key: CB-7963
 URL: https://issues.apache.org/jira/browse/CB-7963
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7962) Add cordova-plugin-media support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7962:
---

 Summary: Add cordova-plugin-media support for browser platform
 Key: CB-7962
 URL: https://issues.apache.org/jira/browse/CB-7962
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7961) Add cordova-plugin-inappbrowser support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7961:
---

 Summary: Add cordova-plugin-inappbrowser support for browser 
platform
 Key: CB-7961
 URL: https://issues.apache.org/jira/browse/CB-7961
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7960) Add cordova-plugin-globalization support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7960:
---

 Summary: Add cordova-plugin-globalization support for browser 
platform
 Key: CB-7960
 URL: https://issues.apache.org/jira/browse/CB-7960
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7959) Add cordova-plugin-geolocation support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7959:
---

 Summary: Add cordova-plugin-geolocation support for browser 
platform
 Key: CB-7959
 URL: https://issues.apache.org/jira/browse/CB-7959
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7958) touchend event not firing when released outside webview

2014-11-06 Thread Knut Eirik Leira Hjelle (JIRA)
Knut Eirik Leira Hjelle created CB-7958:
---

 Summary: touchend event not firing when released outside webview
 Key: CB-7958
 URL: https://issues.apache.org/jira/browse/CB-7958
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 3.6.3
 Environment: iOS 8, iPhone 6
Reporter: Knut Eirik Leira Hjelle


When starting a touch event inside of webview, it is possible to slowly slide 
the finger to (and off) the edge of the screen and never get the touchend 
event. Making the webview fullscreen seems to remove the issue.

The only information I have found about this issue is a stack overflow post 
(http://stackoverflow.com/questions/26721447/ios-no-touchend-event-for-not-fullscreen-webview),
 which is why I tried to replicate the problem with a fullscreen webview.

I have not been able to reproduce this problem on any devices except the 
iPhone6 on iOS 8.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7957) Add cordova-plugin-file-transfer support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7957:
---

 Summary:  Add cordova-plugin-file-transfer support for browser 
platform
 Key: CB-7957
 URL: https://issues.apache.org/jira/browse/CB-7957
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7956) Add cordova-plugin-file support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7956:
---

 Summary: Add cordova-plugin-file support for browser platform
 Key: CB-7956
 URL: https://issues.apache.org/jira/browse/CB-7956
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7955) Add cordova-plugin-dialogs support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7955:
---

 Summary: Add cordova-plugin-dialogs support for browser platform
 Key: CB-7955
 URL: https://issues.apache.org/jira/browse/CB-7955
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7954) Add cordova-plugin-contacts support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7954:
---

 Summary: Add cordova-plugin-contacts support for browser platform
 Key: CB-7954
 URL: https://issues.apache.org/jira/browse/CB-7954
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7953) Add cordova-plugin-battery-status support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7953:
---

 Summary: Add cordova-plugin-battery-status support for browser 
platform
 Key: CB-7953
 URL: https://issues.apache.org/jira/browse/CB-7953
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-7952) Add cordova-plugin-console support for browser platform

2014-11-06 Thread Sergey Shakhnazarov (JIRA)
Sergey Shakhnazarov created CB-7952:
---

 Summary: Add cordova-plugin-console support for browser platform
 Key: CB-7952
 URL: https://issues.apache.org/jira/browse/CB-7952
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Browser
Reporter: Sergey Shakhnazarov






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-5658) Move plugin docs to plugin repos

2014-11-06 Thread Andrey Kurdyumov (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-5658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrey Kurdyumov resolved CB-5658.
--
Resolution: Fixed

Already implemented long time ago.

> Move plugin docs to plugin repos
> 
>
> Key: CB-5658
> URL: https://issues.apache.org/jira/browse/CB-5658
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Docs, Plugin Battery Status, Plugin Camera, Plugin 
> Console, Plugin Contacts, Plugin Device, Plugin Device Motion, Plugin Device 
> Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, Plugin 
> Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, Plugin 
> Media Capture, Plugin Network Information, Plugin SplashScreen, Plugin 
> Vibration
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>
> This involves:
> 1. Delete the docs/ directory from all plugins
>- They contain stale copies of what's in cordova-docs
> 2. Move plugin information found in cordova-docs into a single doc/index.md 
> file within the respective plugin repos
>- Link to this file within each plugin's README.md file
> 3. Delete the "API Reference" section of cordova-docs
> 4. Add a guide called "Cordova Plugins", which contains:
>   - a link to plugins.cordova.io,
>   - a list of the org.apache.cordova plugins, which link to their index.md 
> files on github
> - e.g. 
> https://github.com/apache/cordova-plugin-media-capture/blob/master/README.md
> - These can be changed to point at their plugins.cordova.io page when 
> that shows READMEs.
>   - A link to the 3.3 docs, which still have plugin API reference
> - Mostly, this is for finding non-english versions.
> Motivation:
> - Plugins are on a separate release cycle from platforms & docs.
>- The documentation is often mismatched due to this
> - Pull requests for plugins don't update the plugin docs
>- But I think they would if the docs were in the same repo
> Caveats:
> - This will mess up our current translations story for plugins. 
>   - I think this can be fixed up though, by changing out http://crowdin.net 
> push / pull scripts
>   - E.g. have README.md translations go in: 
> cordova-plugin-foo/translations/fr/README.md



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-5086) device.cordova on BB10 3.1.x returns "dev"

2014-11-06 Thread Andrey Kurdyumov (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-5086?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrey Kurdyumov resolved CB-5086.
--
Resolution: Fixed

Already fixed long time ago

> device.cordova on BB10 3.1.x returns "dev"
> --
>
> Key: CB-5086
> URL: https://issues.apache.org/jira/browse/CB-5086
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device
>Reporter: Marcel Kinard
>Assignee: Jeffrey Heifetz
>Priority: Minor
>
> The "dev" value is hardcoded in src/blackberry10/index.js



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org