[jira] [Created] (CB-5208) Adding WP7 platform: when project path contains spaces, .csproj and .sln files have incorrect generic names

2013-10-28 Thread Natalia Bartol (JIRA)
Natalia Bartol created CB-5208:
--

 Summary: Adding WP7 platform: when project path contains spaces, 
.csproj and .sln files have incorrect generic names
 Key: CB-5208
 URL: https://issues.apache.org/jira/browse/CB-5208
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 3.1.0
 Environment: Windows 7 64 bit
Reporter: Natalia Bartol


Create your project in a location that contains space, i.e.
'C:\Users\natalia.b\my test workspace'

Try to add wp7 platform. All seems to be fine, you'll see the log:

Running bin/create for platform wp7 with command: 
C:\Users\natalia.b\.cordova\lib\wp\cordova\3.1.0\wp7\bin\create  
C:\Users\natalia.b\my test workspace\mymobile\platforms\wp7 org.codova 
mymobile (output to follow)
platformRoot = C:\Users\natalia.b\.cordova\lib\wp\cordova\3.1.0\wp7
repoRoot = C:\Users\natalia.b\.cordova\lib\wp\cordova\3.1.0
Creating Cordova-WP7 Project:
App Name : mymobile
Namespace : org.codova
Path : C:\Users\natalia.b\my test workspace\mymobile\platforms\wp7
CREATE SUCCESS :C:\Users\natalia.b\my test workspace\mymobile\platforms\wp7

But if you take a look at generated files you'll get:
CordovaWP7AppProj.csproj
CordovaWP7Solution.sln

instead of
mymobile.csproj
mymobile.sln

It won't be possible to launch WP7 emulator, as you'll get the error:

error MSB3202: The project file C:\Users\natalia.b\my test 
workspace\mymobile\platforms\wp7\m.csproj was not found. 
[C:\Users\natalia.b\my test 
workspace\mymobile\platforms\wp7\CordovaWP7Solution.sln]



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Comment Edited] (CB-5102) Memory leaks when resizing the photo on WP8

2013-10-28 Thread Jonathan Naguin (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13805347#comment-13805347
 ] 

Jonathan Naguin edited comment on CB-5102 at 10/28/13 11:21 AM:


It seems that saving to disk has memory leaks too, so I have rewritten the code 
of SaveImageToLocalStorage as well. Notice that now it accepts a Stream. Also 
I removed the code related with the rotation...

{code}
/// summary
/// Saves captured image in isolated storage
/// /summary
/// param name=imageFileNameimage file name/param
/// returnsImage path/returns
private string SaveImageToLocalStorage(Stream stream, string 
imageFileName)
{

if (stream == null)
{
throw new ArgumentNullException(imageBytes);
}
try
{
var isoFile = IsolatedStorageFile.GetUserStoreForApplication();

if (!isoFile.DirectoryExists(isoFolder))
{
isoFile.CreateDirectory(isoFolder);
}

string filePath = System.IO.Path.Combine(/// + isoFolder + 
/, imageFileName);

using (IsolatedStorageFileStream outputStream = 
isoFile.CreateFile(filePath))
{

//use photo's actual width  height if user doesn't provide 
width  height
if (cameraOptions.TargetWidth  0  
cameraOptions.TargetHeight  0)
{
BitmapImage objBitmap = new BitmapImage();
objBitmap.SetSource(stream);
objBitmap.CreateOptions = BitmapCreateOptions.None;

WriteableBitmap objWB = new WriteableBitmap(objBitmap);
objBitmap.UriSource = null;

   try
{
objWB.SaveJpeg(outputStream, objWB.PixelWidth, 
objWB.PixelHeight, 0, cameraOptions.Quality);
}
finally
{
//Dispose bitmaps immediately, they are memory 
expensive
DisposeImage(objBitmap);
DisposeImage(objWB);
GC.Collect();
}
}
else
{
//Resize
BitmapImage objBitmap = new BitmapImage();
objBitmap.SetSource(stream);
objBitmap.CreateOptions = BitmapCreateOptions.None;

WriteableBitmap objWB = new WriteableBitmap(objBitmap);
objBitmap.UriSource = null;

//Keep proportionally
double ratio = 
Math.Min((double)cameraOptions.TargetWidth / objWB.PixelWidth, 
(double)cameraOptions.TargetHeight / objWB.PixelHeight);
int width = Convert.ToInt32(ratio * objWB.PixelWidth);
int height = Convert.ToInt32(ratio * objWB.PixelHeight);

try
{
// resize the photo with user defined TargetWidth  
TargetHeight
objWB.SaveJpeg(outputStream, width, height, 0, 
cameraOptions.Quality);
}
finally
{
//Dispose bitmaps immediately, they are memory 
expensive
DisposeImage(objBitmap);
DisposeImage(objWB);
GC.Collect();
}
}
}

return new Uri(filePath, UriKind.Relative).ToString();
}
catch (Exception)
{
//TODO: log or do something else
throw;
}
finally
{
stream.Dispose();
}
}
{code}


was (Author: jonathannaguin):
It seems that saving to disk has memory leaks too, so I have rewritten the code 
of SaveImageToLocalStorage as well. Notice that now it accepts a Stream. Also 
I removed the code related with the rotation...

{code}
/// summary
/// Saves captured image in isolated storage
/// /summary
/// param name=imageFileNameimage file name/param
/// returnsImage path/returns
private string SaveImageToLocalStorage(Stream stream, string 
imageFileName)
{

if (stream == null)
{
throw new ArgumentNullException(imageBytes);
}
try
{
var isoFile = IsolatedStorageFile.GetUserStoreForApplication();

if 

[jira] [Commented] (CB-4768) [BlackBerry10] Remove access_shared from default config.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806829#comment-13806829
 ] 

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

Commit e00a0c7b78b1518efedd287687e4caa0583d46f6 in branch refs/heads/master 
from [~bhigg...@blackberry.com]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;h=e00a0c7 ]

CB-4768 Remove access_shared from default config.xml


 [BlackBerry10] Remove access_shared from default config.xml
 ---

 Key: CB-4768
 URL: https://issues.apache.org/jira/browse/CB-4768
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 This should only be enabled for apps which actually require access to the 
 shared directories.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (CB-4768) [BlackBerry10] Remove access_shared from default config.xml

2013-10-28 Thread Bryan Higgins (JIRA)

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

Bryan Higgins resolved CB-4768.
---

Resolution: Fixed

 [BlackBerry10] Remove access_shared from default config.xml
 ---

 Key: CB-4768
 URL: https://issues.apache.org/jira/browse/CB-4768
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 This should only be enabled for apps which actually require access to the 
 shared directories.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (CB-4351) [BlackBerry10] Add project settings section to docs

2013-10-28 Thread Bryan Higgins (JIRA)

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

Bryan Higgins resolved CB-4351.
---

