Re: [fossil-users] remote server URL

2009-06-16 Thread Stephan Beal
and then... well, i have no idea what *should* happen then, actually. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] remote server URL

2009-06-16 Thread Stephan Beal
... That's the bit we're looking for, but without having to initiate a pull/push. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin

Re: [fossil-users] Using ticket system from command line

2009-08-06 Thread Stephan Beal
command there is append, but the others might need to be refactored to be reusable in that context. (The code is in src/wiki.c (grep for _cmd_), in case you'd like to take a whack at it.) :-? -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] fossil commit on afs volume disk i/o error

2009-08-09 Thread Stephan Beal
On Sun, Aug 9, 2009 at 7:33 PM, D. Richard Hipp d...@hwaci.com wrote: Note that you will need to set the FOSSIL_VFS environment variable in each shell before you start using fossil in that shell. Would that be better placed as a per-repository option? -- - stephan beal http

Re: [fossil-users] Fossil cannot add filenames with \*[]?

2009-08-17 Thread Stephan Beal
? The ?:* characters are forbidden by FAT/VFAT filesystems. i cannot account for the [] being forbidden - it may be limited on other platforms (i just tried it on WinXP and Solaris 10, and [] are allowed there). -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] Cannot checkout anonamously using CGI interface

2009-08-19 Thread Stephan Beal
cloning rights. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Several ideas towards a better UI

2009-09-08 Thread Stephan Beal
it to only the latest versions, but it's still got to reconstruct the page before it can perform the search. It could stuff that into an sqlite3 :memory: (or temp) db and perform the actual search from there. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] Getting fossil: not a valid object name for fossil info on files

2009-09-22 Thread Stephan Beal
. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] add rm directory

2009-09-25 Thread Stephan Beal
, but haven't looked, that the C code for adding this would be a mirror-image of the code used by fossil add dirname. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] compilation warning message: main_.c:828: warning: int format, pid_t arg (arg 3)

2009-10-21 Thread Stephan Beal
...) in inttypes.h. With those you can avoid hard-coding numeric size specifiers in printf()/scanf() format strings. They take some getting used to, but they are helpful when building across 32- and 64-bit. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] History for a particular file

2009-10-21 Thread Stephan Beal
to allocate on the first iteration and on iterations where the output is larger than any previous iteration). That is, if i remember the internals of Blob correctly. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list

Re: [fossil-users] fossil and zip files

2009-10-21 Thread Stephan Beal
seamlessly with a built-in wiki page for downloading pre-built binaries, that would be slick. Maybe a new wiki entry type [zip:UUID] or [UUID:zip] would create a link to the zip or expand to something readable for users without zip access? -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] Integration into Emacs Version Control

2009-10-28 Thread Stephan Beal
). :) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] HTTPS implementation

2009-11-04 Thread Stephan Beal
of it) doesn't support static linking anymore, at least not with system libs (e.g. libc and libnls). i don't remember with certainty if that limitation applies only to system libs or generically, however. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] The case for Markdown (yes, I rtfm)

2009-11-29 Thread Stephan Beal
. If we're counting votes, here's one for all of Joshua's arguments. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo

[fossil-users] url to view local, non-checked in wiki pages?

2009-11-29 Thread Stephan Beal
it. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

[fossil-users] feature proposal for anonymous login

2009-12-07 Thread Stephan Beal
_against_ this, i'll go ahead and commit it. This feature can currently be seen in action over at: http://fossil.wanderinghorse.net -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil

Re: [fossil-users] feature proposal for anonymous login

2009-12-07 Thread Stephan Beal
sets, we could copy that over the current config on demand. Which parts would need to be stored for each skin definition? e.g. CSS, header, footer... what else? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list

Re: [fossil-users] invalid placement of P tags in wiki lists

