[Mahara-contributors] [Bug 1833348] [NEW] Heading on tags page cant be selected

2019-06-18 Thread Liam
Public bug reported:

It appears like the heading of the panel on menu > create > tags has an
invisible object over it as the link cant be clicked and the text cant
be selected.

expected result: link is clickable
actual result: link cant be clicked

** Affects: mahara
 Importance: Undecided
 Status: Confirmed


** Tags: front-end

-- 
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/1833348

Title:
  Heading on tags page cant be selected

Status in Mahara:
  Confirmed

Bug description:
  It appears like the heading of the panel on menu > create > tags has
  an invisible object over it as the link cant be clicked and the text
  cant be selected.

  expected result: link is clickable
  actual result: link cant be clicked

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833348/+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 1827811] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10107

-- 
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/1827811

Title:
  Move "Add comment" and "Details" into modal with "Comments"

Status in Mahara:
  In Progress

Bug description:
  This is part of the page revamp:
  
https://wiki.mahara.org/wiki/Developer_Area/Specifications_in_Development/Page_layout_revision

  Currently, the "Add comment" and "Details" links at blocks that can
  have them, takes you to a separate page where you can view the
  artefact's metadata and can leave comments.

  When you view comments, they are already displayed in the modal
  directly on the page, but you can't leave a comment yet.

  The things to be done:

  - Combine comments, add comment, Details to "Comments and details" (or just 
comments or just details depending on what can be displayed) so you only have 
one link.
  - Clicking that link opens up a modal on the page that shows the artefacts 
details (if there are any) and also the comments, as well as allows you to 
leave comments if that is enabled. Please see the attached mock-up.

  This would also mean to review all the "Details" on blocks as some of
  them are not needed. For example, clicking the details link next to a
  plan task only shows that single plan task again without any
  additional details. The "Details" should only be there when there is
  additional metadata information but not simply repeating the block
  content.

  The title of the modal (the one in the green bar) would be the
  blocktype as the title of the block is listed below.

  A decision still needs to be made on whether comments can be paginated
  in the modal or if they are shown all one after another (which might
  get quite long).

  We are not changing anything else from the proposal as that requires
  Gridstack to be implemented first. This is a standalone usability
  improvement independent of Gridstack.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1827811/+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 1833339] [NEW] Bootstap datepicker supported formats

2019-06-18 Thread Ghada El-Zoghbi
Public bug reported:

Mahara: 19.04.0
OS: Linux 16.04
DB: Postgres
Browser: FF and Chrome (and others)

The bootstrap date picker supports the following formats:

* https://bootstrap-
datepicker.readthedocs.io/en/latest/options.html#format

The date format, combination of d, dd, D, DD, m, mm, M, MM, yy, .

d, dd: Numeric date, no leading zero and leading zero, respectively. Eg, 5, 05.
D, DD: Abbreviated and full weekday names, respectively. Eg, Mon, Monday.
m, mm: Numeric month, no leading zero and leading zero, respectively. Eg, 7, 07.
M, MM: Abbreviated and full month names, respectively. Eg, Jan, January
yy, : 2- and 4-digit years, respectively. Eg, 12, 2012.

The Mahara lib/pieforms/pieform/elements/calendar.php file is not
supporting all these formats and is still supporting the jQuery UI
calendar.

The functions:

* pieform_element_calendar_convert_dateformat() and
* pieform_element_calendar_convert_timeformat()

Need to be updated to support the new date picker.

For example, this date format should be valid:

$string['pieform_calendar_dateformat'] = '%%d/%%mm/%%Y';

Instead, when updating the view access date/times, we get the error:

* Use the format DD/MMm/


Please note... this is not the only format to test for. Please test for other 
valid formats.

** Affects: mahara
 Importance: Undecided
 Status: New

** Description changed:

  Mahara: 19.04.0
  OS: Linux 16.04
  DB: Postgres
  Browser: FF and Chrome (and others)
  
  The bootstrap date picker supports the following formats:
  
  * https://bootstrap-
  datepicker.readthedocs.io/en/latest/options.html#format
  
  The date format, combination of d, dd, D, DD, m, mm, M, MM, yy, .
  
  d, dd: Numeric date, no leading zero and leading zero, respectively. Eg, 5, 
05.
  D, DD: Abbreviated and full weekday names, respectively. Eg, Mon, Monday.
  m, mm: Numeric month, no leading zero and leading zero, respectively. Eg, 7, 
07.
  M, MM: Abbreviated and full month names, respectively. Eg, Jan, January
  yy, : 2- and 4-digit years, respectively. Eg, 12, 2012.
  
- 
- The Mahara lib/pieforms/pieform/elements/calendar.php file is not supporting 
all these formats and is still supporting the jQuery UI calendar.
+ The Mahara lib/pieforms/pieform/elements/calendar.php file is not
+ supporting all these formats and is still supporting the jQuery UI
+ calendar.
  
  The functions:
  
