Mercurial > hg > webcalc
diff README.txt @ 1:12ac99c240ca default tip
* add documentation
* add 1..10 autostep feature
* bump version
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 10 Mar 2010 17:48:11 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Wed Mar 10 17:48:11 2010 -0500 @@ -0,0 +1,26 @@ +webcalc +======= + +*through the web calculator* + +Usage +----- + +webcalc uses the full path of the URL as a calculator: + + ``http://127.0.0.1:5151/(5+3)/2`` + +Should yield a ``text/plain`` document with contents ``4.0``. + +Query string arguments may be used to iterate over arguments: + + ``http://127.0.0.1:5151/(5+a)/2?a=1..10`` + +Values and ranges may be comma separated (e.g. ``a=1,3,5..10``). +Ranges may be specified as *start, step, end*. If *step* is omitted, +it is taken to be 1.0. + +TODO +---- + + * add multiple front ends, including a graphing calculator