Megatest

Check-in [d67a67f9a4]
Login
Overview
Comment:Added text db template
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | transaction-for-sequential-writes
Files: files | file ages | folders
SHA1: d67a67f9a4b3ddf1d96962177b761939e6c5f932
User & Date: mrwellan on 2013-02-15 14:17:43
Other Links: branch diff | manifest | tags
Context
2013-02-26
08:30
Merged trunk into transaction-for-sequential-writes Closed-Leaf check-in: a94c40e2bb user: mrwellan tags: transaction-for-sequential-writes
2013-02-15
14:17
Added text db template check-in: d67a67f9a4 user: mrwellan tags: transaction-for-sequential-writes
14:14
use dashboard instead of dboard in Makefile for tests check-in: 0c30d1cfe5 user: mrwellan tags: transaction-for-sequential-writes
Changes

Added txtdb/txtdb.scm version [5f75a02c13].







































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

;; Copyright 2006-2012, Matthew Welland.
;; 
;;  This program is made available under the GNU GPL version 2.0 or
;;  greater. See the accompanying file COPYING for details.
;; 
;;  This program is distributed WITHOUT ANY WARRANTY; without even the
;;  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;;  PURPOSE.

(use ssax)

;; Read a non-compressed gnumeric file
(define (txtdb:read-gnumeric-xml fname)
  (with-input-from-file fname
    (lambda ()
      (ssax:xml->sxml (current-input-port) '()))))

;; (serialize-sxml a output: "new.xml")