Skip to content

Commit e52f884

Browse files
authored
Merge pull request #4 from gaelforget/v0p1p2b
V0p1p2b
2 parents cbf9036 + 4327180 commit e52f884

File tree

7 files changed

+1031
-3
lines changed

7 files changed

+1031
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*.jl.cov
33
*.jl.mem
44
.DS_Store
5+
Manifest.toml
6+
docs/Manifest.toml
57
/dev/
68
/docs/build/
79
/docs/site/

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ version = "0.1.2"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
8+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
89

910
[compat]
10-
CSV = "0.5, 0.6, 0.7, 0.8"
11+
CSV = "0.5, 0.6, 0.7, 0.8, 0.9"
1112
julia = "1"

docs/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
[deps]
2+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
23
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
4+
PlutoSliderServer = "2fc8631c-6f24-4c5b-bca7-cbb509c42db4"

docs/make.jl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Documenter, OceanDistributions
2+
import PlutoSliderServer
23

34
makedocs(;
45
modules=[OceanDistributions],
@@ -12,6 +13,15 @@ makedocs(;
1213
assets=String[],
1314
)
1415

16+
lst=("one_dim_diffusion.jl",)
17+
for i in lst
18+
fil_in=joinpath(@__DIR__,"..", "examples",i)
19+
fil_out=joinpath(@__DIR__,"build", i[1:end-2]*"html")
20+
PlutoSliderServer.export_notebook(fil_in)
21+
mv(fil_in[1:end-2]*"html",fil_out)
22+
cp(fil_in,fil_out[1:end-4]*"jl")
23+
end
24+
1525
deploydocs(;
1626
repo="github.com/gaelforget/OceanDistributions.jl",
1727
)

docs/src/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ _This package is at a very early stage of development._
99
```@index
1010
```
1111

12+
- [diffusion example](one_dim_diffusion.html)[download / url](one_dim_diffusion.jl)
13+
1214
```@autodocs
1315
Modules = [OceanDistributions]
1416
```

0 commit comments

Comments
 (0)