Hi,
in the magritte tutorial excercise the report is created with:
MAReport rows: self persons description: MAPersonModel description
The result is a table with
- an home address column displaying the street but not the complete
address
- a phone numbers column displaying the "kind" fields separated by
commas but not the numbers
Why is that?
How do I get the complete address?
Exercise 13 filters the columns to only display firstName, lastName,
email, and nationality.
How would I go about displaying the number field of the first phone number?
Thanks,
Florian
--
If c++ had garbage collection most programs would delete themself upon
execution.
Thanks. However, I was talking about actual (demo) galleries on the web to
see how they (can) look like.
Adriaan.
> The Gallery of Damien is in <http://source.lukas-renggli.ch/pieraddons>.
>
> Lukas
>
> On Wed, Dec 17, 2008 at 1:33 PM, Adriaan van Os <avanos(a)xs4all.nl> wrote:
>> Some urls to such galleries would be nice too.
>>
>> Adriaan.
>>
>>
>>> Dear List,
>>>
>>> I wish to use Pier to manage my pictures. What is the best library to
>>> use ?
>>> There is seachart, but photos does not seem to be its main focus.
>>> On squeaksource I can see projects like A PhotoGallery on the Seaside,
>>> PhotoBlog, PhotoCatalog, Photos Publisher
>>> Any comments on the project that are worth to see ?
>>>
>>> Cheers,
>>> Alexandre
>>> --
>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>> Alexandre Bergel http://www.bergel.eu
>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> SmallWiki, Magritte, Pier and Related Tools ...
>>> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>>>
>>
>>
>> --
>> http://www.a3aan.st
>>
>>
>> _______________________________________________
>> SmallWiki, Magritte, Pier and Related Tools ...
>> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>>
>
>
>
> --
> Lukas Renggli
> http://www.lukas-renggli.ch
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>
--
http://www.a3aan.st
Some urls to such galleries would be nice too.
Adriaan.
> Dear List,
>
> I wish to use Pier to manage my pictures. What is the best library to
> use ?
> There is seachart, but photos does not seem to be its main focus.
> On squeaksource I can see projects like A PhotoGallery on the Seaside,
> PhotoBlog, PhotoCatalog, Photos Publisher
> Any comments on the project that are worth to see ?
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>
--
http://www.a3aan.st
Dear List,
I wish to use Pier to manage my pictures. What is the best library to
use ?
There is seachart, but photos does not seem to be its main focus.
On squeaksource I can see projects like A PhotoGallery on the Seaside,
PhotoBlog, PhotoCatalog, Photos Publisher
Any comments on the project that are worth to see ?
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
All,
I'm having problem understanding how to customize Magritte/Seaside.
I have an object PXADataType with the following description:
descriptionValues
^ MAToManyRelationDescription new
classes: (Array
with: PXAQuantityValue
with: PXAQualityValue);
accessor: #values;
label: 'Werte';
priority: 100;
beDefinitive;
beOrdered;
yourself
This object has a collection of values accessible by #values where the
collection items can be of type PXAQuantityValue or PXAQualityValue.
When I call: an edit form on PXADataType using "(aPXADataType
descriptionEdit asComponentOn: aPXADataType) addValidatedForm" I do get
the values rendered as a report. However the only possibility to edit
the collection is by changing the order using "up"/"down".
What I would like to do is a extended report with a possibility to
add/change/delete the entries?
How can I change the default behaviour in this case?
Thanks for your help.
CU,
udo
Hi all,
I'm new to Pier. Yesterday, I moved my site from dokuwiki to Pier and
today I find that the squeak instance crashed and when restarted I get
the default Pier site. Is there a way to recover my data?
Cheers,
-Krishna
--
Why make things difficult, when it is possible to make them cryptic
and totally illogical, with just a little bit more effort?
- Aksel Peter Jorgensen
Hi
Just wondering how Pier deals with internal links in a document, looks
pretty obscure to me.
The straight way would go for *An anchor>#anchor* but it doesnt work.
Instead I get a structure creation link.
Then there is a brief note about a '@-' syntax in the FAQ
http://www.piercms.com/doc/faq?_s=0yEtAEezi_Bi-svF&_k=dJKceJ4N&_n&26#183366…
I try different thing, like *An anchor>@anchor*, *An anchor>@-
anchor*, *An anchor>.@anchor*
but well, no magic works and this is definitely not intuitive.
--
Simon
Hi list,
I have a doubt about how to solve a problem in a system I'm doing, I'll
start explaining the context:
The application is Pier based, but it is not a CMS (well, at least not
just a CMS), it adds functionality bu extending pier components and
commands.
There are some added data that should be persisted to file, in order to
be able to rebuild the image and has backups and so on...
And for consistency (and in a paranioc way, but needed because we are
keeping money ammounts, etc.) we are also persisting commans executed
by users, and then we are capable to rebuild the user account if
something happens.
For both persistency issues we are using SandstoneDB.
Well, the problem is when I want to persist pier commands (not those
created by us, but previous ones)... many has class references and
Sandstone tries to persist them too (and then SystemDictionary, and
then hangs).
My approach to solve this problem is adding a couple of methods to
PRCommand #toSandstone and #fromSandstone who changes class references
for symbols and viceversa.
But now I have other problem: not all the commands are so easy to solve
:) For example, those related to PRChangeCommand, it has a dictionary
(fields) with a magritte description... and again, a large set of
not-recordable data.
My questions is: how can I solve this problem? I can just serialize
(with SIXX or binary) fields, but that does not ensure data integrity
if I reconstruct it latter... or I can just manually get enough data to
reconstruct ir manually when needed... but I'm not sure if this is a
good approach or not.
Any opinion?
Thanks in advance,
Esteban
Hi Doru,
Maybe you could add the new videos I produced on http://www.piercms.com/doc/screencasts
?
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Dear List,
I have produce a number of video that summarize the experience I
gained with Pier.
The first one is about adding a news entry: http://www.vimeo.com/2344423
If you have any comments, I will be glad to take them into account
before producing the next videos.
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.