Resolution: Fixed

 [BlackBerry10] Add project settings section to docs
 ---

 Key: CB-4351
 URL: https://issues.apache.org/jira/browse/CB-4351
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 Now that we're moving widget level preferences out of the blackberry.app 
 namespace, these should be documented.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4767) [BlackBerry10] Removing license from platform config.xml, copy from www

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4767?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806852#comment-13806852
 ] 

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

Commit 6eaf03323564c1d731c88a822da39e4ac6c8dc6f in branch refs/heads/master 
from [~bhigg...@blackberry.com]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;h=6eaf033 ]

CB-4767 Remove license from platform config.xml


 [BlackBerry10] Removing license from platform config.xml, copy from www
 ---

 Key: CB-4767
 URL: https://issues.apache.org/jira/browse/CB-4767
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 A license should not be imposed on a new project



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4969) mobile-spec failure in Media core plugin

2013-10-28 Thread David Kemp (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4969?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806854#comment-13806854
 ] 

David Kemp commented on CB-4969:


back-patching this to 3.1 to remove the flakey test there.

 mobile-spec failure in Media core plugin
 

 Key: CB-4969
 URL: https://issues.apache.org/jira/browse/CB-4969
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Media
Affects Versions: 3.1.0
Reporter: Shazron Abdullah
 Fix For: 3.2.0


 Tested with mobile-spec 3.1.0
 One failure in Media plugin (set position) for both iOS 6 and 7.
 iOS 6
 one failure - Media media.spec.12 position should be set properly
 Expected 0 to be greater than 0
 iOS 7
 one failure - Media media.spec.12 position should be set properly
 Expected -0.023 to be greater than 0



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (CB-4340) [BlackBerry10] Auto-detect device PIN

2013-10-28 Thread Bryan Higgins (JIRA)

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

Bryan Higgins resolved CB-4340.
---

Resolution: Fixed

 [BlackBerry10] Auto-detect device PIN
 -

 Key: CB-4340
 URL: https://issues.apache.org/jira/browse/CB-4340
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 There is a native SDK tool which can be used to query the connected device to 
 get it's PIN. By using this, we can remove the dependency on that PIN being 
 specified within blackberry10.json.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4340) [BlackBerry10] Auto-detect device PIN

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806834#comment-13806834
 ] 

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

Commit 9708560fc183b83a85f1eddef425488bed4e4a24 in branch refs/heads/master 
from [~jeffheifetz]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;h=9708560 ]

CB-4340 Auto-detect target pin when its not there

Reviewed by Bryan Higgins bhigg...@blackberry.com


 [BlackBerry10] Auto-detect device PIN
 -

 Key: CB-4340
 URL: https://issues.apache.org/jira/browse/CB-4340
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 There is a native SDK tool which can be used to query the connected device to 
 get it's PIN. By using this, we can remove the dependency on that PIN being 
 specified within blackberry10.json.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4969) mobile-spec failure in Media core plugin

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4969?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806859#comment-13806859
 ] 

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

Commit bd1e7701c20e02a61966329482108814effb8165 in branch refs/heads/3.1.x from 
[~drkemp]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-mobile-spec.git;h=bd1e770 ]

CB-4969 : media.spec.12 fails with 0 position

(cherry picked from commit 9fbd54d9dc4afb99a7dc802cfaf6e91fc0f40c42)


 mobile-spec failure in Media core plugin
 

 Key: CB-4969
 URL: https://issues.apache.org/jira/browse/CB-4969
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Media
Affects Versions: 3.1.0
Reporter: Shazron Abdullah
 Fix For: 3.2.0


 Tested with mobile-spec 3.1.0
 One failure in Media plugin (set position) for both iOS 6 and 7.
 iOS 6
 one failure - Media media.spec.12 position should be set properly
 Expected 0 to be greater than 0
 iOS 7
 one failure - Media media.spec.12 position should be set properly
 Expected -0.023 to be greater than 0



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (CB-5148) [BlackBerry10] Auto-detect started simulator

2013-10-28 Thread Bryan Higgins (JIRA)

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

Bryan Higgins resolved CB-5148.
---

Resolution: Fixed

https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;a=commit;h=c6de78e2f6663cd3dc7e31c50d551a546c0a9faf

 [BlackBerry10] Auto-detect started simulator 
 -

 Key: CB-5148
 URL: https://issues.apache.org/jira/browse/CB-5148
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.1.0
 Environment: Linux
Reporter: Josh Soref

 Check the dhcp.leases file for VMWare
 2.1 On Linux, (I haven't verified it), it's dhcpd-vmnet8.leases (under the 
 folder /var/db/vmware).
 2.3 Grab the IP value for each line that likes lease 192.168.214.138.
 2.4 Test each of these IPs using blackberry-deploy -test
 See: https://groups.google.com/forum/#!topic/vagrant-up/V4KiPwHXj7w for 
 evidence that it's /var on Linux



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5182) cordova/run sometimes fails to report error when DebugToken creation fails

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5182?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806861#comment-13806861
 ] 

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

Commit 7ec40a878f2f72c4c4de10158912c480143dba97 in branch refs/heads/master 
from [~jeffheifetz]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;h=7ec40a8 ]

CB-5182 Adding generic error case to run script

Reviewed by Bryan Higgins bhigg...@blackberry.com


 cordova/run sometimes fails to report error when DebugToken creation fails
 --

 Key: CB-5182
 URL: https://issues.apache.org/jira/browse/CB-5182
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.1.0
Reporter: Jeffrey Heifetz
Assignee: Jeffrey Heifetz
 Fix For: 3.2.0


 Steps to reproduce: 
 This occurred to me on Windows when i hadn't yet established my session with 
 the RIM Proxy [via opening a browser window]. The debugtokenrequest 
 executable was failing due to this. When i ran the run script it did not 
 inform me of any error; Instead it exited abruptly. 
 I assume this also occurs on Mac. 
 Actual result: 
 C:\Program Files\BlackBerry\BB10 WebWorks SDK 2.0.0.36\app.\cordova\run -k 
 password 
 [INFO] Target default selected 
 [INFO] Generating debug token 
 Expected result: 
 Execution to continue or at least show a proper error. 
 After some digging, it looks like the issue occurs from lib/run. The callback 
 for the waterfall that handles the debugToken creation/install 
 [getValidatedTarget] does not handle errors of type object. It only handles 
 strings and numbers.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4862) ios 7 keyboard resizes the page even with KeyboardShrinksView set to false

2013-10-28 Thread Rafael Schettino (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4862?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806896#comment-13806896
 ] 

Rafael Schettino commented on CB-4862:
--

I've same problem using Cordova 3.1. I setted my KeyBoardShrinksView=false and 
changed my viewport metatag, but the problem continues.
My toolbox is on the bottom (position:absolute, bottom:0px). When the 
softKeyboard gets up, my toolbox gets up together.
Cordova throws any event when the keyboard is opened and closed?

 ios 7 keyboard resizes the page even with KeyboardShrinksView set to false
 --

 Key: CB-4862
 URL: https://issues.apache.org/jira/browse/CB-4862
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 2.8.0
 Environment: ipod 5th gen ios 7 and simulator for ios 7