- * pieform_element_calendar_convert_dateformat() and 
+ * pieform_element_calendar_convert_dateformat() and
  * pieform_element_calendar_convert_timeformat()
  
  Need to be updated to support the new date picker.
  
  For example, this date format should be valid:
  
  $string['pieform_calendar_dateformat'] = '%%d/%%mm/%%Y';
  
  Instead, when updating the view access date/times, we get the error:
  
  * Use the format DD/MMm/
+ 
+ 
+ Please note... this is not the only format to test for. Please test for other 
valid formats.

-- 
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/189

Title:
  Bootstap datepicker supported formats

Status in Mahara:
  New

Bug description:
  Mahara: 19.04.0
  OS: Linux 16.04
  DB: Postgres
  Browser: FF and Chrome (and others)

  The bootstrap date picker supports the following formats:

  * https://bootstrap-
  datepicker.readthedocs.io/en/latest/options.html#format

  The date format, combination of d, dd, D, DD, m, mm, M, MM, yy, .

  d, dd: Numeric date, no leading zero and leading zero, respectively. Eg, 5, 
05.
  D, DD: Abbreviated and full weekday names, respectively. Eg, Mon, Monday.
  m, mm: Numeric month, no leading zero and leading zero, respectively. Eg, 7, 
07.
  M, MM: Abbreviated and full month names, respectively. Eg, Jan, January
  yy, : 2- and 4-digit years, respectively. Eg, 12, 2012.

  The Mahara lib/pieforms/pieform/elements/calendar.php file is not
  supporting all these formats and is still supporting the jQuery UI
  calendar.

  The functions:

  * pieform_element_calendar_convert_dateformat() and
  * pieform_element_calendar_convert_timeformat()

  Need to be updated to support the new date picker.

  For example, this date format should be valid:

  $string['pieform_calendar_dateformat'] = '%%d/%%mm/%%Y';

  Instead, when updating the view access date/times, we get the error:

  * Use the format DD/MMm/

  
  Please note... this is not the only format to test for. Please test for other 
valid formats.

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

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

[Mahara-contributors] [Bug 1833320] Re: Duplicate variable in bootsrap-variables.scss

2019-06-18 Thread Robert Lyon
** Changed in: mahara
   Status: In Progress => Fix Committed

** Changed in: mahara
Milestone: None => 19.10.0

** 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/1833320

Title:
  Duplicate variable in bootsrap-variables.scss

Status in Mahara:
  Fix Committed

Bug description:
  $nav-tabs-link-hover-border-color is defined twice in
  htdocs/theme/raw/sass/utilities/_bootstrap-variables.scss on lines 748
  and 749

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833320/+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 1833320] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10100
Committed: 
https://git.mahara.org/mahara/mahara/commit/a83807d4190ab5bd77eaef0fa69b07dd440241e2
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit a83807d4190ab5bd77eaef0fa69b07dd440241e2
Author: Liam 
Date:   Wed Jun 19 11:48:38 2019 +1200

Bug #1833320: Duplicate variable in bootsrap-variables.scss

behatnotneeded

Change-Id: Ic8eaf031a3accf6fe736d9c08c40d64ab07b5106

-- 
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/1833320

Title:
  Duplicate variable in bootsrap-variables.scss

Status in Mahara:
  Fix Committed

Bug description:
  $nav-tabs-link-hover-border-color is defined twice in
  htdocs/theme/raw/sass/utilities/_bootstrap-variables.scss on lines 748
  and 749

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833320/+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 1828140] Re: missing btn-primary class on validation email page

2019-06-18 Thread Robert Lyon
** Changed in: mahara/19.04
   Status: Confirmed => Fix Committed

** Changed in: mahara
   Status: In Progress => Fix Committed

-- 
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/1828140

Title:
  missing btn-primary class on validation email page

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed

Bug description:
  To replicate:
  -Delete an email from a user in the database, I used: update usr set email = 
'' where email = '{email}'`
  -log in as the same user whos email has just been deleted

  expected result: green continue button at bottom of page
  actual result: white button

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1828140/+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 1828140] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/9977
Committed: 
https://git.mahara.org/mahara/mahara/commit/eeaeb4a202545152d2be74bd089427cff4bbd558
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit eeaeb4a202545152d2be74bd089427cff4bbd558
Author: Liam 
Date:   Wed May 8 14:05:45 2019 +1200

Bug #1828140: missing btn-primary class on validation email page

behatnotneeded

Change-Id: I212947979eb9223ee4fe530185934806e911c4e3

-- 
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/1828140

Title:
  missing btn-primary class on validation email page

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed

Bug description:
  To replicate:
  -Delete an email from a user in the database, I used: update usr set email = 
'' where email = '{email}'`
  -log in as the same user whos email has just been deleted

  expected result: green continue button at bottom of page
  actual result: white button

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1828140/+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 1833314] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10098
Committed: 
https://git.mahara.org/mahara/mahara/commit/17ec3521069b5ec4a888f8b1cd79a3e4cc390c4b
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit 17ec3521069b5ec4a888f8b1cd79a3e4cc390c4b
Author: Liam 
Date:   Wed Jun 19 10:59:34 2019 +1200

Bug #1833314: Institution selector missing styling

behatnotneeded

