Skip to content

Commit 80d4d39

Browse files
authored
MobilityDB-workshop version 1.1
2 parents dcae769 + 016dcd9 commit 80d4d39

14 files changed

+270
-274
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
workshop.sql
2+
*.pdf
3+
*.epub
4+
*.html

CONTRIBUTING.md

+36-49
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,48 @@
11
# MobilityDB Workshop Contribution Guide
22

3-
MobilityDB uses DocBook v4.5 to generate workshop guides. The instructions below provide a step-by-step guide to convert from a Notion markdown export to the XML format required to successfully compile using `dblatex`. The process uses a tool called `pandoc` to convert into DocBook v5 and then some manual editing to work with v4.5 of DocBook.
3+
MobilityDB uses DocBook v4.5 to generate workshop guides. The instructions below provide a step-by-step guide to contribute to the workshop guide.
44

55
## Conventions
66
- Images are in `.png` format and use pascal case (e.g. `VeryImportantImage.png`) for filename.
7-
- XML files use lowercase underscores (e.g. `my_filename.xml`)and acronyms remain uppercase (e.g. `my_AWS_example.xml`)
7+
- XML files use lowercase underscores (e.g. `my_filename.xml`) and acronyms remain uppercase (e.g. `my_AWS_example.xml`)
88

9-
## Start
9+
## Contribution Workflow
1010

1111
Steps are as follows:
12-
- Export from notion to Markdown
13-
- Change folder to "images"
14-
- Rename file to AIS_Dashboard
15-
16-
IN MARKDOWN
17-
Find and replace image folder `(Dashboard%20and%20Visualization%20of%20Ship%20Trajectories%20(%20845afa91ff30470181ea3a0b5ddf08b5/` with `(images/`
18-
Find and replace `%20` with `" "`. Refactor all image file names (use caption as image name, refactor name + pascal case)
19-
Remove initial heading
20-
Remove all caption duplicate text
21-
22-
### Convert Markdown to DocBook v5
23-
24-
From terminal run the following commands. Command arguments:
25-
- `FlightDataDashboard.md` -> The name of your notion markdown file.
26-
- `FlightDataDashboard.xml` -> Name of the output file.
27-
```bash
28-
cd <folder_with_markdown>
29-
pandoc FlightDataDashboard.md -f markdown -t docbook5 -s -o FlightDataDashboard.xml
12+
- Usually, the latest version of the workshop guide is in the `develop` branch. Refer always to this branch.
13+
- Fork the repository and clone it locally.
14+
- Create a new branch from `develop` and name it `feature/<your_feature_name>`. For example, 'feature/correcting_typos'.
15+
- Make your changes and commit them to your branch.
16+
- Push your branch to your forked repository.
17+
- Create a pull request from your branch to the `develop` branch of the main repository. Please, make sure to detail your changes in the pull request description. A nice way to do this is to use the following template:
18+
19+
```markdown
20+
Changes:
21+
- Fix typos
22+
- Add new section
23+
- etc.
24+
```
25+
26+
## Changing the Workshop Guide
27+
28+
If you want to make changes to the guide, you will need to edit the xml file corresponding to the chapter you want to change. For example, if you want to propose a change to the `AIS_Dashboard` chapter, you will need to edit the `doc/AIS_Dashboard.xml` file.
29+
30+
## Adding a New Chapter
31+
32+
If you want to add a new chapter to the guide, you will need to create a new xml file in the `doc` folder. For example, if you want to add a new chapter called `My_New_Chapter`, you will need to create a new file called `doc/My_New_Chapter.xml`.
33+
34+
If you need to insert any images in the new chapter, you will need to add them to the `doc/images` folder. For example, if you want to add an image called `My_New_Image.png`, you will need to add it to the `doc/images` folder.
35+
36+
You will also need to add the following line to the `mobilitydb-workshop.xml` file:
37+
38+
```xml
39+
<!ENTITY My_New_Chapter SYSTEM "doc/My_New_Chapter.xml">
3040
```
3141

32-
## In Generated XML
33-
34-
- Delete header information `<!DOCTYPE ... </info>`
35-
- Insert `<chapter id ="AIS_Dashboard">` at beginning
36-
- Insert `<title>Dashboard and Visualization of Ship Trajectories (AIS)</title>`
37-
- Remove `</article>` at end
38-
- Insert `</chapter>` at end
39-
- Find/replace `<link xlink:href` with `<ulink url`
40-
- Find/replace `</link>` with `</ulink>`
41-
- Find/replace `<imagedata fileref` with `<imagedata width='80%' fileref`
42-
- note: some pictures will need to have their width set manually.
43-
- Remove `xml:id=...` from the "section" tag which looks like: `<section xml:id=...>`
44-
- `<section xml:id=...>` becomes `<section>`
45-
- Replace `<` with `&lt;`
46-
- Replace `>` with `&gt;`
47-
48-
COPY AIS_Dashboard.xml into parent doc folder
49-
COPY all images from the notion export folder into the doc/images folder
50-
51-
IN mobilitydb-workshop.xml
52-
ADD <!ENTITY GPX SYSTEM "[filename].xml"> at header
53-
ADD &FlightDataDashboard; at end
54-
55-
# In Terminal
56-
```bash
57-
cd ..
58-
dblatex -s texstyle.sty -T native -t pdf -o mobilitydb-workshop.pdf mobilitydb-workshop.xml
42+
Finally, you will need to add the following line to the `mobilitydb-workshop.xml` file, in the appropriate place:
43+
44+
```xml
45+
&My_New_Chapter;
5946
```
6047

61-
TODO: change image filename
48+
This will include the new chapter in the guide.

0 commit comments

Comments
 (0)