Re: [darcs-devel] darcs patch: Add links to darcs repositories to main webpage

2008-02-07 Thread David Roundy
Applied.  Thanks!

David

On Thu, Feb 07, 2008 at 02:42:42PM -0800, Jason Dagit wrote:
 Quick and dirty hack to add links to the darcs.net webpage.
 
 Please edit as needed.
 
 Thanks,
 Jason
 
 Thu Feb  7 14:41:20 PST 2008  Jason Dagit [EMAIL PROTECTED]
   * Add links to darcs repositories to main webpage
 

Content-Description: A darcs patch for your repository!
 
 New patches:
 
 [Add links to darcs repositories to main webpage
 Jason Dagit [EMAIL PROTECTED]**20080207224120] hunk ./doc/index.html.in 83
   lia href=http://bugs.darcs.net/?user=guest;pass=guest;Bug Tracking 
 System/a /li
   lia href=http://darcs.net/cgi-bin/darcs.cgi;Darcs repository 
 browser/a/li
  /ul
 +
 +  h3Darcs source repositories/h3
 +ul
 + lia href=http://darcs.net/repos/stable;Darcs Stable/a/li
 + lia href=http://darcs.net/repos/unstable;Darcs Unstable in Darcs 1.x 
 format/a/li
 + lia href=http://darcs.net/repos/unstable-hashed;Darcs Unstable in 
 hashed repository format/a/li
 +/ul

-- 
David Roundy
Department of Physics
Oregon State University
___
darcs-devel mailing list
darcs-devel@darcs.net
http://lists.osuosl.org/mailman/listinfo/darcs-devel


[darcs-devel] darcs patch: Add links to darcs repositories to main webpage

2008-02-07 Thread Jason Dagit
Quick and dirty hack to add links to the darcs.net webpage.

Please edit as needed.

Thanks,
Jason

Thu Feb  7 14:41:20 PST 2008  Jason Dagit [EMAIL PROTECTED]
  * Add links to darcs repositories to main webpage


New patches:

[Add links to darcs repositories to main webpage
Jason Dagit [EMAIL PROTECTED]**20080207224120] hunk ./doc/index.html.in 83
  lia href=http://bugs.darcs.net/?user=guest;pass=guest;Bug Tracking System/a /li
  lia href=http://darcs.net/cgi-bin/darcs.cgi;Darcs repository browser/a/li
 /ul
+
+  h3Darcs source repositories/h3
+ul
+ lia href=http://darcs.net/repos/stable;Darcs Stable/a/li
+ lia href=http://darcs.net/repos/unstable;Darcs Unstable in Darcs 1.x format/a/li
+ lia href=http://darcs.net/repos/unstable-hashed;Darcs Unstable in hashed repository format/a/li
+/ul
 
   /td
   td width=150/td 

Context:

[add more debug messages.
David Roundy [EMAIL PROTECTED]**20080207200156] 
[speed up pending handling.
David Roundy [EMAIL PROTECTED]**20080207200051
 In fixing a bug, I thoughtlessly made pending handling O(N^2) more often
 than it needs to be... which was the safe choice, because it was
 previously the fast code that had the bug.
] 
[add debug output regarding disabling of progress reports.
David Roundy [EMAIL PROTECTED]**20080207193719] 
[add progress reporting while writing patch file in record.
David Roundy [EMAIL PROTECTED]**20080207193649] 
[add a few more debug messages in record.
David Roundy [EMAIL PROTECTED]**20080207193626] 
[fix performance regression in unrecord.
David Roundy [EMAIL PROTECTED]**20080207193529
 This also reverts to the old behavior of producing unsorted patches when
 asked for record -a, but sorted patches when the -a flag is omitted.  :(
] 
[avoid giving excessive (usually useless) debug info.
David Roundy [EMAIL PROTECTED]**20080207191129] 
[define filterFL.
David Roundy [EMAIL PROTECTED]**20080207191113] 
[resolve conflict in Pull.lhs.
David Roundy [EMAIL PROTECTED]**20080206223143] 
[make Depends.lhs compile with type witnesses
Jason Dagit [EMAIL PROTECTED]**20080206214552] 
[ratify another use of hGetContents.
David Roundy [EMAIL PROTECTED]**20080206184718] 
[cleanup in Pull.lhs.
David Roundy [EMAIL PROTECTED]**20080206184600] 
[Test for issue436.
Eric Kow [EMAIL PROTECTED]**20080206163057
 As suggested by Edwin Thomson.
] 
[remove use of patchset_complement.
David Roundy [EMAIL PROTECTED]**20080206182548] 
[change Slurpy to not store the file as list of lines.
David Roundy [EMAIL PROTECTED]**20080206164113] 
[fix GHCFLAGS, so make ghci will work properly.
David Roundy [EMAIL PROTECTED]**20080206161052] 
[cut from OldFastPackedString same functions Eric cut from ByteString version.
David Roundy [EMAIL PROTECTED]**20080206155350] 
[Pipe help text through a pager.
Eric Kow [EMAIL PROTECTED]**20080205210324] 
[Ability to pipe a document through a pager.
Eric Kow [EMAIL PROTECTED]**20080205210313] 
[Remove ununsed functions from FastPackedString.
Eric Kow [EMAIL PROTECTED]**20080205191951
 
   (!) :: PackedString - Int - Word8
   consPS :: Char - PackedString - PackedString
   mallocedCString2PS :: CString - IO PackedString
   unpackWords :: PackedString - [Word8]
   mapPS :: (Char - Char) - PackedString - PackedString
   foldlPS :: (a - Char - a) - a - PackedString - a
   foldrPS :: (Char - a - a) - a - PackedString - a
   elemPS :: Char - PackedString - Bool
   spanPS :: (Char - Bool) - PackedString - (PackedString, PackedString)
   breakFirstPairPS ::
   wordsPS :: PackedString - [PackedString]
   splitWithPS :: (Char - Bool) - PackedString - [PackedString]
   gzReadFileLazily :: FilePath - IO LazyFile
   readFileLazily :: FilePath - IO LazyFile
   readHandleLazily :: Handle - IO [PackedString]
 
 We don't have any particular 'responsability' to keep FastPackedString
 generic.  If these functions aren't likely to be used in darcs code
 anytime soon, we might as well remove them.
] 
[Upgrade readIntPS to Data.ByteString version.
Eric Kow [EMAIL PROTECTED]**20080205182938] 
[Fix 'patch cannot contain newlines' in broken-pipe.sh test.
Eric Kow [EMAIL PROTECTED]**20080205163541] 
[Ratify Data.ByteString IO imports.
Eric Kow [EMAIL PROTECTED]**20080205162823] 
[Upgrade more FastPackedString functions.
Eric Kow [EMAIL PROTECTED]**20080205162710
 (!), unlinesPS (still concat . intersperse), findLastPS
] 
[Upgrade spanEndPS and breakPS to Data.ByteString version.
Eric Kow [EMAIL PROTECTED]**20080205155420] 
[(Re)upgrade createPS and generatePS to Data.ByteString versions.
Eric Kow [EMAIL PROTECTED]**20080205155322] 
[enable context printing of darcs-2 patches.
David Roundy [EMAIL PROTECTED]**20080205163917] 
[generalize context viewing a bit.
David Roundy [EMAIL PROTECTED]**20080205163511] 
[add isHunk method in effect, as precursor to more general context-showing code.
David Roundy [EMAIL PROTECTED]**20080205162221] 
[add test for issue68.
David Roundy [EMAIL PROTECTED]**20080205154147
 Note that I haven't been able to reproduce this bug, but from