svndump-0.4.5: Library for reading Subversion dump files

Safe HaskellNone

Subversion.Dump

Synopsis

Documentation

type RevDate = UTCTimeSource

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

NoKind 
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.