Development Log

bixtep  Die Entwicklung von !bixtep nahm im !debianforum ihren Anfang: http://bit.ly/dcaMu0
About 3 months, 3 weeks ago from bixtep (BIXTEP)

bixtep  bugfixes: 0.2-dev.r53 now available for download !bixtep
About 4 months, 4 weeks ago from bixtep (BIXTEP)

bixtep  CLI note-taking app: New development version available for download.Improvements of code, stability, and performance. www.bixtep.com !bixtep
About 4 months, 4 weeks ago from bixtep (BIXTEP)

bixtep  New .bxt file structure published. Allows for custom content types, tag relations and dynamic field relations. http://ur1.ca/nr4y !bixtep
About 5 months ago from bixtep (BIXTEP)

bixtep  stabilizing 0.2: some features will be dropped from development version !bixtep
About 6 months ago from bixtep (BIXTEP)

bixtep  new wiki-based project homepage is up: http://www.bixtep.com !bixtep
About 6 months, 3 weeks ago from bixtep (BIXTEP)

bixtep  0.2 will be the last release written in bash. future versions will be developed in python. !bixtep
About 7 months, 3 weeks ago from bixtep (BIXTEP)

bixtep  working on a stable version of the API to help separate development of core and UI, etc. !bixtep
About 9 months, 4 weeks ago from bixtep (BIXTEP)

bixtep  consistently separating bixtep core from ui. ui will become separate script that calls core functions !bixtep
About 10 months, 1 week ago from bixtep (BIXTEP)

bixtep  bugfixes, cleaned up code: try out the 0.1.1 release candidate http://www.bixtep.com/content/download !bixtep
About 10 months, 2 weeks ago from bixtep (BIXTEP)

bixtep  cleaning up the code of 0.1 !bixtep
About 10 months, 3 weeks ago from bixtep (BIXTEP)


Improving the Bixtorage File Structure

A major overhaul of the Bixtorage (BXT) file structure is planned for v0.2. The new structure will be described here.

DTD

<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT bixtorage (owner,conf,description,item*)>
<!ATTLIST bixtorage
    created NMTOKEN #REQUIRED
    hash NMTOKEN #REQUIRED
    modified NMTOKEN #REQUIRED
    version NMTOKEN #REQUIRED
>
<!ELEMENT conf (ctypes,wiring)>
<!ELEMENT ctypes (set+)>
<!ELEMENT description EMPTY>
<!ELEMENT dfields (set+)>
<!ELEMENT field (#PCDATA)*>
<!ATTLIST field id NMTOKEN #REQUIRED>
<!ELEMENT item (field+)*>
<!ATTLIST item
    created NMTOKEN #REQUIRED
    description CDATA #REQUIRED
    id NMTOKEN #REQUIRED
    modified NMTOKEN #REQUIRED
    owner NMTOKEN #REQUIRED
    type NMTOKEN #REQUIRED
>
<!ELEMENT owner (#PCDATA)>
<!ELEMENT set (#PCDATA)>
<!ATTLIST set id NMTOKEN #REQUIRED>
<!ELEMENT tagrels (set+)>
<!ELEMENT wiring (tagrels,dfields)>

Sample XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE bixtorage SYSTEM "bixtorage.dtd" >
<bixtorage created="NMTOKEN" hash="NMTOKEN" modified="NMTOKEN" version="NMTOKEN">
  <owner>$owner</owner>
  <conf>
    <ctypes>
      <set id="NMTOKEN">$ctype_set</set>
    </ctypes>
    <wiring>
      <tagrels>
        <set id="NMTOKEN">$tagrel_set</set>
      </tagrels>
      <dfields>
        <set id="NMTOKEN">$dfield_set</set>
      </dfields>
    </wiring>
  </conf>
  <description/>
  <item created="NMTOKEN" description="CDATA" id="NMTOKEN" modified="NMTOKEN"
        owner="NMTOKEN" type="NMTOKEN">
    <field id="NMTOKEN">(#PCDATA)</field>
  </item>
</bixtorage>

The variables $ctype_set, $tagrel_set and $dfield_set should be replaced by values of the structure given in customization_0.2.

 
 
bxt_file_structure.txt · Last modified: 2010/02/27 09:32 by kstep
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki