-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from antmicro/mczyz/dashboard-rebase
Improved frontend for dashboard
- Loading branch information
Showing
33 changed files
with
1,367 additions
and
289 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build | ||
source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
SPHINXOPTS ?= | ||
SPHINXBUILD ?= sphinx-build | ||
SOURCEDIR = source.template | ||
GENDIR = source | ||
BUILDDIR ?= build | ||
ROOTDIR ?= work | ||
|
||
all: clean html | ||
|
||
# Sources | ||
SOURCES = $(wildcard $(SOURCEDIR)/*.md) | ||
|
||
# Generate sources | ||
$(GENDIR): | ||
@mkdir -p $@ | ||
|
||
$(GENDIR)/index.md: $(SOURCES) generate.py | $(GENDIR) | ||
@rm -rf $(GENDIR)/* | ||
@python3 generate.py --template "$(SOURCEDIR)" --root "$(ROOTDIR)" --output "$(GENDIR)" | ||
|
||
# Build the final webpage. Pass the 'html' target to sphinx, copy report pages | ||
html: Makefile $(GENDIR)/index.md | ||
@$(SPHINXBUILD) -M $@ "$(GENDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
@rsync -avr "$(ROOTDIR)/" "$(BUILDDIR)/html" | ||
@bash update_styles.sh "$(BUILDDIR)" | ||
|
||
clean: | ||
@rm -rf $(BUILDDIR) | ||
@rm -rf $(GENDIR) | ||
|
||
.PHONY: all clean html |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions
22
.github/scripts/indexgen/dashboard-styles/assets/chips-alliance-logo-mono.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.