Skip to content

Commit cee3f19

Browse files
author
tienhungvuong
committed
DOC: add updated pdfgetx v2.1.0 user manual to source
1 parent 9a3e01b commit cee3f19

23 files changed

+152
-139
lines changed
881 Bytes
Binary file not shown.

static_root/doc/pdfgetx/2.1.0/_sources/install.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Software requirements
77
------------------------------------------------------------------------
88

99
This software is written in Python programming language, therefore
10-
you must have Python 3.7, 3.6, 3.5, 3.4 or 2.7 installed. In addition,
10+
you must have Python 3.7, 3.6, 3.5 or 2.7 installed. In addition,
1111
the following third-party Python libraries are also required:
1212

1313
* pip - Python package installer

static_root/doc/pdfgetx/2.1.0/_sources/intro.rst.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ Timur Davis,
3434
Chia-Hao (Timothy) Liu,
3535
Christopher Wright,
3636
Christopher Farrow,
37+
Hung Vuong,
38+
Songsheng Tao,
3739
Simon Billinge.
3840

3941

static_root/doc/pdfgetx/2.1.0/_static/basic.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -672,6 +672,10 @@ div.code-block-caption + div > div.highlight > pre {
672672
margin-top: 0;
673673
}
674674

675+
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
676+
user-select: none;
677+
}
678+
675679
div.code-block-caption span.caption-number {
676680
padding: 0.1em 0.3em;
677681
font-style: italic;

static_root/doc/pdfgetx/2.1.0/_static/classic.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- classic theme.
66
*
7-
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

static_root/doc/pdfgetx/2.1.0/_static/doctools.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -283,10 +283,11 @@ var Documentation = {
283283
},
284284

285285
initOnKeyListeners: function() {
286-
$(document).keyup(function(event) {
286+
$(document).keydown(function(event) {
287287
var activeElementType = document.activeElement.tagName;
288288
// don't navigate when in search box or textarea
289-
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT') {
289+
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
290+
&& !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) {
290291
switch (event.keyCode) {
291292
case 37: // left
292293
var prevHref = $('link[rel="prev"]').prop('href');

static_root/doc/pdfgetx/2.1.0/_static/documentation_options.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ var DOCUMENTATION_OPTIONS = {
33
VERSION: '2.1.0',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
6+
BUILDER: 'html',
67
FILE_SUFFIX: '.html',
78
HAS_SOURCE: true,
89
SOURCELINK_SUFFIX: '.txt',

static_root/doc/pdfgetx/2.1.0/_static/language_data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This script contains the language-specific data used by searchtools.js,
66
* namely the list of stopwords, stemmer, scorer and splitter.
77
*
8-
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
8+
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
99
* :license: BSD, see LICENSE for details.
1010
*
1111
*/

static_root/doc/pdfgetx/2.1.0/_static/searchtools.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for the full-text search.
66
*
7-
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -245,7 +245,7 @@ var Search = {
245245
if (results.length) {
246246
var item = results.pop();
247247
var listItem = $('<li style="display:none"></li>');
248-
if (DOCUMENTATION_OPTIONS.FILE_SUFFIX === '') {
248+
if (DOCUMENTATION_OPTIONS.BUILDER === 'dirhtml') {
249249
// dirhtml builder
250250
var dirname = item[0] + '/';
251251
if (dirname.match(/\/index\/$/)) {
@@ -424,15 +424,15 @@ var Search = {
424424
for (j = 0; j < _files.length; j++) {
425425
file = _files[j];
426426
if (!(file in scoreMap))
427-
scoreMap[file] = {}
427+
scoreMap[file] = {};
428428
scoreMap[file][word] = o.score;
429429
}
430430
});
431431

432432
// create the mapping
433433
for (j = 0; j < files.length; j++) {
434434
file = files[j];
435-
if (file in fileMap)
435+
if (file in fileMap && fileMap[file].indexOf(word) === -1)
436436
fileMap[file].push(word);
437437
else
438438
fileMap[file] = [word];

static_root/doc/pdfgetx/2.1.0/files.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<link rel="stylesheet" href="_static/pydoctheme.css" type="text/css" />
88
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
99

10-
<script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
11-
<script type="text/javascript" src="_static/jquery.js"></script>
12-
<script type="text/javascript" src="_static/underscore.js"></script>
13-
<script type="text/javascript" src="_static/doctools.js"></script>
14-
<script type="text/javascript" src="_static/language_data.js"></script>
10+
<script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
11+
<script src="_static/jquery.js"></script>
12+
<script src="_static/underscore.js"></script>
13+
<script src="_static/doctools.js"></script>
14+
<script src="_static/language_data.js"></script>
1515

16-
<script type="text/javascript" src="_static/sidebar.js"></script>
16+
<script src="_static/sidebar.js"></script>
1717

1818
<link rel="index" title="Index" href="genindex.html" />
1919
<link rel="search" title="Search" href="search.html" />
@@ -168,7 +168,7 @@ <h3 id="searchlabel">Quick search</h3>
168168
</form>
169169
</div>
170170
</div>
171-
<script type="text/javascript">$('#searchbox').show(0);</script>
171+
<script>$('#searchbox').show(0);</script>
172172
</div>
173173
</div>
174174
<div class="clearer"></div>
@@ -189,8 +189,8 @@ <h3>Navigation</h3>
189189
</div>
190190

191191
<div class="footer" role="contentinfo">
192-
&#169; Copyright 2019, Pavol Juhás, Timur Davis, Chia-Hao (Timothy) Liu, Christopher Wright, Christopher Farrow, Simon Billinge.
193-
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.2.1.
192+
&#169; Copyright 2020, Pavol Juhás, Timur Davis, Chia-Hao (Timothy) Liu, Christopher Wright, Christopher Farrow, Simon Billinge.
193+
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.4.0.
194194
</div>
195195
</body>
196196
</html>

0 commit comments

Comments
 (0)