From 4b70fdf9ff51de56f889a09b2860541767c075de Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Mon, 18 Aug 2014 19:21:50 +0200 Subject: [PATCH] [New] Added blog with first item of release 1.0.0 --- www.strolch.li/blog.html | 173 ++++++++++++++++++++ www.strolch.li/css/blog.css | 120 ++++++++++++++ www.strolch.li/css/custom.css | 40 ++++- www.strolch.li/development.html | 9 +- www.strolch.li/{style.css => downloads.css} | 0 www.strolch.li/downloads.html | 12 +- www.strolch.li/index.html | 8 +- 7 files changed, 350 insertions(+), 12 deletions(-) create mode 100644 www.strolch.li/blog.html create mode 100644 www.strolch.li/css/blog.css rename www.strolch.li/{style.css => downloads.css} (100%) diff --git a/www.strolch.li/blog.html b/www.strolch.li/blog.html new file mode 100644 index 000000000..41c13c341 --- /dev/null +++ b/www.strolch.li/blog.html @@ -0,0 +1,173 @@ + + + + + + + + + + + + Strolch: Blog + + + + + + + + + + + + + + + + + +
+ + + + +
+ + +
+ + +
+

Release 1.0.0

+ + +

With the Go-Live of a Strolch-based application around the corner, it is time to release Version 1.0.0 of Strolch

+
+

Story

+

Strolch as a component based software agent has been two years in the making. The concepts in Strolch have been taken from a proprietary planning, scheduling and controlling software agent, which was, and is been, used in industrial automation, logistics and production. Strolch was created to bring the concepts, which were working well for small teams to go-live with large projects in short to medium time-frames to the open source world.

+

Strolch was completely rewritten using the key concepts of a parameterized object model and a component based agent but remembering which clutches the original implementation had, thus trying to eradicate those without bringing in new ones. It might not be perfect in version 1.0.0, but it is a starting point form which to carry on from.

+

Features

+

Strolch isn't feature complete by a long shot, but it sure has got many features which make it useable in a concrete project, thus making sure it is not vaporware =)

+

The following is a list of key features, many of which were driven by concrete project requirements:

+
    +
  • Parameterized model with full CRUD for Resource and Order objects
  • +
  • Timed values on Resources to map values by time
  • +
  • Transparent runtime modes: TRANSIENT, CACHED, TRANSACTIONAL
  • +
  • Separate containers for models (mandates)
  • +
  • Service and Command pattern for reusing functionality
  • +
  • XML File based persistence layer
  • +
  • PostgreSQL persistence layer
  • +
  • Querying using a fluent API
  • +
  • Integrated authentication and authorization to validate user privileges using Privilege
  • +
  • Ready to use Observer pattern
  • +
  • (currently) Read-only REST API to access the agent model remotely
  • +
+

Future

+

So what is planned for the future? Although Strolch has quite a few interesting features, it is by no way feature complete. The greatest wish is for Strolch to become a community driven platform, so many new features will arise in the future, but at least one major future feature which will be tackled in the near future and will certainly drive the next major release is a planning and scheduling engine using a Gantt chart to visualize the schedule.

+

The planning engine will use the timed values on Resources extensively to create a planning engine on which Workflows can be placed and allowing to detect violations and bottlenecks.

+

An extension of the planning of the scheduling engine will allow more than just placing Workflows on Resources, but actually searching groups of Resources for a time slot of when to place tasks. This will allow to use capacity constraints to plan and schedule workflows using different algorithms, and respecting calendars etc.

+ +

Take it for a spin

+

So, now the important part is for new users to start using Strolch for their own projects. Go ahead, check out the + Downloads page for the latest release and then checkout the two tutorial applications to get yourself up to speed!

+

Don't hesitate to send us feedback or questions, we will be delighted to help you get your Strolch-based application up and running, or provide feedback to your concerns!