2009-12-07 Thread Stephan Beal
On Mon, Dec 7, 2009 at 7:44 PM, Stephan Beal sgb...@googlemail.com wrote: - The UL lists created by the wiki have a strangely-placed P tag in them. Thanks, Jeremy, for that quick fix (commit 6f0df6c741). But doesn't the same need to be applied to endAutoParagraph() as well? If it's not, UL/OL

Re: [fossil-users] feature proposal for anonymous login

2009-12-07 Thread Stephan Beal
://www.fossil-scm.org/index.html/vinfo/00b778bd585d92646741bca9755cbe6fa7cf4567 -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman

Re: [fossil-users] invalid placement of P tags in wiki lists

2009-12-08 Thread Stephan Beal
, you're right, i mis-read that inAutoParagraph as wantAutoParagraph. i'll get my change rolled back in the next few minutes. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http

Re: [fossil-users] File List via the Files Menu... Listing old files?

2009-12-08 Thread Stephan Beal
browsing an old version, we don't really want to see files which weren't in that version. That implies that we should mark old files using one convention and future files using another, e.g. [foo.c] for old and (foo.c) for exists-in-the-future. :-? -- - stephan beal http://wanderinghorse.net

Re: [fossil-users] Commit failing... retyping commit message

2009-12-09 Thread Stephan Beal
enter. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] user(), cgi(), wiki() report functions

2009-12-09 Thread Stephan Beal
it read-only? Perhaps fossil now cannot erase your login credentials? Try making it read/write, logging out, then making it read-only??? :-? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users

Re: [fossil-users] Commit failing... retyping commit message

2009-12-09 Thread Stephan Beal
or not that works depends largely on how the EDITOR arg is passed on to the system (as a single arg via execvp() and friends or as part of a concated string passed to system()). -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing

Re: [fossil-users] 3 Feature requests - globbing using the repository.

2009-12-09 Thread Stephan Beal
for that. That said, presumably when you rm a file, it already exists in the repo, and the chance of a significant loss due to an unwanted unlink() on the file seems to be small. :-? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil

Re: [fossil-users] Commit failing... retyping commit message

2009-12-09 Thread Stephan Beal
. IIRC, CVS and SVN leave a temp file if the commit fails. A clumsy workaround: in your editor, save without exiting, then save-as to a different name, then exit. fossil will pick up the first file and leave your new one intact. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] Commit failing... retyping commit message

2009-12-09 Thread Stephan Beal
] initial empty check-in (user: stephan tags: trunk) -m trumps -M, and if neither are given it falls back to the $EDITOR. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http

Re: [fossil-users] Commit failing... retyping commit message

2009-12-09 Thread Stephan Beal
On Wed, Dec 9, 2009 at 11:04 PM, D. Richard Hipp d...@hwaci.com wrote: On Dec 9, 2009, at 5:00 PM, Stephan Beal wrote: i've just added -M/--comment-file which does #2. If there are no objections to using -M/--comment-file for this, i will commit it. I was looking into storing the commit

Re: [fossil-users] Commit failing... retyping commit message

2009-12-09 Thread Stephan Beal
posts. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Commit failing... retyping commit message