Change-Id: Ib9d52e1b158599257a80a1b9634c0a4a90f77f22

-- 
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/1833314

Title:
  Institution selector missing styling

Status in Mahara:
  Fix Committed

Bug description:
  The institution selector on admin > institutions > settings > (members
  number of institution) is missing some styling.

  check with 1 institution (plus no institution), and multiple
  institutions

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833314/+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 1828140] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10106
Committed: 
https://git.mahara.org/mahara/mahara/commit/cd717b7b2c5c16854a076bad92eeabe3b8a1f40c
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:19.04_STABLE

commit cd717b7b2c5c16854a076bad92eeabe3b8a1f40c
Author: Liam 
Date:   Wed May 8 14:05:45 2019 +1200

Bug #1828140: missing btn-primary class on validation email page

behatnotneeded

Change-Id: I212947979eb9223ee4fe530185934806e911c4e3
(cherry picked from commit eeaeb4a202545152d2be74bd089427cff4bbd558)

-- 
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/1828140

Title:
  missing btn-primary class on validation email page

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed

Bug description:
  To replicate:
  -Delete an email from a user in the database, I used: update usr set email = 
'' where email = '{email}'`
  -log in as the same user whos email has just been deleted

  expected result: green continue button at bottom of page
  actual result: white button

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1828140/+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 1828140] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "19.04_STABLE" branch: https://reviews.mahara.org/10106

-- 
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/1828140

Title:
  missing btn-primary class on validation email page

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed

Bug description:
  To replicate:
  -Delete an email from a user in the database, I used: update usr set email = 
'' where email = '{email}'`
  -log in as the same user whos email has just been deleted

  expected result: green continue button at bottom of page
  actual result: white button

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1828140/+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 1833314] Re: Institution selector missing styling

2019-06-18 Thread Robert Lyon
** Changed in: mahara
Milestone: None => 19.10.0

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

** Changed in: mahara
   Status: In Progress => Fix Committed

-- 
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/1833314

Title:
  Institution selector missing styling

Status in Mahara:
  Fix Committed

Bug description:
  The institution selector on admin > institutions > settings > (members
  number of institution) is missing some styling.

  check with 1 institution (plus no institution), and multiple
  institutions

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833314/+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 1832655] Re: Click on datepicker icon does not open calendar window

2019-06-18 Thread Ghada El-Zoghbi
*** This bug is a duplicate of bug 1828150 ***
https://bugs.launchpad.net/bugs/1828150

** This bug has been marked a duplicate of bug 1828150
   clicking on calendar icon doesnt bring up the datepicker on calendar inputs

-- 
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/1832655

Title:
  Click on datepicker icon does not open calendar window

Status in Mahara:
  New

Bug description:
  Mahara: 19.04.0
  OS: Linux 16.04
  DB: Postgres
  Browser: FF and Chrome

  
  When the user clicks on the datepicker icon next to the text field, the 
calendar window does not open.

  It is the case in the following fields:

  • Plan: Completion date
  • Group Edit settings page for the Start and End dates for Editability.
  • Resume date of birth field
  • Admin: Institution settings - the Institution expiry date
  • Admin: Report configuration - From/To date

  I believe there may be other areas as well but these are what I have
  found so far.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1832655/+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 1833330] [NEW] Institution top menu hovers under config buttons

2019-06-18 Thread Robert Lyon
Public bug reported:

On the Admin > institutions > settings page

See attached screenshot

** Affects: mahara
 Importance: Undecided
 Assignee: Liam (liam-sharpe)
 Status: New

** Attachment added: "Screenshot_2019-06-19 Institutions - Mahara.png"
   
https://bugs.launchpad.net/bugs/180/+attachment/5271495/+files/Screenshot_2019-06-19%20Institutions%20-%20Mahara.png

-- 
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/180

Title:
  Institution top menu hovers under config buttons

Status in Mahara:
  New

Bug description:
  On the Admin > institutions > settings page

  See attached screenshot

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/180/+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 1833325] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10105

-- 
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/1833325

Title:
  Navigation block title is not set for other pages in collection

Status in Mahara:
  New

Bug description:
  Mahara: 19.04.0
  OS: Linux 16.04
  DB: Postgres
  Browser: FF

  
  The title of a navigation block added to a page in a collection does not set 
the navigation title on the other pages in the collection.

  To reproduce:
  1. Create 4 pages (Page 1, Page 2, Page 3, Page 4) 
  2. Create a new collection with Name = "Collection of Pages"
  3. Add the 4 pages to the collection.
  4. On Page 3, add a navigation block with the following settings:
   - Block title = "My title for Page 3"
   - Collection = "Collection of Pages"
   - Add to all pages = Yes
   - Save
  5. Display the collection.

  Incorrect result: 
  Pages 1, 2 and 4's navigation block title is: "Collection of Pages"
  Page 3 navigation block title is: "My title for Page 3"

  Expected result:
  All navigation blocks in the collection should be titled: "My title for Page 
3"

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833325/+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 1829099] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10104
Committed: 
https://git.mahara.org/mahara/mahara/commit/10c94b6347143907cbd19016a25f65ed44532ac3
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:19.04_STABLE

