[fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Ron Aaron
Hi all - I've got a site where I want to be able to have text in both English and Hebrew. Hebrew paragraphs should be styled as direction: rtl; text-align: right;. When I try to add a .hebrew style (or div.hebrew or p.hebrew), the style does not seem to take effect when I type in for example:

Re: [fossil-users] Create a download page for releases hosted by fossil

2011-04-22 Thread Felix Wolfheimer
The http://www.fossil-scm.org/ site runs off of CGI. (The source code for the server there can be seen at http://www.sqlite.org/docsrc/artifact/0f78441e2de25641b0) So the download files are just plain old content files that the server delivers. --- Thanks for this information. I think I

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Joshua Paine
On 4/22/2011 2:05 AM, Ron Aaron wrote: When I try to add a .hebrew style (or div.hebrew or p.hebrew), the style does not seem to take effect when I type in for example:div style=hebrew some hebrew/div (nor forp tags). Well, it would need to be class=hebrew rather than style=hebrew. But

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Ron Aaron
I meant 'class=' actually. I thought 'class' was one of the attributes *not* stripped. It shouldn't be, IMO. Turning on HTML mode is more than I want to do for this site; all I'm really looking for is the ability to properly display RTL text. On 04/22/2011 01:43 PM, Joshua Paine wrote: On

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Stephan Beal
On Fri, Apr 22, 2011 at 12:53 PM, Ron Aaron r...@ronware.org wrote: I meant 'class=' actually. I thought 'class' was one of the attributes *not* stripped. It shouldn't be, IMO. http://www.fossil-scm.org/index.html/wiki_rules says: All attributes are checked and only a few benign

[fossil-users] leaves which i cannot close?

2011-04-22 Thread Stephan Beal
Hi, all! i am seeing a strange phenomenon: http://fossil.wanderinghorse.net/repos/whio/index.cgi/leaves that page shows shows one leaf. When i run it locally using fossil ui, i see 3. For two of those, when i go to the 'edit' page for the leaf i am _not_ offered the close leaf option. i am only

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Richard Hipp
On Fri, Apr 22, 2011 at 8:14 AM, Stephan Beal sgb...@googlemail.com wrote: Hi, all! i am seeing a strange phenomenon: http://fossil.wanderinghorse.net/repos/whio/index.cgi/leaves that page shows shows one leaf. When i run it locally using fossil ui, i see 3. For two of those, when i go to

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Stephan Beal
On Fri, Apr 22, 2011 at 2:27 PM, Richard Hipp d...@sqlite.org wrote: To rebuild the LEAF table from canonical information, run: fossil leaves --recompute Please try that on both client and server and see if it resolves the issue. Of course, if it does, we still have to try to figure

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Richard Hipp
On Fri, Apr 22, 2011 at 8:48 AM, Stephan Beal sgb...@googlemail.com wrote: On Fri, Apr 22, 2011 at 2:27 PM, Richard Hipp d...@sqlite.org wrote: To rebuild the LEAF table from canonical information, run: fossil leaves --recompute Please try that on both client and server and see if it

Re: [fossil-users] How can I get the Fossil CSS to show RTL text properly?

2011-04-22 Thread Bill Burdick
You can add type=hebrew to your elements and use CSS rules like this: *[type=hebrew], *[type=hebrew] * { ... } This will apply the style to elements with type=hebrew and all of their children. Bill On Fri, Apr 22, 2011 at 6:17 AM, Stephan Beal sgb...@googlemail.com wrote: On Fri, Apr 22,

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Richard Hipp
(Discussion moved back to the mailing list) On Fri, Apr 22, 2011 at 10:47 AM, Stephan Beal sgb...@googlemail.comwrote: On Fri, Apr 22, 2011 at 3:50 PM, Richard Hipp d...@sqlite.org wrote: I just checked in a change. If after upgrading and running rebuild you still see a discrepency, please

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Stephan Beal
On Fri, Apr 22, 2011 at 5:59 PM, Richard Hipp d...@sqlite.org wrote: The current definition of a leaf is this: A node that has no non-merge children with the same branch tag. ... You might argue that we should change the definition of leaf to be A node that as no children of any kind (merge

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Lluís Batlle i Rossell
On Fri, Apr 22, 2011 at 11:59:09AM -0400, Richard Hipp wrote: You might argue that we should change the definition of leaf to be A node that as no children of any kind (merge or non-merge) with the same branch tag. I'm not sure what the consequences of that change would be, but I'm betting

Re: [fossil-users] Create a download page for releases hosted by fossil

2011-04-22 Thread Felix Wolfheimer
I tried the approach with the small one-file web server suggested in one of the replies to my question and it works fine. Fossil is started via cgi script and I can host all the stuff now using this small webserver. However, it took me a while to figure out that I need to copy all the

Re: [fossil-users] generating ticket lists as JSON from the command line

2011-04-22 Thread Bill Burdick
Apparently the URL timeline.rss?y=t will get you RSS for just tickets. Bill On Wed, Apr 20, 2011 at 11:07 AM, Stephan Beal sgb...@googlemail.comwrote: Hi, all! i finally found a good use-case for my sql-to-json tool: the past days someone has taken the time to file a few tickets in two

Re: [fossil-users] Create a download page for releases hosted by fossil

2011-04-22 Thread Joerg Sonnenberger
On Fri, Apr 22, 2011 at 07:57:16PM +0200, Felix Wolfheimer wrote: However, it took me a while to figure out that I need to copy all the dependencies (shared libraries) fossil depends on into the file structure accessed by the webserver. make LDFLAGS=-static Joerg

Re: [fossil-users] Create a download page for releases hosted by fossil

2011-04-22 Thread Felix Wolfheimer
True, but the libssl of my distro depends on a whole bunch of other libs. Many of them just offered as .so in the repos. So it was simpler for me to copy the shared libs to the chroot jail. However, if switching off the dependency on libssl for fossil it works with -static. Am Freitag, den

Re: [fossil-users] leaves which i cannot close?

2011-04-22 Thread Ron Wilson
On Fri, Apr 22, 2011 at 11:59 AM, Richard Hipp d...@sqlite.org wrote: You might argue that we should change the definition of leaf to be A node that as no children of any kind (merge or non-merge) with the same branch tag.  I'm not sure what the consequences of that change would be, but I'm

Re: [fossil-users] Create a download page for releases hosted by fossil

2011-04-22 Thread Martin Gagnon
Normally, libssl is disponible as a static library (libssl.a). This would simplify everything. What distro are you using ? - - Martin On Fri, Apr 22, 2011 at 3:04 PM, Felix Wolfheimer f.wolfhei...@googlemail.com wrote: True, but the libssl of my distro depends on a whole bunch of other libs.

Re: [fossil-users] Create a download page for releases hosted by fossil

2011-04-22 Thread Martin Gagnon
May be you should specify the -Bstatic from the makfile, to be sure static version of every libs are used. On Fri, Apr 22, 2011 at 7:06 PM, Martin Gagnon eme...@gmail.com wrote: Normally, libssl is disponible as a static library (libssl.a). This would simplify everything. What distro are you