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

Adds functionality to accordions #14

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 7 additions & 4 deletions docs/Sphinx-guides/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ Sphinx==7.2.6
# inline icons
sphinx-icon==0.1.2

# Cloud theme
sphinx-book-theme==1.1.2

# Sphinx design
sphinx_design==0.6.0

# Markdown support
myst-parser==2.0.0

# tabs
sphinx-tabs==3.4.5

# Cloud theme
sphinx-book-theme==1.1.2
sphinx-tabs==3.4.5
2 changes: 1 addition & 1 deletion docs/Sphinx-guides/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = ["myst_parser"]
extensions = ["myst_parser", "sphinx_design"]
templates_path = ['_templates']
exclude_patterns = []

Expand Down
11 changes: 9 additions & 2 deletions docs/Sphinx-guides/source/developerGuide/localEnvironment.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,20 @@ Follow the on-screen instruction for the one time installation. More information
Database: ojs
```
- OAI settings and beacon defaults are good.
![Sample installation settings](/img/ojs-installation-settings.png)

```{dropdown} Sample installation settings
[![Sample installation settings](/img/ojs-installation-settings.png)](/img/ojs-installation-settings.png)
```


## Post install tasks
After the initial installation of OJS, we need to create a basic OJS configuration to start using the system.

Create a journal. OJS supports multiple journals within a single installation. We need to create one journal.
- [Sample journal settings](/img/ojs-create-journal.png)

```{dropdown} Sample journal settings
[![Sample journal settings](/img/ojs-create-journal.png)](/img/ojs-create-journal.png)
```

Enable the PPR plugins. These are disabled by default.
- To enable the PPR plugin => ``Website > Plugins > Generic Plugins > IQSS Peer Pre-Review Program Plugin``
Expand Down