Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
Deployed dd8d97d with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Mar 6, 2024
0 parents commit 349506f
Show file tree
Hide file tree
Showing 433 changed files with 85,236 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
919 changes: 919 additions & 0 deletions 404.html

Large diffs are not rendered by default.

1,326 changes: 1,326 additions & 0 deletions CHANGELOG/index.html

Large diffs are not rendered by default.

2,811 changes: 2,811 additions & 0 deletions Doxyfile

Large diffs are not rendered by default.

Binary file added E2E/OrgProfile.odt
Binary file not shown.
Binary file added E2E/ProjectsProfile.odt
Binary file not shown.
Binary file added E2E/UserProfile.odt
Binary file not shown.
1,872 changes: 1,872 additions & 0 deletions LICENSE/index.html

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Copyright (c) 2023 Humanitarian OpenStreetMap Team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.

# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

# Humanitarian OpenStreetmap Team
# 1100 13th Street NW Suite 800 Washington, D.C. 20005
# <[email protected]>

PACKAGE := org.tm-admin.py
NAME := tm-admin
VERSION := 0.1.0

DRAW := $(wildcard E2E/*.odt)
PNGS := $(DRAW:.odt=.png)
PDFS := $(DRAW:.odt=.pdf)

# Automate the building of pngs and pdfs from the libreoffice draw
# source files, insted of having to commit both to git after
# any changes.
all: pngs pdfs
@echo "$(DRAW)"

pngs: $(PNGS)

pdfs: $(PDFS)

apidoc:
-@doxygen

%.png: %.odt
@echo "Generating $@ file for use in Markdown files"
-libreoffice --draw --headless --convert-to png "$<"
# -@mv *Profile.png images/

%.pdf: %.odt
@echo "Generating $@ file for use in Markdown files"
-libreoffice --draw --headless --convert-to pdf "$<"
# -@mv *Profile.png images

clean:
-$(RM) *.png *.pdf

force:
Loading

0 comments on commit 349506f

Please sign in to comment.