
New patches:

[Remove a redundant cabal-version stanza in the .cabal file
Ian Lynagh <igloo@earth.li>**20071110002321
 We had both
 cabal-version: >=1.1.4
 and
 cabal-version: >= 1.2
] {
hunk ./haddock.cabal 2
-cabal-version: >=1.1.4
}

[In Binary, always treat Int as Int64
Ian Lynagh <igloo@earth.li>**20071110002452
 This gives us binary compatibility of .haddock files between e.g. amd64
 and i386.
] {
hunk ./src/Binary.hs 138
-#ifndef SIZEOF_HSINT
-#define SIZEOF_HSINT  INT_SIZE_IN_BYTES
-#endif
-
-#ifndef SIZEOF_HSWORD
-#define SIZEOF_HSWORD WORD_SIZE_IN_BYTES
-#endif
-
hunk ./src/Binary.hs 431
-#if SIZEOF_HSINT == 4
-    put_ bh i = put_ bh (fromIntegral i :: Int32)
-    get  bh = do
-	x <- get bh
-	return $! (fromIntegral (x :: Int32))
-#elif SIZEOF_HSINT == 8
hunk ./src/Binary.hs 433
-	x <- get bh
-	return $! (fromIntegral (x :: Int64))
-#else
-#error "unsupported sizeof(HsInt)"
-#endif
---    getF bh   = getBitsF bh 32
+        x <- get bh
+        return $! (fromIntegral (x :: Int64))
+--    getF bh   = getBitsF bh 64
}

Context:

[Use configurations to allow to build with old ghc, but requires new cabal
Duncan Coutts <duncan@haskell.org>**20070906183907
 Also update Setup.lhs, again requires new cabal, but much simplified.
] 
[We depend on tons of new packages nowadays
sven.panne@aedion.de**20070902121907] 
[Fixed XML syntax. Remember: "make validate" is your friend before a checkin...
sven.panne@aedion.de**20070902121821] 
[Install LICENSE in the correct place
sven.panne@aedion.de**20070902121802] 
[Add category: Development to .cabal file
Duncan Coutts <duncan@haskell.org>**20070831112145
 Otherwise it appears on the hackage website in the "Unclassified" category.
] 
[Modify lexing of /../ 
Simon Marlow <simonmar@microsoft.com>**20070828091954
 This makes /../ more like '..', so that a single / on a line doesn't
 trigger a parse error.  This should reduce the causes of accidental
 parse errors in Haddock comments; apparently stray / characters are
 a common source of failures.
] 
[Don't display silly "expanding to size" messages when writing .haddock file
Duncan Coutts <duncan.coutts@worc.ox.ac.uk>**20070723155603
 It's really just noise.
] 
[bug fix
Wolfgang Jeltsch <g9ks157k@acme.softbase.org>**20070419182340
 When Haddock was invoked with the --ignore-all-exports flag but the ignore-exports module attribute wasn't used, hyperlinks weren't created for non-exported names.
 
 This fix might not be as clean as one would wish (since --ignore-all-exports now results in ignore_all_exports = True *and* an additional OptIgnoreExports option for every module) but at least the bug seems to be resolved now.
] 
[URL expansion for %%, %L, %{LINE}
Roberto Zunino <zunrob@users.sf.net>**20070421023643] 
[Add a flag --allow-missing-html
Ian Lynagh <igloo@earth.li>**20070307145955
 With this flag, haddock ignores whether or not the HTML directory of
 packages depended upon exists. We need this when haddocking groups of
 packages that aren't installed yet.
] 
[Add a --ghc-pkg flag
Ian Lynagh <igloo@earth.li>**20070307144253] 
[added substitution %{FILE///c}
Conal Elliott <conal@conal.net>**20070214215400] 
[Do not create empty tables for data declarations which don't have any constructors, instances or comments. Gets better HTML 4.01 compliance
Neil Mitchell**20070206174912] 
[infix type op precedence tweak, ppHsNameAsVar 
Conal Elliott <conal@conal.net>**20070115171157] 
[tweaked tyvarop precedence
Conal Elliott <conal@conal.net>**20070110002300] 
[added infix type operators
Conal Elliott <conal@conal.net>**20070105172038] 
[Make the search box in a form so that enter does the default search
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070112125817] 
[Make the max number of results 75 instead of 50, to allow map searching in the base library to work
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070112122501] 
[Rewrite much of the index searching code, previously was too slow to execute on the base library with IE, the new version guarantees less than O(log n) operations be performed, where n is the number in the list (before was always O(n))
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070112121746] 
[Make the index be in case-insensitive alphabetic order
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070111185143] 
[Change from tabs to spaces in the ppHtmlIndex function
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070111182244] 
[Delete more stuff that is no longer required
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070111182119] 
[Delete dead code, now there is only one index page
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070111181746] 
[Add searching on the index page
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070111170709] 
[Never do spliting index files into many
Neil Mitchell <http://www.cs.york.ac.uk/~ndm/>**20070111154115] 
[add test for blank lines inside @...@ code block
Simon Marlow <simonmar@microsoft.com>**20070109131444] 
[allow blank lines inside a @...@ code block
Simon Marlow <simonmar@microsoft.com>**20070109131434] 
[Fix up a case of extra vertical space after a code block
Simon Marlow <simonmar@microsoft.com>**20070105111341
 
 
] 
[TODO: do something better about re-exported symbols from another package
Simon Marlow <simonmar@microsoft.com>**20061215155200] 
[fix <<URL>> image markup
Simon Marlow <simonmar@microsoft.com>**20061208100637] 
[add todo item for --maintainer
Simon Marlow <simonmar@microsoft.com>**20061206160507] 
[fix --use-package error message
Simon Marlow <simonmar@microsoft.com>**20061013105135] 
[Cabal's sdist does not generate "-src.tar.gz" files, but ".tar.gz" ones
sven.panne@aedion.de**20061012152823] 
[Rename haddock.js to haddock-util.js
Simon Marlow <simonmar@microsoft.com>**20061011141737
 haddock.js will be run automatically by Windows when you type
 'haddock' if it is found on the PATH, so rename to avoid confusion.
 Spotted by Adrian Hey.
] 
[TAG 0.8 release
Simon Marlow <simonmar@microsoft.com>**20061010122403] 
Patch bundle hash:
7829e944259a69745a5de25a5a77034a52d54fcf
