Lookinh for 'A tutorial on Pier styles'

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Lookinh for 'A tutorial on Pier styles'

hhs@lexdb.net
Dear all

In http://www.iam.unibe.ch/pipermail/smallwiki/2008-August/003963.html David Zmick announced 'A tutorial on Pier styles'.
It should be under

http://w337.uni.cc/PierDocs/customizingLook.pdf

However this site cannot be reached.

Did you download it? Could you please either repost it somewhere or send it to me by email, please?
Or maybe you have the similar content in a different form?

Kind regards

Hannes Hirzel


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Lookinh for 'A tutorial on Pier styles'

David Zmick
sorry about that, that site is down, and will be down for a very long time.  my tutorial is outdated, so i would not recomend following it, even if i could get it to you.  I haven't used the most recent version of Pier yet, so I can't be of much help to get you working in the new version :(

On Sat, Oct 11, 2008 at 3:02 PM, [hidden email] <[hidden email]> wrote:
Dear all

In http://www.iam.unibe.ch/pipermail/smallwiki/2008-August/003963.html David Zmick announced 'A tutorial on Pier styles'.
It should be under

http://w337.uni.cc/PierDocs/customizingLook.pdf

However this site cannot be reached.

Did you download it? Could you please either repost it somewhere or send it to me by email, please?
Or maybe you have the similar content in a different form?

Kind regards

Hannes Hirzel


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki



--
David Zmick
/dz0004455\
http://dz0004455.googlepages.com
http://dz0004455.blogspot.com


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Lookinh for 'A tutorial on Pier styles'

Tudor Girba-3
In reply to this post by hhs@lexdb.net
Hi,

Could you detail what you are interested in?

Cheers,
Doru


On Oct 11, 2008, at 10:02 PM, [hidden email] wrote:

> Dear all
>
> In http://www.iam.unibe.ch/pipermail/smallwiki/2008-August/ 
> 003963.html David Zmick announced 'A tutorial on Pier styles'.
> It should be under
>
> http://w337.uni.cc/PierDocs/customizingLook.pdf
>
>
>
>
>
> However this site cannot be reached.
>
> Did you download it? Could you please either repost it somewhere or  
> send it to me by email, please?
> Or maybe you have the similar content in a different form?
>
> Kind regards
>
> Hannes Hirzel
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki

--
www.tudorgirba.com
www.tudorgirba.com/blog

"Every successful trip needs a suitable vehicle."




_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Lookinh for 'A tutorial on Pier styles'

hhs@lexdb.net
Dear Tudor,

Tudor Girba <[hidden email]> hat am 12. Oktober 2008 um 01:35 geschrieben:

> Hi,
>
> Could you detail what you are interested in?
>
> Cheers,
> Doru
>
>

Thank you for this offer.
I am currently experimenting with the PRDistribution class as you have indicated in an earlier mail
( http://www.iam.unibe.ch/pipermail/smallwiki/2008-October/004067.html ).

The root method (see below) in particular shows nicely how a wiki model is constructed.

My conclusion so far:
I can subclass PRDistribution to experiment with different wiki setups.
I can construct different environment pages and then assign them with localEnvironment: to a PRPage
object. With this knowlegede alone quite some flexibility in style is possible.

Kind regards
Hannes Hirzel





PRDistribution>>root
    self rootPage
        addChild: (self blog
                addChild: self blogArchiveWidget;
                yourself);
        addChild: (self aboutPage
                addChild: self syntaxPage;
                addChild: self shortcutsPage;
                yourself);
        addChild: (self environmentPage
                addChild: self headerPage;
                addChild: self siteTitlePage;
                addChild: self footerPage;
                addChild: self menuWidget;
                addChild: self childrenWidget;
                addChild: self breadcrumbWidget;
                addChild: self googleAnalyticsWidget;
                addChild: self sitemapPage;
                addChild: self viewsPage;
                addChild: self commandsPage;
                addChild: self loginCommandWidget;
                addChild: self contentsWidget;
                addChild: self stylesheetFile;
                addChild: self postTickerWidget;
                addChild: self blogArchiveWidget;
                addChild: self searchWidget;
                addChild: self poweredPage;
                yourself);
        addChild: self blogEnvironmentPage;
        addChild: self mainEnvironmentPage;
        addChild: self metaEnvironmentPage;
        addChild: self systemManagementPage.
    self rootPage localEnvironment: self mainEnvironmentPage.
    self blog localEnvironment: self blogEnvironmentPage.
    self aboutPage localEnvironment: self environmentPage.
    self environmentPage localEnvironment: self metaEnvironmentPage.
    self mainEnvironmentPage localEnvironment: self metaEnvironmentPage.
    self metaEnvironmentPage localEnvironment: self metaEnvironmentPage.
    self systemManagementPage localEnvironment: self metaEnvironmentPage.
    self rootPage localStyleSheet: self stylesheetFile.
    self rootPage enumerator
        with;
        all;
        do:
            [ :each |
            each securityDecoration owner: self kernel users anyOne.
            each securityDecoration group: self kernel groups anyOne ].
    self makePrivate: self environmentPage.
    self makePrivate: self blogEnvironmentPage.
    self makePrivate: self mainEnvironmentPage.
    self makePrivate: self metaEnvironmentPage.
    self makePrivate: self sitemapPage.
    self makePrivate: self viewsPage.
    self makePrivate: self commandsPage.
    self makePrivate: self systemManagementPage.
    ^ self rootPage



_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki