[Mahara-contributors] [Bug 819102] Re: Edit and Select buttons not working for some embed types in some browsers

2012-02-13 Thread Richard Mansfield
** Changed in: mahara
 Assignee: (unassigned) => Richard Mansfield (richard-mansfield)

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

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/819102

Title:
  Edit and Select buttons not working for some embed types in some
  browsers

Status in Mahara ePortfolio:
  Confirmed

Bug description:
  The buttons (e.g. Edit/Select) for the "Some HTML" "An Image" and "Embedded 
Media" embeddable media types when creating a portfolio page don't work under 
Google Chrome 12 (latest), Safari 5 (maybe more). They work in Firefox 5.
  This is for Mahara 1.4.0.
  Suspect Webkit specific JS and CSS is causing trouble, webkit is 100% ACID 3 
compliant.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/819102/+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 823048] Re: Uploading new users via CSV gives generic error message

2012-02-13 Thread François Marier
** 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.
https://bugs.launchpad.net/bugs/823048

Title:
  Uploading new users via CSV gives generic error message

Status in Mahara ePortfolio:
  Fix Committed

Bug description:
  When you attempt to upload a lot of users via CSV and the upload is
  not made, you only receive a generic error message that doesn't give
  you the reason why the upload failed. When a certain server limit is
  reached, in some cases 100 users, the upload doesn't proceed so that
  the process does not take up all the processing power. The admin
  should be made aware of that and the error message should be more
  specific.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/823048/+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 917935] Re: Disabled 'emaillist' element should not allow new addresses to be added

2012-02-13 Thread François Marier
** 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.
https://bugs.launchpad.net/bugs/917935

Title:
  Disabled 'emaillist' element should not allow new addresses to be
  added

Status in Mahara ePortfolio:
  Fix Committed

Bug description:
  The 'emaillist' pieform element doesn't appear greyed out or
  uneditable when it's disabled.  This means that when the email address
  field is locked in institution settings, users may still try to add
  new addresses without receiving a useful error message.

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

2012-02-13 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/1043
Committed: 
http://gitorious.org/mahara/mahara/commit/7f231697437e70371b9ac2767eb23391612c9e2d
Submitter: Hugh Davenport (h...@catalyst.net.nz)
Branch:master

commit 7f231697437e70371b9ac2767eb23391612c9e2d
Author: Richard Mansfield 
Date:   Mon Feb 13 16:30:42 2012 +1300

Add a maximum number of users for csv files (bug #823048)

This allows $cfg->maxusercsvlines to be specified in config.php to
stop admins and institutional admins from uploading large csv files.
This is potentially useful on large multi-user sites.

And until such time as we can reduce the amount of memory used by the
create_user function, setting this option will provide the user with
some feedback on csv upload failure (because we can't easily trap the
php out-of-memory error).

See also bug #548042.

This commit also adds a call to set_time_limit() after processing each
user, so that the script doesn't fail due to php's max. execution
time.

Change-Id: I662231288c7d0c6e70602c548123f12c63427a97
Signed-off-by: Richard Mansfield 

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/548042

Title:
  Fatal error: Allowed memory size of 33554432 bytes exhausted

Status in Mahara ePortfolio:
  Fix Released

Bug description:
  When trying to add a huge amount of users through csv, this error
  appears:

  Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to 
allocate 4864 bytes) in /home/test/public_html/lib/dml.php(46) :
  runtime-created function on line 1

  
  Is there a setting to rectify this?

  By uploading in two or three different lots solves the problem.

  Thanks,

  Andrea

  This bug was imported from eduforge.org, see:
  
https://eduforge.org/tracker/index.php?func=detail&aid=3101&group_id=176&atid=739

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

2012-02-13 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/1043
Committed: 
http://gitorious.org/mahara/mahara/commit/7f231697437e70371b9ac2767eb23391612c9e2d
Submitter: Hugh Davenport (h...@catalyst.net.nz)
Branch:master

