<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.lang.smalltalk.smallwiki">
    <title>gmane.comp.lang.smalltalk.smallwiki</title>
    <link>http://blog.gmane.org/gmane.comp.lang.smalltalk.smallwiki</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1898"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1897"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1896"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1893"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1892"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1890"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1889"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1887"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1883"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1880"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1879"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1878"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1874"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1871"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1868"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1867"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1861"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1860"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1853"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1852"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1898">
    <title>meta tags</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1898</link>
    <description>Hi,

I would like to give the Google Webmaster Tools a try, and for that I  
need to authenticate that I am the owner of the site. For this to  
happen, I need to add a meta tag in my Pier pages.

The only way I know is to go add it in the updateRoot method, but this  
should be supported by Pier at a user level. Is there a way to do  
this? If not, what would be the possible solutions?

Cheers,
Doru


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

"Every now and then stop and ask yourself if the war you're fighting  
is the right one."



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

</description>
    <dc:creator>Tudor Girba</dc:creator>
    <dc:date>2008-05-17T10:26:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1897">
    <title>Magritte question: how to describe a Dictionary?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1897</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Esteban Lorenzano</dc:creator>
    <dc:date>2008-05-07T19:17:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1896">
    <title>Magritte descriptions in hierarchies of classes</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1896</link>
    <description>Suppose I have a hierarchy like this:

Object subclass: #ClassA
instanceVariableNames: 'name'
classVariableNames: ''
poolDictionaries: ''
category: 'Example'

ClassA subclass: #ClassB
instanceVariableNames: 'bInstVar'
classVariableNames: ''
poolDictionaries: ''
category: 'Example'

ClassB subclass: #ClassC1
instanceVariableNames: 'c1InstVar'
classVariableNames: ''
poolDictionaries: ''
category: 'Example'

ClassB subclass: #ClassC2
instanceVariableNames: 'c2InstVar'
classVariableNames: ''
poolDictionaries: ''
category: 'Azteca-Model'

ClassA is just an abstract parent with the common functionality for the 
other classes. Same for ClassB.
Only objects from ClassC1 and ClassC2 are to be created.

Should I create a "descriptionName" method in the class side of ClassA 
to be inherited for ClassC1 and ClassC2 or should I create a 
"descriptionName" once for each of ClassC1, ClassC2.
The same question about the inst vars for ClassB.

Summary, when you have a previously created hierarchy of classes a</description>
    <dc:creator>Miguel Enrique Cobá Martínez</dc:creator>
    <dc:date>2008-05-05T23:28:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1893">
    <title>Descriptions  definition</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1893</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-05-05T14:51:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1892">
    <title>MASingleOptionDescription optionsAndLabels asDynamicObject d'ont work</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1892</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-05-05T13:46:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1890">
    <title>pier blog and google reader</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1890</link>
    <description>Hi,

I just noticed that Google Reader does not manage to read a Pier blog.  
I tried with both ming and Lukas, and it finds "no items".

Any idea why?

Cheers,
Doru

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

"When people care, great things can happen."



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

</description>
    <dc:creator>Tudor Girba</dc:creator>
    <dc:date>2008-05-03T20:45:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1889">
    <title>Smallwiki update</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1889</link>
    <description>There are new versions of both Smallwiki and Smallwiki SCG on Bern Store

Changes Smallwiki

- Metatag Redirect
- Metatag Custom RSS
- RSS fix moved here from Smallwiki SCG

Changes Smallwiki SCG

- Using new Google Analytics script
- No analytics for internal and logged in users
- Logged in users have access to internal pages

Alas I was not able to checkout Smallwiki in a fresh image to run the  
test (in the SCG wiki 9 tests fail due to changes in Smallwiki SCG).  
There seems to be an issue with Store and version ids.

cheers,
AA



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

</description>
    <dc:creator>Adrian Kuhn</dc:creator>
    <dc:date>2008-05-01T20:33:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1887">
    <title>TableDescription questions</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1887</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-04-30T20:13:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1883">
    <title>descriptionContainer addCondition</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1883</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-04-29T10:10:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1880">
    <title>ie6 cant update tables</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1880</link>
    <description>Hello Lukas,

I discovered that where

MAReport-renderContentOn:

creates a table with an ajaxId. If you try to use a scriptaculous 
updater on this id it works in firefox, but not in ie6. So it looks like 
we need an enclosing div

cheers

Keith


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

</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-29T01:23:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1879">
    <title>MAToOneRelationDescription dispaly data</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1879</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-04-28T20:58:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1878">
    <title>descriptionContainer addCondition</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1878</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-04-26T14:36:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1874">
    <title>Memory filling up</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1874</link>
    <description>I had some thing strange going on...

I had lots of instances of PRDocument, at one point it reported 88000...

The key to clearing them out appeared to be, re-initializing, 
PRMacroExpander,

Inspecting PRMacroExpander default, the #table dictionary of blocks, 
those blocks
had temps, with a #context defined, and that context had properties etc...

still it freed up 100Mb...