Reporter: Jake Williams
Assignee: Shazron Abdullah
  Labels: ios7

 We have a page with a fixed footer and some inputs.  In previous ios versions 
 the page would be pushed up when an input was focused and the keyboard came 
 up.  In ios 7, the page height is reduced to the available space after the 
 keyboard appears and the footer covers the input (depends on the position of 
 the footer, but it does happen sometimes).  There is also a problem where the 
 input could be beneath the keyboard if you have multiple inputs and you use 
 next/previous to move between them.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4940) iOS7 Keyboard Appearance Resizes View Frame

2013-10-28 Thread Rafael Schettino (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806905#comment-13806905
 ] 

Rafael Schettino commented on CB-4940:
--

I've same problem using Cordova 3.1. I setted my KeyBoardShrinksView=false and 
changed my viewport metatag, but the problem continues.
My toolbox is on the bottom (position:absolute, bottom:0px). When the 
softKeyboard gets up, my toolbox gets up together.
Cordova throws any event when the keyboard is opened and closed?

 iOS7 Keyboard Appearance Resizes View Frame
 ---

 Key: CB-4940
 URL: https://issues.apache.org/jira/browse/CB-4940
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.0.0
 Environment: XCode 5, iOS 7, Phonegap 3, Sencha Touch 2.1
Reporter: Brad Pritchard
 Attachments: iOS Simulator Screen shot Sep 27, 2013 2.47.47 PM.png


 This is a similar issue to CB-3020, albeit slightly different.
 Our situation is this: we have a PhoneGap 3.0 project, using Sencha Touch as 
 the view framework. Our views are housed within a Sencha Touch TabPanel, 
 which shows tabs docked at the bottom of the viewport.
 Since we do not want the screen to shrink, we are setting KeyboardShrinksView 
 to false in our config.xml.
 When an input receives focus, we are seeing that iOS 7 resizes the viewport 
 to be the size of the screen minus the height of the keyboard. Since the 
 TabPanel is absolutely positioned with a bottom of 0, the tabs are fixed 
 right above the keyboard.
 We would like the webView to remain the same size, and the focused input to 
 scroll into view when clicked. The assumption here would be that either:
 # The viewport needs to be re-expanded after the keyboard shows to get it 
 back to the height of the screen (and thus pushing the tabs below the 
 keyboard), or
 # The webView and/or scrollView need to be manipulated after the keyboard 
 shows, so that the content of the app (namely the TabPanel) scrolls off the 
 bottom of the shrinked viewport, and thus out of the way.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Reopened] (CB-4940) iOS7 Keyboard Appearance Resizes View Frame

2013-10-28 Thread Andrew Grieve (JIRA)

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

Andrew Grieve reopened CB-4940:
---

  Assignee: Andrew Grieve

 iOS7 Keyboard Appearance Resizes View Frame
 ---

 Key: CB-4940
 URL: https://issues.apache.org/jira/browse/CB-4940
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.0.0
 Environment: XCode 5, iOS 7, Phonegap 3, Sencha Touch 2.1
Reporter: Brad Pritchard
Assignee: Andrew Grieve
 Attachments: iOS Simulator Screen shot Sep 27, 2013 2.47.47 PM.png


 This is a similar issue to CB-3020, albeit slightly different.
 Our situation is this: we have a PhoneGap 3.0 project, using Sencha Touch as 
 the view framework. Our views are housed within a Sencha Touch TabPanel, 
 which shows tabs docked at the bottom of the viewport.
 Since we do not want the screen to shrink, we are setting KeyboardShrinksView 
 to false in our config.xml.
 When an input receives focus, we are seeing that iOS 7 resizes the viewport 
 to be the size of the screen minus the height of the keyboard. Since the 
 TabPanel is absolutely positioned with a bottom of 0, the tabs are fixed 
 right above the keyboard.
 We would like the webView to remain the same size, and the focused input to 
 scroll into view when clicked. The assumption here would be that either:
 # The viewport needs to be re-expanded after the keyboard shows to get it 
 back to the height of the screen (and thus pushing the tabs below the 
 keyboard), or
 # The webView and/or scrollView need to be manipulated after the keyboard 
 shows, so that the content of the app (namely the TabPanel) scrolls off the 
 bottom of the shrinked viewport, and thus out of the way.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (CB-4940) iOS7 Keyboard Appearance Resizes View Frame

2013-10-28 Thread Andrew Grieve (JIRA)

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

Andrew Grieve resolved CB-4940.
---

Resolution: Duplicate

 iOS7 Keyboard Appearance Resizes View Frame
 ---

 Key: CB-4940
 URL: https://issues.apache.org/jira/browse/CB-4940
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.0.0
 Environment: XCode 5, iOS 7, Phonegap 3, Sencha Touch 2.1
Reporter: Brad Pritchard
Assignee: Andrew Grieve
 Attachments: iOS Simulator Screen shot Sep 27, 2013 2.47.47 PM.png


 This is a similar issue to CB-3020, albeit slightly different.
 Our situation is this: we have a PhoneGap 3.0 project, using Sencha Touch as 
 the view framework. Our views are housed within a Sencha Touch TabPanel, 
 which shows tabs docked at the bottom of the viewport.
 Since we do not want the screen to shrink, we are setting KeyboardShrinksView 
 to false in our config.xml.
 When an input receives focus, we are seeing that iOS 7 resizes the viewport 
 to be the size of the screen minus the height of the keyboard. Since the 
 TabPanel is absolutely positioned with a bottom of 0, the tabs are fixed 
 right above the keyboard.
 We would like the webView to remain the same size, and the focused input to 
 scroll into view when clicked. The assumption here would be that either:
 # The viewport needs to be re-expanded after the keyboard shows to get it 
 back to the height of the screen (and thus pushing the tabs below the 
 keyboard), or
 # The webView and/or scrollView need to be manipulated after the keyboard 
 shows, so that the content of the app (namely the TabPanel) scrolls off the 
 bottom of the shrinked viewport, and thus out of the way.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Assigned] (CB-3413) Inconsistency in GetFileEntry - uri's vs paths

2013-10-28 Thread Ian Clelland (JIRA)

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

Ian Clelland reassigned CB-3413:


Assignee: Ian Clelland  (was: Andrew Grieve)

 Inconsistency in GetFileEntry - uri's vs paths
 --

 Key: CB-3413
 URL: https://issues.apache.org/jira/browse/CB-3413
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, iOS
Affects Versions: 2.7.0
Reporter: Shravan Narayan
Assignee: Ian Clelland
 Fix For: 3.2.0


 The getFileEntry in android returs a file: uri file:///storage/something 
 while the getFileEntry on ios returns a file path /var/something...
 It is unclear whether we need to return a file: uri here or a path, but at 
 the very least it should be consistent. 
 Other platforms will have to be tested to ensure they are consistent with the 
 chosen solution as well.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-5209) Win: Cannot build Android app if project path contains spaces

2013-10-28 Thread Natalia Bartol (JIRA)
Natalia Bartol created CB-5209:
--

 Summary: Win: Cannot build Android app if project path contains 
