Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISC - Restructure and Edit docs #1166

Merged
merged 40 commits into from
Sep 22, 2023
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
f7ae3bb
initial sorting
lucas-tortora Sep 5, 2023
1cbd2eb
initial sorting
lucas-tortora Sep 11, 2023
de597ac
apply diataxis 1
lucas-tortora Sep 11, 2023
622e78b
* change switcher labels
lucas-tortora Sep 11, 2023
787226c
* edit learn
lucas-tortora Sep 12, 2023
04e8f80
revert unwanted change
lucas-tortora Sep 12, 2023
5f256d8
format
lucas-tortora Sep 12, 2023
0685c6d
initial sorting
lucas-tortora Sep 5, 2023
ca1c7c2
initial sorting
lucas-tortora Sep 11, 2023
ad6c345
apply diataxis 1
lucas-tortora Sep 11, 2023
47171d2
* change switcher labels
lucas-tortora Sep 11, 2023
70bd8dd
* edit learn
lucas-tortora Sep 12, 2023
2a7e0ce
revert unwanted change
lucas-tortora Sep 12, 2023
d8c1b88
format
lucas-tortora Sep 12, 2023
723e53d
Merge remote-tracking branch 'origin/ISC/restructure-docs' into ISC/r…
lucas-tortora Sep 12, 2023
e5d757f
add admonition that was lost in rebase
lucas-tortora Sep 12, 2023
e9fdaf8
fix redirect
lucas-tortora Sep 12, 2023
e33f190
fix redirect
lucas-tortora Sep 12, 2023
58d3a5c
fix redirect
lucas-tortora Sep 12, 2023
bd67bdc
reduce Wasm intro content
lucas-tortora Sep 12, 2023
de3401e
fix link
lucas-tortora Sep 12, 2023
75aa9a7
edit wasm, damn it's long.
lucas-tortora Sep 12, 2023
af9773a
fix links
lucas-tortora Sep 13, 2023
86bebac
fix links to /smart-contracts
lucas-tortora Sep 13, 2023
dca3dd5
more dead links
lucas-tortora Sep 13, 2023
eab908c
add redirects
lucas-tortora Sep 13, 2023
71a608e
fixes
lucas-tortora Sep 13, 2023
8b37d1c
feedback
lucas-tortora Sep 13, 2023
c0f3985
edit wasp and wasp cli
lucas-tortora Sep 13, 2023
7a8342f
fix frontmatter
lucas-tortora Sep 13, 2023
6dd0190
Apply suggestions from code review
lucas-tortora Sep 14, 2023
af936ff
Apply suggestions from code review
lucas-tortora Sep 14, 2023
e8a99c7
Addressed comments by luca-mose
lucas-tortora Sep 14, 2023
49ab27d
format
lucas-tortora Sep 14, 2023
9fced5d
correct spelling of inccounter contract
lucas-tortora Sep 14, 2023
467c222
Apply suggestions from code review
lucas-tortora Sep 20, 2023
b5df882
merge from main to resolve conflicts
lucas-tortora Sep 22, 2023
9da336b
add core conctracts to EVM as well
lucas-tortora Sep 22, 2023
e5a1bfe
format
lucas-tortora Sep 22, 2023
01bbc85
add explanations and how tos relevant to core contracts
lucas-tortora Sep 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
initial sorting
lucas-tortora committed Sep 5, 2023

Unverified

