PRDistribution class>>register
PRDesignChooserWidget>>renderContentOn:
> On December 28, 2013 at 12:49 PM Volkert Barr <volkert(a)nivoba.de> wrote:
>
>
> Thank you. But what is missing is how do i launch Pier? The
description found at http://www.piercms.com/download and the video
tutorials
> seems to be outdated and are not matching to the Pier distribution i
downloaded. When running the image, Pier is not automatically started,
so http:localhost:8080 …
[View More]does not work. So my question: What need i to do
to launch Pier?
>
> Any hints?
>
> BW,
> Volkert
>
> On 28.12.2013, at 12:05, Reza Razavi <razavi(a)acm.org> wrote:
>
> > I'd recommend:
> > http://www.piercms.com/doc
> >
> > eventually:
> > http://www.rezarazavi.com/about/playground/
> >
> > > On December 28, 2013 at 11:18 AM Volkert Barr <volkert(a)nivoba.de>
wrote:
> > >
> > >
> > > Dear all,
> > >
> > > i have downloaded the latest Pier3 (Part of Pharo3.0) from
https://ci.inria.fr/pharo-contribution/job/Pier3/, but
> > > have absolute no idea how to start it. Can someone point me to
some code snippets or tutorials to survive
> > > the first steps?
> > >
> > > BW,
> > > Volkert
> > >
> > >
> > >
> > >
> > > _______________________________________________
> > > Magritte, Pier and Related Tools ...
> > > https://www.iam.unibe.ch/mailman/listinfo/smallwiki
> > _______________________________________________
> > Magritte, Pier and Related Tools ...
> > https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>
> --
> www.nivoba.de
>
> "The more complex an object, the larger the investment in learning to
use it, and the greater the resistance to abandon it."
>
[View Less]
#1.
locationDefinition
^ #( ( 2 '63450af8d9c2e17b' ) ( 30 'iaojv41bw67e0tud5m9rgplqfy8x3cs2kznh' )
)
Why is '63450af8d9c2e17b' all mixed up (as opposed to '012345...')? I'm
cleaning some code and feel like I'm missing something here...
#2. Is anyone using #baseUrl? There are no senders in the image...
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/MAExternalFileModel-Questions-tp4711175.html
Sent from the Magritte, Pier and Related Tools mailing list archive …
[View More]at Nabble.com.
[View Less]
I would like to deploy Pier based blog (actually migrate the old one).
Which combination of Pier (2.x, 3.x) and Pharo (1.2, 2.x, 3.x) version
would be a good pick?
I would like it to be:
- stable
- reasonably fresh, so it could stay as is deployed for several years
- working without tinkering
If they exist, link to such workable configuration or downloadable image
would be more than I dare to hope ;)
Many thanks,
davorin
http://www.cloud208.com/
Hi all,
As you probably all know I have made a library (QC Magritte) that is build on top of Magritte. I think it contains a lot of good add ons, maybe not structured enough. I am trying to clean this code up, so it can be used easily by all. At this point I want to move 2 things to Magritte. One as a change, and one as an add-on:
Change:
I would like to modify the basic MAContainerComponent to cache the description and pre-process this with the description builders. I believe this is a …
[View More]missing hook in Magritte. It is easy to add, and you do not notice it, if you do not use it. Also it applies to all platforms, not just to Seaside, so if you think this is a good idea, I will also modify the glamour container. The following problems can be solved using builders:
- separating display from the model. Now you have to set your custom component classes in the model. It is much more elegant to do this from the display side. To add a builder it can set the component class for each type of description (using visitors), for the application you want to show.
- adding security. When you pre process the description before showing it, you can set fields to readonly, or remove them entirely from the description if the user is not allowed to see those properties.
Add-On:
I would ilke to add a package to Magritte3-AddOns called Magritte-Ajax. In this add-on I will put the things that allow Ajax rendering of the components. Of course this is on top of seaside and only valid for seaside, but that is why I think it should be an add-on and not in the core. This would be:
- The AjaxMemento. (QCAjaxMemento)
- the extension methods for Ajax rendering.
- the extension methods for the added Ajax properties.
- A renderer, that renders the component, using Ajax. (QCGroupedFormRenderer)
Please let me know if you think this is a good idea. If you know a better place to do these things, or to put the code, let me know.
If people have questions about QC-Magritte, please do not hesitate to ask them. I will try to respond them fast and I will be available on Skype and Google Hangouts.
Cheers,
Diego
[View Less]
Ciao,
i have some descriptions and i need to setup autofocus to a specific description when i open a form.
I don't found any description property for setup it.
I create for MADescription
beAutofocus
self propertyAt: #autofocus put: true
isAutofocus
^ self propertyAt: #autofocus ifAbsent: [ false ]
and for MADescriptionComponent
isAutofocus
^ self magritteDescription isAutofocus
And for MATextInputComponent i change the:
renderInputOn: html
self …
[View More]isAutofocus
ifTrue:[html textInput
id: self labelId;
autofocus;
on: #string of: self]
ifFalse:[ html textInput
id: self labelId;
on: #string of: self]
Now I wonder if it is a good solution ?
Because i need to change some rendering for other components ( MATextAreaComponent - MASelectListComponent ecc.. ecc )
Any considerations are welcome.
Thanks,
Dario
[View Less]
Mariano wrote:
>Any hint on how to implement that adapting your very cool stuff will be very much appreciated!
Instead of a single id, you'd then use a set of pairs id->containerDescription, I guess.
You might want to use a separate class for that once you want to minimize updates.
And be careful to avoid cycles.
Stephan
Hi Dario,
Please make sure the subject fits the question.
You probably want to download a qcmagritte image from the pharocontributions ci.
That allows you to start directly with a complete image, and to compare what you
are loading to what the ci image loads.
Common problems are:
- using the right repositories, as lots of repositories were migrated to smalltalkhub;
- using a package cache already containing "newer" versions of packages
Stephan
Hi guys. I have lots of seaside forms with magritte. One problem I have now
is that I want to refresh the form once an item from a combo list has been
selected. For example, the typical set country / state (or provice). In
other words...I want to refresh the form once certain fields are choose.
I did not find this functionality available in Magritte-Seaside. I am
missing something?
Thanks in advance,
--
Mariano
http://marianopeck.wordpress.com
Mariano wrote
>I did not find this functionality available in Magritte-Seaside. I am missing something?
Yes. QCMagritte.
QCDynamicSelectComponent I think.
Stephan