commit 10c94b6347143907cbd19016a25f65ed44532ac3
Author: Robert Lyon 
Date:   Wed Jun 19 13:42:50 2019 +1200

Bug 1829099: Display group collection title on group's "About" page

Fixing for pagination as well

behatnotneeded

Change-Id: I36815af5ceac75bdc8ee389f478a2bb037fe0452
Signed-off-by: Robert Lyon 
(cherry picked from commit 6a077cda30a16ca66725caf54b467c3ac6f3da53)

-- 
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/1829099

Title:
  Group pages list on homepage is missing collection title

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed
Status in Mahara 19.10 series:
  Fix Committed

Bug description:
  A group's collection does not display the title on group 'About' page

  This is a regression

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1829099/+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 1829099] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "19.04_STABLE" branch: https://reviews.mahara.org/10104

-- 
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/1829099

Title:
  Group pages list on homepage is missing collection title

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed
Status in Mahara 19.10 series:
  Fix Committed

Bug description:
  A group's collection does not display the title on group 'About' page

  This is a regression

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1829099/+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 1829099] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10103
Committed: 
https://git.mahara.org/mahara/mahara/commit/6a077cda30a16ca66725caf54b467c3ac6f3da53
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit 6a077cda30a16ca66725caf54b467c3ac6f3da53
Author: Robert Lyon 
Date:   Wed Jun 19 13:42:50 2019 +1200

Bug 1829099: Display group collection title on group's "About" page

Fixing for pagination as well

behatnotneeded

Change-Id: I36815af5ceac75bdc8ee389f478a2bb037fe0452
Signed-off-by: Robert Lyon 

-- 
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/1829099

Title:
  Group pages list on homepage is missing collection title

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed
Status in Mahara 19.10 series:
  Fix Committed

Bug description:
  A group's collection does not display the title on group 'About' page

  This is a regression

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1829099/+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 1833318] Re: Names not showing for collections in Group Portfolios

2019-06-18 Thread Robert Lyon
*** This bug is a duplicate of bug 1829099 ***
https://bugs.launchpad.net/bugs/1829099

** Changed in: mahara
   Status: Confirmed => Invalid

** This bug has been marked a duplicate of bug 1829099
   Group pages list on homepage is missing collection title

-- 
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/1833318

Title:
  Names not showing for collections in Group Portfolios

Status in Mahara:
  Invalid

Bug description:
  OS: Linux
  Browser: All
  Version: Mahara 19.04

  Steps:
  1.) Create a Page for the group
  2.) Create a collection in a group add pages and save
  3.) View the group home page
  4.) Under the section "Group portfolios" the names of collections are missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833318/+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 1833325] [NEW] Navigation block title is not set for other pages in collection

2019-06-18 Thread Ghada El-Zoghbi
Public bug reported:

Mahara: 19.04.0
OS: Linux 16.04
DB: Postgres
Browser: FF


The title of a navigation block added to a page in a collection does not set 
the navigation title on the other pages in the collection.

To reproduce:
1. Create 4 pages (Page 1, Page 2, Page 3, Page 4) 
2. Create a new collection with Name = "Collection of Pages"
3. Add the 4 pages to the collection.
4. On Page 3, add a navigation block with the following settings:
 - Block title = "My title for Page 3"
 - Collection = "Collection of Pages"
 - Add to all pages = Yes
 - Save
5. Display the collection.

Incorrect result: 
Pages 1, 2 and 4's navigation block title is: "Collection of Pages"
Page 3 navigation block title is: "My title for Page 3"

Expected result:
All navigation blocks in the collection should be titled: "My title for Page 3"

** Affects: mahara
 Importance: Undecided
 Assignee: Ghada El-Zoghbi (ghada-z)
 Status: New

** Changed in: mahara
 Assignee: (unassigned) => Ghada El-Zoghbi (ghada-z)

-- 
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/1833325

Title:
  Navigation block title is not set for other pages in collection

Status in Mahara:
  New

Bug description:
  Mahara: 19.04.0
  OS: Linux 16.04
  DB: Postgres
  Browser: FF

  
  The title of a navigation block added to a page in a collection does not set 
the navigation title on the other pages in the collection.

  To reproduce:
  1. Create 4 pages (Page 1, Page 2, Page 3, Page 4) 
  2. Create a new collection with Name = "Collection of Pages"
  3. Add the 4 pages to the collection.
  4. On Page 3, add a navigation block with the following settings:
   - Block title = "My title for Page 3"
   - Collection = "Collection of Pages"
   - Add to all pages = Yes
   - Save
  5. Display the collection.

  Incorrect result: 
  Pages 1, 2 and 4's navigation block title is: "Collection of Pages"
  Page 3 navigation block title is: "My title for Page 3"

  Expected result:
  All navigation blocks in the collection should be titled: "My title for Page 
3"

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833325/+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 1827811] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10102

-- 
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/1827811

Title:
  Move "Add comment" and "Details" into modal with "Comments"

Status in Mahara:
  In Progress