commit 7f231697437e70371b9ac2767eb23391612c9e2d
Author: Richard Mansfield 
Date:   Mon Feb 13 16:30:42 2012 +1300

Add a maximum number of users for csv files (bug #823048)

This allows $cfg->maxusercsvlines to be specified in config.php to
stop admins and institutional admins from uploading large csv files.
This is potentially useful on large multi-user sites.

And until such time as we can reduce the amount of memory used by the
create_user function, setting this option will provide the user with
some feedback on csv upload failure (because we can't easily trap the
php out-of-memory error).

See also bug #548042.

This commit also adds a call to set_time_limit() after processing each
user, so that the script doesn't fail due to php's max. execution
time.

Change-Id: I662231288c7d0c6e70602c548123f12c63427a97
Signed-off-by: Richard Mansfield 

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/823048

Title:
  Uploading new users via CSV gives generic error message

Status in Mahara ePortfolio:
  In Progress

Bug description:
  When you attempt to upload a lot of users via CSV and the upload is
  not made, you only receive a generic error message that doesn't give
  you the reason why the upload failed. When a certain server limit is
  reached, in some cases 100 users, the upload doesn't proceed so that
  the process does not take up all the processing power. The admin
  should be made aware of that and the error message should be more
  specific.

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

2012-02-13 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/1047
Committed: 
http://gitorious.org/mahara/mahara/commit/61c9b6ebd1684d0870a3dd9e8a62c9d73b6f4bc0
Submitter: Hugh Davenport (h...@catalyst.net.nz)
Branch:master

commit 61c9b6ebd1684d0870a3dd9e8a62c9d73b6f4bc0
Author: Richard Mansfield 
Date:   Tue Feb 14 13:13:53 2012 +1300

Display locked email as uneditable on Edit profile page (bug #917935)

The 'emaillist' pieform element doesn't appear greyed out or
uneditable when it's disabled.  This means that when the email address
field is locked in institution settings, or because the email address
is imported from Moodle, users may still try to add new addresses
without receiving a useful error message.

When displaying this element on the Edit Profile page, the help item
is hidden whenever the element is locked, because it refers to buttons
and links that don't appear in the form.

Change-Id: Ia9a149e9110932ebac9202a1691d29799d327dc2
Signed-off-by: Richard Mansfield 

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/917935

Title:
  Disabled 'emaillist' element should not allow new addresses to be
  added

Status in Mahara ePortfolio:
  In Progress

Bug description:
  The 'emaillist' pieform element doesn't appear greyed out or
  uneditable when it's disabled.  This means that when the email address
  field is locked in institution settings, users may still try to add
  new addresses without receiving a useful error message.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/917935/+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 900932] Re: Releasing views from Moodle fails to release locked artefacts

2012-02-13 Thread François Marier
** 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.
https://bugs.launchpad.net/bugs/900932

Title:
  Releasing views from Moodle fails to release locked artefacts

Status in Mahara ePortfolio:
  Fix Committed

Bug description:
  See http://mahara.org/interaction/forum/topic.php?id=4136#post18629

  When a view is released by calling the release_submitted_view function
  in htdocs/api/xmlrpc/lib.php from the Moodle plugin, the view itself
  is released, but the artefacts contained in it are not (in contrast to
  views released from Mahara groups, which *does* unlock the contained
  artefacts).

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/900932/+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 931332] Re: feature request for Scratch embed filter

2012-02-13 Thread François Marier
** Tags removed: feature new

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931332

Title:
  feature request for Scratch embed filter

Status in Mahara ePortfolio:
  Triaged

Bug description:
  It would be useful to have a Scratch embed filter similar to the one
  in Moodle http://moodle.org/plugins/view.php?plugin=filter_scratch so
  that students can showcase their Scratch games via a Mahara page

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931332/+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 931399] Re: Hard coded strings in BrowserID auth plugin

