<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to DocumentManagement</title><link>https://sourceforge.net/p/coils/wiki/DocumentManagement/</link><description>Recent changes to DocumentManagement</description><atom:link href="https://sourceforge.net/p/coils/wiki/DocumentManagement/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 27 Nov 2012 20:44:52 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/coils/wiki/DocumentManagement/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage DocumentManagement modified by Adam Tauno Williams</title><link>https://sourceforge.net/p/coils/wiki/DocumentManagement/</link><description>&lt;pre&gt;--- v3
+++ v4
@@ -33,15 +33,17 @@
 
 The __create_path__ method returns a tuple of folder path and file name where the resource should be created.
 
-##
 
-##DBFS1
+
+##Storage Backends
+
+###DBFS1
 
 The DBFS1 is a fully functioning versioning backends that offers complete integration with OpenGrouwpare object model and access control.  This is the default project storage backend.
 
 This backend has a skyrix:// URL and in OpenGrouwpare Legacy was sometimes referred to as the Skyrix backend.
 
-##SkyFS  
+###SkyFS  
 
 ___Not Implemented___
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Tauno Williams</dc:creator><pubDate>Tue, 27 Nov 2012 20:44:52 -0000</pubDate><guid>https://sourceforge.netb956340a004bb89f1f0a544090831c05aaa52c5e</guid></item><item><title>WikiPage DocumentManagement modified by Adam Tauno Williams</title><link>https://sourceforge.net/p/coils/wiki/DocumentManagement/</link><description>&lt;pre&gt;--- v2
+++ v3
@@ -6,12 +6,43 @@
 
 Theoretically backends for storing documents are modular and additional document management backends are possible  However only one document storage backend has even been implemented, the [DBFS1] backend.
 
-OpenGroupware Legacy also provides an "FS" (FileSystem) backend that lacked version control and permissions management - as it mapped directly 1:1 to the underlying filesystem at the specified path.  OpenGroupware Coils does not support FS at this time.  Integrating any given underlying filesystem into the object model and allowing managed access control is nearly impossible - if you want a straight-up file share \[known in groupware speak as a "garbage dump"\] you should simply use a file server. 
+OpenGroupware Legacy also provides an "SkyFS" (FileSystem) backend that lacked version control and permissions management - as it mapped directly 1:1 to the underlying filesystem at the specified path.  OpenGroupware Coils does not support SkyFS at this time.  Integrating any given underlying filesystem into the object model and allowing managed access control is nearly impossible - if you want a straight-up file share \[known in groupware speak as a "garbage dump"\] you should simply use a file server. 
+
+Although there is only one storage backend all code still assumes there are multiple possible backends.  So from a [Project] entity the URL attribute is used to marshall a manager object using the __blob_manager_for_ds__ method from __coils.foundation__.
+
+    blob_manager_for_ds(sky_url, project_id=None)
+
+This will return a manager object that can be used to return the paths to the specified documents. The prefix of the project's URL determines the type of manager.
+
+URL       |   Manager Type
+----------|---------------
+__NULL__  | DBFS1Manager
+skyrix:// | DBFS1Manager
+file://   | SKyFSManager (not implemented)
+ ...      | ...
+
+A manager class implements two functions:
+
+    get_path(self, document, version=None)
+        ....
+    
+    def create_path(self, document, version)
+        ...
+    
+The __get_path__ method returns a path to a file that can be passed to the appropriate method of the [BLOBManager].
+
+The __create_path__ method returns a tuple of folder path and file name where the resource should be created.
+
+##
 
 ##DBFS1
 
-The DBFS1 is a fully functioning versioning backends that offers complete integration with OpenGrouwpare object model and access control.
+The DBFS1 is a fully functioning versioning backends that offers complete integration with OpenGrouwpare object model and access control.  This is the default project storage backend.
 
-This backend has a skyfs:// URL and in OpenGrouwpare Legacy was sometimes referred to as SkyFS.  
+This backend has a skyrix:// URL and in OpenGrouwpare Legacy was sometimes referred to as the Skyrix backend.
+
+##SkyFS  
+
+___Not Implemented___
 
 Note that OpenGroupware Legacy code base ___easily___ predates the various other companies and products that use the "SkyFS" monitor - we had it first, the Legacy code base days back to the days of NextSTEP and as Open Source the commit log is public record.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Tauno Williams</dc:creator><pubDate>Tue, 27 Nov 2012 16:42:44 -0000</pubDate><guid>https://sourceforge.net4389ed73bbfa2f4601c854b7611644d90e87b2ff</guid></item><item><title>WikiPage DocumentManagement modified by Adam Tauno Williams</title><link>https://sourceforge.net/p/coils/wiki/DocumentManagement/</link><description>&lt;pre&gt;--- v1
+++ v2
@@ -1,3 +1,5 @@
+[Development]
+
 # Document Management
 
 Documents exist in [Projects].  Each project has a "storage backend" that implements how it stores the BLOBs that are the document contents.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Tauno Williams</dc:creator><pubDate>Mon, 26 Nov 2012 22:29:25 -0000</pubDate><guid>https://sourceforge.netb65b111665f87495afc6e8f185cdef0b2f644053</guid></item><item><title>WikiPage DocumentManagement modified by Adam Tauno Williams</title><link>https://sourceforge.net/p/coils/wiki/DocumentManagement/</link><description># Document Management

Documents exist in [Projects].  Each project has a "storage backend" that implements how it stores the BLOBs that are the document contents.

Theoretically backends for storing documents are modular and additional document management backends are possible  However only one document storage backend has even been implemented, the [DBFS1] backend.

OpenGroupware Legacy also provides an "FS" (FileSystem) backend that lacked version control and permissions management - as it mapped directly 1:1 to the underlying filesystem at the specified path.  OpenGroupware Coils does not support FS at this time.  Integrating any given underlying filesystem into the object model and allowing managed access control is nearly impossible - if you want a straight-up file share \[known in groupware speak as a "garbage dump"\] you should simply use a file server. 

##DBFS1

The DBFS1 is a fully functioning versioning backends that offers complete integration with OpenGrouwpare object model and access control.

This backend has a skyfs:// URL and in OpenGrouwpare Legacy was sometimes referred to as SkyFS.  

Note that OpenGroupware Legacy code base ___easily___ predates the various other companies and products that use the "SkyFS" monitor - we had it first, the Legacy code base days back to the days of NextSTEP and as Open Source the commit log is public record.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Tauno Williams</dc:creator><pubDate>Mon, 26 Nov 2012 22:28:21 -0000</pubDate><guid>https://sourceforge.net9fabff0b30448b591177baf267514424af03e07a</guid></item></channel></rss>