I was wondering if there are any objects that move Pier more towards a
social network site. Similar to the way Buddypress changes Wordpress into a
networking site.
Cheers
Andy
Hi,
I have downloaded Pier 3 one click build 113 from Lukas jenkins, and
it seems broken, when I try to access localhost:8080 I get some
exception (something to do with missing hasCookieInContext)
Davorin Rusevljan
http://www.cloud208.com/
p.s.can Pier3 be used with Pharo 1.4? (I have noticed that one click
from jenkins is based on 1.3). Or is that one of those questions that
are better not to be raised? :)
Hello everyone,
I am have no prior Pier/Magritte knowledge, just some basic Seaside;
so apologies for my stupid questions...
I would like use Pier to write a "book" using its book feature.
Unfortunately I didn't find any tutorial or instructions on how to do
that... Could you point me in the right direction?
Also, I've seen from the ESUG slides that a new version exists
(Pier3). Is it released? Or still in development?
Many thanks in advance,
Sebastian
Hi,
I would like to make Pier Book save everything to files (one per
chapter for example) so that I can use a DVCS to version control the
book and allow authors to write with their preferred text editors if
they want to.
What is already there? What needs to be done?
Thank you
--
Damien Cassou
http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them
popular by not having them." James Iry
I've uploaded some modifications to Pier-Book-EPUB. Let me know if there
are any problems. Here's what's changed:
(1) stylesheets - any localStyleSheet that is defined in the chain from
book/part/chapter, are now included in the zip archive, and linked in
the corresponding chapter.html file. Your EPUB book formatting may
change, if a stylesheet gets included.
(2) The +value:book.contents+ now generates correct links.
(3) A major flaw was fixed - previously, extra section/subsection/etc.
files were being added to the zip archive. These should not have been
present, since the chapter file has all the content.
Many testcases are included. Hopefully these will prevent the
functionality from changing or regressing without warning.
Hello.
If somebody are interested in to use the new asynchronous tracking code
snippet with Pier, I updated the PRGoogleAnalyticsWidget in the attached
package. I should use the new version to be able to use google web master.
Question, I don't use PRWebmasterToolsWidget, is that really needed or is
an alternative?
if you give a try and you aren't able to see data in your account (and you
are a newbie like me with this :), note that Google Analytics generally
updates your reports every 24 hours:
https://support.google.com/analytics/bin/answer.py?hl=en&answer=1009219&top…
Regards
Hi,
i have a class Account with some descriptions.
Now based on my application state i'm interested to select and display a sub collections of the relative descriptions.
In the Magritte 2.0 i redefine the instance description method ( in the example i implemented it with descriptionFor: )
and at this time i select the relative class description and return it asContainer.
Example:
aMember := Account new.
cllDsc:= aMember descriptionFor: #( #update).
rsl:= self call: (( cllDsc asComponentOn: aMember )
addValidatedForm ;
addMessage: 'Aggiornamento item ' , aMember label ;
yourself).
Now i work to port the code to Magritte 3.
My question is :
what is the best solutions to create dynamic selection of the descriptions relative to one instance ?
I'm new to Magritte3 and i don't know the engine.
Can anyone give me some guidance?
Thanks,
Dario
I'm just guessing, but I bet if you change "Address" to "address" in
the JSON string it just might work.
I'm also posting this to the Magritte list just in case...
Happy Trails
John
On Wed, Jun 20, 2012 at 8:23 AM, Tomas Kukol <tomas.kukol(a)gmail.com> wrote:
> Hello,
>
> I have created a test for #fromJson: message.
>
> MJTestFromJson >> testFromJsonWithAddress
> | person address |
> person := MJTestPerson fromJson:
> '{"Name":"Tomas","Address":{"PostalCode":"19800","City":"Prague"}}'.
>
> self assert: person name equals: 'Tomas'.
> address := person address.
> self assert: address isNil not.
> self assert: address postalCode equals: '19800'.
> self assert: address city equals: 'Prague'.
>
> But the test fails because it cannot find PostalCode in MJTestPerson
> instace (should be probably in MJTestAddress). Is it a problem of my
> #fromJson: usage or wrong implementation of JSON deserialization?
>
> Thanks for any information.
>
> Tomas Kukol
> _______________________________________________
> seaside mailing list
> seaside(a)lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>