mirror of
https://github.com/google/blockly.git
synced 2026-03-14 09:10:09 +01:00
Changing project location from Google Code to GitHub.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
.DS_Store
|
||||
*.pyc
|
||||
*.komodoproject
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
"""Blockly Demo: Report
|
||||
|
||||
Copyright 2012 Google Inc.
|
||||
https://blockly.googlecode.com/
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
"""
|
||||
|
||||
"""Store reports about code written by users.
|
||||
"""
|
||||
|
||||
__author__ = "ellen.spertus@gmail.com (Ellen Spertus)"
|
||||
|
||||
import cgi
|
||||
import logging
|
||||
|
||||
from google.appengine.ext import db
|
||||
|
||||
print "Content-type: text/plain\n"
|
||||
|
||||
class Report(db.Model):
|
||||
identifier = db.FloatProperty()
|
||||
application = db.StringProperty()
|
||||
date = db.DateTimeProperty(auto_now_add=True)
|
||||
level = db.IntegerProperty()
|
||||
result = db.IntegerProperty()
|
||||
# StringProperty is limited to 500 characters, so use TextProperty.
|
||||
program = db.TextProperty()
|
||||
|
||||
# Catch errors extracting form fields or converting to numeric types.
|
||||
# Let any other errors propagate up.
|
||||
try:
|
||||
forms = cgi.FieldStorage()
|
||||
identifier = float(forms["id"].value)
|
||||
application = forms["app"].value
|
||||
level = int(forms["level"].value)
|
||||
result = int(forms["result"].value)
|
||||
program = forms["program"].value
|
||||
row = Report(identifier = identifier, application = application,
|
||||
level = level, result = result, program = program)
|
||||
row.put()
|
||||
except ValueError, KeyError:
|
||||
logging.error("Unable to extract all form fields.")
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"""Blockly Demo: Storage
|
||||
|
||||
Copyright 2012 Google Inc.
|
||||
https://blockly.googlecode.com/
|
||||
https://github.com/google/blockly
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Block Factory Blocks
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Block Factory
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Block Factory
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Code
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Common code
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Graphing Calculator Blocks
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Graphing Calculator
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Index
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -123,6 +123,6 @@ span>
|
||||
|
||||
// The footer messages are set in index.html.
|
||||
<p><span id="footer_prefix"></span>
|
||||
<a href="https://blockly.googlecode.com/">blockly.googlecode.com</a>
|
||||
<a href="https://github.com/google/blockly">github.com/google/blockly</a>
|
||||
<span id="footer_suffix"></span>
|
||||
{/template}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Maze Blocks
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Maze
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Plane Seat Calculator Blocks
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Plane Seat Calculator
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Puzzle Blocks
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Puzzle
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: SVG Slider
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Turtle Graphics Blocks
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Blockly Apps: Turtle Graphics
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
4
build.py
4
build.py
@@ -2,7 +2,7 @@
|
||||
# Compresses the core Blockly files into a single JavaScript file.
|
||||
#
|
||||
# Copyright 2012 Google Inc.
|
||||
# https://blockly.googlecode.com/
|
||||
# https://github.com/google/blockly
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
@@ -290,7 +290,7 @@ class Gen_compressed(threading.Thread):
|
||||
[\w ]+
|
||||
|
||||
(Copyright \\d+ Google Inc.)
|
||||
https://blockly.googlecode.com/
|
||||
https://github.com/google/blockly
|
||||
|
||||
Licensed under the Apache License, Version 2.0 \(the "License"\);
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
CODE_REVIEW_SERVER: codereview.appspot.com
|
||||
VIEW_VC: http://code.google.com/p/blockly/source/detail?r=
|
||||
CC_LIST:
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2011 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2013 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Editor
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Fixed Blockly</h1>
|
||||
|
||||
<p>This is a simple demo of injecting Blockly into a fixed-sized 'div' element.</p>
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Generating JavaScript</h1>
|
||||
|
||||
<p>This is a simple demo of generating code from blocks.</p>
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
<table width="100%" height="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Iframe Blockly</h1>
|
||||
|
||||
<p>This is a simple demo of injecting Blockly into a resizable 'iframe' element.</p>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> > Demos</h1>
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> > Demos</h1>
|
||||
|
||||
<p>These demos are intended for developers who want to integrate Blockly with
|
||||
their own applications.</p>
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > JS Interpreter</h1>
|
||||
|
||||
<p>This is a simple demo of executing code wth a sandboxed JavaScript interpreter.</p>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Maximum Block Limit</h1>
|
||||
|
||||
<p>This is a demo of Blockly which has been restricted to a maximum of five blocks.</p>
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Realtime Collaboration</h1>
|
||||
|
||||
<p>This is a simple demo of realtime collaboration in Blockly.</p>
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init()">
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Right-to-Left</h1>
|
||||
|
||||
<div id="svgDiv"></div>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Cloud Storage</h1>
|
||||
|
||||
<p>This is a simple demo of cloud storage using App Engine.</p>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1><a href="https://blockly.googlecode.com/">Blockly</a> >
|
||||
<h1><a href="https://github.com/google/blockly">Blockly</a> >
|
||||
<a href="../index.html">Demos</a> > Toolbox</h1>
|
||||
|
||||
<p>This is a demo of a complex category structure for the toolbox.</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Visual Blocks Language
|
||||
*
|
||||
* Copyright 2012 Google Inc.
|
||||
* https://blockly.googlecode.com/
|
||||
* https://github.com/google/blockly
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user