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
dde2cd0b
Commit
dde2cd0b
authored
Feb 25, 2013
by
Brian Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get chapter links to start working
parent
fa00ea44
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
53 deletions
+68
-53
common/static/js/pdfviewer.js
+41
-3
lms/djangoapps/staticbook/views.py
+0
-1
lms/templates/static_pdfbook.html
+27
-49
No files found.
common/static/js/pdfviewer.js
View file @
dde2cd0b
...
@@ -27,7 +27,20 @@ PDFJS.disableWorker = true;
...
@@ -27,7 +27,20 @@ PDFJS.disableWorker = true;
var
pdfViewer
=
this
;
var
pdfViewer
=
this
;
var
pdfDocument
=
null
;
var
pdfDocument
=
null
;
var
url
=
options
[
'url'
];
var
url
=
null
;
if
(
options
.
url
)
{
url
=
options
.
url
;
}
var
chapter_urls
=
null
;
if
(
options
.
chapters
)
{
chapter_urls
=
options
.
chapters
;
}
var
chapterNum
=
1
;
if
(
options
.
chapterNum
)
{
chapterNum
=
options
.
chapterNum
;
// TODO: this should only be specified if there are
// chapters, and it should be in-bounds.
}
var
pageNum
=
1
;
var
pageNum
=
1
;
if
(
options
.
pageNum
)
{
if
(
options
.
pageNum
)
{
pageNum
=
options
.
pageNum
;
pageNum
=
options
.
pageNum
;
...
@@ -268,10 +281,11 @@ PDFJS.disableWorker = true;
...
@@ -268,10 +281,11 @@ PDFJS.disableWorker = true;
// Asynchronously download PDF as an ArrayBuffer
// Asynchronously download PDF as an ArrayBuffer
//
//
loadUrl
=
function
pdfViewLoadUrl
(
url_to_load
)
{
loadUrl
=
function
pdfViewLoadUrl
(
url_to_load
)
{
PDFJS
.
getDocument
(
url
).
then
(
PDFJS
.
getDocument
(
url_to_load
).
then
(
function
getDocument
(
_pdfDocument
)
{
function
getDocument
(
_pdfDocument
)
{
pdfDocument
=
_pdfDocument
;
pdfDocument
=
_pdfDocument
;
// display the current page with a default scale value:
// display the current page with a default scale value:
currentScale
=
UNKNOWN_SCALE
;
parseScale
(
DEFAULT_SCALE_VALUE
);
parseScale
(
DEFAULT_SCALE_VALUE
);
},
},
function
getDocumentError
(
message
,
exception
)
{
function
getDocumentError
(
message
,
exception
)
{
...
@@ -282,7 +296,10 @@ PDFJS.disableWorker = true;
...
@@ -282,7 +296,10 @@ PDFJS.disableWorker = true;
});
});
};
};
loadUrl
(
url
);
loadChapterUrl
=
function
pdfViewLoadChapterUrl
(
chapter_index
)
{
var
chapter_url
=
chapter_urls
[
chapter_index
];
loadUrl
(
chapter_url
);
}
$
(
"#previous"
).
click
(
function
(
event
)
{
$
(
"#previous"
).
click
(
function
(
event
)
{
prevPage
();
prevPage
();
...
@@ -303,12 +320,33 @@ PDFJS.disableWorker = true;
...
@@ -303,12 +320,33 @@ PDFJS.disableWorker = true;
parseScale
(
this
.
value
);
parseScale
(
this
.
value
);
});
});
$
(
'#pageNumber'
).
change
(
function
(
event
)
{
$
(
'#pageNumber'
).
change
(
function
(
event
)
{
var
newPageVal
=
parseInt
(
this
.
value
);
var
newPageVal
=
parseInt
(
this
.
value
);
if
(
newPageVal
)
{
if
(
newPageVal
)
{
renderPage
(
newPageVal
);
renderPage
(
newPageVal
);
}
}
});
});
// define navigation links for chapters:
if
(
chapter_urls
!=
null
)
{
var
loadChapterUrlHelper
=
function
(
i
)
{
return
function
(
event
)
{
loadChapterUrl
(
i
);
};
};
for
(
var
index
=
1
;
index
<=
chapter_urls
.
length
;
index
+=
1
)
{
$
(
"#pdfchapter-"
+
index
).
click
(
loadChapterUrlHelper
(
index
));
}
}
// finally, load the appropriate page
if
(
url
!=
null
)
{
loadUrl
(
url
);
}
else
{
loadChapterUrl
(
chapterNum
);
}
return
pdfViewer
;
return
pdfViewer
;
}
}
})(
jQuery
);
})(
jQuery
);
lms/djangoapps/staticbook/views.py
View file @
dde2cd0b
...
@@ -66,5 +66,4 @@ def pdf_index(request, course_id, book_index, chapter=None, page=None):
...
@@ -66,5 +66,4 @@ def pdf_index(request, course_id, book_index, chapter=None, page=None):
'textbook'
:
textbook
,
'textbook'
:
textbook
,
'chapter'
:
chapter
,
'chapter'
:
chapter
,
'page'
:
page
,
'page'
:
page
,
'chapter'
:
chapter
,
'staff_access'
:
staff_access
})
'staff_access'
:
staff_access
})
lms/templates/static_pdfbook.html
View file @
dde2cd0b
...
@@ -17,45 +17,27 @@
...
@@ -17,45 +17,27 @@
<
%
block
name=
"js_extra"
>
<
%
block
name=
"js_extra"
>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
%
if
'url'
in
textbook
:
var
url
=
"${textbook['url']}"
;
$
(
document
).
ready
(
function
()
{
$
(
'#outerContainer'
).
PDFViewer
(
{
%
if
page
is
not
None
:
'pageNum'
:
$
{
page
},
%
endif
'url'
:
url
});
});
%
else
:
var
my_pdfviewer
=
null
;
function
load_url
(
url_to_load
,
page_to_load
)
{
// $('#outerContainer').PDFViewer( {
// 'pageNum' : page_to_load,
// 'url' : url_to_load
// });
my_pdfviewer
.
loadUrl
(
url_to_load
,
page_to_load
);
}
// since we have no url, we must rely on chapter display,
// so make sure we have a value.
var
url
=
"${ textbook['chapters'][chapter-1 if chapter is not None else 0]['url'] }"
;
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
// load_url(url, ${page if page is not None else 1});
var
options
=
{};
var
my_pdfviewer
=
$
(
'#outerContainer'
).
PDFViewer
(
{
%
if
'url'
in
textbook
:
'pageNum'
:
$
{
page
if
page
is
not
None
else
1
},
options
.
url
=
"${textbook['url']}"
;
'url'
:
url
%
endif
%
if
'chapters'
in
textbook
:
var
chptrs
=
[];
%
for
chap
in
textbook
[
'chapters'
]:
chptrs
.
push
(
"${chap['url']}"
);
%
endfor
options
.
chapters
=
chptrs
;
%
endif
%
if
chapter
is
not
None
:
options
.
chapterNum
:
$
{
chapter
};
%
endif
%
if
page
is
not
None
:
options
.
pageNum
:
$
{
page
};
%
endif
$
(
'#outerContainer'
).
PDFViewer
(
options
);
});
});
if
(
my_pdfviewer
)
{
}
}
);
%
endif
</script>
</script>
</
%
block>
</
%
block>
...
@@ -121,25 +103,21 @@
...
@@ -121,25 +103,21 @@
%if 'chapters' in textbook:
%if 'chapters' in textbook:
<section
aria-label=
"Textbook Navigation"
class=
"book-sidebar"
>
<section
aria-label=
"Textbook Navigation"
class=
"book-sidebar"
>
<ul
id=
"pdfbooknav"
class=
"treeview-booknav"
>
<div
id=
"pdfbooknav"
class=
"treeview-booknav"
>
<
%
def
name=
"print_entry(entry)"
>
<
%
def
name=
"print_entry(entry, index_value)"
>
<li>
<div
id=
"pdfchapter-${index_value}"
>
<a
href=
"javascript:load_url(${entry.get('url')}, 1)"
>
<span
class=
"chapter"
>
<span
class=
"chapter"
>
${entry.get('title')}
${entry.get('title')}
</span>
</span>
</a>
</div>
</li>
</
%
def>
</
%
def>
<
%
index =
0
%
>
% for entry in textbook['chapters']:
% for entry in textbook['chapters']:
${print_entry(entry)}
<
%
index
+=
1
%
>
${print_entry(entry, index)}
% endfor
% endfor
</div>
## Don't delete this empty list item. Without it, Jquery.TreeView won't
## render the last list item as expandable.
<li></li>
</ul>
</section>
</section>
%endif
%endif
...
...
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