diff --git a/tmp/from-drytooling/.gitignore b/tmp/from-drytooling/.gitignore deleted file mode 100644 index 621f010db..000000000 --- a/tmp/from-drytooling/.gitignore +++ /dev/null @@ -1,29 +0,0 @@ - - -# Temporary file during local documentation build. -docs/TMP.toml - -# Files generated by invoking Julia with --code-coverage -*.jl.cov -*.jl.*.cov - -# Files generated by invoking Julia with --track-allocation -*.jl.mem - -# System-specific files and directories generated by the BinaryProvider and BinDeps packages -# They contain absolute paths specific to the host computer, and so should not be committed -deps/deps.jl -deps/build.log -deps/downloads/ -deps/usr/ -deps/src/ - -# Build artifacts for creating documentation generated by the Documenter package -docs/build/ -docs/site/ - -# File generated by Pkg, the package manager, based on a corresponding Project.toml -# It records a fixed state of all packages used by the project. As such, it should not be -# committed for packages, but should be committed for applications that require a static -# environment. -Manifest.toml diff --git a/tmp/from-wallytutor/docs/common.jl b/tmp/from-wallytutor/docs/common.jl deleted file mode 100644 index 380e142e8..000000000 --- a/tmp/from-wallytutor/docs/common.jl +++ /dev/null @@ -1,105 +0,0 @@ -# -*- coding: utf-8 -*- -using Documenter -using DocumenterCitations -using DryTooling - -bib_filepath = joinpath(@__DIR__, "src/references.bib") -bib = CitationBibliography(bib_filepath) - -DocMeta.setdocmeta!(DryTooling, :DocTestSetup, :(using DryTooling); recursive=true) - -# format = Documenter.LaTeX() - -format = Documenter.HTML(; - prettyurls = get(ENV, "CI", "false") == "true", - canonical = "https://wallytutor.github.io/DryTooling.jl", - repolink = "https://github.com/wallytutor/DryTooling.jl", - edit_link = "main", - assets = String[], -) - -pages = [ - "Home" => "index.md", - - ################################################################ - - "Module Finite Volumes" => [ - "Documentation" => "FiniteVolumes/index.md", - "Examples" => "FiniteVolumes/samples.md", - ], - - ################################################################ - - "Module Granular" => [ - "Documentation" => "Granular/index.md", - "Examples" => "Granular/samples.md", - ], - - ################################################################ - - "Module Fluid Models" => [ - "Documentation" => "FluidModels/index.md", - "Examples" => "FluidModels/samples.md", - ], - - ################################################################ - - "Module Cantera" => [ - "Documentation" => "Cantera/index.md", - "Examples" => "Cantera/samples.md", - "Status" => "Cantera/status.md", - ], - - ################################################################ - - "Module Thermodynamics" => [ - "Documentation" => "Thermodynamics/index.md", - "Examples" => "Thermodynamics/samples.md", - ], - - ################################################################ - - "Module Kinetics" => [ - "Documentation" => "Kinetics/index.md", - "Examples" => "Kinetics/samples.md", - ], - - ################################################################ - - "Module Plug Flow" => [ - "Documentation" => "PlugFlow/index.md", - "Examples" => "PlugFlow/samples.md", - ], - - ################################################################ - - "Module Simulation" => "Simulation/index.md", - "DryTooling Core" => "DryTooling/index.md", - - ################################################################ - - "Theory Guide" => [ - "Finite volumes" => "FiniteVolumes/theory.md", - "Fluid models" => "FluidModels/theory.md", - "Thermodynamics" => "Thermodynamics/theory.md", - "Kinetics" => "Kinetics/theory.md", - "Plug Flow models" => "PlugFlow/theory.md", - "References" => "references.md", - ], - - ################################################################ - - "Reference API" => "api.md", - "Table of contents" => "toc.md", -] - -makedocs(; - modules = [DryTooling], - format = format, - clean = false, - sitename = "DryTooling.jl", - authors = "Walter Dal'Maz Silva & contributors", - repo = "https://github.com/wallytutor/DryTooling.jl/blob/{commit}{path}#{line}", - plugins = [bib], - pages = pages -) diff --git a/tmp/from-wallytutor/docs/make-devel.jl b/tmp/from-wallytutor/docs/make-devel.jl deleted file mode 100644 index 0f2b61a53..000000000 --- a/tmp/from-wallytutor/docs/make-devel.jl +++ /dev/null @@ -1,11 +0,0 @@ -# -*- coding: utf-8 -*- -import Pkg -using Revise - -if Base.current_project() != Base.active_project() - Pkg.activate(Base.current_project()) - Pkg.resolve() - Pkg.instantiate() -end - -include("common.jl") diff --git a/tmp/from-wallytutor/docs/make.jl b/tmp/from-wallytutor/docs/make.jl deleted file mode 100644 index e238a0d87..000000000 --- a/tmp/from-wallytutor/docs/make.jl +++ /dev/null @@ -1,8 +0,0 @@ -# -*- coding: utf-8 -*- - -include("common.jl") - -deploydocs(; - repo="github.com/wallytutor/DryTooling.jl", - devbranch="main", -) diff --git a/tmp/from-wallytutor/src/Cantera/tests.jl b/tmp/from-wallytutor/src/Cantera/tests.jl deleted file mode 100644 index 7d8e28ece..000000000 --- a/tmp/from-wallytutor/src/Cantera/tests.jl +++ /dev/null @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- -using DryTooling -using DryTooling.Cantera diff --git a/tmp/from-wallytutor/src/FiniteVolumes/tests.jl b/tmp/from-wallytutor/src/FiniteVolumes/tests.jl deleted file mode 100644 index 10a4b7525..000000000 --- a/tmp/from-wallytutor/src/FiniteVolumes/tests.jl +++ /dev/null @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- -using DryTooling -using DryTooling.FiniteVolumes