Skip to content
This repository has been archived by the owner on Jul 9, 2020. It is now read-only.

Commit

Permalink
Version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Nov 20, 2011
1 parent ac9fcf3 commit 584ae81
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 56 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.txt
@@ -1,3 +1,10 @@
## 2011-11-21 0.5.0
-------------------
* Update all libs
* Upgrade watch mode
* Add -d option ($ZETA_LIBDIR) for support custom 'zeta://' paths
* Migrate from python-scss to pyscss

## 2011-10-30 0.4.24
--------------------
* Migrate to jquery 1.6.4
Expand Down
63 changes: 24 additions & 39 deletions README.rst
Expand Up @@ -78,7 +78,23 @@ Usage

$zeta ::

$ zeta --help
$ zeta help

usage: zeta [-h] [-v] {pack,watch,shell,libs} ...

positional arguments:
{pack,watch,shell,libs}
pack Parse file or dir, import css, js code and save with
prefix
watch Watch directory for changes and auto pack sources
shell A helper command to be used for shell integration
libs Show zeta libs

optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit

$ zeta pack --help

usage: zeta [-h] [-p PREFIX] [-f FORMAT] [-c] [-d DIRECTORY] source

Expand All @@ -99,45 +115,11 @@ $zeta ::
Add custom directory for search with prefix: 'zeta://'


Frameworks
===========
$zeta -s . ::

zeta.css
Zeta is a static framework.

zeta.js
Part of zeta framework. Include jQuery.

boilerplate.css 0.9.5
HTML5 Boilerplate is the professional badass's base HTML/CSS/JS template for a fast, robust and future-proof site. See http://html5boilerplate.com/

compass.css
Compass is a stylesheet authoring framework. See: http://compass-style.org/

blueprint.css 1.0
Blueprint is a CSS framework. See: http://www.blueprintcss.org/

jquery.js 1.6.2
jQuery is a fast and concise JavaScript Library. See http://jquery.com


Zeta blocks
============
$ zeta -z . ::

z-base
z-print
z-grid
z-typography
z-placeholder
z-reset


Changes
=======

Make sure you`ve read the following document if you are upgrading from previous versions of makesite:
Make sure you`ve read the following document if you are upgrading from previous versions of zetalibrary:

http://packages.python.org/zetalibrary/changes.html

Expand All @@ -164,9 +146,13 @@ Examples
-rw-r--r-- 1 www-data www-data 0 2011-02-16 15:09 _print.css


#. Parse /static/main.js ::
#. Parse `/static/main.js` and minify ::

$ zeta -c /static/main.js

$> zeta /static/main.js
#. Watch directory `/static/` ::
$ zeta watch /static


Options
Expand Down Expand Up @@ -225,5 +211,4 @@ Note
.. _SCSS: http://sass-lang.com
.. _compass: http://compass-style.org/
.. _jQuery: http://jquery.com
.. _python-scss: http://packages.python.org/scss/
.. _klen: https://klen.github.com
2 changes: 1 addition & 1 deletion zetalibrary/settings.py
@@ -1,7 +1,7 @@
from os import path as op, environ


VERSION = '0.4.24'
VERSION = '0.5.0'
BASEDIR = op.abspath(op.dirname(__file__))
LIBDIR = op.join(BASEDIR, 'libs')
CUSTOMDIR = environ.get('ZETA_LIBDIR', None)
Expand Down
7 changes: 3 additions & 4 deletions zetalibrary/tests/zeta/_main.css
Expand Up @@ -283,10 +283,9 @@ address {
/* ========== */
/* From: '/home/klen/Projects/zeta-library/zetalibrary/tests/zeta/main.css' */
/* Zeta import: 'zeta:///zeta.css' */
/*
Zeta is a static framework.
*/
/* Zeta is a static framework.
Version 0.1
https://github.com/klen/zeta-libs */

/* ========== */
/* From: '/home/klen/Projects/zeta-library/zetalibrary/tests/zeta/main.css' */
Expand Down
7 changes: 3 additions & 4 deletions zetalibrary/tests/zeta/_main.css.orig
Expand Up @@ -283,10 +283,9 @@ address {
/* ========== */
/* From: '/home/klen/Projects/zeta-library/zetalibrary/tests/zeta/main.css' */
/* Zeta import: 'zeta:///zeta.css' */
/*
Zeta is a static framework.

*/
/* Zeta is a static framework.
Version 0.1
https://github.com/klen/zeta-libs */

/* ========== */
/* From: '/home/klen/Projects/zeta-library/zetalibrary/tests/zeta/main.css' */
Expand Down
7 changes: 3 additions & 4 deletions zetalibrary/tests/zeta/_main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions zetalibrary/tests/zeta/_main.js.orig
Expand Up @@ -12,10 +12,9 @@
// ==========
// From: '/home/klen/Projects/zeta-library/zetalibrary/tests/zeta/main.js'
// Zeta import: 'zeta:///zeta.js'
/*
Part of zeta framework. Include jQuery.

*/
/* Zeta is a static framework.
Version 0.1
https://github.com/klen/zeta-libs */


(function($){
Expand Down

0 comments on commit 584ae81

Please sign in to comment.