spaces
 Key: CB-5209
 URL: https://issues.apache.org/jira/browse/CB-5209
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.1.0
 Environment: Windows 7 64 bit
Reporter: Natalia Bartol


Create your project in a location that contains space, i.e.
'C:\Users\natalia.b\my test workspace'

Try to build Android app.
You'll get an error:

...
Compiling platform android with command :\Users\natalia.b\my test 
workspace\m\platforms\android\cordova\build (output to follow)...

module.js:340
throw err;
  ^
Error: Cannot find module ':\Users\natalia.b\my'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:901:3

Error: An error occurred while building the android project.
module.js:340
throw err;
  ^
Error: Cannot find module 'C:\Users\natalia.b\my'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:901:3

at 
C:\Users\natalia.b\.zend\cordova\nodejs\node_modules\cordova\src\compile.js:34:23
at 
C:\Users\natalia.b\.zend\cordova\nodejs\node_modules\cordova\node_modules\shelljs\shell.js:1707:7
at ChildProcess.exithandler (child_process.js:641:7)
at ChildProcess.EventEmitter.emit (events.js:98:17)
at maybeClose (child_process.js:735:16)
at Socket.anonymous (child_process.js:948:11)
at Socket.EventEmitter.emit (events.js:95:17)
at Pipe.close (net.js:466:12)



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (CB-5209) Win: Cannot build Android app if project path contains spaces

2013-10-28 Thread Natalia Bartol (JIRA)

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

Natalia Bartol updated CB-5209:
---

Priority: Critical  (was: Major)

 Win: Cannot build Android app if project path contains spaces
 -

 Key: CB-5209
 URL: https://issues.apache.org/jira/browse/CB-5209
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.1.0
 Environment: Windows 7 64 bit
Reporter: Natalia Bartol
Priority: Critical

 Create your project in a location that contains space, i.e.
 'C:\Users\natalia.b\my test workspace'
 Try to build Android app.
 You'll get an error:
 ...
 Compiling platform android with command :\Users\natalia.b\my test 
 workspace\m\platforms\android\cordova\build (output to follow)...
 module.js:340
 throw err;
   ^
 Error: Cannot find module ':\Users\natalia.b\my'
 at Function.Module._resolveFilename (module.js:338:15)
 at Function.Module._load (module.js:280:25)
 at Function.Module.runMain (module.js:497:10)
 at startup (node.js:119:16)
 at node.js:901:3
 Error: An error occurred while building the android project.
 module.js:340
 throw err;
   ^
 Error: Cannot find module 'C:\Users\natalia.b\my'
 at Function.Module._resolveFilename (module.js:338:15)
 at Function.Module._load (module.js:280:25)
 at Function.Module.runMain (module.js:497:10)
 at startup (node.js:119:16)
 at node.js:901:3
 at 
 C:\Users\natalia.b\.zend\cordova\nodejs\node_modules\cordova\src\compile.js:34:23
 at 
 C:\Users\natalia.b\.zend\cordova\nodejs\node_modules\cordova\node_modules\shelljs\shell.js:1707:7
 at ChildProcess.exithandler (child_process.js:641:7)
 at ChildProcess.EventEmitter.emit (events.js:98:17)
 at maybeClose (child_process.js:735:16)
 at Socket.anonymous (child_process.js:948:11)
 at Socket.EventEmitter.emit (events.js:95:17)
 at Pipe.close (net.js:466:12)



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4862) ios 7 keyboard resizes the page even with KeyboardShrinksView set to false

2013-10-28 Thread Rafael Schettino (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4862?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806978#comment-13806978
 ] 

Rafael Schettino commented on CB-4862:
--

I fixed this issue on my project by javascript.
On index.html, I added onResize function on the body tag:
{code:xml}
body onResize=onResize();
{code}
On my global script file, I added this code:
{code:title=Bar.javaScript}
function onResize(){
var ios7 = (device.platform == 'iOS'  parseInt(device.version) = 7);
if (ios7){
var height = $('body').height();
if (height  350){ // adjust this height value conforms to your 
layout
$('.myBottomMenu').hide();
}
else {
$('.myBottomMenu').show();
}
}
}
{code}

 ios 7 keyboard resizes the page even with KeyboardShrinksView set to false
 --

 Key: CB-4862
 URL: https://issues.apache.org/jira/browse/CB-4862
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 2.8.0
 Environment: ipod 5th gen ios 7 and simulator for ios 7
Reporter: Jake Williams
Assignee: Shazron Abdullah
  Labels: ios7

 We have a page with a fixed footer and some inputs.  In previous ios versions 
 the page would be pushed up when an input was focused and the keyboard came 
 up.  In ios 7, the page height is reduced to the available space after the 
 keyboard appears and the footer covers the input (depends on the position of 
 the footer, but it does happen sometimes).  There is also a problem where the 
 input could be beneath the keyboard if you have multiple inputs and you use 
 next/previous to move between them.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4940) iOS7 Keyboard Appearance Resizes View Frame

2013-10-28 Thread Rafael Schettino (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13806981#comment-13806981
 ] 

Rafael Schettino commented on CB-4940:
--

I fixed this issue on my project by javascript.
On index.html, I added onResize function on the body tag:
{code:xml}
body onResize=onResize();
{code}
On my global script file, I added this code:
{code:title=Bar.javaScript}
function onResize(){
var ios7 = (device.platform == 'iOS'  parseInt(device.version) = 7);
if (ios7){
var height = $('body').height();
if (height  350){ // adjust this height value conforms to your 
layout
$('.myBottomMenu').hide();
}
else {
$('.myBottomMenu').show();
}
}
}
{code}

 iOS7 Keyboard Appearance Resizes View Frame
 ---

 Key: CB-4940
 URL: https://issues.apache.org/jira/browse/CB-4940
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.0.0
 Environment: XCode 5, iOS 7, Phonegap 3, Sencha Touch 2.1
Reporter: Brad Pritchard
Assignee: Andrew Grieve
 Attachments: iOS Simulator Screen shot Sep 27, 2013 2.47.47 PM.png


 This is a similar issue to CB-3020, albeit slightly different.
 Our situation is this: we have a PhoneGap 3.0 project, using Sencha Touch as 
 the view framework. Our views are housed within a Sencha Touch TabPanel, 
 which shows tabs docked at the bottom of the viewport.
 Since we do not want the screen to shrink, we are setting KeyboardShrinksView 
 to false in our config.xml.
 When an input receives focus, we are seeing that iOS 7 resizes the viewport 
 to be the size of the screen minus the height of the keyboard. Since the 
 TabPanel is absolutely positioned with a bottom of 0, the tabs are fixed 
 right above the keyboard.
 We would like the webView to remain the same size, and the focused input to 
 scroll into view when clicked. The assumption here would be that either:
 # The viewport needs to be re-expanded after the keyboard shows to get it 
 back to the height of the screen (and thus pushing the tabs below the 
 keyboard), or
 # The webView and/or scrollView need to be manipulated after the keyboard 
 shows, so that the content of the app (namely the TabPanel) scrolls off the 
 bottom of the shrinked viewport, and thus out of the way.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-5210) utc_offset is different for Android and iOS in the same timezone

