-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
122 lines (122 loc) · 4.37 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
site_name: MicroPasts Documentation
copyright: 'Copyright © 2013 - 2021: UCL, The British Museum, University of
Cambridge, University of Stirling and SciFabric'
theme:
name: material
font:
text: Roboto
markdown_extensions:
- toc:
permalink: True
- admonition
- attr_list
- smarty
- wikilinks
- codehilite:
linenums: True
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: True
- pymdownx.tilde
nav:
- Home: 'index.md'
- Installation:
- 'Getting started': 'installation/gettingstarted.md'
- 'Installing the server': 'installation/guide.md'
- 'Configuring PYBOSSA': 'installation/configuration.md'
- 'Deploying PYBOSSA with Nginx and uWsgi': 'installation/deployment.md'
- 'Administering PYBOSSA': 'installation/admin.md'
- 'Testing PYBOSSA with Vagrant': 'installation/vagrant.md'
- 'Security': 'installation/security.md'
- 'FAQ': 'installation/faq.md'
- MicroPasts PYBOSSA Theme: 'theme/intro.md'
- Building a project:
- 'Introduction': 'build/intro.md'
- 'Quickstart: Creating a project': 'build/overview.md'
- 'Using the command line': 'build/pbs.md'
- 'Tutorial': 'build/tutorial.md'
- 'Configuring the project': 'build/project_settings.md'
- 'Real time data analysis': 'build/webhooks.md'
- 'Data capturing: image, video or audio': 'build/capture.md'
- 'Domain model': 'build/model.md'
- MicroPasts Projects:
- 'Introduction': 'projects/introduction.md'
- 'Overviews':
- 'Creating a new project': 'projects/creating-a-new-project.md'
- 'Bronze Age Index': 'projects/bai.md'
- 'Egypt Exploration Society': 'projects/ees.md'
- '3D masking': 'projects/masking.md'
- 'Audio transcription': 'projects/audio.md'
- 'CUDL IIIF': 'projects/cudl.md'
- API:
- 'Introduction': 'api/intro.md'
- 'Jamstack': 'api/jamstack.md'
- 'CRUD': 'api/crud.md'
- 'Full text search': 'api/fulltextsearch.md'
- 'Disqus Single Sign On': 'api/sso.md'
- 'Projects':
- 'RESTful API':
- 'Filtering data to several project IDs': 'api/project/filtering.md'
- 'Statistics': 'api/project/statistics.md'
- 'PYBOSSA endpoints':
- 'Options': 'api/project/project.md'
- 'Tasks':
- 'RESTful API':
- 'Favorites': 'api/task/favorites.md'
- 'Excluding contributed tasks': 'api/task/participated.md'
- 'Requesting a task': 'api/task/newtask.md'
- 'External user ID': 'api/task/external.md'
- 'TaskRuns':
- 'RESTful API':
- 'Attaching files': 'api/taskrun/intro.md'
- 'User':
- 'RESTful API':
- 'Intro': 'api/user/intro.md'
- 'Project progress': 'api/user/progress.md'
- 'PYBOSSA endpoints':
- 'Account': 'api/user/account.md'
- 'Admins': 'api/user/admin.md'
- 'Helping materials':
- 'RESTful API':
- 'Attaching files': 'api/helpingmaterial/intro.md'
- 'Pages':
- 'RESTful API':
- 'Info': 'api/page/intro.md'
- 'Blog posts':
- 'RESTful API':
- 'Attaching files': 'api/blogpost/intro.md'
- 'Leaderboard':
- 'PYBOSSA endpoints':
- 'Methods': 'api/leaderboard.md'
- 'Home page':
- 'PYBOSSA endpoints':
- Methods: 'api/home.md'
- 'Announcement':
- 'PYBOSSA endpoints':
- Methods: 'api/announcement.md'
- 'Categories':
- 'PYBOSSA endpoints':
- Methods: 'api/categories.md'
- 'Administration':
- 'PYBOSSA endpoints':
- 'Dashboard': 'api/admin/dashboard.md'
- 'Featured projects': 'api/admin/featured.md'
- 'Help':
- 'PYBOSSA endpoints':
- 'Methods': 'api/help.md'
- 'Server stats':
- 'PYBOSSA endpoints':
- Methods: 'api/stats.md'
- GDPR: 'gdpr.md'