2012-02-13 Thread François Marier
** Changed in: mahara
 Assignee: (unassigned) => François Marier (fmarier)

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

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

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

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931399

Title:
  Hard coded strings in BrowserID auth plugin

Status in Mahara ePortfolio:
  Triaged

Bug description:
  Some strings that may be useful for the end user are hard coded in the
  lib.php file. For example I get the following error

  --- begin paste -
  Mahara: Authentication problem
  The automatic creation of your user account failed.
  Details if any, follow:

  Another user account has already claimed the email address
  'myn...@domain.com'.

   end paste ---

  These information should be useful for the end users and should be
  translated to offer a better experience.

  I also noticed there are also such strings in lib/errors.php but most
  of them are about technical issues and (maybe) don't need localization
  .

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931399/+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 917935] Re: Disabled 'emaillist' element should not allow new addresses to be added

2012-02-13 Thread Richard Mansfield
** Changed in: mahara
   Status: Confirmed => In Progress

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

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/917935

Title:
  Disabled 'emaillist' element should not allow new addresses to be
  added

Status in Mahara ePortfolio:
  In Progress

Bug description:
  The 'emaillist' pieform element doesn't appear greyed out or
  uneditable when it's disabled.  This means that when the email address
  field is locked in institution settings, users may still try to add
  new addresses without receiving a useful error message.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/917935/+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 917935] Re: Disabled 'emaillist' element should not allow new addresses to be added

2012-02-13 Thread Richard Mansfield
** Changed in: mahara
 Assignee: (unassigned) => Richard Mansfield (richard-mansfield)

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/917935

Title:
  Disabled 'emaillist' element should not allow new addresses to be
  added

Status in Mahara ePortfolio:
  Confirmed

Bug description:
  The 'emaillist' pieform element doesn't appear greyed out or
  uneditable when it's disabled.  This means that when the email address
  field is locked in institution settings, users may still try to add
  new addresses without receiving a useful error message.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/917935/+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 931521] Re: ressource: normal user no permission to add addional mail

2012-02-13 Thread Richard Mansfield
*** This bug is a duplicate of bug 917935 ***
https://bugs.launchpad.net/bugs/917935

This is really a duplicate of bug #917935.

If you have logged in from Moodle, and the xmlrpc configuration has
"update user info on login" enabled, then some profile fields
(firstname, lastname, email, etc.) are locked when you edit your profile
in Mahara, because they will be overwritten next time you log in from
Moodle.  If the user wants to change any of these fields, they should do
it in Moodle.

Unfortunately, as described in bug #917935, the email field in the
profile is not greyed out or disabled correctly when locked.

** This bug has been marked a duplicate of bug 917935
   Disabled 'emaillist' element should not allow new addresses to be added

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931521

Title:
  ressource: normal user no permission to add addional mail

Status in Mahara ePortfolio:
  New

Bug description:
  login via moodle xmlrpc

  a normal user can't create an second emailadress in ressource - 
contaktinformation.  First, the email is accepted, but after clicking on "save 
profile" the new mailaddress was there anymore.
  if I logged in as admin and change the profile to a normal user, it's 
possible to add the mailaddress (confirmation mail arrived)
  but if I logged in afterwards as the normal user,  it's not possible to 
delete the mailaddress created by admin.

  no errorlogs on apache

  -mahara 1.4.1
  -os: debian lenny
  -mysql  5.3
  -moodle 1.9.16, 2.2.1
  - firefox 10.0, chrome 16.0.9

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

2012-02-13 Thread Mahara Bot
Reviewed:  https://reviews.mahara.org/941
Committed: 
http://gitorious.org/mahara/mahara/commit/c35a687fe2c07edf0b9998f3d162dd82bcb4df08
Submitter: Hugh Davenport (h...@catalyst.net.nz)
Branch:master

commit c35a687fe2c07edf0b9998f3d162dd82bcb4df08
Author: Richard Mansfield 
Date:   Mon Dec 19 10:49:15 2011 +1300