2013-10-28 Thread Ewan Summers (JIRA)
Ewan Summers created CB-5210:


 Summary: utc_offset is different for Android and iOS in the same 
timezone
 Key: CB-5210
 URL: https://issues.apache.org/jira/browse/CB-5210
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, iOS
Affects Versions: 3.0.0
 Environment: iOS 6.0.1, Android 4.2.2
Reporter: Ewan Summers


If you set both phones to the EST timezone (or any negative timezone) you'll 
notice that the values for utc_offset in a call to 
navigator.globalization.getDatePattern don't match for iOS and Android. 

However I briefly tested with positive offsets and they appeared to be the same 
for both devices.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807056#comment-13807056
 ] 

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

Commit c11acd2eaebeaa1901a2a5d687c2933453730aa2 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=c11acd2 
]

CB-5128: added repo + issue tags for contacts


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-5211) Windows Phone 8 crashes if ajax-request with basic authentication is send with wrong credentials

2013-10-28 Thread JIRA
Kaj-Sören Mossdorf created CB-5211:
--

 Summary: Windows Phone 8 crashes if ajax-request with basic 
authentication is send with wrong credentials
 Key: CB-5211
 URL: https://issues.apache.org/jira/browse/CB-5211
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 3.1.0
 Environment: Cordova 3.1
Microsoft Visual Studio 2012 Express
Created on Windows 8.1
Tested on Samsung Ativ S
VLC 2.1 HTTP-Interface with basic authentication
Reporter: Kaj-Sören Mossdorf
Assignee: Jesse MacFadyen


Hey,
I am currently writing an app for the VLC-Mediaplayer. Since version 2.1 they 
request a password to be set to access their webinterface. I am connecting to 
and controlling the webinterface via ajax-calls. To connect to the server I 
need to send a authorization-header with the credentials. As long as the 
credentials are correct, even if the username-part is empty, the app works like 
charm.
As soon as the request is send with the wrong credentials the app is crashing 
on Windows Phone 8 (Samsung Ativ S). It won't reopen until it is manually 
killed from VS.
First I thought, ok, that might be a jquery-problem. Today I tried the same 
thing with a standard javascript-xmlHttpRequest. The same problem occurs.
On Android and in Chrome (using ripple), the timeout is correctly called, e.g. 
handled.

You'll find my ajax-calls here: http://pastebin.com/9kDansAC. Let me now if you 
need any further informations.

Cheers,
stiller-leser

P.S. Labels newbie and noob - Seriously?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-5212) [BlackBerry10] Add ability to enable web view caching

2013-10-28 Thread Bryan Higgins (JIRA)
Bryan Higgins created CB-5212:
-

 Summary: [BlackBerry10] Add ability to enable web view caching
 Key: CB-5212
 URL: https://issues.apache.org/jira/browse/CB-5212
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.1.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins


By default BB10 apps have caching disabled in the web view. It is possible to 
enable this via web platform call on the controller:

qnx.callExtensionMethod(webview.setEnableDiskCache, 0, true); 

Proposal is to have this as WebViewCaching preference (enable or disable)



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (CB-5211) Windows Phone 8 crashes if ajax-request with basic authentication is send with wrong credentials

2013-10-28 Thread JIRA

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

Kaj-Sören Mossdorf updated CB-5211:
---

Description: 
Hey,
I am currently writing an app for the VLC-Mediaplayer. Since version 2.1 they 
request a password to be set to access their webinterface. I am connecting to 
and controlling the webinterface via ajax-calls. To connect to the server I 
need to send a authorization-header with the credentials. As long as the 
credentials are correct, even if the username-part is empty, the app works like 
charm.
As soon as the request is send with the wrong credentials the app is crashing 
on Windows Phone 8 (Samsung Ativ S). It won't reopen until it is manually 
killed from VS.
First I thought, ok, that might be a jquery-problem. Today I tried the same 
thing with a standard javascript-xmlHttpRequest. The same problem occurs.
On Android and in Chrome (using ripple), the timeout is correctly called, e.g. 
handled.

You'll find my ajax-calls here: http://pastebin.com/9kDansAC. Let me now if you 
need any further informations.

Cheers,
stiller-leser

P.S. Labels newbie and noob - Seriously? :)

  was:
Hey,
I am currently writing an app for the VLC-Mediaplayer. Since version 2.1 they 
request a password to be set to access their webinterface. I am connecting to 
and controlling the webinterface via ajax-calls. To connect to the server I 
need to send a authorization-header with the credentials. As long as the 
credentials are correct, even if the username-part is empty, the app works like 
charm.
As soon as the request is send with the wrong credentials the app is crashing 
on Windows Phone 8 (Samsung Ativ S). It won't reopen until it is manually 
killed from VS.
First I thought, ok, that might be a jquery-problem. Today I tried the same 
thing with a standard javascript-xmlHttpRequest. The same problem occurs.
On Android and in Chrome (using ripple), the timeout is correctly called, e.g. 
handled.

You'll find my ajax-calls here: http://pastebin.com/9kDansAC. Let me now if you 
need any further informations.

Cheers,
stiller-leser

P.S. Labels newbie and noob - Seriously?


 Windows Phone 8 crashes if ajax-request with basic authentication is send 
 with wrong credentials
 

 Key: CB-5211
 URL: https://issues.apache.org/jira/browse/CB-5211
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 3.1.0
 Environment: Cordova 3.1
 Microsoft Visual Studio 2012 Express
 Created on Windows 8.1
 Tested on Samsung Ativ S
 VLC 2.1 HTTP-Interface with basic authentication
Reporter: Kaj-Sören Mossdorf
Assignee: Jesse MacFadyen
  Labels: bug, javascript, newbie

 Hey,
 I am currently writing an app for the VLC-Mediaplayer. Since version 2.1 they 
 request a password to be set to access their webinterface. I am connecting to 
 and controlling the webinterface via ajax-calls. To connect to the server I 
 need to send a authorization-header with the credentials. As long as the 
 credentials are correct, even if the username-part is empty, the app works 
 like charm.
 As soon as the request is send with the wrong credentials the app is crashing 
 on Windows Phone 8 (Samsung Ativ S). It won't reopen until it is manually 
 killed from VS.
 First I thought, ok, that might be a jquery-problem. Today I tried the same 
 thing with a standard javascript-xmlHttpRequest. The same problem occurs.
 On Android and in Chrome (using ripple), the timeout is correctly called, 
 e.g. handled.
 You'll find my ajax-calls here: http://pastebin.com/9kDansAC. Let me now if 
 you need any further informations.
 Cheers,
 stiller-leser
 P.S. Labels newbie and noob - Seriously? :)



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807336#comment-13807336
 ] 

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