2009-12-11 Thread Stephan Beal
); + exit(1); } } /* Step 1: Insert records for all modified files into the blob ** table. If there were arguments passed to this command, only -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil

Re: [fossil-users] Commit failing... retyping commit message

2009-12-11 Thread Stephan Beal
waiting :-D) Here it is: http://www.fossil-scm.org/index.html/vinfo/9517cc7486cb68df5de66ae7000337ea2d718574 :-D -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http

Re: [fossil-users] Commit failing... retyping commit message

2009-12-11 Thread Stephan Beal
useful. You're right - my if/else changes overlapped with yours and i mis-placed the new code. http://www.fossil-scm.org/index.html/vinfo/93efce820b7a0d624dcadd579c592f215df2c4ab Now the ci-comment will be saved for all cases except the empty message bail-out case. -- - stephan beal http

[fossil-users] default repo logo image

2009-12-14 Thread Stephan Beal
fossil repos use this image by default. Is there a way to get rid of the logo without having to add a small/placeholder image in its place? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users

Re: [fossil-users] How to merge a fork with binary files?

2009-12-14 Thread Stephan Beal
file), but no tools exist for generically merging binaries. i would assert that it _cannot_ be done generically because a merge requires some information about what is in the binary. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil

Re: [fossil-users] Manifest files

2009-12-18 Thread Stephan Beal
manifest uuid // dump only manifest.uuid to stdout manifest create // creates manifest + manifest.uuid :-? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] wiki link to tip zip archive

2009-12-19 Thread Stephan Beal
name containing only hex (e.g. deadbeef) somehow collides with a version number, which takes preference? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] Please contribute Fossil skins or themes

2009-12-19 Thread Stephan Beal
to the local server. i've tried different ports, as well as localhost and over my dhcp address, but the same results. Platform=Linux x86/32, gcc 4.4.1 :-? Doesn't server mode have some sort of trace/debug option? -- - stephan beal http://wanderinghorse.net/home/stephan

[fossil-users] getting 404 on update?

2009-12-20 Thread Stephan Beal
and fossil server responds again. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] getting 404 on update?

2009-12-20 Thread Stephan Beal
On Sun, Dec 20, 2009 at 12:53 PM, Stephan Beal sgb...@googlemail.comwrote: i was able to do an error-free update yesterday, but after switching to the binary in that update, i can neither run local server mode (connection reset by peer errors on connect), and update produces the above 404

Re: [fossil-users] how to keep two fossil servers in sync automatically ?

2009-12-21 Thread Stephan Beal
. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Anonymous login broken?

2009-12-28 Thread Stephan Beal
to them. But with a regular user, removing the IP address from the login cookie opens up the protocol to packet sniffing attacks, IIRC. I'll see what I can do... It might make sense to look at (or copy) how PHP handles this, as PHP's session support is quite good. -- - stephan beal http

Re: [fossil-users] What is maximum limit size of a .fsl file ?

2010-01-07 Thread Stephan Beal
for a fossil repository. i wouldn't even bother to put such large repos in source control - i'd just put the parts which have to be versioned AND will change often into source control, and store the rest as tar files or in a separate tree. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] How is 'gdiff' supposed to work?

2010-01-09 Thread Stephan Beal
, and it works like a charm. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Direct URL for downloading a file from the repository via CGI interface

2010-03-18 Thread Stephan Beal
, pid INTEGER REFERENCES c11n_SQLITE_TBL_N(rowid), class TEXT, name TEXT ); :-? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] Hyperlinks Disabled

2010-03-29 Thread Stephan Beal
, in effect, a new ZIP, so the amount of bandwidth wastage due to robots goes with each commit. :/ -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080

Re: [fossil-users] Attach

2010-03-29 Thread Stephan Beal
/Internet_Explorer) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Attach

2010-03-29 Thread Stephan Beal
drag). :) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Fossil GUI for local source tree operations

2010-04-01 Thread Stephan Beal
. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

[fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
looking for a linking solution which will work both in local server modes and CGI. :-? PS: this is not a big deal, just a minor annoyance. i'm not going to propose any new features to support it if this cannot be done already. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
(of course you have to edit your local hostfile ) The development team == me, so nobody's hurting from this. Locally i have/use vhosts, but i want to avoid setting up another subdomain on my provider just for this mini-project. Thanks for the attempt, though :). -- - stephan beal http

Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-06 Thread Stephan Beal
) from a wiki page running in ui mode. i think the higher-up dir would serve my purpose better than my current approach - i'll give that a try. :) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users

Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-07 Thread Stephan Beal
On Wed, Apr 7, 2010 at 12:37 PM, Stephan Beal sgb...@googlemail.com wrote: Yup. See: http://fossil.wanderinghorse.net/repos/JSONMessage/index.cgi/wiki?name=Sandbox i've put a link in the form [/repos] there and it resolves to: http://fossil.wanderinghorse.net/repos/JSONMessage/index.cgi

Re: [fossil-users] can this be done in fossil: hyperlinking to subdir of fossil repo

2010-04-07 Thread Stephan Beal
On Wed, Apr 7, 2010 at 1:10 PM, Joshua Paine jos...@letterblock.com wrote: On 04/07/2010 06:55 AM, Stephan Beal wrote: A link in the form a href='/repos'.../a resolves (incorrectly) to: http://fossil.wanderinghorse.net/repos/JSONMessage/index.cgi/%27/repos%27 In HTML, attributes may

Re: [fossil-users] Fossil import problem

2010-04-12 Thread Stephan Beal
remember the +x bit, because having an executable configure script is so common. (Now that i think about it, though, i don't know if the generated ZIP files carry on the +x bit.) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users

Re: [fossil-users] unexpected ticket behavior

2010-04-19 Thread Stephan Beal
to have a workaround). -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Didn't someone mention working on a fossil GUI

2010-04-29 Thread Stephan Beal
On Thu, Apr 29, 2010 at 8:39 PM, Stephan Beal sgb...@googlemail.com wrote: To this end, i have investigated several C-based JSON libraries, but so far i have found nothing which particularly pleases me (in terms of licensing and API interface). That said, the JSON format is simple enough

Re: [fossil-users] What he danger of allowing all Html

2010-05-06 Thread Stephan Beal
be interesting to know that Google Code wiki does this as well, only accepting certain tags and eliding most attributes: http://code.google.com/p/support/wiki/WikiSyntax -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users

Re: [fossil-users] Solaris Build missing stdint.h

2010-05-13 Thread Stephan Beal
, the fossil code aims to be C89-compliant? (In my own C projects, even those which are otherwise C89 compliant, i often do require these two, stdint.h for the fixed-size integers and inttypes.h for the portable printf/scanf specifiers.) -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] CGI issues

2010-05-20 Thread Stephan Beal
hosters? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Help to setup new fossil repository

2010-11-09 Thread Stephan Beal
/to/the/cgiscript.cgi. Then visit in in your browser: http://mydomain/cgi-bin/cgiscript.cgi that should do it. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] Help to setup new fossil repository

2010-11-09 Thread Stephan Beal
ignore most of what i wrote. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Possible to export revision history?

2010-11-10 Thread Stephan Beal
On Wed, Nov 10, 2010 at 6:09 AM, Gour g...@atmarama.net wrote: Excellent!!! Thank you very much. Amen! -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http

Re: [fossil-users] Wookoo! Google Code Wiki Syntax in fossil!

2010-11-13 Thread Stephan Beal
On Sat, Nov 13, 2010 at 11:24 AM, Stephan Beal sgb...@googlemail.comwrote: Here's are full instructions, and they can easily be adapter to other JavaScript-based wiki syntax parsers: Okay, well, almost... the parser is mis-parsing some bits which it doesn't mis-parse if i feed it the same

Re: [fossil-users] keeping /etc with fossil

2010-11-14 Thread Stephan Beal
-readable (e.g. /etc/shadow). -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Post Git import cleanup

2010-11-17 Thread Stephan Beal
the page again, but i would swear it was called gitsurgeon (or something very similar). Maybe someone else on this list happens to know what i'm talking about. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil

[fossil-users] how to get name of current wiki page via th1?

2010-11-18 Thread Stephan Beal
Hello, fossilers, In my wiki pages i like to have an H1 tag at the start with the page's name. (i know it's at the top of the page already, but i like having an H1.) Is there a way, using th1 or build-in wiki variables, to get the current page's name from within the page? -- - stephan beal

Re: [fossil-users] file browser change

2010-11-30 Thread Stephan Beal
the associated modification date, user, and last checkin comment. Just in case this is up for a vote: +1 :) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] A large repo import suceeded!

2010-12-02 Thread Stephan Beal
open', update it during 'update' ops, and nuke it during 'fossil close'? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo

Re: [fossil-users] Template repositories

2010-12-17 Thread Stephan Beal
newrepo cd newrepo f open ../newrepo.fsl f close # disassociates the files from the opened repo rm ../newrepo.fsl f new ../newrepo.fsl f open ../newrepo.fsl f add . f commit -m ... -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] basic questions about fossil

2010-12-17 Thread Stephan Beal
running and you can still visit it by re-opening your browser (by default: localhost:8080). Mildly annoying sometimes, i agree, but this makes the ui command simple to implement in fossil by re-using the server command. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] basic questions about fossil

2010-12-17 Thread Stephan Beal
of the box, which is (for me) the killer feature of fossil. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil

Re: [fossil-users] Please test the new stash command

2010-12-19 Thread Stephan Beal
.) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

[fossil-users] An annecdote on screwing up (and recovering) a broken fossil repo

2010-12-23 Thread Stephan Beal
you'll lose any un-pushed wiki/ticket/etc changes. Happy fossiling! -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo

Re: [fossil-users] An annecdote on screwing up (and recovering) a broken fossil repo

2010-12-23 Thread Stephan Beal
remembered the recent post about the overwrite file? prompt, and wanted to avoid tapping y/enter 50 times. (i probably could have used (yes | fossil open ../repo.fsl).) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list

Re: [fossil-users] An annecdote on screwing up (and recovering) a broken fossil repo

2010-12-23 Thread Stephan Beal
(or documentation) which uses the current name, and wouldn't make any difference for the majority of us. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil

Re: [fossil-users] An annecdote on screwing up (and recovering) a broken fossil repo

2010-12-23 Thread Stephan Beal
On Thu, Dec 23, 2010 at 5:49 PM, Stephan Beal sgb...@googlemail.com wrote: Again, i don't consider this to be a fossil problem, but stupid user error. Another point: this problem was a side-effect of my own personal workflow, using an operation which has obvious risks of making unwanted

Re: [fossil-users] An annecdote on screwing up (and recovering) a broken fossil repo

2010-12-23 Thread Stephan Beal
which fetch info from it. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

[fossil-users] Has anyone tried sharing a repo via DropBox?

2011-01-03 Thread Stephan Beal
never tried sharing such a repo with dropbox shared folders. If one of you is curious and sends me your dropbox user name i can set up a folder for us to try this out. :-? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users

Re: [fossil-users] Has anyone tried sharing a repo via DropBox?

2011-01-03 Thread Stephan Beal
be a problem. The main difference for people watching the repo would be that they never need to fossil pull because dropbox copies over the changes. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users

Re: [fossil-users] Please make shunning a first class feature.

2011-01-07 Thread Stephan Beal
that it may fall over at any moment - not something that inspires confidence. Just out of curiosity - does exporting the repo to git format and re-importing it get rid of shunned data (i don't know if they're carried across an export)? -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] Versioning without files

2011-01-11 Thread Stephan Beal
would, however, make things like GUIs much easier to write. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil

Re: [fossil-users] Versioning without files

2011-01-11 Thread Stephan Beal
, shell scripts of course can't easily parse JSON, but perl, python, java, C++, etc., all have good JSON libraries available. (The C JSON libs i've evaluated haven't excited me all that much, with the exception of one push-style parser which i really like.) -- - stephan beal http

Re: [fossil-users] possible mis-interaction between merge and stash?

2011-01-14 Thread Stephan Beal
On Fri, Jan 14, 2011 at 11:00 AM, Stephan Beal sgb...@googlemail.comwrote: and now i seem to be stuck. More attempts at recovery (just kind of randomly trying commands): stephan@ostwald:~/cvs/fossil/nosjob$ f checkout 3b4bf26af7 f: there are unsaved changes in the current checkout stephan

Re: [fossil-users] possible mis-interaction between merge and stash?

2011-01-14 Thread Stephan Beal
. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Fossil skins: how to create your own?

2011-01-14 Thread Stephan Beal
that enabling full HTML does not disable wiki markup. That means that wiki-like-markup in the HTML/script content will get hosed by the wiki marker-upper. (Been there, done that.) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil

Re: [fossil-users] Versioning without files

2011-01-14 Thread Stephan Beal
On Wed, Jan 12, 2011 at 11:57 AM, Stephan Beal sgb...@googlemail.comwrote: On Wed, Jan 12, 2011 at 8:54 AM, David Bovill da...@architex.tv wrote: On 11 January 2011 21:45, Joerg Sonnenberger jo...@britannica.bec.dewrote: There is libmj, which can be found in netpgp. It's less than 20KB

Re: [fossil-users] Automatic creation of file to wiki or embedded docs

2011-01-16 Thread Stephan Beal
the timeline page, if links are enabled then all your repo is belong to him. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo

Re: [fossil-users] Automatic creation of file to wiki or embedded docs

2011-01-18 Thread Stephan Beal
On Tue, Jan 18, 2011 at 11:26 AM, Stephan Beal sgb...@googlemail.comwrote: i hadn't considered that approach - i'll have to try that out. i can think of no reason that that shouldn't work. A quick check shows that those files get processed by fossil, as well, or my browser downloads them

Re: [fossil-users] Diff highlighting

2011-01-20 Thread Stephan Beal
:). -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Diff highlighting

2011-01-20 Thread Stephan Beal
On Thu, Jan 20, 2011 at 8:42 PM, Stephan Beal sgb...@googlemail.com wrote: Thank you for sharing! i thought i'd report that this works beautifully on Firefox but Chrome, though it does see the css (the DOM inspector shows the properties your code applies), it isn't colorizing as it should

Re: [fossil-users] Diff highlighting

2011-01-20 Thread Stephan Beal
re-load the css - the page inspector tool showed me that it was pulling it from the cache. Perhaps if i re-add the IE workaround, it will work now. The classes were being applied, but i had a cached css. -- - stephan beal http://wanderinghorse.net/home/stephan

Re: [fossil-users] Diff highlighting

2011-01-20 Thread Stephan Beal
keep it the way it is :). -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Which port is a repository being served on?

2011-01-26 Thread Stephan Beal
ensure a specific port in your app by passing the --port ### option. -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo

[fossil-users] The Stash: kudos and a real use case

2011-01-27 Thread Stephan Beal
what i wanted, because i was going to revert anyway. ~ make valgrind ... ./test And then simply re-apply the stash. You can of course swap back and forth at will. Great stuff :) -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil

Re: [fossil-users] Symbolic links in Fossil

2011-01-28 Thread Stephan Beal
-specific convenience objects, and not a feature which can be portably emulated. But have fun trying. i'll take back what i just wrote if someone can prove me wrong (show me the code, not the theory!). -- - stephan beal http://wanderinghorse.net/home/stephan

[fossil-users] how to bypass automatic .c-to-.h in fossil build?

2011-01-28 Thread Stephan Beal
, so it won't compile. :-? -- - stephan beal http://wanderinghorse.net/home/stephan/ ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] how to bypass automatic .c-to-.h in fossil build?

2011-01-28 Thread Stephan Beal
On Fri, Jan 28, 2011 at 7:13 PM, Stephan Beal sgb...@googlemail.com wrote: i'm trying to add cson_amalgamation.[ch] to the src dir in fossil. i've updated makemake.tcl, but when i build, main.mk is generating a cson_amalgamation.h which is stripped of typedefs for opaque struct types which

Re: [fossil-users] how to bypass automatic .c-to-.h in fossil build?

2011-01-28 Thread Stephan Beal
timeline.c can't see it. The special-case bits work just fine, so if you don't have a strong preference i would prefer to go with that route. PS: i will get the code license waiver sent off in the next couple of days, assuming i have your okay to proceed with including this. -- - stephan beal

  1   2   3   4   5   6   7   8   9   10   >