... I'm a fan of DocBook. The work flow and setup takes a little getting into but, as with most things, is fine once you get the hang of it. It has been...
hrz@...
Dec 1, 2005 6:27 pm
619
... Swetland just pointed me at this: http://www.methods.co.nz/asciidoc/ which is pretty sweet. Apparently it's being used for the git docs, among other...
... Would it be very inconvenient, in your situation, to do your heavy macro computation in your host language, before rendering the template? (I'm sincerely...
On Thu, 1 Dec 2005 15:46:46 -0500 Erik Rose <psuspam@...> ... I don't know about inconvenient, but it can certainly seem like the wrong way to do...
Adam Montague
amontague@...
Dec 1, 2005 9:22 pm
622
... I think I would agree, that clearsilver more tries to enforce separation of presentation and logic, rather than less work. We have another template...
Hi, hdf_set_value does not follow symlinks made by hdf_set_symlink, is this a bug or a feature? I know that I can workaround it by using hdf_get_obj to the...
Gerald Dachs
gda@...
Dec 2, 2005 9:06 am
624
hmm. I don't think its by intention, at least not that I can recall. Brandon ... -- "Only in America would you have a general in charge of the post office and...
... currently I use the following workaround: NEOERR* myhdf_set_value (HDF *hdf, char *name, char *value) { return hdf_set_value ( (name == NULL || name[0] ==...
Gerald Dachs
gda@...
Dec 2, 2005 10:12 am
626
... This is nonsense, it doesn't work if it doesn't exist already, stupid....
Gerald Dachs
gda@...
Dec 2, 2005 10:18 am
627
This is ugly, but it works: NEOERR* myhdf_set_value (HDF *hdf, char *name, char *value) { NEOERR *err; HDF *thdf = hdf; char *tname = NULL; if ((name != NULL)...
Gerald Dachs
gda@...
Dec 2, 2005 12:17 pm
628
... This patch works for me, tell me whether it is okay for inclusion, please. ... 14:21:55.000000000 +0100 +++ clearsilver-0.10.1/util/neo_hdf.c 2005-12-02...
Gerald Dachs
gda@...
Dec 2, 2005 1:40 pm
629
Has anybody adapted ClearSilver to use the Template Attribute Language? With Google, all that I have found so far is an XSLT script that converts a partial set...
... I used DocBook to write two largish software reference guides, which I continue to maintain, and I also like it a lot. My need was to work under Windows,...
The application I'm working on allows users to upload files to the CGI application. This has been working great with Clearsilver. Suppose a user interrupts an...
That depends. The default is that clearsilver unlinks the file after it creates it, but keeps the file open. This way, the file is automatically deleted when...
This patch lets hdf_set_value follow symlinks. I still would like to see a reaction. Please don't ignore this post again. If this is not okay, so tell me. ...
Gerald Dachs
gda@...
Dec 13, 2005 7:31 am
634
Hmm, I think there may be some problems with this, we'll probably need some unittests to make sure eveything still works correctly. I'd also do it without the...
Thanks for your fast reaction, this time :) ... of course, but after thinking about it a while I couldn't find a problem, because it is used only if there is a...
Gerald Dachs
gda@...
Dec 13, 2005 8:10 am
636
Two weeks later than I wanted to release it... but better late than never. I hope this version should fix all the problems people have had compiling...
I see that my patch made it nearly unchanged into this new release, thanks. I got not mentioned somewhere, but you can't have everything. Gerald...
Gerald Dachs
gda@...
Dec 15, 2005 8:30 am
638
I've added your name to the ChangeLog for the change. Brandon ... -- Windows NT crashed. I am the Blue Screen of Death. No one hears your screams. -- Peter...
The website says files to be included are searched for in the "HDF search path". But how exactly do I set this search path? Thanks Adam...
Adam Montague
amontague@...
Dec 20, 2005 7:07 am
640
... http://www.clearsilver.net/docs/c_api.hdf#hdf_search_path The CGI kit magic HDF vars are well documented in the mainline docs but this one isn't. ...
The HDF search path is the children of the hdf.loadpaths node, ie: hdf.loadpaths.0 = /home/blong/base/french hdf.loadpaths.1 = /home/blong/base Brandon ... -- ...
Hi, recently I discovered a strange behaviour, when I tried to calculate the length of a string inside of a macro. The following macro returns zero for any...
Hi, I tried to define a macro, that includes a file: <?cs def:display_option(optname) ?> <?cs linclude:SomeDefinedFilename ?> <?cs /def ?> This works, as long...
Back on the way to build cs on AIX 5.1 i used the latest version 0.10.2 of cs . The former problem ( regression test - test18 failed ) is gone with the new...
Any macro, or one that's defined outside the SomeDefinedFilename? Currently, macros don't work across linclude because of deallocation problems. It should be...
Hi folks, i wrote ... Ok , i found a solution by using ld_so_aix Right now these are the steps to build clearsilver 0.10.2 on AIX 5.1 with gcc 3.2.2 Build...