Hello, I'm currently dealing with a little problem structuring my kid templates: I would like to have several parts like navigation, admin boxes etc. in separate kid files. Following the first recipe from the kid recipes page I've built a navigation.kid which looks llike this:
------------ SNIP -------------- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"> <body> <div id="navigation" py:def="mainnavi()"> ... </div> </body> </html> ------------ SNIP -------------- and a welcome.kid which reads as follows: ------------ SNIP -------------- <?python import navigation ?> ... <body> ... <div py:replace="navigation.mainnavi()" /> </body> </html> ------------ SNIP -------------- That only works when compiling the navigation.kid by hand using "kidc navigation.kid". And it certainly only works until the next template update :-) I _know_ there was a mentioning of that problem on the list or somewhere in the documentation showing how to force compilation. I would very much apreciate a kick into the right direction ;) Thanks, Volker -- Dr. Volker Göbbels [EMAIL PROTECTED] Arachnion GmbH & Co. KG http://www.arachnion.de Sandkaulbach 4 Tel. ++49 (0) 241 5591106 52062 Aachen Fax ++49 (0) 241 5591107 Oxid Gold- und Technology Partner - Competence Site für CRM und CMS --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