Commit 3c47ff482cfe842e961ed20ffb9a5722267a8767 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=3c47ff4 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807343#comment-13807343
 ] 

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

Commit 2e5e6eafafbeb66bc67912e9d53a42a8bea788da in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=2e5e6ea
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807301#comment-13807301
 ] 

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

Commit 6a184e97dc70c7f1bcd3891632aae74abee8f1e1 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=6a184e9
 ]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807331#comment-13807331
 ] 

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

Commit c68d756143e2039d11f6a427cb168f93f2d3acdd in branch refs/heads/dev from 
[~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=c68d756 
]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807356#comment-13807356
 ] 

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

Commit 2e823f9004e84309c09bb26e6162647ec779dbec in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=2e823f9
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807338#comment-13807338
 ] 

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

Commit 3c47ff482cfe842e961ed20ffb9a5722267a8767 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=3c47ff4 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807317#comment-13807317
 ] 

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

Commit eeb36003dc7346405873168b4fb4463dfadd6036 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=eeb3600 
]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.5


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5010) CLONE - Plugins Release - Oct 9 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807341#comment-13807341
 ] 

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

Commit 9a10ff4548e8955caafbd8146165bf4773191128 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=9a10ff4
 ]

[CB-5010] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Oct 9 2013
 

 Key: CB-5010
 URL: https://issues.apache.org/jira/browse/CB-5010
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807313#comment-13807313
 ] 

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

Commit aa9ff9cbc512eff2e77c410fd336f28f796e9c0d in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=aa9ff9c ]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5010) CLONE - Plugins Release - Oct 9 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807346#comment-13807346
 ] 

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

Commit a1a2cc786ec1bc1a6d50a6fd2375b630dd66a409 in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=a1a2cc7 ]

[CB-5010] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Oct 9 2013
 

 Key: CB-5010
 URL: https://issues.apache.org/jira/browse/CB-5010
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807323#comment-13807323
 ] 

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

Commit e94c414e0e1e7ddb4fd601a26a2124b7605aeaff in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=e94c414
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4919) camera

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4919?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807307#comment-13807307
 ] 

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

Commit eab4822ae984e2f7b22fc81c8649e6075d8e6718 in branch refs/heads/master 
from [~hermwong]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=eab4822 
]

[CB-4919] updated plugin.xml for FxOS


 camera
 --

 Key: CB-4919
 URL: https://issues.apache.org/jira/browse/CB-4919
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: FirefoxOS
Affects Versions: 3.0.0
Reporter: Herm Wong
Assignee: Herm Wong
 Fix For: 3.2.0






--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807335#comment-13807335
 ] 

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

Commit 223d456b654888ea1f00e31224464eb9a4717120 in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=223d456 
]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807299#comment-13807299
 ] 

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

Commit d01cff72c3778086d132a726766621dc6cf9686f in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=d01cff7
 ]

CB-5188:Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807352#comment-13807352
 ] 

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

Commit a2f73efc50cea8c671d148890abf9d315b1cd526 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=a2f73ef
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807328#comment-13807328
 ] 

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

Commit adac3919823479dc0c1d2810771a23e6f2b9cfb7 in branch refs/heads/master 
from [~hermwong]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=adac391
 ]

CB-5128: added repo + issue tag to plugin.xml for device orientation plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807304#comment-13807304
 ] 

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

Commit e0176cc61e008d56e649c15e8f13da19347e069d in branch refs/heads/dev from 
[~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=e0176cc 
]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807332#comment-13807332
 ] 

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

Commit 5af976d4b28660bb7ad753ecaee5abd609970d20 in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=5af976d 
]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807324#comment-13807324
 ] 

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

Commit f5388985664569a0d6ba696fdca4ddcaad25bd3d in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=f538898
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807303#comment-13807303
 ] 

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

Commit d01cff72c3778086d132a726766621dc6cf9686f in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=d01cff7
 ]

CB-5188:Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807309#comment-13807309
 ] 

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

Commit 703f6c68d830d41f9de56c4da57dfbc9aef03556 in branch refs/heads/master 
from [~hermwong]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=703f6c6 
]

CB-5128: added repo + issue tag to plugin.xml for camera plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807351#comment-13807351
 ] 

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

Commit 2e823f9004e84309c09bb26e6162647ec779dbec in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=2e823f9
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807344#comment-13807344
 ] 

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

Commit cfdb4ed4ed8dfadfdb82c9a720cbdd048428a6f5 in branch refs/heads/dev from 
[~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=cfdb4ed ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.5


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5154) log formatting incorrectly to native

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807315#comment-13807315
 ] 

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

Commit aef8d8fff6b7181091c63dd4fa2bf4a636efb0a3 in branch refs/heads/master 
from [~wjamesjong]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=aef8d8f ]

CB-5154 log formatting incorrectly to native

-only add format string if non-empty


 log formatting incorrectly to native
 

 Key: CB-5154
 URL: https://issues.apache.org/jira/browse/CB-5154
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Console
Affects Versions: 3.1.0
Reporter: James Jong
Assignee: James Jong

 Plugin console logs using formatting string is incorrectly formatted when 
 sent to native.  This is on iOS but it would likely apply to any native 
 environment.
 Sample:
 console.warn('the %s jumped over the %s','cow','moon');
 console ouput:
 the cow jumped over the moon
 xcode output:
 2013-10-22 12:09:31.920 console[15289:c07] WARN:  the %s jumped over the %s 
 cow moon



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807320#comment-13807320
 ] 

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

Commit c11acd2eaebeaa1901a2a5d687c2933453730aa2 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=c11acd2 
]

CB-5128: added repo + issue tags for contacts


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807312#comment-13807312
 ] 

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

Commit 14e160c6b4598be840773143c11275001d990d35 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=14e160c ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807321#comment-13807321
 ] 

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

Commit eeb36003dc7346405873168b4fb4463dfadd6036 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=eeb3600 
]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.5


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807316#comment-13807316
 ] 

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

Commit eae4edbcbda2a7d95f8f017cc95b6fcf9fa0fd04 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=eae4edb ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5085) device.cordova on Android 3.1.x returns dev

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5085?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807333#comment-13807333
 ] 

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

Commit 633c4478dea8c9777b392ca78acfc467681f923c in branch refs/heads/master 
from [~csantana]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=633c447 
]

CB-5085 device.cordova returning wrong value


 device.cordova on Android 3.1.x returns dev
 -

 Key: CB-5085
 URL: https://issues.apache.org/jira/browse/CB-5085
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Device
Reporter: Marcel Kinard
Assignee: Carlos Santana
Priority: Minor
 Fix For: 3.2.0


 The dev value is hardcoded in the plugin's native code.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807340#comment-13807340
 ] 

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

Commit 60f96e078b5d2cd8cf1c22556fb76d62f473fbca in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=60f96e0
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807353#comment-13807353
 ] 

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

Commit 2af051af0f5eb69ecd364e0e0048a138bff4963c in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=2af051a
 ]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807334#comment-13807334
 ] 

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

Commit 23c58714d2dcddac6f83c7bdd13cd23d2e057dd5 in branch refs/heads/master 
from [~hermwong]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=23c5871 
]

CB-5128: added repo + issue tag in plugin.xml for device plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5015) fileUtils is not defined error in BB10 file plugin

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807347#comment-13807347
 ] 

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

Commit ada89a6753c738e91424f111fa78a7775ce8c35f in branch refs/heads/master 
from [~bhigg...@blackberry.com]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=ada89a6 ]

CB-5015 [BlackBerry10] Add missing dependency for File.slice


 fileUtils is not defined error in BB10 file plugin
 --

 Key: CB-5015
 URL: https://issues.apache.org/jira/browse/CB-5015
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 3.0.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 3.2.0


 This was reported on the BB forums:
 Hello,
  
 I'm trying to use the org.apache.cordova.file plugin however there seems to 
 be a problem with the includes. If you look in for example:
  
 C:\myproject\platforms\blackberry10\www\plugins\org.apache.cordova.file\www\blackberry10\File.js
  
 for this code block:
  
 /**
  * Returns a slice of the file.
  * Slices of slices are supported.
  * start {Number} The index at which to start the slice (inclusive).
  * end {Number} The index at which to end the slice (exclusive).
  */
 File.prototype.slice = function(start, end) {
 return fileUtils.createFile(this.nativeFile.slice(start, end));
 };
  
 fileUtils is not defined. Adding the below line like in FileWriter.js didn't 
 work either:
  
 EDIT: actually the below line does work when you use a semi-colon instead of 
 comma! But should still be fixed in the official release too.
  
 var fileUtils = require('./BB10Utils');
 Link to thread:
 http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/Phonegap-3-0-File-plugin-fileUtils-not-defined/m-p/2618103#M40965



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807337#comment-13807337
 ] 

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

Commit 20a7dc5567727d45a24ade3d7a73384a25409454 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=20a7dc5 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807327#comment-13807327
 ] 

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

Commit 804e2477dd95d020aacac13784206f776c72b287 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=804e247
 ]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807306#comment-13807306
 ] 

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

Commit a600de41ebca66e018455655a58b8e7de0f4b212 in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=a600de4 
]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807310#comment-13807310
 ] 

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

Commit e0176cc61e008d56e649c15e8f13da19347e069d in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=e0176cc 
]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807314#comment-13807314
 ] 

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

Commit 8892514f0886144e46d45ee1577b8a4c96d55144 in branch refs/heads/master 
from [~hermwong]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=8892514 ]

CB-5128: added repo + issue tag to plugin.xml for console plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5010) CLONE - Plugins Release - Oct 9 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807319#comment-13807319
 ] 

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

Commit 0ab0d6a70539e02f2fb88c4eba52036dceb9ad4b in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=0ab0d6a 
]

[CB-5010] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Oct 9 2013
 

 Key: CB-5010
 URL: https://issues.apache.org/jira/browse/CB-5010
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807329#comment-13807329
 ] 

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

Commit 5a6fd27c28b86b66f1433231f2b9d20b02797c99 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=5a6fd27
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.2


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807355#comment-13807355
 ] 

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

Commit 98b7283f4c30a071c6570889cf2be8de26156b8c in branch refs/heads/master 
from [~hermwong]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=98b7283
 ]

CB-5128: add repo + issue tag to plugin.xml for geolocation plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807318#comment-13807318
 ] 

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

Commit 653f959943d461719546ffcaed797156749750d2 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=653f959 
]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807302#comment-13807302
 ] 

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

Commit f9fbc36e2f146365d2450fd777ead07f2bf4304a in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=f9fbc36
 ]

CB-5128: added repo + issue tag to plugin.xml for battery status plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807339#comment-13807339
 ] 

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

Commit 2e5e6eafafbeb66bc67912e9d53a42a8bea788da in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=2e5e6ea
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807325#comment-13807325
 ] 

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

Commit 5a6fd27c28b86b66f1433231f2b9d20b02797c99 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=5a6fd27
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.2


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807326#comment-13807326
 ] 

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

Commit 10f5438343446ef294a601638510c6f0a6bd7d8e in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=10f5438
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5129) Cordova File Entry objects (FileEntry, DirectoryEntry) should have a filesystem attribute

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807349#comment-13807349
 ] 

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

Commit 1c022459c6ac71a8b5bfb479b063278292a78e04 in branch refs/heads/master 
from [~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=1c02245 ]

CB-5129: Add a consistent filesystem attribute to FileEntry and DirectoryEntry 
objects


 Cordova File Entry objects (FileEntry, DirectoryEntry) should have a 
 filesystem attribute
 -

 Key: CB-5129
 URL: https://issues.apache.org/jira/browse/CB-5129
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.1.0
Reporter: Ian Clelland
Assignee: Ian Clelland
 Fix For: 3.2.0


 According to the [spec|http://www.w3.org/TR/file-system-api/#idl-def-Entry], 
 objects derived from Entry should have a {{filesystem}} attribute, which 
 points to the FileSystem object from whence they came.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4958) Camera plugin should not show the status bar

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807308#comment-13807308
 ] 

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

Commit 4e6cf5cc2e4739fac53111cee62f0217491b1539 in branch refs/heads/master 
from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=4e6cf5c 
]

CB-4958 - iOS - Camera plugin should not show the status bar


 Camera plugin should not show the status bar
 

 Key: CB-4958
 URL: https://issues.apache.org/jira/browse/CB-4958
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Camera
Affects Versions: 3.0.0
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
  Labels: ios7
 Fix For: 3.2.0


 Right now, the status bar overlaps the Camera at the top.
 Hide the status bar when on iOS 7, unhide (if it was not hidden by the user 
 in the first place for the app only) when it is closed.
 Hiding/unhiding the status bar is preferable to moving the view down to be 
 consistent with the UIWebView taking up the whole window.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807322#comment-13807322
 ] 

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

Commit f5388985664569a0d6ba696fdca4ddcaad25bd3d in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=f538898
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807350#comment-13807350
 ] 

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

Commit cfdb4ed4ed8dfadfdb82c9a720cbdd048428a6f5 in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=cfdb4ed ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.5


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807348#comment-13807348
 ] 

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

Commit 5ff5b80384924441c58789d8108b47875f9cece6 in branch refs/heads/master 
from [~hermwong]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=5ff5b80 ]

CB-5128: added repo + issue tag to plugin.xml for file plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807345#comment-13807345
 ] 

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

Commit ca2c4e231fdf25126d8265cdfda55b27ed1c6977 in branch refs/heads/dev from 
[~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=ca2c4e2 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807330#comment-13807330
 ] 

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

Commit 223d456b654888ea1f00e31224464eb9a4717120 in branch refs/heads/dev from 
[~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=223d456 
]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807367#comment-13807367
 ] 

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

Commit b3348cff6c3f0e66a2bad573dbc1a47c986ada37 in branch refs/heads/master 
from [~hermwong]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;h=b3348cf
 ]

