diff --git a/.gitignore b/.gitignore index dde3895fc..43638e075 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store *.pyc +*.komodoproject diff --git a/appengine/report.py b/appengine/report.py deleted file mode 100644 index e15a8ff4c..000000000 --- a/appengine/report.py +++ /dev/null @@ -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.") diff --git a/appengine/storage.js b/appengine/storage.js index 8ba7c0a20..756bd7d67 100644 --- a/appengine/storage.js +++ b/appengine/storage.js @@ -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. diff --git a/appengine/storage.py b/appengine/storage.py index 983e15bde..014d986f8 100644 --- a/appengine/storage.py +++ b/appengine/storage.py @@ -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. diff --git a/apps/blockfactory/blocks.js b/apps/blockfactory/blocks.js index 40b97c03f..224a8f18d 100644 --- a/apps/blockfactory/blocks.js +++ b/apps/blockfactory/blocks.js @@ -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. diff --git a/apps/blockfactory/factory.js b/apps/blockfactory/factory.js index 5a0e133f4..2bfebaadc 100644 --- a/apps/blockfactory/factory.js +++ b/apps/blockfactory/factory.js @@ -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. diff --git a/apps/blockfactory/preview.js b/apps/blockfactory/preview.js index 2a67be6a0..ca4dce04a 100644 --- a/apps/blockfactory/preview.js +++ b/apps/blockfactory/preview.js @@ -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. diff --git a/apps/code/code.js b/apps/code/code.js index dc9418e16..627d8db11 100644 --- a/apps/code/code.js +++ b/apps/code/code.js @@ -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. diff --git a/apps/common.js b/apps/common.js index b91c65b76..80fc5ec2f 100644 --- a/apps/common.js +++ b/apps/common.js @@ -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. diff --git a/apps/graph/blocks.js b/apps/graph/blocks.js index 698bef8af..c52095c59 100644 --- a/apps/graph/blocks.js +++ b/apps/graph/blocks.js @@ -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. diff --git a/apps/graph/graph.js b/apps/graph/graph.js index 2c5cbfbf6..fddbc7953 100644 --- a/apps/graph/graph.js +++ b/apps/graph/graph.js @@ -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. diff --git a/apps/index/index.js b/apps/index/index.js index fd302b20e..871fef060 100644 --- a/apps/index/index.js +++ b/apps/index/index.js @@ -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. diff --git a/apps/index/template.soy b/apps/index/template.soy index 6359329ee..b23a81480 100644 --- a/apps/index/template.soy +++ b/apps/index/template.soy @@ -123,6 +123,6 @@ span> // The footer messages are set in index.html.
- blockly.googlecode.com + github.com/google/blockly {/template} diff --git a/apps/maze/blocks.js b/apps/maze/blocks.js index 6beef11fe..a844a5080 100644 --- a/apps/maze/blocks.js +++ b/apps/maze/blocks.js @@ -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. diff --git a/apps/maze/maze.js b/apps/maze/maze.js index 1de4e1ba5..62e2ae6be 100644 --- a/apps/maze/maze.js +++ b/apps/maze/maze.js @@ -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. diff --git a/apps/plane/blocks.js b/apps/plane/blocks.js index b30227eb4..7441bc2e5 100644 --- a/apps/plane/blocks.js +++ b/apps/plane/blocks.js @@ -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. diff --git a/apps/plane/plane.js b/apps/plane/plane.js index 39d8fa9d1..561aeee10 100644 --- a/apps/plane/plane.js +++ b/apps/plane/plane.js @@ -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. diff --git a/apps/puzzle/blocks.js b/apps/puzzle/blocks.js index 22cf7fb54..43897b9da 100644 --- a/apps/puzzle/blocks.js +++ b/apps/puzzle/blocks.js @@ -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. diff --git a/apps/puzzle/puzzle.js b/apps/puzzle/puzzle.js index f478e2db9..9b5439cf4 100644 --- a/apps/puzzle/puzzle.js +++ b/apps/puzzle/puzzle.js @@ -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. diff --git a/apps/slider.js b/apps/slider.js index 73a0b8b2a..c2997d9d5 100644 --- a/apps/slider.js +++ b/apps/slider.js @@ -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. diff --git a/apps/turtle/blocks.js b/apps/turtle/blocks.js index ea0af82da..1cf75f389 100644 --- a/apps/turtle/blocks.js +++ b/apps/turtle/blocks.js @@ -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. diff --git a/apps/turtle/turtle.js b/apps/turtle/turtle.js index 3a4cf2979..348859a09 100644 --- a/apps/turtle/turtle.js +++ b/apps/turtle/turtle.js @@ -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. diff --git a/blocks/colour.js b/blocks/colour.js index c5cb79cf6..a3a9843ae 100644 --- a/blocks/colour.js +++ b/blocks/colour.js @@ -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. diff --git a/blocks/lists.js b/blocks/lists.js index c54b2602a..83fc2abf3 100644 --- a/blocks/lists.js +++ b/blocks/lists.js @@ -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. diff --git a/blocks/logic.js b/blocks/logic.js index 87eb29442..a1a6f0630 100644 --- a/blocks/logic.js +++ b/blocks/logic.js @@ -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. diff --git a/blocks/loops.js b/blocks/loops.js index 3f7629920..5b1a38865 100644 --- a/blocks/loops.js +++ b/blocks/loops.js @@ -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. diff --git a/blocks/math.js b/blocks/math.js index e87b860b2..eb81b847a 100644 --- a/blocks/math.js +++ b/blocks/math.js @@ -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. diff --git a/blocks/procedures.js b/blocks/procedures.js index d872f1b81..505d3ec8c 100644 --- a/blocks/procedures.js +++ b/blocks/procedures.js @@ -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. diff --git a/blocks/text.js b/blocks/text.js index f7a23ebaf..99a268c2e 100644 --- a/blocks/text.js +++ b/blocks/text.js @@ -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. diff --git a/blocks/variables.js b/blocks/variables.js index 16aa097f7..1c46b33a5 100644 --- a/blocks/variables.js +++ b/blocks/variables.js @@ -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. diff --git a/build.py b/build.py index 13e1c8e73..7e14552b7 100755 --- a/build.py +++ b/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. diff --git a/codereview.settings b/codereview.settings deleted file mode 100644 index 615c21885..000000000 --- a/codereview.settings +++ /dev/null @@ -1,3 +0,0 @@ -CODE_REVIEW_SERVER: codereview.appspot.com -VIEW_VC: http://code.google.com/p/blockly/source/detail?r= -CC_LIST: diff --git a/core/block.js b/core/block.js index 332ba357a..b3678caf8 100644 --- a/core/block.js +++ b/core/block.js @@ -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. diff --git a/core/block_svg.js b/core/block_svg.js index ef78352b7..cc7fe7f89 100644 --- a/core/block_svg.js +++ b/core/block_svg.js @@ -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. diff --git a/core/blockly.js b/core/blockly.js index 5b74ac91f..5b7b1142e 100644 --- a/core/blockly.js +++ b/core/blockly.js @@ -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. diff --git a/core/blocks.js b/core/blocks.js index 79b0e1ed7..8d3e23e78 100644 --- a/core/blocks.js +++ b/core/blocks.js @@ -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. diff --git a/core/bubble.js b/core/bubble.js index c5bc01351..a6cc14165 100644 --- a/core/bubble.js +++ b/core/bubble.js @@ -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. diff --git a/core/comment.js b/core/comment.js index 86281b527..b42e02f30 100644 --- a/core/comment.js +++ b/core/comment.js @@ -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. diff --git a/core/connection.js b/core/connection.js index 0e8fdf69b..bfe680135 100644 --- a/core/connection.js +++ b/core/connection.js @@ -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. diff --git a/core/contextmenu.js b/core/contextmenu.js index 2f46d4bf6..fe25b8796 100644 --- a/core/contextmenu.js +++ b/core/contextmenu.js @@ -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. diff --git a/core/css.js b/core/css.js index c01e22249..421066576 100644 --- a/core/css.js +++ b/core/css.js @@ -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. diff --git a/core/field.js b/core/field.js index b9a692d01..109eee3ee 100644 --- a/core/field.js +++ b/core/field.js @@ -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. diff --git a/core/field_angle.js b/core/field_angle.js index e49440020..e7b37eeae 100644 --- a/core/field_angle.js +++ b/core/field_angle.js @@ -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. diff --git a/core/field_checkbox.js b/core/field_checkbox.js index d3066e1f5..3a75cb582 100644 --- a/core/field_checkbox.js +++ b/core/field_checkbox.js @@ -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. diff --git a/core/field_colour.js b/core/field_colour.js index 87081f5e2..dd2923db7 100644 --- a/core/field_colour.js +++ b/core/field_colour.js @@ -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. diff --git a/core/field_dropdown.js b/core/field_dropdown.js index 170e555db..e13767ede 100644 --- a/core/field_dropdown.js +++ b/core/field_dropdown.js @@ -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. diff --git a/core/field_image.js b/core/field_image.js index 5719a0116..c64bf89c4 100644 --- a/core/field_image.js +++ b/core/field_image.js @@ -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. diff --git a/core/field_label.js b/core/field_label.js index 308a9962d..3dc363316 100644 --- a/core/field_label.js +++ b/core/field_label.js @@ -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. diff --git a/core/field_textinput.js b/core/field_textinput.js index ebb038379..54d2f8894 100644 --- a/core/field_textinput.js +++ b/core/field_textinput.js @@ -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. diff --git a/core/field_variable.js b/core/field_variable.js index 83031a5dc..e7ca3d861 100644 --- a/core/field_variable.js +++ b/core/field_variable.js @@ -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. diff --git a/core/flyout.js b/core/flyout.js index 2abcc17a4..7fb840182 100644 --- a/core/flyout.js +++ b/core/flyout.js @@ -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. diff --git a/core/generator.js b/core/generator.js index 164ed590d..da5a16327 100644 --- a/core/generator.js +++ b/core/generator.js @@ -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. diff --git a/core/icon.js b/core/icon.js index dfabab382..d378cbb02 100644 --- a/core/icon.js +++ b/core/icon.js @@ -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. diff --git a/core/inject.js b/core/inject.js index e378700a0..df32c3d32 100644 --- a/core/inject.js +++ b/core/inject.js @@ -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. diff --git a/core/input.js b/core/input.js index b931c85df..5d8895c4a 100644 --- a/core/input.js +++ b/core/input.js @@ -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. diff --git a/core/msg.js b/core/msg.js index 5fd7c54d0..3d4f9de69 100644 --- a/core/msg.js +++ b/core/msg.js @@ -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. diff --git a/core/mutator.js b/core/mutator.js index 0152bb810..561c3c0a2 100644 --- a/core/mutator.js +++ b/core/mutator.js @@ -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. diff --git a/core/names.js b/core/names.js index 41e87705b..791a4c20f 100644 --- a/core/names.js +++ b/core/names.js @@ -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. diff --git a/core/procedures.js b/core/procedures.js index 15787f25f..474603157 100644 --- a/core/procedures.js +++ b/core/procedures.js @@ -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. diff --git a/core/realtime-client-utils.js b/core/realtime-client-utils.js index 04e43078a..ba8586328 100644 --- a/core/realtime-client-utils.js +++ b/core/realtime-client-utils.js @@ -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. diff --git a/core/realtime.js b/core/realtime.js index d73629785..88bfd836c 100644 --- a/core/realtime.js +++ b/core/realtime.js @@ -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. diff --git a/core/scrollbar.js b/core/scrollbar.js index 7df578b8b..a0e9618ed 100644 --- a/core/scrollbar.js +++ b/core/scrollbar.js @@ -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. diff --git a/core/toolbox.js b/core/toolbox.js index e2ba412a1..10b4619d1 100644 --- a/core/toolbox.js +++ b/core/toolbox.js @@ -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. diff --git a/core/tooltip.js b/core/tooltip.js index 876d20cf9..be59805cd 100644 --- a/core/tooltip.js +++ b/core/tooltip.js @@ -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. diff --git a/core/trashcan.js b/core/trashcan.js index b489d0c66..a96ed845b 100644 --- a/core/trashcan.js +++ b/core/trashcan.js @@ -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. diff --git a/core/utils.js b/core/utils.js index 152435d21..63d0c4dd8 100644 --- a/core/utils.js +++ b/core/utils.js @@ -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. diff --git a/core/variables.js b/core/variables.js index 267f926fe..097af2bad 100644 --- a/core/variables.js +++ b/core/variables.js @@ -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. diff --git a/core/warning.js b/core/warning.js index 9901deb66..e6e0fb9a2 100644 --- a/core/warning.js +++ b/core/warning.js @@ -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. diff --git a/core/widgetdiv.js b/core/widgetdiv.js index 7dd45b145..882952149 100644 --- a/core/widgetdiv.js +++ b/core/widgetdiv.js @@ -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. diff --git a/core/workspace.js b/core/workspace.js index 5ad6af55d..8ef1a3c35 100644 --- a/core/workspace.js +++ b/core/workspace.js @@ -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. diff --git a/core/xml.js b/core/xml.js index 0323b08ae..32d93440b 100644 --- a/core/xml.js +++ b/core/xml.js @@ -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. diff --git a/demos/fixed/index.html b/demos/fixed/index.html index e9814cdaf..05cfdd0ac 100644 --- a/demos/fixed/index.html +++ b/demos/fixed/index.html @@ -18,7 +18,7 @@
-This is a simple demo of injecting Blockly into a fixed-sized 'div' element.
diff --git a/demos/generator/index.html b/demos/generator/index.html index f2d452ebb..7d09773a4 100644 --- a/demos/generator/index.html +++ b/demos/generator/index.html @@ -19,7 +19,7 @@ -This is a simple demo of generating code from blocks.
diff --git a/demos/iframe/index.html b/demos/iframe/index.html index fa4c31521..7736728ec 100644 --- a/demos/iframe/index.html +++ b/demos/iframe/index.html @@ -30,7 +30,7 @@
- Blockly >
+ |