[Mahara-contributors] [Bug 1660237] [NEW] Remove "Mobile access token" from account settings

2017-01-29 Thread Kristina Hoeppner
Public bug reported:

With Mahara 16.10 we introduced Mahara Mobile, the new mobile app for
Mahara and with it the "App" settings that are managed on
/module/mobileapi/apps.php

We still show the "Mobile access tokens" on /account/index.php though
and on /admin/site/options.php when a site has been upgraded to 16.10.
These settings should be removed as they are confusing. Both MaharaDroid
and Portfolio Up are not in active development and do not necessarily
work with modern devices. Mahara Mobile allows any user to connect, not
just with internal accounts.

** Affects: mahara
 Importance: Medium
 Status: Triaged

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660237

Title:
  Remove "Mobile access token" from account settings

Status in Mahara:
  Triaged

Bug description:
  With Mahara 16.10 we introduced Mahara Mobile, the new mobile app for
  Mahara and with it the "App" settings that are managed on
  /module/mobileapi/apps.php

  We still show the "Mobile access tokens" on /account/index.php though
  and on /admin/site/options.php when a site has been upgraded to 16.10.
  These settings should be removed as they are confusing. Both
  MaharaDroid and Portfolio Up are not in active development and do not
  necessarily work with modern devices. Mahara Mobile allows any user to
  connect, not just with internal accounts.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660237/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1660234] Re: Image block image needs an alt tag value containing file name

2017-01-29 Thread Robert Lyon
** Changed in: mahara
   Status: New => In Progress

** Changed in: mahara
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660234

Title:
  Image block image needs an alt tag value containing file name

Status in Mahara:
  In Progress

Bug description:
  So that we can find it with behat and so that it's more accessible

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660234/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1660234] A patch has been submitted for review

2017-01-29 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/7429

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660234

Title:
  Image block image needs an alt tag value containing file name

Status in Mahara:
  In Progress

Bug description:
  So that we can find it with behat and so that it's more accessible

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660234/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1660234] [NEW] Image block image needs an alt tag value containing file name

2017-01-29 Thread Robert Lyon
Public bug reported:

So that we can find it with behat and so that it's more accessible

** Affects: mahara
 Importance: Low
 Status: In Progress

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660234

Title:
  Image block image needs an alt tag value containing file name

Status in Mahara:
  In Progress

Bug description:
  So that we can find it with behat and so that it's more accessible

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660234/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1655456] A patch has been submitted for review

2017-01-29 Thread Mahara Bot
Patch for "16.10_STABLE" branch: https://reviews.mahara.org/7428

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1655456

Title:
  Sharing collection with a group not showing on group homepage list

Status in Mahara:
  In Progress
Status in Mahara 15.10 series:
  New
Status in Mahara 16.04 series:
  New
Status in Mahara 16.10 series:
  New

Bug description:
  Sometimes when a user shares a collection with a group they belong to
  that collection doesn't show in the list for 'Collections shared with
  this group' in the Group pages block.

  The reason for this is because the sql for the list only fetches the
  collection_view page with displayorder = 0

  This is so it fetches the first page so can get the url for collection
  and also limit the results to once per collection.

  The problem occurs when one deletes the first page from a collection
  via the edit collections views page.

  It doesn't reset the collection views display order and so there is no
  displayorder = 0

  A workaround for this could be to change the line in lib/view.php for
  get_sharedcollections_data()

  from
  AND (cv.displayorder = 0 OR cv.displayorder IS NULL)
  to
  AND (cv.displayorder = (SELECT MIN(displayorder) FROM 
collection_view WHERE collection = c.id) OR cv.displayorder IS NULL)

  where it fetches the minimum display order value

  Or fix up the deletion of views from collection so that the
  displayorder is reset correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1655456/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1655456] A patch has been submitted for review

2017-01-29 Thread Mahara Bot
Patch for "16.04_STABLE" branch: https://reviews.mahara.org/7427

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1655456

Title:
  Sharing collection with a group not showing on group homepage list

Status in Mahara:
  In Progress
Status in Mahara 15.10 series:
  New
Status in Mahara 16.04 series:
  New
Status in Mahara 16.10 series:
  New

Bug description:
  Sometimes when a user shares a collection with a group they belong to
  that collection doesn't show in the list for 'Collections shared with
  this group' in the Group pages block.

  The reason for this is because the sql for the list only fetches the
  collection_view page with displayorder = 0

  This is so it fetches the first page so can get the url for collection
  and also limit the results to once per collection.

  The problem occurs when one deletes the first page from a collection
  via the edit collections views page.

  It doesn't reset the collection views display order and so there is no
  displayorder = 0

  A workaround for this could be to change the line in lib/view.php for
  get_sharedcollections_data()

  from
  AND (cv.displayorder = 0 OR cv.displayorder IS NULL)
  to
  AND (cv.displayorder = (SELECT MIN(displayorder) FROM 
collection_view WHERE collection = c.id) OR cv.displayorder IS NULL)

  where it fetches the minimum display order value

  Or fix up the deletion of views from collection so that the
  displayorder is reset correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1655456/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1655456] A patch has been submitted for review

2017-01-29 Thread Mahara Bot
Patch for "15.10_STABLE" branch: https://reviews.mahara.org/7426

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1655456

Title:
  Sharing collection with a group not showing on group homepage list

