svndump-0.3.0: Library for reading Subversion dump files

Safe HaskellSafe-Infered

Subversion.Dump

Synopsis

Documentation

type RevDate = TextSource

A parser for Subversion dump files. The objective is to convert a dump file into a series of data structures representing that same information. It uses Lazy to reading the file, and Text to represent text fields which may contain Unicode characters.

data OpKind Source

Constructors

File 
Directory 

readSvnDump :: ByteString -> [Revision]Source

Reads a dump file from a ByteString in the IO monad into a list of Revision values. This is the cooked parallel of readSvnDumpRaw.