Release locked artefacts when releasing a view from moodle

Bug #900932

Change-Id: I4b3f6e18fb0ab68a8d9e0e5327d672e373f9a291
Signed-off-by: Richard Mansfield 

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/900932

Title:
  Releasing views from Moodle fails to release locked artefacts

Status in Mahara ePortfolio:
  In Progress

Bug description:
  See http://mahara.org/interaction/forum/topic.php?id=4136#post18629

  When a view is released by calling the release_submitted_view function
  in htdocs/api/xmlrpc/lib.php from the Moodle plugin, the view itself
  is released, but the artefacts contained in it are not (in contrast to
  views released from Mahara groups, which *does* unlock the contained
  artefacts).

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/900932/+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 900932] Re: Releasing views from Moodle fails to release locked artefacts

2012-02-13 Thread Richard Mansfield
** Changed in: mahara
 Assignee: Hugh Davenport (hugh-catalyst) => Richard Mansfield 
(richard-mansfield)

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/900932

Title:
  Releasing views from Moodle fails to release locked artefacts

Status in Mahara ePortfolio:
  In Progress

Bug description:
  See http://mahara.org/interaction/forum/topic.php?id=4136#post18629

  When a view is released by calling the release_submitted_view function
  in htdocs/api/xmlrpc/lib.php from the Moodle plugin, the view itself
  is released, but the artefacts contained in it are not (in contrast to
  views released from Mahara groups, which *does* unlock the contained
  artefacts).

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/900932/+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 897439] Re: Need identity plate when viewing Pages

2012-02-13 Thread sean mcclelland
Hello, thank you for the response! (I wasn't sure if you wanted me to
reply here or on the code change page?)

I've thought about it, and don't have a strong feeling either way, to be
honest. I think the viewer just needs an easy way to back out of that
Page and return to their Dashboard or anywhere in which the main tabbed
navigation bar is visible (which, I believe they can already do by
clicking the "back" button in the top-right).

The import points, in my mind, are that the user should easily be able
to identify (1) who created/owns the Page they're viewing, and (2) how
they are currently logged in (as themselves), or as someone else if
they're an administrator.

Does this help/make sense?

Thank you!

- Sean

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/897439

Title:
  Need identity plate when viewing Pages

Status in Mahara ePortfolio:
  In Progress

Bug description:
  This is a feature request.

  When creating, editing, or more importantly, viewing other's Pages,
  there is no identity plate anywhere in the window verifying who you
  are logged in as. As far as I can tell, all other pages in Mahara show
  your profile block in the top-right corner of the window. However,
  when you are working on a specific Page, the profile block is not
  visible, and the only way to see who you are "logged in as" is by
  hovering over the small logo in the top-left of the screen. I believe
  the user's name should not be hidden.

  Reason: We have faculty who work regularly with students, reviewing
  and commenting on their completed Pages. One faculty in particular had
  been helping a student in her office earlier in the day, and had
  apparently logged in as the student, or allowed the student to log in
  on her computer. The next day, she re-opened her browser, and began
  reviewing other students Pages, leaving comments on their page. She
  later discovered that she was STILL logged in as the student (from the
  previous day), and was leaving comments as the student, not as
  herself!

  I suspect the faculty member didn't log the student off properly the
  day before, or there was a cache problem with her browser. If there
  was an indication in the window of who she was logged in as, this
  problem could have been avoided.

  (Our students and faculty often share links to their Mahara Pages from
  within our LMS (Moodle), so they may not be logging in directly to
  Mahara, adding to potential for confusion on this issue.)

  Thank you!

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/897439/+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 931332] Re: feature request for Scratch embed filter

2012-02-13 Thread Ruslan Kabalin
Related forum discussion:
https://mahara.org/interaction/forum/topic.php?id=4359

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

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

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931332

Title:
  feature request for Scratch embed filter

Status in Mahara ePortfolio:
  Triaged

