[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2017-02-10 Thread Launchpad Bug Tracker
[Expired for Mahara because there has been no activity for 60 days.] ** Changed in: mahara Status: Incomplete => Expired -- 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] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-12-12 Thread Kristina Hoeppner
** No longer affects: mahara/16.10 ** No longer affects: mahara/16.04 ** Changed in: mahara Assignee: Aaron Wells (u-aaronw) => (unassigned) ** Changed in: mahara Milestone: 17.04.0 => None -- You received this bug notification because you are a member of Mahara Contributors, which

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-12-11 Thread Robert Lyon
** Changed in: mahara/16.10 Milestone: 16.10.1 => 16.10.2 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-10-24 Thread Robert Lyon
** Changed in: mahara/16.04 Milestone: 16.04.4 => 16.04.5 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-10-20 Thread Robert Lyon
** Also affects: mahara/16.10 Importance: Undecided Status: New ** Changed in: mahara/16.10 Milestone: None => 16.10.1 ** Changed in: mahara Milestone: 16.10.1 => 17.04.0 ** Changed in: mahara/16.10 Status: New => Incomplete ** Changed in: mahara/16.10 Importance:

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-10-20 Thread Robert Lyon
** Changed in: mahara Milestone: 16.10.0 => 16.10.1 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-08-07 Thread Robert Lyon
** Changed in: mahara/16.04 Milestone: 16.04.3 => 16.04.4 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-07-10 Thread Robert Lyon
** Changed in: mahara/16.04 Milestone: 16.04.2 => 16.04.3 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-06-09 Thread Robert Lyon
** Changed in: mahara/16.04 Milestone: 16.04.1 => 16.04.2 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-05-16 Thread Robert Lyon
** Changed in: mahara Milestone: 16.04.1 => 16.10.0 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-04-27 Thread Robert Lyon
** Changed in: mahara/16.04 Milestone: 16.04.0 => 16.04.1 -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-02-04 Thread Aaron Wells
Specifically, you'd need to alter configdirs *and* set the renderer: $formdef = array( // ... other form definition stuff 'configdirs' => array(get_config('docroot') . 'path/to/my/plugin/'), 'renderer' => 'fancydiv', ); $form = pieform($formdef); -- You received this bug

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-02-04 Thread Aaron Wells
Hi Luke, Thanks for the patch! However, I don't think it's actually necessary. If your intent is, say, to load the file htdocs/pieforms/pieform/renderers/div.php so that you can call the method "pieform_renderer_div()" from within another function, then you can already do that.

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-02-04 Thread Aaron Wells
** Changed in: mahara/16.04 Status: In Progress => Incomplete -- 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

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-02-04 Thread Aaron Wells
** Also affects: mahara/16.04 Importance: Undecided Status: New ** Changed in: mahara/16.04 Milestone: None => 16.04.0 ** Changed in: mahara/16.04 Assignee: (unassigned) => Aaron Wells (u-aaronw) ** Changed in: mahara/16.04 Importance: Undecided => Low ** Changed in:

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2016-01-29 Thread Luke Carrier
That's correct, this patch ensures that functions defined outside of the Pieforms library (e.g. within Mahara plugins) can be sourced outside of Pieforms, and prevents Pieforms from unnecessarily attempting to include the containing file. -- You received this bug notification because you are a

[Mahara-contributors] [Bug 1189823] Re: Pieforms attempts to load renderer plugin even when already loaded

2013-06-12 Thread Andrew Nicols
Cheers Luke, That patch looks good to me. Just to confirm, this is to work around issues where you wish to use a function which is defined outside of the pieforms structure and where the function has already been defined. Therefore it is not necessary (or appropriate) to include the file from