This user has not yet uploaded their public signing key.
commit f7ae3bba4697ed3b5e1942e673b7dca63ec22a42
20 changes: 16 additions & 4 deletions contentPlugins.js
Original file line number Diff line number Diff line change
@@ -26,10 +26,22 @@ module.exports = async () => {
],
},
{
id: 'smart-contract-0-7-0',
path: path.resolve(__dirname, 'docs/build/wasp/0.7.0/docs'),
routeBasePath: 'smart-contracts',
sidebarPath: path.resolve(__dirname, 'docs/build/wasp/0.7.0/sidebars.js'),
id: 'wasp-cli-0-7-0',
path: path.resolve(__dirname, 'docs/build/wasp-cli/0.7.0/docs'),
routeBasePath: 'wasp-cli',
sidebarPath: path.resolve(__dirname, 'docs/build/wasp-cli/0.7.0/sidebars.js'),
},
{
id: 'wasp-evm-0-7-0',
path: path.resolve(__dirname, 'docs/build/wasp-evm/0.7.0/docs'),
routeBasePath: 'wasp-evm',
sidebarPath: path.resolve(__dirname, 'docs/build/wasp-evm/0.7.0/sidebars.js'),
},
{
id: 'wasp-wasm-0-7-0',
path: path.resolve(__dirname, 'docs/build/wasp-wasm/0.7.0/docs'),
routeBasePath: 'wasp-wasm',
sidebarPath: path.resolve(__dirname, 'docs/build/wasp-wasm/0.7.0/sidebars.js'),
},
{
id: 'identity-rs-0-5',
112 changes: 56 additions & 56 deletions docs/build/apis/sidebars.ts
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
module.exports = {
apis: [
'welcome',
{
type: 'category',
label: 'Core',
link: {
type: 'generated-index',
title: 'Core API',
description:
'The core API is the main API for interacting with the Tangle. V1 is meant for the IOTA network and V2 for the Shimmer staging network.',
slug: '/api/core',
},
collapsed: true,
items: [
{
type: 'category',
label: 'V1',
collapsed: true,
items: require('./core/v1/sidebar'),
},
{
type: 'category',
label: 'V2',
collapsed: true,
items: require('./core/v2/sidebar'),
},
],
},
{
type: 'category',
label: 'Wasp',
collapsed: true,
items: require('./wasp/sidebar'),
},
{
type: 'category',
label: 'Explorer',
collapsed: true,
items: require('./explorer/sidebar'),
},
{
type: 'category',
label: 'Indexer',
collapsed: true,
items: require('./indexer/sidebar'),
},
{
type: 'category',
label: 'IRC Metadata',
collapsed: true,
items: require('./irc-metadata/sidebar'),
},
{
type: 'category',
label: 'PoI',
collapsed: true,
items: require('./poi/sidebar'),
},
// {
// type: 'category',
// label: 'Core',
// link: {
// type: 'generated-index',
// title: 'Core API',
// description:
// 'The core API is the main API for interacting with the Tangle. V1 is meant for the IOTA network and V2 for the Shimmer staging network.',
// slug: '/api/core',
// },
// collapsed: true,
// items: [
// {
// type: 'category',
// label: 'V1',
// collapsed: true,
// items: require('./core/v1/sidebar'),
// },
// {
// type: 'category',
// label: 'V2',
// collapsed: true,
// items: require('./core/v2/sidebar'),
// },
// ],
// },
// {
// type: 'category',
// label: 'Wasp',
// collapsed: true,
// items: require('./wasp/sidebar'),
// },
// {
// type: 'category',
// label: 'Explorer',
// collapsed: true,
// items: require('./explorer/sidebar'),
// },
// {
// type: 'category',
// label: 'Indexer',
// collapsed: true,
// items: require('./indexer/sidebar'),
// },
// {
// type: 'category',
// label: 'IRC Metadata',
// collapsed: true,
// items: require('./irc-metadata/sidebar'),
// },
// {
// type: 'category',
// label: 'PoI',
// collapsed: true,
// items: require('./poi/sidebar'),
// },
],
};
File renamed without changes.
31 changes: 31 additions & 0 deletions docs/build/wasp-cli/0.7.0/sidebars.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation

The sidebars can be generated from the filesystem, or explicitly defined here.

Create as many sidebars as you want.
*/

module.exports = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],

// But you can create a sidebar manually
tutorialSidebar: [
{
type: 'doc',
id: 'wasp-cli',
},
{
type: 'doc',
id: 'setting-up-a-chain',
},
{
type: 'doc',
id: 'chain-management',
},
],
};
File renamed without changes.
File renamed without changes.
File renamed without changes.
81 changes: 81 additions & 0 deletions docs/build/wasp-evm/0.7.0/sidebars.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation

The sidebars can be generated from the filesystem, or explicitly defined here.

Create as many sidebars as you want.
*/

module.exports = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],

// But you can create a sidebar manually
tutorialSidebar: [
{
type: 'category',
label: 'EVM',
items: [
{
type: 'doc',
label: 'Introduction',
id: 'introduction',
},
{
type: 'doc',
label: 'Quickstart',
id: 'quickstart',
},
{
type: 'doc',
label: 'Compatibility',
id: 'compatibility',
},
{
type: 'doc',
label: 'How to Use',
id: 'using',
},
{
type: 'doc',
label: 'The Magic Contract',
id: 'magic',
},
{
type: 'doc',
label: 'Magic Contract Usage',
id: 'magic-uses',
},
{
type: 'doc',
label: 'Tooling',
id: 'tooling',
},
{
type: 'category',
label: 'Examples',
items: [
{
type: 'doc',
label: 'Example Contract',
id: 'examples/introduction',
},
{
type: 'doc',
label: 'ERC20',
id: 'examples/ERC20',
},
{
type: 'doc',
label: 'ERC721',
id: 'examples/ERC721',
},
],
},
],
},
],
};
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading