Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
2540be24
Commit
2540be24
authored
Jul 16, 2013
by
Julian Arni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update rake docs to reflect change in folder structure
parent
5f9c395a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
docs/Makefile
+7
-0
rakelib/docs.rake
+22
-0
No files found.
docs/Makefile
0 → 100644
View file @
2540be24
.PHONY
:
html
html
:
@
cd
$(CURDIR)
/data
&&
make html
@
cd
$(CURDIR)
/course_authors
&&
make html
@
cd
$(CURDIR)
/developers
&&
make html
rakelib/docs.rake
View file @
2540be24
...
...
@@ -3,6 +3,19 @@ require 'launchy'
# --- Develop and public documentation ---
desc
"Invoke sphinx 'make build' to generate docs."
task
:builddocs
,
[
:options
]
do
|
t
,
args
|
if
args
.
options
==
'dev'
path
=
"docs/developer"
elsif
args
.
options
==
'author'
path
=
"docs/course_authors"
elsif
args
.
options
==
'data'
path
=
"docs/data"
else
path
=
"docs"
end
Dir
.
chdir
(
path
)
do
sh
(
'make html'
)
end
path
=
"docs"
Dir
.
chdir
(
path
)
do
...
...
@@ -13,6 +26,15 @@ end
desc
"Show docs in browser (mac and ubuntu)."
task
:showdocs
,
[
:options
]
do
|
t
,
args
|
path
=
"docs"
if
args
.
options
==
'dev'
path
=
"docs/developer"
elsif
args
.
options
==
'author'
path
=
"docs/course_authors"
elsif
args
.
options
==
'data'
path
=
"docs/data"
else
path
=
"docs"
end
Launchy
.
open
(
"
#{
path
}
/build/html/index.html"
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment