You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ms...@apache.org on 2021/10/21 09:26:26 UTC

[pdfbox-docs] branch master updated: PDFBOX-5300: fix links to PDF spec as suggested by sebbASF; closes #6, closes #7

This is an automated email from the ASF dual-hosted git repository.

msahyoun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pdfbox-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new f3f15e5  PDFBOX-5300: fix links to PDF spec as suggested by sebbASF; closes #6, closes #7
f3f15e5 is described below

commit f3f15e57a88237a1b9e24da23a61056e8996e7b6
Author: Maruan Sahyoun <sa...@fileaffairs.de>
AuthorDate: Thu Oct 21 11:25:38 2021 +0200

    PDFBOX-5300: fix links to PDF spec as suggested by sebbASF; closes #6, closes #7
---
 content/1.8/architecture.md | 2 +-
 content/2.0/faq.md          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/1.8/architecture.md b/content/1.8/architecture.md
index 99aa677..7c61b08 100644
--- a/content/1.8/architecture.md
+++ b/content/1.8/architecture.md
@@ -31,7 +31,7 @@ is organized as PDFBox was architected around the concepts layed out in the
 ISO-32000 (PDF) Specification
 
 - [ISO Site](http://www.iso.org/iso/catalogue_detail.htm?csnumber=51502)
-- [Adobe Version](http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/PDF32000_2008.pdf)
+- [Adobe Version](https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf)
 
 ## Quick Introduction to the PDF format
 
diff --git a/content/2.0/faq.md b/content/2.0/faq.md
index faafb69..f3e327f 100644
--- a/content/2.0/faq.md
+++ b/content/2.0/faq.md
@@ -88,7 +88,7 @@ finally
 
 ### I'm getting java.lang.IllegalArgumentException: ... is not available in this font's encoding: WinAnsiEncoding
 
-Check whether the character is available in WinAnsiEncoding by looking at the [PDF Specification](https://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/PDF32000_2008.pdf) Appendix D.
+Check whether the character is available in WinAnsiEncoding by looking at the [PDF Specification](https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf) Appendix D.
 If not, but if it is available in this font (in windows, have a look with charmap.exe), then load the font with
 PDType0Font.load(), see also in the EmbeddedFonts.java example in the source code download.