Bug description:
  This is part of the page revamp:
  
https://wiki.mahara.org/wiki/Developer_Area/Specifications_in_Development/Page_layout_revision

  Currently, the "Add comment" and "Details" links at blocks that can
  have them, takes you to a separate page where you can view the
  artefact's metadata and can leave comments.

  When you view comments, they are already displayed in the modal
  directly on the page, but you can't leave a comment yet.

  The things to be done:

  - Combine comments, add comment, Details to "Comments and details" (or just 
comments or just details depending on what can be displayed) so you only have 
one link.
  - Clicking that link opens up a modal on the page that shows the artefacts 
details (if there are any) and also the comments, as well as allows you to 
leave comments if that is enabled. Please see the attached mock-up.

  This would also mean to review all the "Details" on blocks as some of
  them are not needed. For example, clicking the details link next to a
  plan task only shows that single plan task again without any
  additional details. The "Details" should only be there when there is
  additional metadata information but not simply repeating the block
  content.

  The title of the modal (the one in the green bar) would be the
  blocktype as the title of the block is listed below.

  A decision still needs to be made on whether comments can be paginated
  in the modal or if they are shown all one after another (which might
  get quite long).

  We are not changing anything else from the proposal as that requires
  Gridstack to be implemented first. This is a standalone usability
  improvement independent of Gridstack.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1827811/+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 1829099] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10103

-- 
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/1829099

Title:
  Group pages list on homepage is missing collection title

Status in Mahara:
  Fix Committed
Status in Mahara 19.04 series:
  Fix Committed
Status in Mahara 19.10 series:
  Fix Committed

Bug description:
  A group's collection does not display the title on group 'About' page

  This is a regression

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1829099/+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 1828150] Re: clicking on calendar icon doesnt bring up the datepicker on calendar inputs

2019-06-18 Thread Steven
Re Test

All date fields working as expected ✔

Catalyst QA Approved ✔

-- 
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/1828150

Title:
  clicking on calendar icon doesnt bring up the datepicker on calendar
  inputs

Status in Mahara:
  In Progress
Status in Mahara 19.04 series:
  Confirmed

Bug description:
  to replicate:
  - on a calendar input, click on the calendar icon

  expected result: the datepicker appears
  actual result: nothing happens

  a list of pages where the calendar may appear:
  -/artefact/resume/index.php
  -/view/urls.php?id= -> needs an id of the page
  -/admin/users/edit.php?id= -> needs an id of the page
  -/admin/users/institutions.php
  -/group/edit.php?id=__ -> needs an id of the page
  -/admin/users/statistics.php

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1828150/+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 1811904] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10101

-- 
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/1811904

Title:
  need to upgrade Font Awesome library from 4.7.0 to 5.X

Status in Mahara:
  In Progress

Bug description:
  need to upgrade Font Awesome library from 4.7.0 to 5.6.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1811904/+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 1825092] Re: Undefined index: institution

2019-06-18 Thread Robert Lyon
** Changed in: mahara/18.10
   Status: In Progress => Fix Committed

-- 
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/1825092

Title:
  Undefined index: institution

Status in Mahara:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  In admin menu click on Configure site-> Site options
  (/admin/site/options.php)

  When loading the page I see the error message:

  [WAR] 94 (lib/form/elements/autocomplete.php:124) Undefined index:
  institution

  
  this error comes from the changes made in the patch 
1fa6bfc59cdaa1d7895619ee3bae062cf5edfd11

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1825092/+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 1825092] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10001
Committed: 
https://git.mahara.org/mahara/mahara/commit/17d64779feda7c98d562c9ff47234263e0665473
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:18.10_STABLE

commit 17d64779feda7c98d562c9ff47234263e0665473
Author: Robert Lyon 
Date:   Tue Apr 16 09:40:58 2019 +1200

Bug 1825092: Check institution is set in autocomplete form element

To avoid error "Undefined index: institution" in
htdocs/lib/form/elements/autocomplete.php line 124

behatnotneeded

Change-Id: Iaf5c0d0de082d787539a6e406a27fd237ed05046
Signed-off-by: Robert Lyon 
(cherry picked from commit c094ebe8d5e350293c1d7685df1d665a767624db)

-- 
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/1825092

Title:
  Undefined index: institution

Status in Mahara:
  Fix Released
Status in Mahara 18.10 series:
  Fix Committed

Bug description:
  In admin menu click on Configure site-> Site options
  (/admin/site/options.php)

  When loading the page I see the error message:

  [WAR] 94 (lib/form/elements/autocomplete.php:124) Undefined index:
  institution

  
  this error comes from the changes made in the patch 
1fa6bfc59cdaa1d7895619ee3bae062cf5edfd11

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1825092/+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 1833320] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10100

-- 
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/1833320

Title:
  Duplicate variable in bootsrap-variables.scss

Status in Mahara:
  In Progress

Bug description:
  $nav-tabs-link-hover-border-color is defined twice in
  htdocs/theme/raw/sass/utilities/_bootstrap-variables.scss on lines 748
  and 749

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833320/+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 1833320] [NEW] Duplicate variable in bootsrap-variables.scss