Keith




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

</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-23T23:52:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1871">
    <title>MASingleOptionDescription with add button</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1871</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Dario Trussardi</dc:creator>
    <dc:date>2008-04-23T15:43:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1868">
    <title>Minor Inconsistency</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1868</link>
    <description>When a PRPage is initialized it has a #document if however you edit that 
document and make it empty, the #document disappears, and #hasDocument 
reports false, even though it does really have a document, but it is empty.

Keith


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

</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-23T03:35:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1867">
    <title>Cool Idea!</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1867</link>
    <description>Hello Lukas,

The hierarchy of choices available as swappable replacements for 
PRPierFrame, is starting to mature.

The first, PRPierFrameCentral, implements the wiring in order for it to 
be the centre of attention as I suggested yesterday. It aims to preserve 
the existing behaviour, however it has a nice innovation:

If your site has no environment at all, it caches one for you. i.e. your 
layout can be provided as part of your PRPierFrame subclass, and does 
not need to be user visible or editable. If you edit the code that 
generates your layout directly, it will get used for the next session.

And that's not all. If you add an empty page, and set that as an 
environment in a structure's settings, it will automatically populate.

==
The second class PRPierBasicBP moves the layout to:

/environment/layout
/environment/style

Again it will be cached for you "off-site" until an environment is added.

==
A third class PRPierBasicCWS is a first attempt at an alternative to 
blueprint.
==
A fourth class is P</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-23T05:12:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1861">
    <title>What this for?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1861</link>
    <description>Hello Lukas,

I am curious as to what purpose this serves in the following method.

any clues?

Keith

-------

WAPierFrame-updateRoot: aHtmlRoot
 
.....most of the method snipped....
  
    "I have no idea what this library thing is?"
    
    (self environment propertyAt: #library ifAbsent: [ ^ self ])
        default updateRoot: aHtmlRoot


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

</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-22T03:38:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1860">
    <title>Cool Idea!</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1860</link>
    <description>Dear Lukas,

I think I am getting there...

One thing Pier has been lacking is a simple means of packaging up a 
configuration of Pier as a simple module.

Important methods for setting things up, such as #defaultEnvironment are 
on PRStructure of all places! Styles are here, layouts are there, and 
content is yet somewhere else (PRKernel class defaultRoot).

I have tried out a solution! Route everything through the PRPierFrame, 
then you can pick a PRFrame subclass in seaside/config, or embed it in 
another Seaside application.

1. Style Libraries (currently manually added in seaside/config)
2. Script Libraries (currently manually added in seaside/config)
3. Policy for finding Layout from the structure. (currently in PRStructure)
4. Policy for finding StyleSheets (currently in PRStructure)
5. Default Environment (currently in PRStructure)
6. Default Layout (currently in PRStructure)
7. Default Kernel Content (currently in PRKernel class)
8. Not Found Handler (currently in PRMain)
9. Forbidden Handler (curre</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-22T07:34:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1853">
    <title>Blueprint</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1853</link>
    <description>I am a bit stuck in a pre-Blueprint world. So I was having a look at it.

I loaded up the current, release of pier, and it is very clean and ready 
to be styled. I miss the tree view, has it gone because it doesnt fit in 
the layout?

Blueprint looks cool for some applications. I have one site which has a 
fairly fixed layout, so blueprint appears to me to be an ideal solution 
for that, but not, I fear for pier in general.

This appears to me to be a better fit, for general blogish/corporate sites.

http://www.contentwithstyle.co.uk/Articles/17/a-css-framework/

best regards

Keith


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

</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-21T18:43:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1852">
    <title>asComponent yields empty form</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1852</link>
    <description>
_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki</description>
    <dc:creator>Jacobsen Jörg</dc:creator>
    <dc:date>2008-04-18T12:20:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1845">
    <title>Styling Magritte</title>
    <link>http://comments.gmane.org/gmane.comp.lang.smalltalk.smallwiki/1845</link>
    <description>I am interested to know how people are managing to style Magritte Forms. 
I don't know if attachments get through but I have attached an image of 
what I have managed to achieve so far...

I dont know much about css, but I assumed that it was not possible to 
take the tables of field key/values generated by magritte and to move 
things around as much as I would like.

I produced my own renderer which renders the key/values, using divs. 
However I still have some problems. For example, the "Confirm" "Cancel" 
buttons are rendered outside of the form as a decoration. As such they 
have no knowledge of the form that they are operating on, and so render 
without any identifiable "class". Style applied to them applies to all 
uses of "Confirm"/"Cancel" buttons.

It looks to me like some re-architecting is needed here, its not that I 
dont like the use of the decorator in this instance. I am thinking that 
this is another instance where the lack of child parent communication is 
a problem.

regards

Keith

_______</description>
    <dc:creator>Keith Hodges</dc:creator>
    <dc:date>2008-04-17T17:55:39</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.smalltalk.smallwiki">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.smalltalk.smallwiki</link>
  </textinput>
</rdf:RDF>
