Photo gallery?
by Damien Cassou
Hi,
is there any photo gallery available for Pier? I mean a widget where I
could upload pictures and they are rendered in a nice way. I started
one 4 years ago but I abandoned it.
Bye
--
Damien Cassou
http://damiencassou.seasidehosting.st
5 years, 10 months
Magritte description for e-mail
by dtrussardi@tiscali.it
Hi,
i have some descriptions and one based on MAStringDescription for manage the e-mail reference.
Now i'm interested to create a MAReport with fields for management email.
Where for management i think a link to open new email directly from report :
html anchor attributeAt: 'href' put: 'mailto:', anObject emailBase.
How i can do it ?
Anyone create a specific MADescription for define e management email reference ?
Thank,
Dario
12 years, 9 months
source.lukas-renggli.ch offline
by Lukas Renggli
source.lukas-renggli.ch (Magritte, Pier, OmniBrowser, PetitParser,
Helvetia, ...) will be offline in the next couple of days as I am
moving the server to a new location. If you need to load code from
these repositories during that time please create a mirror in the next
12 hours.
Happy new year!
Lukas
--
Lukas Renggli
www.lukas-renggli.ch
12 years, 10 months
Re: MASelectionColumn >> renderCellLinkContent:on:
by Reza Razavi
At 09:43 09/12/2010, Lukas Renggli wrote:
>I've added you to the groups.
Thanks Lukas!
The following commit was successful.
/Reza
Name: Magritte-Seaside-razavi_acm_org.343
Author: razavi(a)acm.org
Time: 9 December 2010, 10:02:56 am
UUID: 2701011f-d24e-f14a-9e10-512f2500ef16
Ancestors: Magritte-Seaside-lr.342
In this method:
MASelectionColumn >> renderCellLinkContent:on:
changed the following:
html anchor class: (selected isNil ifFalse: [ 'selected' ]);
to:
html anchor class: (selected ifTrue: [ 'selected' ]);
12 years, 11 months
MASelectionColumn >> renderCellLinkContent:on:
by Reza Razavi
Hi,
In the following method:
MASelectionColumn >> renderCellLinkContent:on:
I was wondering if this:
html anchor class: (selected isNil ifFalse: [ 'selected' ]);
Shouldn't be rather like this:
html anchor class: (selected ifTrue: [ 'selected' ]);
Note: "selected " is computed as follows:
selected := self isSelected: anObject.
Which in principal returns a boolean.
Regards,
Reza
12 years, 11 months