2019-06-18 Thread Liam
Public bug reported:

$nav-tabs-link-hover-border-color is defined twice in
htdocs/theme/raw/sass/utilities/_bootstrap-variables.scss on lines 748
and 749

** Affects: mahara
 Importance: Undecided
 Assignee: Liam (liam-sharpe)
 Status: In Progress


** Tags: bootstrap

-- 
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/1833320

Title:
  Duplicate variable in bootsrap-variables.scss

Status in Mahara:
  In Progress

Bug description:
  $nav-tabs-link-hover-border-color is defined twice in
  htdocs/theme/raw/sass/utilities/_bootstrap-variables.scss on lines 748
  and 749

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833320/+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 1833318] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10099

-- 
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/1833318

Title:
  Names not showing for collections in Group Portfolios

Status in Mahara:
  Confirmed

Bug description:
  OS: Linux
  Browser: All
  Version: Mahara 19.04

  Steps:
  1.) Create a Page for the group
  2.) Create a collection in a group add pages and save
  3.) View the group home page
  4.) Under the section "Group portfolios" the names of collections are missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833318/+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 1833318] [NEW] Names not showing for collections in Group Portfolios

2019-06-18 Thread Kevin Dibble
Public bug reported:

OS: Linux
Browser: All
Version: Mahara 19.04

Steps:
1.) Create a Page for the group
2.) Create a collection in a group add pages and save
3.) View the group home page
4.) Under the section "Group portfolios" the names of collections are missing

** Affects: mahara
 Importance: Undecided
 Assignee: Kevin Dibble (digitalskill)
 Status: Confirmed

** Attachment added: "Screen Shot 2019-06-19 at 11.25.36 AM.png"
   
https://bugs.launchpad.net/bugs/1833318/+attachment/5271489/+files/Screen%20Shot%202019-06-19%20at%2011.25.36%20AM.png

** Changed in: mahara
   Status: New => Confirmed

** Changed in: mahara
 Assignee: (unassigned) => Kevin Dibble (digitalskill)

-- 
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/1833318

Title:
  Names not showing for collections in Group Portfolios

Status in Mahara:
  Confirmed

Bug description:
  OS: Linux
  Browser: All
  Version: Mahara 19.04

  Steps:
  1.) Create a Page for the group
  2.) Create a collection in a group add pages and save
  3.) View the group home page
  4.) Under the section "Group portfolios" the names of collections are missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833318/+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 1044878] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/10027
Committed: 
https://git.mahara.org/mahara/mahara/commit/62d8203a7324ed62e000c0e98b809ba710278b68
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit 62d8203a7324ed62e000c0e98b809ba710278b68
Author: Kevin Dibble 
Date:   Mon Mar 25 14:17:55 2019 +1300

Bug 1044878: Editing duplicated content

Added a new feature that the user has to choose yes to
start editing copy. This will force users to interact with the
form before editing with the choice that they are editing
all copies of this content.

When selecting to use content from another note, the
form will update based on their choice. The editor will
remain open if yes has been selected. The editor will
be hidden and only the content will show if 'Yes' has
not be selected.

This is a UI element only - no decision is saved to the
DB as this is an editor based decision.

behatnotneeded

Change-Id: If44522c00672b296242893f0c876e7ff37561dd2

-- 
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/1044878

Title:
  Make the info on copying text box more obvious

Status in Mahara:
  Fix Committed

Bug description:
  The text for re-using a text box "If you edit the text of this block,
  it will also be changed in 1 other block(s) where it appears. Make a
  copy (link to make a copy)" is not obvious enough for some users and
  may be overlooked.

  Can it be made more prominent, e.g. via a pop-up window? Is it
  possible to link "Make a copy" still within a pop-up or would we have
  to think of a different solution?

  For the discussion, please see
  https://mahara.org/interaction/forum/topic.php?id=4827

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1044878/+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 1044878] Re: Make the info on copying text box more obvious

2019-06-18 Thread Robert Lyon
** Changed in: mahara
   Status: In Progress => Fix Committed

-- 
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/1044878

Title:
  Make the info on copying text box more obvious

Status in Mahara:
  Fix Committed

Bug description:
  The text for re-using a text box "If you edit the text of this block,
  it will also be changed in 1 other block(s) where it appears. Make a
  copy (link to make a copy)" is not obvious enough for some users and
  may be overlooked.

  Can it be made more prominent, e.g. via a pop-up window? Is it
  possible to link "Make a copy" still within a pop-up or would we have
  to think of a different solution?

  For the discussion, please see
  https://mahara.org/interaction/forum/topic.php?id=4827

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1044878/+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 1833314] [NEW] Institution selector missing styling

2019-06-18 Thread Liam
Public bug reported:

The institution selector on admin > institutions > settings > (members
number of institution) is missing some styling.

check with 1 institution (plus no institution), and multiple
institutions

** Affects: mahara
 Importance: Undecided
 Assignee: Liam (liam-sharpe)
 Status: In Progress


** Tags: front-end

-- 
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/1833314

Title:
  Institution selector missing styling