Bug description:
  It would be useful to have a Scratch embed filter similar to the one
  in Moodle http://moodle.org/plugins/view.php?plugin=filter_scratch so
  that students can showcase their Scratch games via a Mahara page

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931332/+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 931467] Re: artefact::get_views_instances produces corrupted result

2012-02-13 Thread Ruslan Kabalin
** Changed in: mahara
Milestone: None => 1.5.0

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931467

Title:
  artefact::get_views_instances produces corrupted result

Status in Mahara ePortfolio:
  In Progress

Bug description:
  artefact::get_views_instances produces corrupted result due to the
  fact that id's of returned views are being overridden with id's of
  view_artefact table returned by get_views_metadata method.

  artefact::get_views_instances is not being used anywhere, so the bug
  has been revealed earlier.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931467/+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 931481] Re: Portfolio search does not produce an output

2012-02-13 Thread Ruslan Kabalin
** Changed in: mahara
Milestone: None => 1.5.0

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931481

Title:
  Portfolio search does not produce an output

Status in Mahara ePortfolio:
  Confirmed

Bug description:
  It has been reported on the forum [1] that Portfolio search (enabled
  via Site options -> General settings) does not produce an output. The
  investigation indicated that there are several problems with that:

  1. Javascript bug.
  2. There is links problem for 'ArtefactTypeHtml' in particular, that directs 
user to the site home.

  The suggested solution for now is to fix issues above, fix related
  formatting and add the list of views where artefact can be found (as
  links for non-profile artefacts are ambitious).

  [1] https://mahara.org/interaction/forum/topic.php?id=4301

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931481/+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 931467] Re: artefact::get_views_instances produces corrupted result

2012-02-13 Thread Ruslan Kabalin
https://reviews.mahara.org/#change,1044

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931467

Title:
  artefact::get_views_instances produces corrupted result

Status in Mahara ePortfolio:
  In Progress

Bug description:
  artefact::get_views_instances produces corrupted result due to the
  fact that id's of returned views are being overridden with id's of
  view_artefact table returned by get_views_metadata method.

  artefact::get_views_instances is not being used anywhere, so the bug
  has been revealed earlier.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931467/+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 931481] Re: Portfolio search does not produce an output

2012-02-13 Thread Ruslan Kabalin
Ideally in the future this should be re-factored to use
build_portfolio_search_html and results renderer similar to one (or the
same) used in tags search, but that is not a quick task.

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931481

Title:
  Portfolio search does not produce an output

Status in Mahara ePortfolio:
  Confirmed

Bug description:
  It has been reported on the forum [1] that Portfolio search (enabled
  via Site options -> General settings) does not produce an output. The
  investigation indicated that there are several problems with that:

  1. Javascript bug.
  2. There is links problem for 'ArtefactTypeHtml' in particular, that directs 
user to the site home.

  The suggested solution for now is to fix issues above, fix related
  formatting and add the list of views where artefact can be found (as
  links for non-profile artefacts are ambitious).

  [1] https://mahara.org/interaction/forum/topic.php?id=4301

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931481/+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 931481] Re: Portfolio search does not produce an output

2012-02-13 Thread Ruslan Kabalin
Pushed for revision:

https://reviews.mahara.org/#q,status:open+project:mahara+branch:master+topic:my_portfolio_search,n,z

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931481

Title:
  Portfolio search does not produce an output

Status in Mahara ePortfolio:
  Confirmed

Bug description:
  It has been reported on the forum [1] that Portfolio search (enabled
  via Site options -> General settings) does not produce an output. The
  investigation indicated that there are several problems with that:

  1. Javascript bug.
  2. There is links problem for 'ArtefactTypeHtml' in particular, that directs 
user to the site home.

  The suggested solution for now is to fix issues above, fix related
  formatting and add the list of views where artefact can be found (as
  links for non-profile artefacts are ambitious).

  [1] https://mahara.org/interaction/forum/topic.php?id=4301

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931481/+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 931521] [NEW] ressource: normal user no permission to add addional mail

