In the Squeak4.2-10950.image, at the end of the "How to extend the
Image" window, there is a line of code: (Smalltalk at: #PRDistribution) new register. This returns errors due to the fact that PRAjaxSearchWidget is not in the package Pier-Seaside-Widgets specified by the ConfigurationOfPier2 and in fact, it isn't included in any version after Pier-Seaside-NickAger.490. If I drop back to that version, I can register a new Pier kernel via PRDistribution, but otherwise, not. Lawson _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Looks like the ConfigurationOfPier2 needs to be updated. All widgets
that depend on Ajax functionality were moved to Pier-JQuery. Cheers, Lukas On 3 February 2011 10:07, Lawson English <[hidden email]> wrote: > In the Squeak4.2-10950.image, at the end of the "How to extend the Image" > window, there is a line of code: (Smalltalk at: #PRDistribution) new > register. > > This returns errors due to the fact that PRAjaxSearchWidget is not in the > package Pier-Seaside-Widgets specified by the ConfigurationOfPier2 and in > fact, it isn't included in any version after Pier-Seaside-NickAger.490. > > If I drop back to that version, I can register a new Pier kernel via > PRDistribution, but otherwise, not. > > > Lawson > > > > -- Lukas Renggli www.lukas-renggli.ch _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
I'll take a look at see what's up...
Dale On 02/07/2011 01:35 PM, Lukas Renggli wrote: > Looks like the ConfigurationOfPier2 needs to be updated. All widgets > that depend on Ajax functionality were moved to Pier-JQuery. > > Cheers, > Lukas > > On 3 February 2011 10:07, Lawson English<[hidden email]> wrote: >> In the Squeak4.2-10950.image, at the end of the "How to extend the Image" >> window, there is a line of code: (Smalltalk at: #PRDistribution) new >> register. >> >> This returns errors due to the fact that PRAjaxSearchWidget is not in the >> package Pier-Seaside-Widgets specified by the ConfigurationOfPier2 and in >> fact, it isn't included in any version after Pier-Seaside-NickAger.490. >> >> If I drop back to that version, I can register a new Pier kernel via >> PRDistribution, but otherwise, not. >> >> >> Lawson >> >> >> >> > > > _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Great, thanks a lot for maintaining the configurations :-)
Lukas On 7 February 2011 23:07, Dale Henrichs <[hidden email]> wrote: > I'll take a look at see what's up... > > Dale > > On 02/07/2011 01:35 PM, Lukas Renggli wrote: >> >> Looks like the ConfigurationOfPier2 needs to be updated. All widgets >> that depend on Ajax functionality were moved to Pier-JQuery. >> >> Cheers, >> Lukas >> >> On 3 February 2011 10:07, Lawson English<[hidden email]> wrote: >>> >>> In the Squeak4.2-10950.image, at the end of the "How to extend the >>> Image" >>> window, there is a line of code: (Smalltalk at: #PRDistribution) new >>> register. >>> >>> This returns errors due to the fact that PRAjaxSearchWidget is not in the >>> package Pier-Seaside-Widgets specified by the ConfigurationOfPier2 and in >>> fact, it isn't included in any version after Pier-Seaside-NickAger.490. >>> >>> If I drop back to that version, I can register a new Pier kernel via >>> PRDistribution, but otherwise, not. >>> >>> >>> Lawson >>> >>> >>> >>> >> >> >> > > -- Lukas Renggli www.lukas-renggli.ch _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Hi,
Hi, Apologies for the belated reply.
The latest version has a dependency on the "example text" JQueryWidget - JQWidgetBox-FormExample - in the repository: http://www.squeaksource.com/JQueryWidgetBox
ConfigurationOfPierAddOns2 should take care of this dependency and load the JQWidgetBox-FormExample package. However I don't think this is the problem you're having.
It seems the the problem you mention is that within ConfigurationOfPierAddOns2 the "Pier-Setup" package should depend on the "Pier-JQuery" package, but it appears not to and so "Pier-JQuery" isn't being loaded as part of the default group. To load the "Pier-JQuery" package try:
ConfigurationOfPierAddOns2 project latestVersion load: #('Pier-JQuery' 'Pier-Setup')
Or you can pull in all the addons with:
(ConfigurationOfPierAddOns2 project lastestVersion) load: 'ALL'
There's a discussion between myself and Dale on which packages are included in the default group in ConfigurationOfPierAddOns2 here:
Hope this helps
Nick
On 7 February 2011 22:16, Lukas Renggli <[hidden email]> wrote: Great, thanks a lot for maintaining the configurations :-) _______________________________________________ Magritte, Pier and Related Tools ... https://www.iam.unibe.ch/mailman/listinfo/smallwiki |
Free forum by Nabble | Edit this page |