Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* add Primitive for 'division' blockMarion2013-08-151-5/+15
* use float() instead of int() to convert Colors to numbersMarion2013-08-151-3/+3
* add Primitive for the 'mod' blockMarion2013-08-152-6/+48
* add Primitve for the 'square root' blockMarion2013-08-122-16/+29
* special handling of type conversion to number when generating an ASTMarion2013-08-121-2/+65
* add Primitive for the 'identity' blockMarion2013-08-121-7/+1
* 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-08-0911-2493/+2612
| |\ \
| * \ \ Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainlineMarion2013-08-028-820/+843
| |\ \ \
| * \ \ \ Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainlineMarion2013-07-26112-960/+1549
| |\ \ \ \
| * | | | | use the value '%nothing%' only in talogo, and None elsewhereMarion2013-07-252-2/+2
* | | | | | add Primitive for the '==' ('equals') blockMarion2013-08-113-6/+97
* | | | | | fix handling of comparison operators in codegenMarion2013-08-111-2/+2
* | | | | | add Primitives for the color blocksMarion2013-08-112-1/+28
* | | | | | Merge branch 'color-class' into primitive-classMarion2013-08-107-103/+108
|\ \ \ \ \ \
| * | | | | | 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-097-72/+106
| | |_|_|_|/ | |/| | | |
* | | | | | Merge remote-tracking branch 'mainline/master' into primitive-classMarion2013-08-1011-2493/+2612
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge commit 'refs/merge-requests/6' of git://git.sugarlabs.org/turtleart/mai...Walter Bender2013-08-091-2/+2
| |\ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | Commit from Sugar Labs: Translation System by user AlanJAS.: 431 of 431 messa...Pootle daemon2013-08-091-100/+108
| * | | | | Commit from Sugar Labs: Translation System by user cjl.: 431 of 431 messages ...Pootle daemon2013-08-081-100/+108
| * | | | | Merge branch 'master' of git.sugarlabs.org:turtleart/mainlinePootle daemon2013-08-082-0/+85
| |\ \ \ \ \
| | * | | | | new sample programWalter Bender2013-08-072-0/+85
| * | | | | | Commit from Sugar Labs: Translation System by user mschlager.: 422 of 431 mes...Pootle daemon2013-08-071-527/+526
| |/ / / / /
| * | | | | Commit from Sugar Labs: Translation System by user cjl.: 431 of 431 messages ...Pootle daemon2013-08-061-512/+511
| * | | | | Commit from Sugar Labs: Translation System by user cjl.: 418 of 431 messages ...Pootle daemon2013-08-061-532/+534
| * | | | | Commit from Sugar Labs: Translation System by user aputsiaq.: 431 of 431 mess...Pootle daemon2013-08-051-211/+225
| * | | | | Commit from Sugar Labs: Translation System by user cjl.: 395 of 431 messages ...Pootle daemon2013-08-051-511/+511
| * | | | | use samples instead of samples/thumbnailsWalter Bender2013-08-022-2/+4
| * | | | | update save_load_folder after icon_view selectWalter Bender2013-08-022-0/+2
| | |_|_|/ | |/| | |
* | | | | rename the LogoCode's loop function to prim_loopMarion2013-08-095-7/+7
* | | | | nicer line wrapping in comments and docstrings (no changes to code)Marion2013-08-092-22/+24
* | | | | 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 pyexported.window_setup, which must be imported into exported python codeMarion2013-08-092-0/+186
* | | | | fix codegen: only write 'else' if there are statements in the else clauseMarion2013-08-091-1/+3
* | | | | 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-073-7/+42
* | | | | introduce the call_me attr to Primitives, it's parallel to export_meMarion2013-08-042-43/+58