Add more dummy pages

master
Wuzzy 2016-11-03 04:49:03 +01:00
parent 37f493fbf2
commit 66d82500b7
1 changed files with 38 additions and 1 deletions

View File

@ -3,9 +3,19 @@ doc.new_category("basics",
name="Basics",
build_formspec = doc.entry_builders.text,
sorting = "custom",
sorting_data = {"minetest", "controls", "sneak", "cam", "minimap", "players", "inventory", "tools", "blocks", "craft", "online"},
sorting_data = {"minetest", "controls", "sneak", "cam", "minimap", "players", "inventory", "tools", "blocks", "liquids", "craft", "groups", "online"},
})
doc.new_category("online",
{
name="Online multiplayer",
build_formspec = doc.entry_builders.text,
sorting = "custom",
sorting_data = {"intro", "commands", "privs"},
})
doc.new_entry("basics", "minetest", {
name="Minetest",
@ -178,6 +188,13 @@ Blocks can have a wide range of different properties which determine mining time
Liquids: See the entry Basics > Liquids.]=]
})
-- TODO
doc.new_entry("basics", "liquids", {
name = "Liquids",
data =
[=[TO BE WRITTEN.]=]
})
-- TODO
doc.new_entry("basics", "craft", {
name = "Crafting",
@ -254,4 +271,24 @@ Chat: <irc://irc.freenode.net#minetest>
A generic Internet Relay Chat channel for everything related to Minetest where people can meet to discuss in real-time. If you do not understad IRC, see the Community Wiki for help.]=]
})
-- TODO
doc.new_entry("basics", "groups", {
name="Groups",
data = "TODO"
})
-- TODO
doc.new_entry("online", "intro", {
name="Introduction to online multiplayer",
data="TODO"})
-- TODO
doc.new_entry("online", "commands", {
name="Server commands",
data="TODO"})
-- TODO
doc.new_entry("online", "privs", {
name="Privileges",
data="TODO"})