Skip to content

Commit 6c34039

Browse files
authored
fix: update plugin URLs to RPF (#2665)
* fix: update plugin URLs to RPF * chore: update more github urls to RPF
1 parent 1211d3d commit 6c34039

76 files changed

Lines changed: 198 additions & 197 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## How can I contribute?
44

5-
- [Suggest](https://github.com/google/blockly-samples/issues/new?assignees=&labels=type%3A+feature+request%2C+triage&template=feature_request.md) plugins, examples, or codelabs
5+
- [Suggest](https://github.com/RaspberryPiFoundation/blockly-samples/issues/new?assignees=&labels=type%3A+feature+request%2C+triage&template=feature_request.md) plugins, examples, or codelabs
66
- :arrow_right: Start by reading [How To Write A Good Issue](https://developers.google.com/blockly/guides/modify/contribute/write_a_good_issue)
77
- Implement plugins, examples, or codelabs
88
- :arrow_right: Read up on how to [Add a Plugin](https://developers.google.com/blockly/guides/modify/contribute/add_a_plugin) or [Write a Codelab](https://developers.google.com/blockly/guides/modify/contribute/write_a_codelab)
9-
- [Report bugs](https://github.com/google/blockly-samples/issues/new?assignees=&labels=type%3A+bug%2C+triage&template=bug_report.md)
9+
- [Report bugs](https://github.com/RaspberryPiFoundation/blockly-samples/issues/new?assignees=&labels=type%3A+bug%2C+triage&template=bug_report.md)
1010
- :arrow_right: Start by reading [How To Write A Good Issue](https://developers.google.com/blockly/guides/modify/contribute/write_a_good_issue)
1111
- Fix bugs
1212
- :arrow_right: Start by reading [Finding a Good Issue](https://developers.google.com/blockly/guides/modify/contribute/issue_labels)

codelabs/context_menu_option/context_menu_option.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: How to add a context menu option in Blockly.
33
id: context-menu-option
44
categories: blockly,codelab,contextmenu
55
status: Published
6-
Feedback Link: https://github.com/google/blockly-samples/issues/new/choose
6+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
77

88
# Customizing your context menus
99

@@ -34,12 +34,12 @@ This codelab is focused on Blockly's context menus. Non-relevant concepts and co
3434

3535
You can get the sample code for this code by either downloading the zip here:
3636

37-
[Download zip](https://github.com/google/blockly-samples/archive/master.zip)
37+
[Download zip](https://github.com/RaspberryPiFoundation/blockly-samples/archive/master.zip)
3838

3939
or by cloning this git repo:
4040

4141
```bash
42-
git clone https://github.com/google/blockly-samples.git
42+
git clone https://github.com/RaspberryPiFoundation/blockly-samples.git
4343
```
4444

4545
If you downloaded the source as a zip, unpacking it should give you a root folder named `blockly-samples-master`.

codelabs/css/css.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
author: Blockly Team summary: How to use CSS in Blockly. id: css-identifier
22
categories: blockly,codelab,css status: Published feedback link:
3-
https://github.com/google/blockly-samples/issues/new/choose
3+
https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
44

55
# Use CSS in Blockly
66

codelabs/custom_generator/custom_generator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: Codelab showing how to create and use a custom generator.
33
id: custom-generator
44
categories: blockly,codelab,generator
55
status: Published
6-
Feedback Link: https://github.com/google/blockly-samples/issues/new/choose
6+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
77

88
# Build a custom generator
99

@@ -43,7 +43,7 @@ Use the [`npx @blockly/create-package app`](https://www.npmjs.com/package/@block
4343

4444
The initial application has one custom block and includes JavaScript generator definitions for that block. Since this codelab will be creating a JSON generator instead, it will remove that custom block and add its own.
4545

46-
The complete code used in this codelab can be viewed in blockly-samples under [`examples/custom-generator-codelab`](https://github.com/google/blockly-samples/tree/master/examples/custom-generator-codelab).
46+
The complete code used in this codelab can be viewed in blockly-samples under [`examples/custom-generator-codelab`](https://github.com/RaspberryPiFoundation/blockly-samples/tree/master/examples/custom-generator-codelab).
4747

4848
Before setting up the rest of the application, change the storage key used for this codelab application. This will ensure that the workspace is saved in its own storage, separate from the regular sample app, so that it doesn't interfere with other demos. In `serialization.js`, change the value of `storageKey` to some unique string. `jsonGeneratorWorkspace` will work:
4949

codelabs/custom_renderer/custom_renderer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: Codelab showing how to create custom renderers.
33
id: custom-renderer
44
categories: blockly,codelab,rendering,customization
55
status: Published
6-
Feedback Link: https://github.com/google/blockly-samples/issues/new/choose
6+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
77

88
# Build custom renderers
99

@@ -49,7 +49,7 @@ Use the Use the [`npx @blockly/create-package`](https://www.npmjs.com/package/@b
4949

5050
The initial application uses the default renderer and contains no code or definitions for a custom renderer.
5151

52-
The complete code used in this codelab can be viewed in blockly-samples under [`examples/custom-renderer-codelab`](https://github.com/google/blockly-samples/tree/master/examples/custom-renderer-codelab).
52+
The complete code used in this codelab can be viewed in blockly-samples under [`examples/custom-renderer-codelab`](https://github.com/RaspberryPiFoundation/blockly-samples/tree/master/examples/custom-renderer-codelab).
5353

5454
Before setting up the rest of the application, change the storage key used for this codelab application. This will ensure that the workspace is saved in its own storage, separate from the regular sample app, so that it doesn't interfere with other demos. In `serialization.js`, change the value of `storageKey` to some unique string. `customRenderersWorkspace` will work:
5555

codelabs/custom_toolbox/custom_toolbox.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: Codelab to customize a toolbox
33
id: custom-toolbox
44
categories: blockly,codelab,toolbox,customization
55
status: Published
6-
Feedback Link: https://github.com/google/blockly-samples/issues/new/choose
6+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
77

88
# Customizing a Blockly toolbox
99

@@ -27,7 +27,7 @@ The resulting toolbox is shown below.
2727

2828
![A toolbox with colored background and the blockly label above the category text.](./final_toolbox.png)
2929

30-
The code samples are written in ES6 syntax. You can find the code for the [completed custom toolbox](https://github.com/google/blockly-samples/tree/master/examples/custom-toolbox-codelab/complete-code/index.html) on GitHub.
30+
The code samples are written in ES6 syntax. You can find the code for the [completed custom toolbox](https://github.com/RaspberryPiFoundation/blockly-samples/tree/master/examples/custom-toolbox-codelab/complete-code/index.html) on GitHub.
3131

3232
### What you'll need
3333
- A browser.
@@ -44,12 +44,12 @@ toolbox definition that can be found in the provided code.
4444
### Download the sample code
4545
You can get the sample code for this codelab by either downloading the zip here:
4646

47-
[Download zip](https://github.com/google/blockly-samples/archive/master.zip)
47+
[Download zip](https://github.com/RaspberryPiFoundation/blockly-samples/archive/master.zip)
4848

4949
or by cloning this git repo:
5050

5151
```bash
52-
git clone https://github.com/google/blockly-samples.git
52+
git clone https://github.com/RaspberryPiFoundation/blockly-samples.git
5353
```
5454

5555
If you downloaded the source as a zip, unpacking it should give you a root folder named `blockly-samples-master`.
@@ -520,4 +520,4 @@ The toolbox can be customized in a variety of ways to make it work for your appl
520520
* How to add an icon by adding a custom CSS class to the icon div.
521521
* How to change what HTML Elements are used for different parts of a category.
522522
* How to create a custom toolbox item.
523-
You can find the code for the [completed custom toolbox](https://github.com/google/blockly-samples/tree/master/examples/custom-toolbox-codelab/complete-code) on GitHub.
523+
You can find the code for the [completed custom toolbox](https://github.com/RaspberryPiFoundation/blockly-samples/tree/master/examples/custom-toolbox-codelab/complete-code) on GitHub.

codelabs/getting_started/getting_started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: In this codelab, you’ll add Blockly editor to a simple web app, to al
33
id: getting-started
44
categories: blockly,codelab,quickstart
55
status: Published
6-
Feedback Link: https://github.com/google/blockly-samples/issues/new/choose
6+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
77

88
# Getting started with Blockly
99

@@ -43,12 +43,12 @@ This codelab is focused on Blockly. The app structure, non-relevant concepts and
4343

4444
You can get the sample code for this code by either downloading the zip here:
4545

46-
[Download zip](https://github.com/google/blockly-samples/archive/master.zip)
46+
[Download zip](https://github.com/RaspberryPiFoundation/blockly-samples/archive/master.zip)
4747

4848
or by cloning this git repo:
4949

5050
```bash
51-
git clone https://github.com/google/blockly-samples.git
51+
git clone https://github.com/RaspberryPiFoundation/blockly-samples.git
5252
```
5353

5454
If you downloaded the source as a zip, unpacking it should give you a root folder named `blockly-samples-master`.
@@ -119,7 +119,7 @@ Importing Blockly this way loads four default modules.
119119

120120
### Alternate imports
121121

122-
There are many ways to import a library in JavaScript, and this tutorial does not cover all of them. For samples that show how to integrate Blockly in your project, look at the `examples` folder in [blockly-samples](https://github.com/google/blockly-samples).
122+
There are many ways to import a library in JavaScript, and this tutorial does not cover all of them. For samples that show how to integrate Blockly in your project, look at the `examples` folder in [blockly-samples](https://github.com/RaspberryPiFoundation/blockly-samples).
123123

124124
You can also define your imports more carefully to get [different generators](https://www.npmjs.com/package/blockly#blockly-generators) and [locales](https://www.npmjs.com/package/blockly#blockly-languages).
125125

codelabs/sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: Blockly
66
tags:
77
status: Published
88
authors: The Blockly Team
9-
Feedback Link: https://github.com/google/blockly-samples/issues/new/choose
9+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
1010

1111
---
1212

codelabs/template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: CODELAB SUMMARY
33
id: TEMPLATE-CODELAB-ID
44
categories: blockly,codelab,MORE CATEGORIES
55
status: Draft
6-
Feedback Link: https://github.com/google/blockly-samples/issues/new
6+
Feedback Link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new
77

88
# CODELAB TITLE
99

codelabs/theme_extension/theme_extension.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: How to extend a theme in Blockly.
33
id: theme-extension-identifier
44
categories: blockly,codelab,theme
55
status: Published
6-
feedback link: https://github.com/google/blockly-samples/issues/new/choose
6+
feedback link: https://github.com/RaspberryPiFoundation/blockly-samples/issues/new/choose
77

88
# Customizing your themes
99

@@ -33,12 +33,12 @@ are glossed over and provided for you to simple copy and paste.
3333

3434
You can get the sample code for this code by either downloading the zip here:
3535

36-
[Download zip](https://github.com/google/blockly-samples/archive/master.zip)
36+
[Download zip](https://github.com/RaspberryPiFoundation/blockly-samples/archive/master.zip)
3737

3838
or by cloning this git repo:
3939

4040
```bash
41-
git clone https://github.com/google/blockly-samples.git
41+
git clone https://github.com/RaspberryPiFoundation/blockly-samples.git
4242
```
4343

4444
If you downloaded the source as a zip, unpacking it should give you a root folder named `blockly-samples-master`.

0 commit comments

Comments
 (0)