Re: [fossil-users] Compilation with SSL option fails on Win7

2014-09-29 Thread Joe Mistachkin
Tony Papadimitriou wrote: link /nologo /subsystem:console /opt:ref /debug /out:out32\md4test.exe @C:\Users\Tony\AppData\Local\Temp\nm7D8C.tmp LINK : fatal error LNK1181: cannot open input file 'link.obj' NMAKE : fatal error U1077: 'C:\Program Files\Microsoft Visual Studio

Re: [fossil-users] Compilation with SSL option fails on Win7

2014-09-29 Thread Stephan Beal
On Mon, Sep 29, 2014 at 5:05 PM, Joe Mistachkin sql...@mistachkin.com wrote: Tony Papadimitriou wrote: NMAKE : fatal error U1077: 'pushd' : return code '0x2' Stop. Pure speculation: is it a side-effect of the missing pushd, causing it not to be able to (A) change dirs and (B) find the

Re: [fossil-users] Compilation with SSL option fails on Win7

2014-09-29 Thread Joe Mistachkin
Stephan Beal wrote: Pure speculation: is it a side-effect of the missing pushd, causing it not to be able to (A) change dirs and (B) find the file(s) it expects in those dirs (because (A) failed)? Great catch. The MSVC makefile is designed to be used from the directory it is contained

Re: [fossil-users] versioning system suggestions for a musician?

2014-09-29 Thread Stephan Beal
On Mon, Sep 29, 2014 at 5:59 PM, Andy Goth andrew.m.g...@gmail.com wrote: One thing that is very un-RCS-like that I'm trying to do is reorder commits. I say this because I have like 20 files that are all the same song. I need to just be like these 20 files go to this song/project and then

Re: [fossil-users] Pessimism about CommonMark in fossil

2014-09-29 Thread Ron W
On Sun, Sep 28, 2014 at 11:36 AM, Natacha Porté nata...@instinctive.eu wrote: as you might already know, I'm the primary author of libsoldout and its integration into fossil to perform markdown-to-html conversion. If you followed recent news, you might have heard of CommonMark[1], ...

Re: [fossil-users] Pessimism about CommonMark in fossil

2014-09-29 Thread Ron W
A PS to my previous post: Maybe could call the mark up implemented by libsoldout SoldOut, a safe subset of MarkDown / CommonMark. ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] Compilation with SSL option fails on Win7

2014-09-29 Thread tonyp
I'm afraid several changes were made that were not directly related to the problem I was having at all, even if they may have added greater robustness to the build process. (BTW, I always did NMAKE from within the win subdirectory that contains the makefile.msc so that was definitely not part

Re: [fossil-users] Proposed improvement to inheritedprivilegessubscripts.

2014-09-29 Thread Ron W
On Sun, Sep 28, 2014 at 9:21 AM, Scott Robison sc...@casaderobison.com wrote: On Sep 28, 2014 12:49 AM, Stephan Beal sgb...@googlemail.com wrote: Sidenote: i'm curious why most people prefer postscript addition, when prefix is never slower and sometimes faster. (Not that it matters one

Re: [fossil-users] versioning system suggestions for a musician?

2014-09-29 Thread Andy Goth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 9/29/2014 1:45 PM, Ron W wrote: Hello, Andy. Haha, actually I just forwarded the original post on behalf of Inverse Phase who is not subscribed. I forwarded your reply because you Cc:'ed me rather than him. Replies in this thread need to be

Re: [fossil-users] versioning system suggestions for a musician?

2014-09-29 Thread Andy Goth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 9/29/2014 11:04 AM, Stephan Beal wrote: On Mon, Sep 29, 2014 at 5:59 PM, Inverse Phase inverseph...@gmail.com wrote: One thing that is very un-RCS-like that I'm trying to do is reorder commits. I say this because I have like 20 files that

Re: [fossil-users] versioning system suggestions for a musician?

2014-09-29 Thread Ron W
On Mon, Sep 29, 2014 at 3:50 PM, Andy Goth andrew.m.g...@gmail.com wrote: On 9/29/2014 11:04 AM, Stephan Beal wrote: In such a case Fossil would record both commits but store the file's contents in a single artifact (because it recognizes them by SHA1 hash, and the hash would be the same).

[fossil-users] Username in report query

2014-09-29 Thread Tomek Kott
Hi there, Is there a way to get the current username into the report dynamically? Or, can I use TH1 within the query code? I'm guessing the answer is no for security reasons. I just tried it -- I was trying to filter on the $login variable that should always be accessible (i.e. WHERE creator

Re: [fossil-users] Username in report query

2014-09-29 Thread Joe Mistachkin
Tomek Kott wrote: Is there a way to get the current username into the report dynamically? Or, can I use TH1 within the query code? The following might work: SELECT title AS 'Summary' FROM ticket WHERE status = 'Open' AND assignee = $login It

Re: [fossil-users] versioning system suggestions for a musician?

2014-09-29 Thread Andy Goth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 9/29/2014 4:28 PM, Ron W wrote: Does Fossil hash only the file content or does it include meta data, such as the file name, in the hash, as well? Only the file content. Confirm this by running sha1sum on a file, then running [fossil artifact]