[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-10-26 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-ui-toolkit -
1.3.1688+15.10.20151018.1-0ubuntu1

---
ubuntu-ui-toolkit (1.3.1688+15.10.20151018.1-0ubuntu1) wily; urgency=medium

  [ Tim Peeters ]
  * Add delegate property to ActionBar.
  * Introduce PageHeader component.
  * Add header property to Page.
Fixes LP: #1248898, LP: #1350893, LP: #1445016, LP: #1492328
  * Use the correct navigation overflow icon in PageHeader.

  [ Loïc Molinari ]
  * Fixed OpenGL ES 2 mipmap fallback. OpenGL ES 2 doesn't support
GL_TEXTURE_MAX_LEVEL by default, it is only available via an extension. It
was working on the devices where this extension is available but not on
the emulator. Fixes LP: #1505221.

  [ Christian Dywan ]
  * Handle incubateObject returning null in PageWrapperUtils.
Fixes LP: #1505197
  * Add module header to PageWrapperUtils.

  [ Zoltan Balogh ]
  * Improve test plan
- Ad -q parameter to provision the device for normal use with a PPA
- Fix up the camera and clock app on the device to acces services
- Replace phablet tools with manual enabling writable image
- Fix PPA pin up for staging and other regular PPAs.

  [ Zsombor Egri ]
  * Emit Dropped event for live ListItem drag'n'drop. Fixes LP: #1500118.

  [ Timo Jyrinki ]
  * Build dep on libinput-dev and libxkbcommon-dev (LP: #1437192).

  [ Benjamon Zeller ]
  * Remove unused variables.

  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh   Sun, 18 Oct 2015
03:47:27 +

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Released

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: "rename"
  text: i18n.tr("Rename")
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-09-09 Thread PS Jenkins bot
Fix committed into lp:ubuntu-ui-toolkit/staging at revision None,
scheduled for release in ubuntu-ui-toolkit, milestone Unknown

** Changed in: ubuntu-ui-toolkit
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: "rename"
  text: i18n.tr("Rename")
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-08-17 Thread Tim Peeters
I think action.objectName + _item will work. But the correct way to
make it accessible to the app developers would be to create an
ActionSelectionPopover autopilot CPO that has a trigger_action()
function (so it will be more work than just updating the
ActionSelectionPopover delegate).

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: rename
  text: i18n.tr(Rename)
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-08-17 Thread Tim Peeters
^it turns out we don't need to create an ActionSelectionPopover CPO.
There is already one in _custom_proxy_objects/popups.py that we can
extend.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: rename
  text: i18n.tr(Rename)
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-08-17 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-sdk-team/ubuntu-ui-
toolkit/actionSelectionPopoverItem

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: rename
  text: i18n.tr(Rename)
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-08-17 Thread Christian Dywan
** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) = Christian Dywan (kalikiana)

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Confirmed = In Progress

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Importance: Undecided = High

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: rename
  text: i18n.tr(Rename)
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2015-01-26 Thread Christian Dywan
I thought about this a bit more as there just was a question on how to
handle this. And it also applies to TextInputPopover, albeit internal it
currently relies on labels which mismatch as soon as localization isn't
English.

I think _item makes sense - at first it seemed to me as tho it might be
insufficient because actions can be re-used, but the same container
surely won't have more than one ActionItem.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: rename
  text: i18n.tr(Rename)
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1205144] Re: We can't set the objectName to a ActionSelectionPopover Action

2014-11-24 Thread Zoltan Balogh
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1205144

Title:
  We can't set the objectName to a ActionSelectionPopover Action

Status in Ubuntu UI Toolkit:
  Confirmed
Status in “ubuntu-ui-toolkit” package in Ubuntu:
  Confirmed

Bug description:
  I'm writing tests to the ubuntu-filemanager-app. It has an
  ActionSelectionPopover with the actions you can do execute on a file,
  like rename, delete, etc.

  I'd like autopilot to click the rename button, but currently I can
  only do it selecting the object by its text. This is bad as the text
  can change and it will fail on a machine with a different language. It
  would be better to select it by objectName.

  But, if I do something like this:

  Action {
  objectName: rename
  text: i18n.tr(Rename)
  }

  The objectName I assigned is not present on the element.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1205144/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp