[fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Gour
Hello! In our search for adequate markup to be used for our upcoming open-source project, we stumbled upon AsciiDoc (http://www.methods.co.nz/asciidoc/) and, so far, like it very much and decided to use it instead of reST/Sphinx, markdown etc. However, the best part is that there is

Re: [fossil-users] How can I determine if a repository has actually changed?

2012-03-22 Thread Ron Aaron
OK, I've come up with a small bash script to get an 'id' which I can use to detect changes in a repo. Save the following to fossilid and make it executable: if [ ! -f $1 ] then echo fossilid needs the name of the repository to 'id' exit 1 fi configsha=`fossil config export all -R $2 - |

Re: [fossil-users] How can I determine if a repository has actually changed?

2012-03-22 Thread Ron Aaron
Sorry, the $2 needs to be a $1 -- that was a finger-flub on my part On 03/22/2012 09:13 AM, Ron Aaron wrote: OK, I've come up with a small bash script to get an 'id' which I can use to detect changes in a repo. Save the following to fossilid and make it executable: if [ ! -f $1 ] then

[fossil-users] fossil all ignore

2012-03-22 Thread Ramon Ribó
Hello, Currently the help of fossil all says: Respositories are automatically added to the set of known repositories when one of the following commands are run against the repository: clone, info, pull, push, or sync. Would not be more logical that it where: Respositories are

[fossil-users] embedding doxygen into wiki

2012-03-22 Thread ST
Hi, I try to place a link on the projects home page on the doxygen index.html file. Let's say I have folder project and project/doc/html/index.html is the file I would like to point my link on - how do I achieve this without providing the absolute path to the file, so that the link will work for

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Leo Razoumov
On Thu, Mar 22, 2012 at 03:12, Gour g...@atmarama.net wrote: Hello! In our search for adequate markup to be used for our upcoming open-source project, we stumbled upon AsciiDoc (http://www.methods.co.nz/asciidoc/) and, so far, like it very much and decided to use it instead of reST/Sphinx,

Re: [fossil-users] embedding doxygen into wiki

2012-03-22 Thread Bill Burdick
On Thu, Mar 22, 2012 at 6:09 AM, ST smn...@gmail.com wrote: Hi, I try to place a link on the projects home page on the doxygen index.html file. Let's say I have folder project and project/doc/html/index.html is the file I would like to point my link on - how do I achieve this without

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Gour
On Thu, 22 Mar 2012 09:01:17 -0400 Leo Razoumov slonik...@gmail.com wrote: Gour, could you, please, provide a demo so that one can see AsciiDoc + Fossil in action. http://fossil.atmarama.net/cgi-bin/ascii-fossil.fsl Sincerely, Gour -- One is understood to be in full knowledge whose every

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Ephrim Khong
Am 22.03.2012 15:39, schrieb Gour: On Thu, 22 Mar 2012 09:01:17 -0400 Leo Razoumovslonik...@gmail.com wrote: Gour, could you, please, provide a demo so that one can see AsciiDoc + Fossil in action. http://fossil.atmarama.net/cgi-bin/ascii-fossil.fsl I'm also very interested in a

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Bill Burdick
On Thu, Mar 22, 2012 at 9:52 AM, Ephrim Khong dr.khong+fos...@gmail.comwrote: Am 22.03.2012 15:39, schrieb Gour: On Thu, 22 Mar 2012 09:01:17 -0400 Leo Razoumovslonik...@gmail.com wrote: Gour, could you, please, provide a demo so that one can see AsciiDoc + Fossil in action.

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Stephan Beal
On Thu, Mar 22, 2012 at 3:52 PM, Ephrim Khong dr.khong+fos...@gmail.comwrote: I'm also very interested in a demonstration backend for using a different wiki markup language. http://fossil.wanderinghorse.net/repos/fwiki/editor/ (click on the README link in the left menu for details) That

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Gour
On Thu, 22 Mar 2012 15:52:12 +0100 Ephrim Khong dr.khong+fos...@gmail.com wrote: It seems, though, that the AsciiDoc-Backend simply translates text from AsciiDoc-Markup to Fossil-Markup. Correct. There is no real integration in fossil, and it seems that it can not be used from within

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Gour
On Thu, 22 Mar 2012 16:15:07 +0100 Stephan Beal sgb...@googlemail.com wrote: AsciiDoc sounds intriguing, though, and i will also be looking for a JS implementation of it. It is indeed...very capable to write complete books with index, bibliography, glossary...plus rich semantic. I like it

Re: [fossil-users] embedding doxygen into wiki

2012-03-22 Thread Bill Burdick
OK, it looks like you're willing to use more than just HTML there. Here's a way to get the prefix of the fossil URL. Look at the assignment of url in the markup function, here: https://chiselapp.com/user/zot/repository/fossil-pagedown/artifact/4bcb90437a6e33bbbcc7edf3b6a21de00889c05c Bill On

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Eric
On Thu, March 22, 2012 3:58 pm, Gour wrote: On Thu, 22 Mar 2012 16:15:07 +0100 Stephan Beal sgb...@googlemail.com wrote: AsciiDoc sounds intriguing, though, and i will also be looking for a JS implementation of it. It is indeed...very capable to write complete books with index,

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Leo Razoumov
On Thu, Mar 22, 2012 at 11:16, Gour g...@atmarama.net wrote: On Thu, 22 Mar 2012 15:52:12 +0100 Ephrim Khong dr.khong+fos...@gmail.com wrote: It seems, though, that the AsciiDoc-Backend simply translates text from AsciiDoc-Markup to Fossil-Markup. Correct. I think it would be better to

Re: [fossil-users] asciidoc-fossil-backend

2012-03-22 Thread Eric
On Thu, March 22, 2012 11:01 pm, Leo Razoumov wrote: On Thu, Mar 22, 2012 at 11:16, Gour g...@atmarama.net wrote: On Thu, 22 Mar 2012 15:52:12 +0100 Ephrim Khong dr.khong+fos...@gmail.com wrote: It seems, though, that the AsciiDoc-Backend simply translates text from AsciiDoc-Markup to