Skip to content

Commit 10a967a

Browse files
committedNov 1, 2016
Add initial docs
1 parent b43361e commit 10a967a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+2706
-10
lines changed
 

‎.travis.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,14 @@
22
language: julia
33
os:
44
- linux
5-
- osx
65
julia:
7-
- release
8-
- nightly
6+
- 0.5
97
notifications:
108
email: false
119
# uncomment the following lines to override the default test script
1210
#script:
1311
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1412
# - julia -e 'Pkg.clone(pwd()); Pkg.build("DiffEqDocs"); Pkg.test("DiffEqDocs"; coverage=true)'
1513
after_success:
16-
# push coverage results to Coveralls
17-
- julia -e 'cd(Pkg.dir("DiffEqDocs")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
18-
# push coverage results to Codecov
19-
- julia -e 'cd(Pkg.dir("DiffEqDocs")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
14+
- julia -e 'Pkg.add("Documenter")'
15+
- julia -e 'cd(Pkg.dir("DiffEqDocs")); include(joinpath("docs", "make.jl"))'

‎docs/make.jl

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
using Documenter, DifferentialEquations
2+
3+
makedocs(modules=[DifferentialEquations],
4+
doctest=false, clean=true,
5+
format =Documenter.Formats.HTML,
6+
sitename="DifferentialEquations.jl",
7+
authors="Chris Rackauckas",
8+
pages = Any[
9+
"Home" => "index.md",
10+
"Tutorials" => Any[
11+
"tutorials/ode_example.md",
12+
"tutorials/sde_example.md",
13+
"tutorials/dae_example.md",
14+
"tutorials/fempoisson_example.md",
15+
"tutorials/femheat_example.md",
16+
"tutorials/femstochastic_example.md"
17+
],
18+
"Solver Options" => Any[
19+
"solvers/ode_solve.md",
20+
"solvers/sde_solve.md",
21+
"solvers/dae_solve.md",
22+
"solvers/fempoisson_solve.md",
23+
"solvers/femheat_solve.md",
24+
"solvers/fdmstokes_solve.md"
25+
],
26+
"Manual" => Any[
27+
"man/overview.md",
28+
"man/ODEProblem.md",
29+
"man/SDEProblem.md",
30+
"man/FEMProblem.md",
31+
"man/StokesProblem.md",
32+
"man/mesh.md",
33+
"man/solution.md",
34+
"man/output_specification.md",
35+
"man/callback_functions.md",
36+
"man/plot.md",
37+
"man/parameter_estimation.md",
38+
"man/function_definition_macros.md",
39+
"man/benchmarks.md",
40+
"man/convergence.md",
41+
"man/conditional_dependencies.md",
42+
"man/progress_bar.md"
43+
],
44+
"Internal Documentation" => Any[
45+
"internals/contributors_guide.md",
46+
"internals/fem_tools.md",
47+
"internals/extras.md",
48+
"internals/solver_helpers.md",
49+
"internals/notes_on_algorithms.md",
50+
"internals/function_index.md"
51+
]
52+
])
53+
54+
55+
deploydocs(
56+
repo = "github.com/JuliaDiffEq/DiffEqDocs.jl.git",
57+
target = "build",
58+
osname = "linux",
59+
julia = "0.5",
60+
deps = nothing,
61+
make = nothing)

0 commit comments

Comments
 (0)
Please sign in to comment.