Skip to content

Commit

Permalink
build system update
Browse files Browse the repository at this point in the history
  • Loading branch information
samizdatco committed Jun 20, 2011
1 parent ca81e4f commit 279231d
Show file tree
Hide file tree
Showing 15 changed files with 130 additions and 209 deletions.
12 changes: 12 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Arbor.js Changes
----------------

Version 0.92 | 19 jun 2011
--------------------------

* Creating nodes with an initial x/y or fixed position now works as advertised

* Calling ParticleSystem's .screen() method without arguments will now
return an object with fields describing the current screen state

* Fix for problems on chrome when running from file:// urls

* Added a shell script to run a local http server so the demos will work without
needing to be hosted somewhere

Version 0.91 | 17 jan 2011
--------------------------
Expand Down
12 changes: 12 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ The docs folder contains a sample project that demonstrates some of the
basic idioms for working with the library to build a visualization. More
detailed documentation can be found at http://arborjs.org/reference.

In addition, the demos folder contains standalone versions of the demos
at arborjs.org. But since all of them use xhr to fetch their data, you'll
still need to view them from an http server. If you don't have a copy of
apache handy, use the demo-server.sh script to create a local server.

Colophon
--------

Expand All @@ -57,6 +62,13 @@ code.
[2] <https://github.com/dhotson/springy>
[3] <http://arborjs.org/docs/barnes-hut>

Contribute
----------

Code submissions are greatly appreciated and highly encouraged. Please send
pull requests with fixes/enhancements/etc. to samizdatco on github. The
oldschool may also pipe their diff -u output to [email protected].

License
-------

Expand Down
9 changes: 5 additions & 4 deletions build/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
import shutil





# apparently there is no stable download link for <most-recent-version> of
# yui, so this could url well be stale. if so you can try looking for a
# new link at: http://yuilibrary.com/downloads/#yuicompressor
YUI_LIB_URL = "http://yui.zenfs.com/releases/yuicompressor/yuicompressor-2.4.6.zip"

# your system configuration may vary...
YUI_PATH = "/usr/local/bin/yui"
Expand Down Expand Up @@ -176,7 +177,7 @@ def get_yui():
from cStringIO import StringIO

print "fetching yui compressor"
data = urlopen('http://yuilibrary.com/downloads/yuicompressor/yuicompressor-2.4.2.zip')
data = urlopen(YUI_LIB_URL)
yuizip = ZipFile(StringIO(data.read()))
jarpath = [f for f in yuizip.namelist() if 'build/yuicompressor' in f][0]

Expand Down
12 changes: 12 additions & 0 deletions build/tmpl/changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Arbor.js Changes
----------------

Version 0.92 | 19 jun 2011
--------------------------

* Creating nodes with an initial x/y or fixed position now works as advertised

* Calling ParticleSystem's .screen() method without arguments will now
return an object with fields describing the current screen state

* Fix for problems on chrome when running from file:// urls

* Added a shell script to run a local http server so the demos will work without
needing to be hosted somewhere

Version 0.91 | 17 jan 2011
--------------------------
Expand Down
12 changes: 12 additions & 0 deletions build/tmpl/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ The docs folder contains a sample project that demonstrates some of the
basic idioms for working with the library to build a visualization. More
detailed documentation can be found at http://arborjs.org/reference.

In addition, the demos folder contains standalone versions of the demos
at arborjs.org. But since all of them use xhr to fetch their data, you'll
still need to view them from an http server. If you don't have a copy of
apache handy, use the demo-server.sh script to create a local server.

Colophon
--------

Expand All @@ -57,6 +62,13 @@ code.
[2] <https://github.com/dhotson/springy>
[3] <http://arborjs.org/docs/barnes-hut>

Contribute
----------

Code submissions are greatly appreciated and highly encouraged. Please send
pull requests with fixes/enhancements/etc. to samizdatco on github. The
oldschool may also pipe their diff -u output to [email protected].

License
-------

Expand Down
18 changes: 18 additions & 0 deletions demos/_/jquery-1.6.1.min.js

Large diffs are not rendered by default.

167 changes: 0 additions & 167 deletions demos/_/jquery.1.4.4.min.js

This file was deleted.

32 changes: 0 additions & 32 deletions demos/_/jquery.address-1.3.1.min.js

This file was deleted.

Loading

0 comments on commit 279231d

Please sign in to comment.