Navigation Menu

Skip to content

Commit

Permalink
initial work in Borges, a demo CMS application built with plaza
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniogarrote committed Jul 15, 2010
1 parent b682fad commit 8ca588c
Show file tree
Hide file tree
Showing 10 changed files with 3,168 additions and 0 deletions.
15 changes: 15 additions & 0 deletions apps/borges/README
@@ -0,0 +1,15 @@
# borges

FIXME: write description

## Usage

FIXME: write

## Installation

FIXME: write

## License

FIXME: write
8 changes: 8 additions & 0 deletions apps/borges/project.clj
@@ -0,0 +1,8 @@
(defproject borges "1.0.0-SNAPSHOT"
:description "RIA type CMS"
:dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"]
[org.clojure/clojure-contrib "1.2.0-SNAPSHOT"]]
:dev-dependencies [[leiningen/lein-swank "1.2.0-SNAPSHOT"]
[clojure-http-client "1.1.0-SNAPSHOT"]
[autodoc "0.7.1"]
[lein-clojars "0.5.0-SNAPSHOT"]])
221 changes: 221 additions & 0 deletions apps/borges/public/css/plaza-ui.css
@@ -0,0 +1,221 @@
.plaza-widget{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: normal;
font-style: normal;
font-family: Tahoma, Geneva, arial, sans-serif;
vertical-align: baseline;
background-color:#eeeeee;
border:2px solid #aaaaaa;
margin: 5px
}

.widget-header{
background-color: black;
font-size: 120%;
color: white;
padding: 10px
}


/* entity debugger */
.entity-debugger-widget{
padding: 0px;
font-size: 70%
}

.entity-debugger-widget-header{
font-size: 120%
}

.entity-debugger-widget-prop{
background: white;
border:1px solid #aaaaaa;
margin: 3px;
}

.entity-debugger-widget-prop-alias{
padding: 3px;
margin-bottom: 3px;
background-color: #aaaaaa;
font-style: bold
}

.entity-debugger-widget-prop-uri{
padding: 3px
}

.entity-debugger-widget-prop-val{
padding: 3px
}

/* TripleSpacesBrowser */
.triple-spaces-browser-widget {
font-size: 70%
}

.triple-space-browser-panel {
background: white;
border:1px solid #aaaaaa;
margin: 3px
}

.triple-space-browser-panel-header {
background: #aaaaaa;
padding: 3px
}

.triple-space-browser-panel-body {
text-align: right;
padding: 10px
}

.triple-space-actions {
padding: 5px
}

.triple-space-browser-panel-body input {
width: 350px;
margin: 5px
}

.collection-triple-space-actions {
padding: 5px
}

.collection-triple-space-actions input {
margin: 3px
}
.overline {
border-top:1px solid #aaaaaa;
font-size: 80%
}

/* Toolbox */
.plaza-toolbox-widget {
font-size: 70%
}

.toolbox-legend-fld {
width: 350px;
margin-left: 20px
}

.entity-search-fld {
width: 450px;
margin-right: 20px
}

.schema-uri-fld {
width: 450px;
margin-right: 10px;
}

.inspect-tbox-toolbox-feature div {
margin: 5px;
margin-top: 20px
}

.inspect-tbox-toolbox-feature input {
margin: 5px
}

.inspect-tbox-toolbox-feature select {
margin: 5px
}


/* TriplesTable */
.plaza-triples-table-widget {
font-size: 70%
}

.plaza-triples-table-widget table {
width: 100%
}

.plaza-triples-table-widget thead {
background-color: #E7EEF6;
font-weight: bold
}

.plaza-triples-table-widget td {
background-color: white;
padding: 3px
}


/* PlazaUI.Widgets.ToolboxEntityCreatorForm */
.toolbox-entity-creator-widget {
width: 600px;
font-size: 70%;
}

.toolbox-entity-creator-widget-body {
text-align: right
}

.toolbox-entity-creator-widget-body .property input {
width: 400px;
margin-right: 20px;
margin: 5px
}

.toolbox-entity-creator-widget-body .entity-creator-actions input {
margin: 5px
}

/* PlazaIO.Widgets.PanelListFrame */

.panel-list-widget {
font-size: 70%
}

.panel-list-header {

}

.panel-list-panel {
background: white;
border: 1px solid #aaaaaa;
margin: 3px
}

.panel-list-panel-header {
background: #aaaaaa;
padding: 3px
}

.panel-list-panel-body {
text-align: right;
padding: 10px
}

.panel-list-panel-body input {
width: 100px;
margin: 5px
}

/* RDFS Class Browser */
.class-uri-panel-body {
text-align: left
}

.panel-list-panel input {
width: 100px
}


/* Multi Entity selector */

.entities-selector-title select {
margin-left:5px;
margin-right:10px;
width:400px;
}

.entities-selector-title option {
padding: 5px
}

0 comments on commit 8ca588c

Please sign in to comment.