From 3a0c1ff4a5273f9df2e86aa3640a4dbf574f203e Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Fri, 28 Feb 2014 21:53:19 +0100 Subject: [PATCH] Remove obsolete text from README --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index 4026628..bc51467 100644 --- a/README.md +++ b/README.md @@ -10,16 +10,3 @@ Copy `config.example` to `~/.vdirsyncer/config` and edit it. You can use the read the config from. Run `vdirsyncer --help`. - -## A little bit about the code architecture - -There are storage classes which control the access to one vdir-collection and -offer basic CRUD-ish methods for modifying those collections. The exact -interface is described in `vdirsyncer.storage.base`, the `Storage` class should -be a superclass of all storage classes. - -One function in `vdirsyncer.sync` can then be called on two instances of -`Storage` to syncronize them, due to the abstract API storage classes are -implementing, the two given instances don't have to be of the same exact type. -This allows us not only to syncronize a local vdir with a CalDAV server, but -also syncronize two CalDAV servers or two local vdirs.