Status in Mahara:
  In Progress

Bug description:
  The institution selector on admin > institutions > settings > (members
  number of institution) is missing some styling.

  check with 1 institution (plus no institution), and multiple
  institutions

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833314/+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 1833314] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10098

-- 
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/1833314

Title:
  Institution selector missing styling

Status in Mahara:
  In Progress

Bug description:
  The institution selector on admin > institutions > settings > (members
  number of institution) is missing some styling.

  check with 1 institution (plus no institution), and multiple
  institutions

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833314/+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 1828309] A change has been merged

2019-06-18 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/9985
Committed: 
https://git.mahara.org/mahara/mahara/commit/5d825f94996938d7fd409e9a4fd91024b0c81c00
Submitter: Robert Lyon (robe...@catalyst.net.nz)
Branch:master

commit 5d825f94996938d7fd409e9a4fd91024b0c81c00
Author: Robert Lyon 
Date:   Thu May 9 11:52:41 2019 +1200

Bug 1828309: Adjust create_user() function

Allow it to add a user to an institution with either staff or admin
priveleges by default

behatnotneeded

Change-Id: I596b7edc730267210f4ff825a8fcb044606686a5
Signed-off-by: Robert Lyon 

-- 
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/1828309

Title:
  Create institution addUserAsStaff() and addUserAsAdmin() wrapper
  functions

Status in Mahara:
  Fix Committed

Bug description:
  We have an $institution->addUserAsMember() function that adds a user
  to an institution it would be good to make a couple of wrapper
  functions so that we can add them as institution staff or institution
  admin role during the add member process

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1828309/+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 1832665] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10097

-- 
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/1832665

Title:
  SmartEvidence framework indenting not working on long headings

Status in Mahara:
  In Progress

Bug description:
  When SmartEvidence framework contains 3 levels  (standard,
  standardelement and parentid) and the lowest level shortname contains
  over 40 characters/ two lines of text the text on the second line
  doesn't indent.

  
  Preconditions: Smart evidence file with 3 levels (standard, standardelement 
and parentid) can use the Entrecomp_foundation_framework on mahara seafile 
under admin folder

  Steps to reproduce:

  1. Upload or edit Smartevidence file so that the standard element shortname 
has 40 characters/ two lines of text or more
  2.  Attach framework to a collection and view

  Expected result: Second line indents

  Actual result: Second line doesn't indent

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1832665/+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 1832665] Re: SmartEvidence framework indenting not working on long headings

2019-06-18 Thread Liam
** Changed in: mahara
 Assignee: (unassigned) => Liam (liam-sharpe)

** 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/1832665

Title:
  SmartEvidence framework indenting not working on long headings

Status in Mahara:
  In Progress

Bug description:
  When SmartEvidence framework contains 3 levels  (standard,
  standardelement and parentid) and the lowest level shortname contains
  over 40 characters/ two lines of text the text on the second line
  doesn't indent.

  
  Preconditions: Smart evidence file with 3 levels (standard, standardelement 
and parentid) can use the Entrecomp_foundation_framework on mahara seafile 
under admin folder

  Steps to reproduce:

  1. Upload or edit Smartevidence file so that the standard element shortname 
has 40 characters/ two lines of text or more
  2.  Attach framework to a collection and view

  Expected result: Second line indents

  Actual result: Second line doesn't indent

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1832665/+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 1044878] Re: Make the info on copying text box more obvious

2019-06-18 Thread Steven
Commit hash: 62d8203a7324ed62e000c0e98b809ba710278b68
Environment tested: Master
Browser tested: Chrome
Theme used:  Primary school 

PRECONDITIONS: 
 
1) Mahara User exists (no roles)
2) Note block exists (title=Note1) on portfolio page "Version 1"

TEST STEPS: 
 
1) Log  in as Mahara user (no roles) 
2) Create a portfolio page (portfolio page "Version 2")
3) Add a Note block to the page 
4) In the Note block modal, click the "Use content from another note" button
5) Select the note "Note1"  as mentioned in the preconditions
6) Once a note has been selected 
7) Verify  that the following text is displayed: "If you edit the text of this 
block, it will also be changed in 0 other block(s) where it appears. Make a 
copy" ✔
8) Verify that the make a copy link is displayed in the above text  ✔
9) Verify that the "Edit all copies of this note" yes/No  toggle is displayed  ✔
10) Verify that the Tiny MCE editor is hidden (user cannot edit the text) ✔

 OPTION 1 : If  the "Edit all copies of this note" yes/No  toggle is
set to Yes

11) Verify that the Tiny MCE editor is displayed and the note text is editable ✔
12) Edit the note text and edit the title for the note block
13) Click the save button
14) Verify that the changes have been made for the page 
15) Browse to the portfolio page that contains the original note block 
(portfolio page "Version 1")
16) Verify that the Note text and title have the new changed made after the 
edit ✔

 OPTION 2 : if the Make a copy link is clicked

