I saw some references to it in another older thread from last year..
User: Input is conflicting with concurrent modification
In my case, my object being edited through Magritte was read in by
Glorp..
I'm using Keith's RealMemento (on VW).. I believe it thinks that the
objects
are different even though I made no changes. I guess its safe to
assume I need
to see why the comparison is failing? Any other suggestions would be
appreciated!
-- Rick
My current website is driven by Perl Template Toolkit, generated from source
files that are managed in git. The theory is that any of the webmasters who
want to edit the website can do so in an offline fashion (at 30k feet, or on a
cruise ship, for example), and then merge the changes up to the live site,
possibly resolving any conflicts that may have happened in the meanwhile.
Is there a way that I can achieve something similar with Pier? As in, have
some way to serialize and restore the current pages so that they are treated
sensibly by git as a collection of files, or perhaps as code so that they can
be tracked with Monticello?
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn(a)stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion
The gemstone/s port, does it automatically persist to the Gemstone DB?
--
Are there any links for learning about CSS and Pier?
I've been looking at the css and it appears to be blueprint css based.
Are all the css definitions required? How does one know what is needed
and what isnt?
Hi,
I am trying to load a couple of Pier Addons, but several of them seem
to depend on the MADistribution class.
I suspect this problem is due to some missing package in my image. Any
idea where I can find it?
Cheers,
Doru
--
www.tudorgirba.comwww.tudorgirba.com/blog
"Not knowing how to do something is not an argument for how it cannot
be done."
Hi,
I have a big data model that I have split into around 10 model
classes, each with its own set of Magritte descriptions. Now I'd like
to put several of them into a single Magritte form. In other words, I
want to have the form fields of model 1 and model 2 on the same page,
but only one OK and one Cancel button. What would be the simplest way
to do that?
I found this snippet for re-arranging fields / descriptions [1]:
buildComponentFor: aModel
^((ModelClass descriptionFieldOne, ModelClass descriptionFieldTwo,
ModelClass descriptionFieldThree)
componentRenderer: MACssRenderer;
asComponentOn: aModel)
addValidatedForm;
yourself
but it is using a single model object.
Thanks in advance
Matthias
[1] http://onsmalltalk.com/programming/smalltalk/using-magritte-with-seaside/