├── swg ├── __init__.py ├── core │ ├── __init__.py │ ├── authormanager.py │ ├── authorparser.py │ ├── tagmanager.py │ ├── templatemanager.py │ ├── pageparser.py │ ├── pager.py │ ├── categorymanager.py │ ├── config.py │ └── itemparser.py ├── entities │ ├── __init__.py │ ├── tag.py │ ├── category.py │ ├── author.py │ ├── page.py │ └── item.py ├── basic │ ├── db │ │ ├── categories.txt │ │ ├── pages │ │ │ ├── 2.txt │ │ │ ├── 0.txt │ │ │ └── 1.txt │ │ └── Your Name Here.txt │ ├── robots.txt │ ├── images │ │ ├── bg.jpg │ │ ├── bg.png │ │ ├── arrow.png │ │ ├── bg.jpg.1 │ │ ├── bg.png.1 │ │ ├── boat.jpg │ │ ├── date.png │ │ ├── edit.png │ │ ├── tags.png │ │ ├── arrow.png.1 │ │ ├── arrow.png.2 │ │ ├── author.png │ │ ├── author.png.1 │ │ ├── author.png.2 │ │ ├── bg-meta.gif │ │ ├── category.png │ │ ├── comments.png │ │ ├── date.png.1 │ │ ├── edit.png.1 │ │ ├── menubar.png │ │ ├── category.png.1 │ │ ├── comments.png.1 │ │ ├── contentbg.png │ │ ├── search-bg.png │ │ ├── search-go.png │ │ ├── contentbg.png.1 │ │ ├── header-bg-sm.jpg │ │ └── your-name-here.png │ ├── swg.cfg │ ├── templates │ │ ├── footer.tpl │ │ ├── feed.tpl │ │ ├── post.tpl │ │ ├── index.tpl │ │ ├── tag.tpl │ │ ├── category.tpl │ │ ├── sidebar.tpl │ │ ├── author.tpl │ │ ├── sitemap.tpl │ │ └── header.tpl │ └── css │ │ └── style.css ├── swg ├── swg-wordpress └── engine.py ├── .gitignore ├── MANIFEST.in ├── setup.py ├── README.md └── LICENSE /swg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swg/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swg/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swg/basic/db/categories.txt: -------------------------------------------------------------------------------- 1 | Personal 2 | Experience 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | dist 4 | build 5 | swg.egg-info 6 | -------------------------------------------------------------------------------- /swg/basic/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | Sitemap: /sitemap.xml 4 | 5 | -------------------------------------------------------------------------------- /swg/basic/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/bg.jpg -------------------------------------------------------------------------------- /swg/basic/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/bg.png -------------------------------------------------------------------------------- /swg/basic/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/arrow.png -------------------------------------------------------------------------------- /swg/basic/images/bg.jpg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/bg.jpg.1 -------------------------------------------------------------------------------- /swg/basic/images/bg.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/bg.png.1 -------------------------------------------------------------------------------- /swg/basic/images/boat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/boat.jpg -------------------------------------------------------------------------------- /swg/basic/images/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/date.png -------------------------------------------------------------------------------- /swg/basic/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/edit.png -------------------------------------------------------------------------------- /swg/basic/images/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/tags.png -------------------------------------------------------------------------------- /swg/basic/images/arrow.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/arrow.png.1 -------------------------------------------------------------------------------- /swg/basic/images/arrow.png.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/arrow.png.2 -------------------------------------------------------------------------------- /swg/basic/images/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/author.png -------------------------------------------------------------------------------- /swg/basic/images/author.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/author.png.1 -------------------------------------------------------------------------------- /swg/basic/images/author.png.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/author.png.2 -------------------------------------------------------------------------------- /swg/basic/images/bg-meta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/bg-meta.gif -------------------------------------------------------------------------------- /swg/basic/images/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/category.png -------------------------------------------------------------------------------- /swg/basic/images/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/comments.png -------------------------------------------------------------------------------- /swg/basic/images/date.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/date.png.1 -------------------------------------------------------------------------------- /swg/basic/images/edit.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/edit.png.1 -------------------------------------------------------------------------------- /swg/basic/images/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/menubar.png -------------------------------------------------------------------------------- /swg/basic/images/category.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/category.png.1 -------------------------------------------------------------------------------- /swg/basic/images/comments.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/comments.png.1 -------------------------------------------------------------------------------- /swg/basic/images/contentbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/contentbg.png -------------------------------------------------------------------------------- /swg/basic/images/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/search-bg.png -------------------------------------------------------------------------------- /swg/basic/images/search-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/search-go.png -------------------------------------------------------------------------------- /swg/basic/images/contentbg.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/contentbg.png.1 -------------------------------------------------------------------------------- /swg/basic/images/header-bg-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/header-bg-sm.jpg -------------------------------------------------------------------------------- /swg/basic/images/your-name-here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/SWG/HEAD/swg/basic/images/your-name-here.png -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | exclude *.pyc .DS_Store .gitignore MANIFEST.in 2 | include setup.py 3 | include distribute_setup.py 4 | recursive-include swg *.py 5 | recursive-include swg/basic *.* 6 | recursive-include swg/importers *.* 7 | -------------------------------------------------------------------------------- /swg/basic/db/pages/2.txt: -------------------------------------------------------------------------------- 1 | Date: 2011-04-24 17:34:00 2 | Author: Your Name Here 3 | Categories: Personal, Experience 4 | Tags: swg, test, post, basic, website, structure 5 | Title: Worth A Thousand Words 6 | 7 |
8 |
9 |
8 | Hello world! 9 | 10 | This is your new static website installation, to read the instructions on how to customize everything, please click on the Instructions 11 | link on top menu. 12 |
13 | 14 | -------------------------------------------------------------------------------- /swg/basic/templates/footer.tpl: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | <%include file="sidebar.tpl"/> 4 | 5 | 6 | 7 | 12 | 13 | 14 |