+
+ + + + + + + +
+ + +
+ + + +
+ +
+ + + +
+ + + + + + + diff --git a/www.strolch.li/css/blog.css b/www.strolch.li/css/blog.css new file mode 100644 index 000000000..3ec390b12 --- /dev/null +++ b/www.strolch.li/css/blog.css @@ -0,0 +1,120 @@ +/* + * Globals + */ + +/* + * Override Bootstrap's default container. + */ + +/* + * Masthead for nav + */ + +.blog-masthead { + background-color: #428bca; + -webkit-box-shadow: inset 0 -2px 5px rgba(0,0,0,.1); + box-shadow: inset 0 -2px 5px rgba(0,0,0,.1); +} + +/* Nav links */ +.blog-nav-item { + position: relative; + display: inline-block; + padding: 10px; + font-weight: 500; + color: #cdddeb; +} +.blog-nav-item:hover, +.blog-nav-item:focus { + color: #fff; + text-decoration: none; +} + +/* Active state gets a caret at the bottom */ +.blog-nav .active { + color: #fff; +} +.blog-nav .active:after { + position: absolute; + bottom: 0; + left: 50%; + width: 0; + height: 0; + margin-left: -5px; + vertical-align: middle; + content: " "; + border-right: 5px solid transparent; + border-bottom: 5px solid; + border-left: 5px solid transparent; +} + +/* + * Main column and sidebar layout + */ + +.blog-main { + line-height: 1.5; +} + +/* Sidebar modules for boxing content */ +.sidebar-module { + padding: 15px; + margin: 0 -15px 15px; +} +.sidebar-module-inset { + padding: 15px; + background-color: #f5f5f5; + border-radius: 4px; +} +.sidebar-module-inset p:last-child, +.sidebar-module-inset ul:last-child, +.sidebar-module-inset ol:last-child { + margin-bottom: 0; +} + + + +/* Pagination */ +.pager { + margin-bottom: 60px; + text-align: left; +} +.pager > li > a { + width: 140px; + padding: 10px 20px; + text-align: center; + border-radius: 30px; +} + + +/* + * Blog posts + */ + +.blog-post { + margin-bottom: 60px; +} +.blog-post-title { + margin-bottom: 5px; + font-size: 2.0em; +} +.blog-post-meta { + margin-bottom: 20px; + color: #999; +} + + +/* + * Footer + */ + +.blog-footer { + padding: 40px 0; + color: #999; + text-align: center; + background-color: #f9f9f9; + border-top: 1px solid #e5e5e5; +} +.blog-footer p:last-child { + margin-bottom: 0; +} diff --git a/www.strolch.li/css/custom.css b/www.strolch.li/css/custom.css index b021c9a91..c2d4f5473 100644 --- a/www.strolch.li/css/custom.css +++ b/www.strolch.li/css/custom.css @@ -1,6 +1,40 @@ -body { - padding-top: 50px; -} +/* + * Globals + */ + +/* + * Override Bootstrap's default container. + */ + .content { padding: 0px 2em 3em; } + +blockquote { + font-size: 1.0em; +} + +@media (min-width: 1200px) { + .container { + width: 970px; + } +} + +.page-header { + padding-top: 20px; + padding-bottom: 20px; +} +.page-title { + margin-top: 30px; + margin-bottom: 0; + font-size: 2.2em; + font-weight: normal; +} +.page-description { + font-size: 1.6em; + color: #999; +} + +#footer { + font-size: 0.8em; +} \ No newline at end of file diff --git a/www.strolch.li/development.html b/www.strolch.li/development.html index b530d8deb..05b75ccf2 100644 --- a/www.strolch.li/development.html +++ b/www.strolch.li/development.html @@ -37,6 +37,7 @@
  • Overview
  • Downloads
  • Development
  • +
  • Blog
  • @@ -44,10 +45,12 @@
    -
    -

    Development

    -

    This page describes how to setup the development environment.

    + +

    Prerequisites

    To start developing Strolch you need an installed:
      diff --git a/www.strolch.li/style.css b/www.strolch.li/downloads.css similarity index 100% rename from www.strolch.li/style.css rename to www.strolch.li/downloads.css diff --git a/www.strolch.li/downloads.html b/www.strolch.li/downloads.html index 883820178..596a53efa 100644 --- a/www.strolch.li/downloads.html +++ b/www.strolch.li/downloads.html @@ -16,7 +16,7 @@ - + @@ -38,6 +38,7 @@
    • Overview
    • Downloads
    • Development
    • +
    • Blog
    @@ -45,10 +46,13 @@
    + +
    -

    Downloads

    -

    This page contains links to the latest Strolch downloads

    - +

    The following downloads are releases of Strolch, but remember that it is always possible (and fairly easily) to re-build the artifacts on your own by following the easy steps on the development page

    Releases

    diff --git a/www.strolch.li/index.html b/www.strolch.li/index.html index ad7cc8563..e512e596b 100644 --- a/www.strolch.li/index.html +++ b/www.strolch.li/index.html @@ -38,6 +38,7 @@
  • Overview
  • Downloads
  • Development
  • +
  • Blog
  • @@ -45,9 +46,12 @@
    + +
    -

    Strolch Overview

    -

    This page describes the Strolch software agent and the motivation behind its development.

    Overview

    Strolch is an open source component based software agent written in Java and can be compared, in a light sense, with the Java EE stack: Strolch takes care of persistence, implements Services for use cases, Commands as re-usable algorithms and has a parameterized data model.