[Pkg-javascript-commits] [pdf.js] 05/05: Address PR comments.

David Prévot taffit at moszumanska.debian.org
Thu Nov 19 18:46:15 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag help
in repository pdf.js.

commit 7736f5204be7bcd5567515c6d4336400d3a03716
Author: Brendan Dahl <brendan.dahl at gmail.com>
Date:   Wed Apr 9 16:40:31 2014 -0700

    Address PR comments.
---
 docs/contents/getting_started/index.md | 5 +++--
 docs/templates/layout.jade             | 2 ++
 make.js                                | 3 ++-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/docs/contents/getting_started/index.md b/docs/contents/getting_started/index.md
index 3d6c016..4152672 100644
--- a/docs/contents/getting_started/index.md
+++ b/docs/contents/getting_started/index.md
@@ -62,6 +62,7 @@ $ cd pdfjs
 ### Prebuilt
 
 ```
+├── LICENSE
 ├── build/
 │   ├── pdf.js                             - display layer
 │   └── pdf.worker.js                      - core layer
@@ -108,6 +109,6 @@ $ cd pdfjs
 
 With the prebuilt or source version open `web/viewer.html` in a browser and the test pdf should load. Note: the worker is not enabled for file:// urls, so use a server. If you're using the source build and have node, you can run `node make server`.
 
-## Examples
+## More Information
 
-For a further walkthrough of a minimal viewer see the [hello world example](/examples/).
\ No newline at end of file
+For a further walkthrough of a minimal viewer see the [hello world example](/examples/). More documentation can be found in our [wiki](https://github.com/mozilla/pdf.js/wiki) too.
\ No newline at end of file
diff --git a/docs/templates/layout.jade b/docs/templates/layout.jade
index f8db5d5..7f03f3a 100644
--- a/docs/templates/layout.jade
+++ b/docs/templates/layout.jade
@@ -31,6 +31,8 @@ html(lang='en')
                       a(href=makeRelative(page.url, '/getting_started/')) Getting Started
                   li(class=(page.url === '/examples/' ? 'active' : ''))
                       a(href=makeRelative(page.url, '/examples/')) Examples
+                  li
+                      a(href='https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions') FAQ
                   li(class=(page.url === '/api/' ? 'active' : ''))
                       a(href=makeRelative(page.url, '/api/')) API
 
diff --git a/make.js b/make.js
index 3ba0da1..046166b 100644
--- a/make.js
+++ b/make.js
@@ -118,6 +118,7 @@ target.generic = function() {
     defines: defines,
     copy: [
       [COMMON_WEB_FILES, GENERIC_DIR + '/web'],
+      ['LICENSE', GENERIC_DIR],
       ['external/webL10n/l10n.js', GENERIC_DIR + '/web'],
       ['web/viewer.css', GENERIC_DIR + '/web'],
       ['web/compatibility.js', GENERIC_DIR + '/web'],
@@ -199,7 +200,7 @@ target.dist = function() {
   cd(GENERIC_DIR);
   var distFilename = 'pdfjs-' + VERSION + '-dist.zip';
   exec('zip -r ' + ROOT_DIR + BUILD_DIR + distFilename + ' *');
-  echo('Built distrobution file: ' + distFilename);
+  echo('Built distribution file: ' + distFilename);
   cd(ROOT_DIR);
 };
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/pdf.js.git



More information about the Pkg-javascript-commits mailing list