You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ja...@apache.org on 2015/05/08 20:20:44 UTC

svn commit: r1678412 - in /pdfbox/cmssite/trunk/content: css/site.css ideas.mdtext

Author: jahewson
Date: Fri May  8 18:20:44 2015
New Revision: 1678412

URL: http://svn.apache.org/r1678412
Log:
Apache CMS markdown doesn't support ~~

Modified:
    pdfbox/cmssite/trunk/content/css/site.css
    pdfbox/cmssite/trunk/content/ideas.mdtext

Modified: pdfbox/cmssite/trunk/content/css/site.css
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/css/site.css?rev=1678412&r1=1678411&r2=1678412&view=diff
==============================================================================
--- pdfbox/cmssite/trunk/content/css/site.css (original)
+++ pdfbox/cmssite/trunk/content/css/site.css Fri May  8 18:20:44 2015
@@ -85,6 +85,15 @@ table tr:nth-child(even) td, table tr.ev
 }
 
 /*
+ * Completed items on the "ideas" list.
+ */
+
+.complete {
+  text-decoration: line-through;
+  color: #bbb;
+ }
+
+/*
  * Custom sidebar, replaces Bootstrap .nav with nested tree.
  */
 

Modified: pdfbox/cmssite/trunk/content/ideas.mdtext
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/ideas.mdtext?rev=1678412&r1=1678411&r2=1678412&view=diff
==============================================================================
--- pdfbox/cmssite/trunk/content/ideas.mdtext (original)
+++ pdfbox/cmssite/trunk/content/ideas.mdtext Fri May  8 18:20:44 2015
@@ -19,24 +19,30 @@ This is an ongoing effort and most/all d
 In addition to the pdf parsing pdfbox does not always handle large pdf files well as some 
 of the references are implemented as int instead of long
 
-## ~~Switch to Java 1.6~~
+<div class="complete">
+## Switch to Java 1.6
 
-~~PDFBox 2.0.0 has Java 6 as minimum requirement.~~
+PDFBox 2.0.0 has Java 6 as minimum requirement.
+</div>
 
-## ~~Break PDFBox into modules~~
+<div class="complete">
+## Break PDFBox into modules
 
-~~In order to support different use cases and provide a minimal toolset PDFBox 2.0.0 should be 
+In order to support different use cases and provide a minimal toolset PDFBox 2.0.0 should be 
 separated into different modules. This goes inline with rearranging some of the code
-e.g. remove AWT from PDDocument.~~
+e.g. remove AWT from PDDocument.
+</div>
 
-## ~~Enhance the font rendering~~
+<div class="complete">
+## Enhance the font rendering
 
-~~PDFBox 2.0.0 will render most of the fonts without using AWT.~~
+PDFBox 2.0.0 will render most of the fonts without using AWT.
+</div>
  
 ## Replace/enhance PDF parsing
 
-~~The old "classic" PDF parser in PDFBox is not in line with the PDF specification as it parses
-a PDF from top to bottom instead of respecting the XRef information.~~ The NonSequentialParser
+<strike>The old "classic" PDF parser in PDFBox is not in line with the PDF specification as it parses
+a PDF from top to bottom instead of respecting the XRef information.</strike> The NonSequentialParser
 enhanced that situation but there is a need to have a cleaner foundation broken into several levels
 
 - io
@@ -49,9 +55,11 @@ enhanced that situation but there is a n
 In addition handling documents which are not conforming shouldn't be part of the core parser
 but of a extentable approach e.g. by adding hooks to allow for handling parsing exceptions.
 
-## ~~Add the ability to create pdfs using unicode encoded text~~
+<div class="complete">
+## Add the ability to create pdfs using unicode encoded text
 
-~~The recent PDFBox version is limited to WinANSI encoded text. 2.0.0 should have unicode support as well.~~
+The recent PDFBox version is limited to WinANSI encoded text. 2.0.0 should have unicode support as well.
+</div>
 
 ## Rearchitect the COS level objects