Skip to content

Commit

Permalink
Update README and Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
cscott committed Feb 12, 2020
1 parent 2ccb4bd commit 1f7b8c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ build-publish:
# internet, as well as github's gh-pages.
install: build-publish
rsync -avz --exclude=.git --exclude='*~' publish/ cscott.net:public_html/Projects/TurtleScript/
rsync -avz --exclude=.git --exclude='*~' publish/ dev.laptop.org:public_html/TurtleScript/
#rsync -avz --exclude=.git --exclude='*~' publish/ dev.laptop.org:public_html/TurtleScript/
$(RM) -rf clean
git clone --reference . -b gh-pages https://github.com/cscott/TurtleScript.git clean
git clone --reference . -b gh-pages git@github.com:cscott/TurtleScript.git clean
cd clean && git rm -rf .
cp -r publish/* publish/.[a-z]* clean/
cd clean && git add . && git commit -m "Updated `date`" && \
Expand Down
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ historical fragments, false starts, and loose ends.
State of the world: 2020-02-12
------------------------------
I dusted off this project and wrote TurtleScript interpreters for
PHP (http://github.com/cscott/php-turtle) and
Lua (http://github.com/cscott/lua-turtle). I also added a new
PHP (`php-turtle`_) and Lua (`lua-turtle`_). I also added a new
``push_local_frame`` bytecode operation to allow "register allocation"
of local variables which do not escape their scope, and improved
the standard library implementation.
Expand All @@ -74,6 +73,8 @@ I expect to use these runtimes to explore two (interrelated) projects:
`Multilingual JavaScript`_ and the use of JavaScript within
the MediaWiki Scribunto_ extension.

.. _php-turtle: http://github.com/cscott/php-turtle
.. _lua-turtle: http://github.com/cscott/lua-turtle
.. _Multilingual JavaScript: https://phabricator.wikimedia.org/T230665
.. _Scribunto: https://www.mediawiki.org/wiki/Extension:Scribunto

Expand Down

0 comments on commit 1f7b8c5

Please sign in to comment.