Status in Mahara:
  In Progress
Status in Mahara 15.10 series:
  New
Status in Mahara 16.04 series:
  New
Status in Mahara 16.10 series:
  New

Bug description:
  Sometimes when a user shares a collection with a group they belong to
  that collection doesn't show in the list for 'Collections shared with
  this group' in the Group pages block.

  The reason for this is because the sql for the list only fetches the
  collection_view page with displayorder = 0

  This is so it fetches the first page so can get the url for collection
  and also limit the results to once per collection.

  The problem occurs when one deletes the first page from a collection
  via the edit collections views page.

  It doesn't reset the collection views display order and so there is no
  displayorder = 0

  A workaround for this could be to change the line in lib/view.php for
  get_sharedcollections_data()

  from
  AND (cv.displayorder = 0 OR cv.displayorder IS NULL)
  to
  AND (cv.displayorder = (SELECT MIN(displayorder) FROM 
collection_view WHERE collection = c.id) OR cv.displayorder IS NULL)

  where it fetches the minimum display order value

  Or fix up the deletion of views from collection so that the
  displayorder is reset correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1655456/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1655456] Re: Sharing collection with a group not showing on group homepage list

2017-01-29 Thread Cecilia Vela Gurovic
** Also affects: mahara/15.10
   Importance: Undecided
   Status: New

** Also affects: mahara/16.04
   Importance: Undecided
   Status: New

** Also affects: mahara/16.10
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1655456

Title:
  Sharing collection with a group not showing on group homepage list

Status in Mahara:
  In Progress
Status in Mahara 15.10 series:
  New
Status in Mahara 16.04 series:
  New
Status in Mahara 16.10 series:
  New

Bug description:
  Sometimes when a user shares a collection with a group they belong to
  that collection doesn't show in the list for 'Collections shared with
  this group' in the Group pages block.

  The reason for this is because the sql for the list only fetches the
  collection_view page with displayorder = 0

  This is so it fetches the first page so can get the url for collection
  and also limit the results to once per collection.

  The problem occurs when one deletes the first page from a collection
  via the edit collections views page.

  It doesn't reset the collection views display order and so there is no
  displayorder = 0

  A workaround for this could be to change the line in lib/view.php for
  get_sharedcollections_data()

  from
  AND (cv.displayorder = 0 OR cv.displayorder IS NULL)
  to
  AND (cv.displayorder = (SELECT MIN(displayorder) FROM 
collection_view WHERE collection = c.id) OR cv.displayorder IS NULL)

  where it fetches the minimum display order value

  Or fix up the deletion of views from collection so that the
  displayorder is reset correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1655456/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1660101] Re: Search box in configurable theme needs better outline

2017-01-29 Thread Liam
I opted to add both a border to the left side of the button and around
the input block as I thought this looked the best from the available
options.

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660101

Title:
  Search box in configurable theme needs better outline

Status in Mahara:
  In Progress

Bug description:
  When using the configurable theme, the search box looks a bit odd when
  the search buttons have an outline as the outline is only for 3 sides
  but not all 4 (see screenshot).

  I can see two options:

  1. Extend the button outline to the search box itself.
  2. Ensure that the 4th side of the button has the outline.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660101/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1660103] Re: Configurable theme: "Done" button on collection manage screen w/ wrong text color

2017-01-29 Thread Liam
** Changed in: mahara
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660103

Title:
  Configurable theme: "Done" button on collection manage screen w/ wrong
  text color

Status in Mahara:
  In Progress

Bug description:
  The "Done" button on the screen for managing collection pages has the
  wrong text color. Check the collection edit screen for the correct
  color value / code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660103/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1660103] A patch has been submitted for review

2017-01-29 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/7424

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1660103

Title:
  Configurable theme: "Done" button on collection manage screen w/ wrong
  text color

Status in Mahara:
  In Progress

Bug description:
  The "Done" button on the screen for managing collection pages has the
  wrong text color. Check the collection edit screen for the correct
  color value / code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1660103/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1606735] A change has been merged

2017-01-29 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/7307
Committed: 
https://git.mahara.org/mahara/mahara/commit/60c7eca54b1b00f720d53bd4cf23cd2544fc8056
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit 60c7eca54b1b00f720d53bd4cf23cd2544fc8056
Author: Pat Kira 
Date:   Fri Dec 9 15:01:43 2016 +1300

Bug 1606735 - Changed heading markup where possible for accessibility

This patch excludes:
- Admin section
- H4 in the pieform since it was added to improve accessibility
- User generated page/content

Note: There are still number of pages with heading being skipped heading
especially H2. Most of the pages have H1 and H3, H1 for page heading and
h3 for sidebar panel heading. We can look into marking up sideber panels
as sections with header etc.

behatnotneeded: markup and styles changes only

Change-Id: Ic592f5be63aa2e7fbd7e31928db7c230e425f104

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1606735

Title:
  Accessibility - Inconsistent heading levels

Status in Mahara:
  Fix Committed

Bug description:
  Mahara: master

  Headings jump levels - i.e. h1 -> h3 skipping h2.

  Heading levels should be used in sequence to assist users in
  understanding the structure of the page. And, prevent screen readers
  from skipping sections.

  For additional information, please refer to:
  http://webaim.org/techniques/semanticstructure/#contentstructure

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1606735/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp