Giter Club home page Giter Club logo

bearable's Introduction

Bearable

A small Clojure library that makes writing XML schemas slightly more bearable.

Usage

Bearable adds several new tags to prxml. A good explanation of prxml can be found here.

The new tags available through Bearable are:

  • :ordered-list! -- requires an element to contain an ordered list of elements
  • :unordered-list! -- requires an element to contain an unordered list of elements
  • :choice! -- requires an element to contain one element from a list of elements
  • :restricted! -- requires an elements to meet certain restrictions

Example

Suppose we want to validate the following:

<own3dReply>
  <liveEvent>
    <isLive>false</isLive>
    <liveViewers>4825</liveViewers>
  </liveEvent>
</own3dReply>

We would write the following code:

(use 'bearable.schema)

(def xsd 
 [:xs:schema {:xmlns:xs "http://www.w3.org/2001/XMLSchema"}
   [:ordered-list! {:name "own3dreply"}
     [:ordered-list! {:name "liveEvent"}
       [:restricted! {:name "isLive" :base "xs:string"} [:xs:pattern {:value "true|false"}]]
       [:xs:element {:name "liveViewers" :type "xs:integer"}]]]])

(schema xsd "xs" 2)

It would produce the following schema:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="own3dReply">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="liveEvent">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="isLive">
                <xs:simpleType>
                  <xs:restriction base="xs:string">
                    <xs:pattern value="true|false"/>
                  </xs:restriction>
                </xs:simpleType>
              </xs:element>
              <xs:element name="liveViewers" type="xs:integer"/>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

Installation

To use Bearable in your project add the following dependency to your project.clj file:

[bearable "0.0.1"]

License

Copyright (C) 2011 Jesse Howarth

Distributed under the Eclipse Public License, the same as Clojure.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.