Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating Documentation across IPUMS.jl #31

Draft
wants to merge 44 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
6f5e980
my first commit!
MichelaRocchetti Jun 7, 2024
babbed6
new changes
MichelaRocchetti Jun 14, 2024
51c9edc
Merge remote-tracking branch 'original/mr-docs-overhaul'
MichelaRocchetti Jun 18, 2024
f7987ae
new changes
MichelaRocchetti Jun 18, 2024
09f8909
changes on model files
MichelaRocchetti Jun 27, 2024
01aad9e
New changes in reference,examples,attributes,definitions and return
MichelaRocchetti Jun 29, 2024
18179ae
Update model_TimeSeriesTable.jl
00krishna Jun 29, 2024
90f10e0
Update model_TimeSeriesTableFull.jl
00krishna Jun 29, 2024
8b1c7de
Update model_Dataset.jl
MichelaRocchetti Jun 29, 2024
c3dd5f9
Update model_DataExtract.jl
MichelaRocchetti Jun 30, 2024
cf3c633
Update model_DataExtractPost.jl
MichelaRocchetti Jun 30, 2024
cacff3a
Update model_DataExtractPostResponse.jl
MichelaRocchetti Jun 30, 2024
9aa12b0
Update model_DatasetFull.jl
MichelaRocchetti Jun 30, 2024
6e61926
Update model_DatasetFullBreakdowns.jl
MichelaRocchetti Jun 30, 2024
19a4b1d
Update model_DatasetFullBreakdownsBreakdownValuesInner.jl
MichelaRocchetti Jun 30, 2024
0a1e3af
Update model_DatasetFullGeogLevelsInner.jl
MichelaRocchetti Jun 30, 2024
fab6a75
Update model_DatasetSimple.jl
MichelaRocchetti Jun 30, 2024
06780f0
Update model_DataTableFull.jl
MichelaRocchetti Jun 30, 2024
03eaf99
Update model_DataTableFullVariablesInner.jl
MichelaRocchetti Jun 30, 2024
72e418c
Update model_DataTableSimple.jl
MichelaRocchetti Jun 30, 2024
4807fbe
Update model_TimeSeriesTableFullTimeSeriesInner.jl
MichelaRocchetti Jun 30, 2024
6d22480
Update model_TimeSeriesTableSimple.jl
MichelaRocchetti Jul 1, 2024
e00178a
Update model_Shapefile.jl
MichelaRocchetti Jul 1, 2024
5c15d9d
Update model_Error.jl
MichelaRocchetti Jul 1, 2024
c79d41b
Update model_DataExtract.jl
00krishna Jul 2, 2024
d3ea02e
Update model_DataExtract.jl
MichelaRocchetti Jul 3, 2024
7431e87
Update model_DataExtractDefinition.jl
MichelaRocchetti Jul 3, 2024
618f00e
Update model_DataExtractDownloadLinks.jl
MichelaRocchetti Jul 3, 2024
20c202c
Update model_DataExtractPost.jl
MichelaRocchetti Jul 3, 2024
3e20a9e
Update model_DataExtractPostResponse.jl
MichelaRocchetti Jul 3, 2024
c78a8a4
Update model_DataTableFull.jl
MichelaRocchetti Jul 3, 2024
d941036
Update model_DataTableFullVariablesInner.jl
MichelaRocchetti Jul 3, 2024
c7f9138
Update model_DataTableSimple.jl
MichelaRocchetti Jul 3, 2024
084112c
Update model_Dataset.jl
MichelaRocchetti Jul 3, 2024
9936246
Update model_DatasetFull.jl
MichelaRocchetti Jul 3, 2024
1ef2cef
Update model_DatasetFullBreakdownsBreakdownValuesInner.jl
MichelaRocchetti Jul 3, 2024
76cbf6d
Update model_Shapefile.jl
MichelaRocchetti Jul 3, 2024
330936d
Update model_TimeSeriesTableFull.jl
MichelaRocchetti Jul 3, 2024
8468342
Update model_TimeSeriesTableFullTimeSeriesInner.jl
MichelaRocchetti Jul 3, 2024
945ab31
Update model_TimeSeriesTableSimple.jl
MichelaRocchetti Jul 3, 2024
d1a6eae
Update model_DatasetFullBreakdowns.jl
MichelaRocchetti Jul 3, 2024
1af45f7
Update model_DataExtract.jl
MichelaRocchetti Jul 7, 2024
92a0c46
made some fixes to the make.jl file and DatasetSimple files.
00krishna Jul 19, 2024
b0f2372
Updated the Shapefile, TimeSeriesTableFullTimeSeriesInner, and TimeSe…
00krishna Jul 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
IPUMS = "51d1f77e-d457-4c14-a89d-9ed71839f38d"
LiveServer = "16fef848-5104-11e9-1b77-fb7a48bbb589"
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
9 changes: 9 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using IPUMS
using Documenter
using Revise
Revise.revise()

DocMeta.setdocmeta!(IPUMS, :DocTestSetup, :(using IPUMS); recursive=true)

Expand All @@ -17,6 +19,12 @@ makedocs(;
),
pages=[
"Home" => "index.md",
"Workflows" => "workflow.md",
"How to " => "howto.md",
"Tutorials" => "tutorials.md",
"Examples" => "examples.md",
"Mission" => "mission.md",
"References" => "references.md",
],
)

Expand All @@ -25,3 +33,4 @@ deploydocs(;
push_preview = true,
devbranch="main"
)

15 changes: 0 additions & 15 deletions docs/src/DataExtract.md

This file was deleted.

14 changes: 0 additions & 14 deletions docs/src/DataExtractDownloadLinks.md

This file was deleted.

21 changes: 0 additions & 21 deletions docs/src/DataExtractExtractDefinition.md

This file was deleted.

19 changes: 0 additions & 19 deletions docs/src/DataExtractPost.md

This file was deleted.

15 changes: 0 additions & 15 deletions docs/src/DataExtractPostResponse.md

This file was deleted.

18 changes: 0 additions & 18 deletions docs/src/DataTableFull.md

This file was deleted.

13 changes: 0 additions & 13 deletions docs/src/DataTableFullVariablesInner.md

This file was deleted.

15 changes: 0 additions & 15 deletions docs/src/DataTableSimple.md

This file was deleted.

15 changes: 0 additions & 15 deletions docs/src/Dataset.md

This file was deleted.

19 changes: 0 additions & 19 deletions docs/src/DatasetFull.md

This file was deleted.

17 changes: 0 additions & 17 deletions docs/src/DatasetFullBreakdowns.md

This file was deleted.

13 changes: 0 additions & 13 deletions docs/src/DatasetFullBreakdownsBreakdownValuesInner.md

This file was deleted.

14 changes: 0 additions & 14 deletions docs/src/DatasetFullGeogLevelsInner.md

This file was deleted.

15 changes: 0 additions & 15 deletions docs/src/DatasetSimple.md

This file was deleted.

14 changes: 0 additions & 14 deletions docs/src/Error.md

This file was deleted.

Loading
Loading