Dragontail is the Wagtail-based successor to TraContent, the content management system that brought Tracon to light from the darkness of Wordpress, Drupal and PencilBlue.
While Wagtail is advertised as a content management system (CMS), a more apt description would be a CMS construction kit. The Wagtail developers appreciate the fact that no two sites are identical and sites often have wildly differing requirements.
Wagtail therefore does not provide basic concepts such as "content page" or "blog post", but gives the developer excellent tools to create just the kind of content pages and blog posts the developer wants.
Dragontail, on the other hand, is an opinionated batteries-included CMS that uses Wagtail and implements basic building blocks for an actual site using the tools provided by Wagtail. Dragontail builds on the experience gained while developing TraContent and also shares many architectural choices with it.
Feature | TraContent | Dragontail |
---|---|---|
Python version | 2.7, 3.4 or 3.5 | 3.4 or 3.5 |
Framework | Django 1.9 | Django 1.9 |
Base CMS | None | Wagtail |
Admin UI | Django Admin | Wagtail |
Rich Text Editor | CKEditor | Wagtail |
File Management | CKEditor | Wagtail |
Here's a cool feature matrix:
Feature | Standard Edition | Enterprise Edition |
---|---|---|
License | MIT | MIT |
Price | Free | Free |
Support | Purchased separately | Purchased separately |
Multisite support | Yes (always on) | Yes (always on) |
OAuth2 authentication | No | Yes |
If you have Kompassi OAuth2 support enabled, you're running the Enterprise Edition. Because starships, that's why :)
Install dependencies:
virtualenv venv-tracontent
source venv-tracontent/bin/activate
git clone https://github.com/tracon/tracontent.git
cd tracontent
pip install -r requirements.txt
Setup basic example content:
./manage.py setup
./manage.py setup_tracon11 localhost
Run the server and view the site in your favourite web browser:
./manage.py runserver localhost
iexplore http://localhost:8000
The MIT License (MIT)
Copyright © 2016 Santtu Pajukanta
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.