CB-5128: added repo + issue tag to plugin.xml for inappbrowser plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807385#comment-13807385
 ] 

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

Commit 71ea946746cc52d5a5bfaa6cb39f69722e7090a2 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-splashscreen.git;h=71ea946
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807373#comment-13807373
 ] 

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

Commit 7c9653431f92e5a90a676ea9e1bdd06e2790350a in branch refs/heads/master 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media.git;h=7c96534 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.5


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5010) CLONE - Plugins Release - Oct 9 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807387#comment-13807387
 ] 

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

Commit 8326da4ee2f1197f0aa8bba278bcf6762eecb292 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-splashscreen.git;h=8326da4
 ]

[CB-5010] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Oct 9 2013
 

 Key: CB-5010
 URL: https://issues.apache.org/jira/browse/CB-5010
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807379#comment-13807379
 ] 

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

Commit 09db3605b0e97b25a2ba885bf3bf8d5db8b53b5b in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;h=09db360
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807372#comment-13807372
 ] 

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

Commit d592158d8f4c8234a96ef64974b7de1d0ef892ac in branch refs/heads/master 
from [~hermwong]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media.git;h=d592158 ]

CB-5128: add repo + issue tag to plugin.xml for media plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4930) InAppBrowser should take into account the status bar

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807365#comment-13807365
 ] 

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

Commit c7972b6cffcedae7a9bbbeb66875a5d2fb37ce29 in branch refs/heads/master 
from [~shazron]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;h=c7972b6
 ]

CB-4930 - iOS - InAppBrowser should take into account the status bar


 InAppBrowser should take into account the status bar
 

 Key: CB-4930
 URL: https://issues.apache.org/jira/browse/CB-4930
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin InAppBrowser
Affects Versions: 3.0.0
Reporter: Shazron Abdullah
  Labels: ios7
 Fix For: 3.2.0


 Right now, the status bar overlaps the IAB at the top.
 Hide the status bar when on iOS 7, unhide (if it was hidden by the user in 
 the first place for the app only) when it is closed.
 Workaround for now - I suppose you could inject some css to have a body 
 margin-top of 20px (or a different value if it is landscape - yeah it could 
 get messy)
 Hiding/unhiding the status bar is preferable to moving the view down to be 
 consistent with the UIWebView taking up the whole window.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807361#comment-13807361
 ] 

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

Commit 2d6b2a872916ccbdbfcdc4f2605584a4b0298c9b in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;h=2d6b2a8
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807358#comment-13807358
 ] 

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

Commit 273cba0908b0041f694ab979874fdc9a7022c47b in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;h=273cba0
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807357#comment-13807357
 ] 

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

Commit 2d6b2a872916ccbdbfcdc4f2605584a4b0298c9b in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;h=2d6b2a8
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.3


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807382#comment-13807382
 ] 

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

Commit 2078f57283b5f362547755f8299a7dd9a2a18cb7 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;h=2078f57
 ]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807386#comment-13807386
 ] 

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

Commit 02492654efc4dea9454ddbb8ca1635b1e2fe059a in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-splashscreen.git;h=0249265
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5128) Add new meta data to plugins.xml

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807377#comment-13807377
 ] 

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

Commit d7ab62ffc93a41c1efedcabef6caf3a8491d7757 in branch refs/heads/master 
from [~hermwong]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;h=d7ab62f
 ]

CB-5128: added repo + issue tag to plugin.xml for media capture plugin


 Add new meta data to plugins.xml
 

 Key: CB-5128
 URL: https://issues.apache.org/jira/browse/CB-5128
 Project: Apache Cordova
  Issue Type: Improvement
  Components: 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, Plugman
Reporter: Steve Gill
Assignee: Herm Wong
 Fix For: 3.2.0


 Rep tag - points to repo location
 Issues tag (maybe tracker tag) - points to issue tracker (for jira, link 
 should have component)
 Docs tag (if applicable) - points to docs location
 Description tag - short summary (might not be necessary if we decide to 
 output the readme on plugins.cordova.io for each plugin)
 Home Page Link (if applicable) - points to the plugin home page (not 
 applicable for cordova core plugins)
 Author tag - make it compatible with package.json author tag. Plugin.xml 
 gets converted to a package.json when you run the publish command.
 Keywords?



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807368#comment-13807368
 ] 

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

Commit e5868f8ecb0bd1f1a7a4fd868a437efab7dd020a in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;h=e5868f8
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5199) Media Capture - UI issues under iOS 7

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807378#comment-13807378
 ] 

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

Commit 2ebeb2bb503692a889d602dfe41e4ec4745a in branch refs/heads/master 
from [~shazron]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;h=2ebeb2b
 ]

CB-5199 - ios - Media Capture - UI issues under iOS 7


 Media Capture - UI issues under iOS 7
 -

 Key: CB-5199
 URL: https://issues.apache.org/jira/browse/CB-5199
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Media Capture
Affects Versions: Master
Reporter: Shazron Abdullah
  Labels: ios7
 Fix For: 3.2.0

 Attachments: CaptureAudio.PNG, CaptureImage.PNG, CaptureVideo.PNG


 See attached screenshots.
 1. Capture Audio - the microphone and record bar should stick to the bottom, 
 right now it is shifted to the middle
 2. Capture Video - the statusbar should be hidden (see Camera plugin, where 
 this is fixed)
 3. Capture Image - the statusbar should be hidden, you can see the battery 
 status (see Camera plugin, where this is fixed)



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807363#comment-13807363
 ] 

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

Commit e5868f8ecb0bd1f1a7a4fd868a437efab7dd020a in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;h=e5868f8
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.2.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807390#comment-13807390
 ] 

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

Commit 0be3b8956f174a8aaebf54b0dbc24c6260e2edf8 in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;h=0be3b89
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807391#comment-13807391
 ] 

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

Commit 683651adc2197c7e194a9601e876052b809cef1a in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;h=683651a
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807394#comment-13807394
 ] 

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

Commit 0be3b8956f174a8aaebf54b0dbc24c6260e2edf8 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;h=0be3b89
 ]

[CB-5188] Updated version and RELEASENOTES.md for release 0.3.4


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-5188) Plugins Release - Oct 24 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807381#comment-13807381
 ] 

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

Commit ac65585efc08d6da3aee001561d3bdfbcbd13f8b in branch refs/heads/dev from 
[~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;h=ac65585
 ]

CB-5188:


 Plugins Release - Oct 24 2013
 -

 Key: CB-5188
 URL: https://issues.apache.org/jira/browse/CB-5188
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4915) CLONE - Plugins Release - Sept 26 2013

2013-10-28 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-4915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13807359#comment-13807359
 ] 

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

Commit 403ed6d213b1322d7b12b7eb52701fd4966a9118 in branch refs/heads/master 
from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;h=403ed6d
 ]

[CB-4915] Incremented plugin version on dev branch.


 CLONE - Plugins Release - Sept 26 2013
 --

 Key: CB-4915
 URL: https://issues.apache.org/jira/browse/CB-4915
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1#6144)


  1   2   >