Skip to content

Commit 45ec5a3

Browse files
Rename "workshop" to "tutorial" across site
- Update GitHub issue templates and references and links across site to refer to "tutorials" in place of "workshops"
1 parent 1188fcb commit 45ec5a3

File tree

7 files changed

+43
-43
lines changed

7 files changed

+43
-43
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010
**Describe the bug**
1111
A clear and concise description of what the bug is.
1212

13-
**Does this bug apply to a specific lesson or workshop, or does it appear to be sitewide?**
13+
**Does this bug apply to a specific lesson or tutorial, or does it appear to be sitewide?**
1414
If the bug is specific to a lesson, please include the lesson URL.
1515

1616
**Expected behavior**
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: New Tutorial Proposal
3+
about: Suggest a new tutorial topic
4+
title: 'New Tutorial: [Proposed title]'
5+
labels: new-tutorial
6+
assignees: ''
7+
8+
---
9+
10+
Have an idea for a new tutorial? We'd love to discuss it. Please share some info
11+
to get the discussion started.
12+
13+
**What networking protocol would this tutorial address?**
14+
List specific projects such as IPFS, IPLD, libp2p, Multiformats, etc.
15+
16+
**What will the user know how to do after completing this tutorial?**
17+
Be specific, eg "Upload files using the JS IPFS file API"
18+
19+
**Describe the content of the tutorial.**
20+
Describe the tutorial in more detail. Do you have ideas for the APIs or methods
21+
to be taught, format to be used, or real-world examples to be included?
22+
23+
**What potential challenges do you forsee in building this tutorial?**
24+
For example, does the format you have in mind not fit the current capabilities
25+
of the site?
26+
27+
**Additional context (optional)**
28+
Would this ProtoSchool tutorial fit into a broader initiative to reach a certain
29+
user or use case? Did you get the idea because of a gap you saw while exploring
30+
a current tutorial?
31+
32+
**Would you like to build this tutorial yourself?**
33+
Do you have the time and skills to build this tutorial yourself, after some group
34+
brainstorming, or do you hope that someone else might have the bandwidth to do so?

.github/ISSUE_TEMPLATE/workshop-proposal.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Add your lesson to the routes in `main.js` and to the list of lessons in `Home.v
2828

2929
When adding your routes, it's important that you follow the existing naming
3030
convention, since the code used elsewhere will parse the route path to determine the
31-
shortname of the workshop, the current lesson number, and the total number of
32-
lessons in your workshop. For example, if you add 3 lessons with the following routes:
31+
shortname of the tutorial, the current lesson number, and the total number of
32+
lessons in your tutorial. For example, if you add 3 lessons with the following routes:
3333

3434
```
3535
{ path: '/basics/01', component: LessonBasics01 },

src/components/Build.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
<h2>Share a tutorial idea</h2>
1717
<p class="f4 fw5 lh-copy ma0 pv3 ">
1818
Have an idea for a new tutorial? Start by looking at the
19-
<a href="https://github.com/protoschool/protoschool.github.io/labels/new%20workshop">
20-
tutorial ideas</a> flagged with the "new workshop"
19+
<a href="https://github.com/protoschool/protoschool.github.io/labels/new%20tutorial">
20+
tutorial ideas</a> flagged with the "new tutorial"
2121
tag in the ProtoSchool issue queue. If there's a similar idea there
2222
already, join the conversation!
2323
</p>
2424
<p class="f4 fw5 lh-copy ma0 pv3 ">
2525
If you have an idea for a new tutorial that has not yet been proposed,
26-
please <a href="https://github.com/ProtoSchool/protoschool.github.io/issues/new?assignees=&labels=new-workshop&template=workshop-proposal.md&title=New+Workshop%3A+%5BProposed+title%5D">
26+
please <a href="https://github.com/ProtoSchool/protoschool.github.io/issues/new?assignees=&labels=new-tutorial&template=tutorial-proposal.md&title=New+Tutorial%3A+%5BProposed+title%5D">
2727
open an new issue</a> so we can share feedback before you get started
2828
building.
2929
</p>
@@ -50,7 +50,7 @@
5050
<p class="f4 fw5 lh-copy ma0 pv3 ">
5151
If the type of lesson you're
5252
hoping to create isn't supported by the current lesson structure,
53-
please <a href="https://github.com/ProtoSchool/protoschool.github.io/issues/new?assignees=&labels=new-workshop&template=workshop-proposal.md&title=New+Workshop%3A+%5BProposed+title%5D">
53+
please <a href="https://github.com/ProtoSchool/protoschool.github.io/issues/new?assignees=&labels=new-tutorial&template=tutorial-proposal.md&title=New+Tutorial%3A+%5BProposed+title%5D">
5454
open an issue</a> and tell us more about the format you have in mind.
5555
</p>
5656

src/lessons/Basics/01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
In this workshop we'll be exploring the IPFS DAG API, which lets us store data
1+
In this tutorial we'll be exploring the IPFS DAG API, which lets us store data
22
objects in IPFS. (You can store more exciting things in IPFS, like your favorite
33
cat GIF, but you'd need to use a different API for that.)
44

src/lessons/Blog/01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
In the [Basics workshop](#/basics/02), we learned that a link in IPFS is represented as an instance of `CID`:
1+
In the [Basics tutorial](#/basics/02), we learned that a link in IPFS is represented as an instance of `CID`:
22

33
```javascript
44
{

0 commit comments

Comments
 (0)