11) Verify that the Tiny MCE editor is displayed and the note text is editable ✔
12) Verify that the "Edit all copies of this note" yes/No  toggle is hidden ✔
13) Edit the note text and edit the title for the note block
14) Click the save button
15) Verify that the changes have been made for the page ✔
16) Browse to the portfolio page that contains the original note block 
(portfolio page "Version 1")
17) Verify that the original note block title and note text have not been 
changed  ✔
 
ALso check 

1)  When you place a note on a page and then go to a different page and select 
to use the note from page 1, the message reads: "If you edit the text of this 
block, it will also be changed in 0 other block(s) where it appears." ✔
2) Verify the following when selecting "Use content from another note and 
selecting a note. 
a) User cannot navigate away from the note modal unless they either 
click save button, Remove link or click the x icon on the modal window." ✔
b) Clicking remove link = Closes modal window and there are no changes 
to the page " ✔
c) Clicking the x icon on the modal window. = Will display an alert Box 
with the following text "Are you sure you wish to delete this block?" and a 
Cancel button and OK button " ✔
* Clicking the "OK" button will close the modal window and 
there are no changes to the page" ✔
* Clicking Cancel button closes the alert box and modal window 
is still open " ✔

Catalyst QA Approved ✔

-- 
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/1044878

Title:
  Make the info on copying text box more obvious

Status in Mahara:
  In Progress

Bug description:
  The text for re-using a text box "If you edit the text of this block,
  it will also be changed in 1 other block(s) where it appears. Make a
  copy (link to make a copy)" is not obvious enough for some users and
  may be overlooked.

  Can it be made more prominent, e.g. via a pop-up window? Is it
  possible to link "Make a copy" still within a pop-up or would we have
  to think of a different solution?

  For the discussion, please see
  https://mahara.org/interaction/forum/topic.php?id=4827

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1044878/+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 1833301] Re: Problem with exporting text block with missing 'text'

2019-06-18 Thread Robert Lyon
https://reviews.mahara.org/#/c/10096/

** Changed in: mahara
Milestone: None => 19.10.0

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

** Changed in: mahara
   Status: New => 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/1833301

Title:
  Problem with exporting text block with missing 'text'

Status in Mahara:
  In Progress

Bug description:
  When exporting a user with 'text' blocks and the 'text' configdata
  attribute is missing we get:


  [WAR] 8f (blocktype/text/lib.php:158) Undefined index: text
  Call stack (most recent first):

  error(8, "Undefined index: text",
  "/mahara/htdocs/blocktype/text/l...", 158, array(size 2)) at
  /mahara/htdocs/blocktype/text/lib.php:158

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833301/+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 1833301] [NEW] Problem with exporting text block with missing 'text'

2019-06-18 Thread Robert Lyon
Public bug reported:

When exporting a user with 'text' blocks and the 'text' configdata
attribute is missing we get:


[WAR] 8f (blocktype/text/lib.php:158) Undefined index: text
Call stack (most recent first):

error(8, "Undefined index: text",
"/mahara/htdocs/blocktype/text/l...", 158, array(size 2)) at
/mahara/htdocs/blocktype/text/lib.php:158

** Affects: mahara
 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/1833301

Title:
  Problem with exporting text block with missing 'text'

Status in Mahara:
  New

Bug description:
  When exporting a user with 'text' blocks and the 'text' configdata
  attribute is missing we get:


  [WAR] 8f (blocktype/text/lib.php:158) Undefined index: text
  Call stack (most recent first):

  error(8, "Undefined index: text",
  "/mahara/htdocs/blocktype/text/l...", 158, array(size 2)) at
  /mahara/htdocs/blocktype/text/lib.php:158

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1833301/+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 1818591] A patch has been submitted for review

2019-06-18 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/10095

-- 
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/1818591

Title:
  Error: Undefined index versioning

Status in Mahara:
  Confirmed
Status in Mahara 18.10 series:
  Confirmed
Status in Mahara 19.04 series:
  Confirmed
Status in Mahara 19.10 series:
  Confirmed

Bug description:
  Create a journal and make a couple of entries
  Create a page, add a blog block to it and select the journal
  Share the page with other user
  logout
  Log in as the other user and access the page
  Follow the link of one of the entries
  Click on the name of the journal

  
  Then the error message is displayed

  [WAR] 8a (artefact/blog/lib.php:1086) Undefined index: versioning
  Call stack (most recent first):

  log_message("Undefined index: versioning", 8, true, true, 
"/home/ceciliavg/maharacode/mahara/htdocs/artefact/...", 1086) at 
/home/ceciliavg/maharacode/mahara/htdocs/lib/errors.php:520
  error(8, "Undefined index: versioning", 
"/home/ceciliavg/maharacode/mahara/htdocs/artefact/...", 1086, array(size 16)) 
at /home/ceciliavg/maharacode/mahara/htdocs/artefact/blog/lib.php:1086
  ArtefactTypeBlogPost::get_posts("4", 10, 0, array(size 4)) at 
/home/ceciliavg/maharacode/mahara/htdocs/artefact/blog/lib.php:342
  ArtefactTypeBlog->render_self(array(size 4)) at 
/home/ceciliavg/maharacode/mahara/htdocs/artefact/artefact.php:128

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1818591/+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