Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
Commit message (Expand)AuthorAgeFilesLines
* remove unused primitive methods in tabasicsMarion2013-08-121-45/+0
* add Primitives for the 'less than' and 'greater than' blocksMarion2013-08-123-10/+48
* construct proper ASTs for type conversionMarion2013-08-111-12/+16
* return None as the value of non-value blocksMarion2013-08-111-6/+6
* avoid adding a type prefix to the value of value blocks when exporting themMarion2013-08-112-8/+18
* Merge branch 'master' into primitive-classMarion2013-08-112-2/+2
|\
| * Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainlineHEADmasterMarion2013-08-091-2/+2
| |\
| * \ Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainlineMarion2013-07-261-0/+8
| |\ \
| * | | use the value '%nothing%' only in talogo, and None elsewhereMarion2013-07-252-2/+2
* | | | add Primitive for the '==' ('equals') blockMarion2013-08-113-6/+97
* | | | add Primitives for the color blocksMarion2013-08-112-1/+28
* | | | Merge branch 'color-class' into primitive-classMarion2013-08-106-88/+93
|\ \ \ \
| * | | | remove superfluous recursive call to Turtle.set_colorcolor-classMarion2013-08-101-2/+0
| * | | | remove useless try-except statements that catch errors that are never raisedMarion2013-08-091-32/+5
| * | | | introduce a Color type for the pen color in block programsMarion2013-08-096-57/+91
| | |_|/ | |/| |
| * | | Merge commit 'refs/merge-requests/6' of git://git.sugarlabs.org/turtleart/mai...Walter Bender2013-08-091-2/+2
| |\ \ \ | | |_|/ | |/| |
* | | | rename the LogoCode's loop function to prim_loopMarion2013-08-094-5/+5
* | | | nicer line wrapping in comments and docstrings (no changes to code)Marion2013-08-091-5/+6
* | | | add Primitive for the 'hspace' (deprecated) and 'vspace' blocksMarion2013-08-091-2/+4
* | | | Merge branch 'update-heading-label' into primitive-classMarion2013-08-091-2/+2
|\ \ \ \ | | |/ / | |/| |
| * | | fix updating the heading label in snail execution modeMarion2013-08-091-2/+2
* | | | update the boilerplate exported code with the new location of window_setupMarion2013-08-091-1/+1
* | | | add Primitives for the 'if-then' and 'if-then-else' blocksMarion2013-08-094-24/+36
* | | | add Primitives for the 'and' and 'or' blocksMarion2013-08-072-5/+6
* | | | add a Primitive for the 'not' blockMarion2013-08-071-1/+1
* | | | add Primitives for the 'pen state', 'while', and 'until' blocksMarion2013-08-072-7/+31
* | | | introduce the call_me attr to Primitives, it's parallel to export_meMarion2013-08-042-43/+58
* | | | add Primitives for the 'xcor' and 'ycor' blocksMarion2013-08-034-26/+65
* | | | add more standard operators (unary and binary), handle the uniformlyMarion2013-08-031-11/+93
* | | | replace float.__neg__ with Primitive.minus, which can also be used for 2 argsMarion2013-08-032-5/+17
* | | | treat float.__neg__ (minus sign) as a unary operator taking any argumentMarion2013-08-031-4/+2
* | | | add Primitives for the 'start fill' and 'end fill' blocksMarion2013-08-031-2/+2
* | | | add Primitives for the 'set pen size' block and the 'pen size' value blockMarion2013-08-031-3/+3
* | | | add Primitives for the 'pen up' and 'pen down' commandsMarion2013-08-033-33/+48
* | | | add Primitive for the 'heading' value blockMarion2013-08-031-4/+1
* | | | add Primitives for the 'color', 'shade', and 'gray' value blocksMarion2013-08-031-10/+3
* | | | add Primitives for the 'set shade' and 'set gray' blockMarion2013-08-031-4/+4
* | | | add Primitive for the 'set color' blockMarion2013-08-031-5/+4
* | | | add Primitive object for the 'fillscreen' blockMarion2013-08-032-5/+11
* | | | make finding tops of block stacks more efficient in taexportpythonMarion2013-08-021-7/+12
* | | | make the check for duplicate argument indices slightly more efficientMarion2013-08-021-2/+7
* | | | check for duplicate argument indices in the slot wrappers of PrimitivesMarion2013-08-021-2/+18
* | | | Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainline into prim...Marion2013-08-021-0/+8
|\ \ \ \ | | |/ / | |/| |
| * | | fix problems with non-interactive modeWalter Bender2013-07-251-0/+8
* | | | export tool makes exported code use talogo's execution engineMarion2013-08-021-2/+9
* | | | when running exported code, show errors in the status barMarion2013-08-021-1/+4
* | | | when running exported code, print the traceback of errors to stderrMarion2013-08-021-8/+16
* | | | highlight faulty block if an error occurs during exportMarion2013-08-012-10/+18
* | | | enable i18n for the new error messagesMarion2013-08-012-8/+10
* | | | show a nice error message if the program contains non-exportable blocksMarion2013-08-012-20/+28