2012-02-13 Thread Michaela Blomberg
Public bug reported:

login via moodle xmlrpc

a normal user can't create an second emailadress in ressource - 
contaktinformation.  First, the email is accepted, but after clicking on "save 
profile" the new mailaddress was there anymore.
if I logged in as admin and change the profile to a normal user, it's possible 
to add the mailaddress (confirmation mail arrived)
but if I logged in afterwards as the normal user,  it's not possible to delete 
the mailaddress created by admin.

no errorlogs on apache

-mahara 1.4.1
-os: debian lenny
-mysql  5.3
-moodle 1.9.16, 2.2.1
- firefox 10.0, chrome 16.0.9

** Affects: mahara
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931521

Title:
  ressource: normal user no permission to add addional mail

Status in Mahara ePortfolio:
  New

Bug description:
  login via moodle xmlrpc

  a normal user can't create an second emailadress in ressource - 
contaktinformation.  First, the email is accepted, but after clicking on "save 
profile" the new mailaddress was there anymore.
  if I logged in as admin and change the profile to a normal user, it's 
possible to add the mailaddress (confirmation mail arrived)
  but if I logged in afterwards as the normal user,  it's not possible to 
delete the mailaddress created by admin.

  no errorlogs on apache

  -mahara 1.4.1
  -os: debian lenny
  -mysql  5.3
  -moodle 1.9.16, 2.2.1
  - firefox 10.0, chrome 16.0.9

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931521/+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 931481] [NEW] Portfolio search does not produce an output

2012-02-13 Thread Ruslan Kabalin
Public bug reported:

It has been reported on the forum [1] that Portfolio search (enabled via
Site options -> General settings) does not produce an output. The
investigation indicated that there are several problems with that:

1. Javascript bug.
2. There is links problem for 'ArtefactTypeHtml' in particular, that directs 
user to the site home.

The suggested solution for now is to fix issues above, fix related
formatting and add the list of views where artefact can be found (as
links for non-profile artefacts are ambitious).

[1] https://mahara.org/interaction/forum/topic.php?id=4301

** Affects: mahara
 Importance: Low
 Assignee: Ruslan Kabalin (rkabalin)
 Status: Confirmed


** Tags: artefact pages search

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

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

** Changed in: mahara
 Assignee: (unassigned) => Ruslan Kabalin (rkabalin)

** Tags added: artefact pages search

** Description changed:

  It has been reported on the forum [1] that Portfolio search (enabled via
  Site options -> General settings) does not produce an output. The
  investigation indicated that there are several problems with that:
  
- 1. Javascript bug
- 2. There is links problem for ArtefactTypeHtml extends ArtefactType in 
particular that directs user to the site home.
+ 1. Javascript bug.
+ 2. There is links problem for 'ArtefactTypeHtml' in particular, that directs 
user to the site home.
  
  The suggested solution for now is to fix issues above, fix related
  formatting and add the list of views where artefact can be found (as
  links for non-profile artefacts are ambitious).
  
  [1] https://mahara.org/interaction/forum/topic.php?id=4301

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931481

Title:
  Portfolio search does not produce an output

Status in Mahara ePortfolio:
  Confirmed

Bug description:
  It has been reported on the forum [1] that Portfolio search (enabled
  via Site options -> General settings) does not produce an output. The
  investigation indicated that there are several problems with that:

  1. Javascript bug.
  2. There is links problem for 'ArtefactTypeHtml' in particular, that directs 
user to the site home.

  The suggested solution for now is to fix issues above, fix related
  formatting and add the list of views where artefact can be found (as
  links for non-profile artefacts are ambitious).

  [1] https://mahara.org/interaction/forum/topic.php?id=4301

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931481/+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 931467] Re: artefact::get_views_instances produces corrupted result

