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

2017-07-20 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/7893

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

Title:
  behat properties file to store css elements

Status in Mahara:
  In Progress

Bug description:
  Work on adding a properties file to make tests more readable.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1705622/+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 1705622] [NEW] behat properties file to store css elements

2017-07-20 Thread Rebecca Blundell
Public bug reported:

Work on adding a properties file to make tests more readable.

** Affects: mahara
 Importance: Undecided
 Assignee: Rebecca Blundell (rjb-dev)
 Status: In Progress


** Tags: behat

** Changed in: mahara
   Status: New => In Progress

** Changed in: mahara
 Assignee: (unassigned) => Rebecca Blundell (rjb-dev)

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

Title:
  behat properties file to store css elements

Status in Mahara:
  In Progress

Bug description:
  Work on adding a properties file to make tests more readable.

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

2017-07-20 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/7892

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

Title:
  Error with auth_ldap_sync_cron

Status in Mahara:
  New

Bug description:
  We have this error in our log :
  [WAR] eb (auth/ldap/lib.php:1627) Undefined property: stdClass::$active

  The cause is the the db record do not contain "active":
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 'id');

  It can be fixed by adding it :
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 
'id,active');

  I think its a regression caused by :
  Bug 1640308: Adding an auth_instance "active" column

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1705547/+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 1575923] Re: Mathslate/MathJax fails to load on https

2017-07-20 Thread Matt Di Giuseppe
To solve this problem I've had to include the entire YUI library from
GIT in my local Mahara instance. It is also necessary to edit the
mathslate.html file in the MathSlate plugin folder, and change every
instance of "http" to "https".

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

Title:
  Mathslate/MathJax fails to load on https

Status in Mahara:
  Confirmed

Bug description:
  On HTTPS-enabled sites, the Mathslate tinymce plugin fails, due to
  loading http:// resources from yui.yahooapis.com and cdn.mathjax.org.

  The file htdocs/js/tinymce/plugins/mathslate/mathslate.html is
  hardcoded to pull http:// versions of these scripts (lines 11-12).

  Ultimately this is an upstream bug, but it's one that affects https-
  enabled Mahara sites.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1575923/+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 1705547] Re: Error with auth_ldap_sync_cron

2017-07-20 Thread Gilles-Philippe Leblanc
I just give you the patch.

To reproduce and to test, you must have a ldap auth instance in your
system (in the table mhr_auth_instance)

At 0:00, if you run the cron, you will have it.
You can change the value temporarily for the test in get_cron() from the file 
auth/ldap/lib.php

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

Title:
  Error with auth_ldap_sync_cron

Status in Mahara:
  New

Bug description:
  We have this error in our log :
  [WAR] eb (auth/ldap/lib.php:1627) Undefined property: stdClass::$active

  The cause is the the db record do not contain "active":
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 'id');

  It can be fixed by adding it :
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 
'id,active');

  I think its a regression caused by :
  Bug 1640308: Adding an auth_instance "active" column

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

2017-07-20 Thread Mahara Bot
Patch for "master" branch: https://reviews.mahara.org/7891

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

Title:
  Error with auth_ldap_sync_cron

Status in Mahara:
  New

Bug description:
  We have this error in our log :
  [WAR] eb (auth/ldap/lib.php:1627) Undefined property: stdClass::$active

  The cause is the the db record do not contain "active":
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 'id');

  It can be fixed by adding it :
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 
'id,active');

  I think its a regression caused by :
  Bug 1640308: Adding an auth_instance "active" column

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1705547/+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 1705547] Re: Error with auth_ldap_sync_cron

2017-07-20 Thread Gilles-Philippe Leblanc
** Summary changed:

- Synchronize users
+ Error with auth_ldap_sync_cron

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

Title:
  Error with auth_ldap_sync_cron

Status in Mahara:
  New

Bug description:
  We have this error in our log :
  [WAR] eb (auth/ldap/lib.php:1627) Undefined property: stdClass::$active

  The cause is the the db record do not contain "active":
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 'id');

  It can be fixed by adding it :
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 
'id,active');

  I think its a regression caused by :
  Bug 1640308: Adding an auth_instance "active" column

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1705547/+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 1705547] [NEW] Error with auth_ldap_sync_cron

2017-07-20 Thread Gilles-Philippe Leblanc
Public bug reported:

We have this error in our log :
[WAR] eb (auth/ldap/lib.php:1627) Undefined property: stdClass::$active

The cause is the the db record do not contain "active":
$auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 'id');

It can be fixed by adding it :
$auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 
'id,active');

I think its a regression caused by :
Bug 1640308: Adding an auth_instance "active" column

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

Title:
  Error with auth_ldap_sync_cron

Status in Mahara:
  New

Bug description:
  We have this error in our log :
  [WAR] eb (auth/ldap/lib.php:1627) Undefined property: stdClass::$active

  The cause is the the db record do not contain "active":
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 'id');

  It can be fixed by adding it :
  $auths = get_records_array('auth_instance', 'authname', 'ldap', 'id', 
'id,active');

  I think its a regression caused by :
  Bug 1640308: Adding an auth_instance "active" column

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1705547/+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 1704820] Re: Make it possible to comment any block in a page

2017-07-20 Thread Melvin Romero
Hi Kristina,

Thanks for that. Hum... I'll let my team decide if they want to send a
solution. It's something urgent so we can wait. We will let you know if
anything comes up from our side.

Thanks for your help !

Melvin

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

Title:
  Make it possible to comment any block in a page

Status in Mahara:
  Confirmed

Bug description:
  Maybe I have missed it, but it is currently impossible to comment
  blocks individually when a user sends his/her page for assessment in a
  group or when a page is shared. Only the journal/articles block has
  this feature.

  It would be a nice to have.

  Note, this is not a bug, but an improvement request. I didn't know how
  to create an issue for the wishlist.

  Thanks,

  Melvin

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