2020-06-16 15:12:46 +00:00
|
|
|
using Documenter
|
2020-07-24 14:52:48 +00:00
|
|
|
using Optinum
|
2020-06-16 15:12:46 +00:00
|
|
|
|
2020-10-14 08:14:44 +00:00
|
|
|
|
|
|
|
makedocs(
|
2020-07-24 14:52:48 +00:00
|
|
|
modules = [Optinum],
|
|
|
|
sitename = "Optinum.jl",
|
2020-06-16 15:12:46 +00:00
|
|
|
authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir",
|
|
|
|
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
|
|
|
|
pages = [
|
2020-10-14 10:04:18 +00:00
|
|
|
"Accueil" => "index.md",
|
|
|
|
"Sujet" => "Sujet.md",
|
|
|
|
"Algorithmes" => [
|
|
|
|
"L'algorithme de Newton local" => "Algorithme_de_newton.md",
|
|
|
|
"La méthode des régions de confiance" => "Regions_de_confiance.md",
|
|
|
|
"La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md"
|
|
|
|
],
|
|
|
|
"Index des fonctions" =>"fct_index.md",
|
|
|
|
"Annexes" => "Annexes.md",
|
2020-10-14 10:13:27 +00:00
|
|
|
#"Exemples d'appels" =>"Exemples.md",
|
2020-10-14 10:04:18 +00:00
|
|
|
"Mise en place" => "mise_en_place.md",
|
2020-11-07 14:50:16 +00:00
|
|
|
#"Julia vs MatLab"=> "julia_vs_matlab.md",
|
|
|
|
#"Création de Modules en Julia" => "create_package.md",
|
|
|
|
#"Création d'un dépôt Git pour un module Julia" => "git_doc.md",
|
|
|
|
#"Géneration de la doc" => "generation_doc.md",
|
|
|
|
#"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md",
|
|
|
|
#"Précompilation des modules"=>"Precompilation.md",
|
|
|
|
#"Génération du rapport" => "generate_pdf.md",
|
2020-10-14 10:04:18 +00:00
|
|
|
"Foire aux Questions" =>"FAQ.md"
|
2020-10-14 08:14:44 +00:00
|
|
|
|
2020-06-16 15:12:46 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
deploydocs(
|
2020-07-24 14:52:48 +00:00
|
|
|
repo = "github.com/mathn7/Optinum.git",
|
2020-06-16 15:12:46 +00:00
|
|
|
branch = "gh-pages",
|
|
|
|
devbranch = "master",
|
2020-10-14 08:14:44 +00:00
|
|
|
)
|