2012-02-13 Thread Ruslan Kabalin
** Tags added: artefact view

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931467

Title:
  artefact::get_views_instances produces corrupted result

Status in Mahara ePortfolio:
  In Progress

Bug description:
  artefact::get_views_instances produces corrupted result due to the
  fact that id's of returned views are being overridden with id's of
  view_artefact table returned by get_views_metadata method.

  artefact::get_views_instances is not being used anywhere, so the bug
  has been revealed earlier.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931467/+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 931467] [NEW] artefact::get_views_instances produces corrupted result

2012-02-13 Thread Ruslan Kabalin
Public bug reported:

artefact::get_views_instances produces corrupted result due to the fact
that id's of returned views are being overridden with id's of
view_artefact table returned by get_views_metadata method.

artefact::get_views_instances is not being used anywhere, so the bug has
been revealed earlier.

** Affects: mahara
 Importance: Low
 Assignee: Ruslan Kabalin (rkabalin)
 Status: In Progress

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

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

** Changed in: mahara
 Assignee: (unassigned) => Ruslan Kabalin (rkabalin)

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931467

Title:
  artefact::get_views_instances produces corrupted result

Status in Mahara ePortfolio:
  In Progress

Bug description:
  artefact::get_views_instances produces corrupted result due to the
  fact that id's of returned views are being overridden with id's of
  view_artefact table returned by get_views_metadata method.

  artefact::get_views_instances is not being used anywhere, so the bug
  has been revealed earlier.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931467/+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 931399] [NEW] Hard coded strings in BrowserID auth plugin

2012-02-13 Thread Dominique-Alain JAN
Public bug reported:

Some strings that may be useful for the end user are hard coded in the
lib.php file. For example I get the following error

--- begin paste -
Mahara: Authentication problem
The automatic creation of your user account failed.
Details if any, follow:

Another user account has already claimed the email address
'myn...@domain.com'.

 end paste ---

These information should be useful for the end users and should be
translated to offer a better experience.

I also noticed there are also such strings in lib/errors.php but most of
them are about technical issues and (maybe) don't need localization .

** Affects: mahara
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931399

Title:
  Hard coded strings in BrowserID auth plugin

Status in Mahara ePortfolio:
  New

Bug description:
  Some strings that may be useful for the end user are hard coded in the
  lib.php file. For example I get the following error

  --- begin paste -
  Mahara: Authentication problem
  The automatic creation of your user account failed.
  Details if any, follow:

  Another user account has already claimed the email address
  'myn...@domain.com'.

   end paste ---

  These information should be useful for the end users and should be
  translated to offer a better experience.

  I also noticed there are also such strings in lib/errors.php but most
  of them are about technical issues and (maybe) don't need localization
  .

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931399/+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 931332] Re: feature request for Scratch embed filter

2012-02-13 Thread Mary
** Summary changed:

- request for Scratch embed filter
+ feature request for Scratch embed filter

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931332

Title:
  feature request for Scratch embed filter

Status in Mahara ePortfolio:
  New

Bug description:
  It would be useful to have a Scratch embed filter similar to the one
  in Moodle http://moodle.org/plugins/view.php?plugin=filter_scratch so
  that students can showcase their Scratch games via a Mahara page

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/931332/+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 931332] [NEW] request for Scratch embed filter

2012-02-13 Thread Mary
Public bug reported:

It would be useful to have a Scratch embed filter similar to the one in
Moodle http://moodle.org/plugins/view.php?plugin=filter_scratch so that
students can showcase their Scratch games via a Mahara page

** Affects: mahara
 Importance: Undecided
 Status: New


** Tags: feature new

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/931332

Title:
  request for Scratch embed filter

Status in Mahara ePortfolio:
  New

Bug description:
  It would be useful to have a Scratch embed filter similar to the one
  in Moodle http://moodle.org/plugins/view.php?plugin=filter_scratch so
  that students can showcase their Scratch games via a Mahara page

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