From ad82655b066550e3f21c67dbd13124dc04d416c2 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Fri, 24 Aug 2018 01:28:03 +0200 Subject: [PATCH] Remove src/Generator.jl, unused since #789. --- src/Documenter.jl | 1 - src/Generator.jl | 116 ---------------------------------------------- 2 files changed, 117 deletions(-) delete mode 100644 src/Generator.jl diff --git a/src/Documenter.jl b/src/Documenter.jl index c8717c6ebc..1127a03063 100644 --- a/src/Documenter.jl +++ b/src/Documenter.jl @@ -30,7 +30,6 @@ include("DocTests.jl") include("DocChecks.jl") include("Writers/Writers.jl") include("Deps.jl") -include("Generator.jl") import .Utilities: Selectors diff --git a/src/Generator.jl b/src/Generator.jl deleted file mode 100644 index d9c5716360..0000000000 --- a/src/Generator.jl +++ /dev/null @@ -1,116 +0,0 @@ -""" -Provides the functions related to generating documentation stubs. -""" -module Generator - -using DocStringExtensions - -""" -$(SIGNATURES) - -Attempts to save a file at `\$(root)/\$(filename)`. `f` will be called with file -stream (see [`open`](https://docs.julialang.org/en/latest/base/io-network/#Base.open)). - -`filename` can also be a file in a subdirectory (e.g. `src/index.md`), and then -then subdirectories will be created automatically. -""" -function savefile(f, root, filename) - filepath = joinpath(root, filename) - if ispath(filepath) error("$(filepath) already exists") end - @info("Generating $filename at $filepath") - mkpath(dirname(filepath)) - open(f,filepath,"w") -end - -""" -$(SIGNATURES) - -Contents of the default `make.jl` file. -""" -function make(pkgname) - """ - using Documenter - using $(pkgname) - - makedocs( - modules = [$(pkgname)] - ) - - # Documenter can also automatically deploy documentation to gh-pages. - # See "Hosting Documentation" and deploydocs() in the Documenter manual - # for more information. - #=deploydocs( - repo = "" - )=# - """ -end - -""" -$(SIGNATURES) - -Contents of the default `.gitignore` file. -""" -function gitignore() - """ - build/ - site/ - """ -end - -mkdocs_default(name, value, default) = value == nothing ? "#$name$default" : "$name$value" - -""" -$(SIGNATURES) - -Contents of the default `mkdocs.yml` file. -""" -function mkdocs(pkgname; - description = nothing, - author = nothing, - url = nothing - ) - s = """ - # See the mkdocs user guide for more information on these settings. - # http://www.mkdocs.org/user-guide/configuration/ - - site_name: $(pkgname).jl - $(mkdocs_default("repo_url: ", url, "https://github.com/USER_NAME/PACKAGE_NAME.jl")) - $(mkdocs_default("site_description: ", description, "Description...")) - $(mkdocs_default("site_author: ", author, "USER_NAME")) - - theme: readthedocs - - extra_css: - - assets/Documenter.css - - extra_javascript: - - https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML - - assets/mathjaxhelper.js - - markdown_extensions: - - extra - - tables - - fenced_code - - mdx_math - - docs_dir: 'build' - - pages: - - Home: index.md - """ -end - -""" -$(SIGNATURES) - -Contents of the default `src/index.md` file. -""" -function index(pkgname) - """ - # $(pkgname).jl - - Documentation for $(pkgname).jl - """ -end - -end