Skip to content

Commit cabe7d3

Browse files
committed
[DOXIASITETOOLS-236] Deprecate Doxia Sitetools Doc Renderer
1 parent eccba71 commit cabe7d3

10 files changed

+42
-6
lines changed

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/AbstractDocumentRenderer.java

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
* @author ltheussl
7070
* @since 1.1
7171
*/
72+
@Deprecated
7273
public abstract class AbstractDocumentRenderer
7374
extends AbstractLogEnabled
7475
implements DocumentRenderer

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/DocRenderer.java

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* @author <a href="mailto:[email protected]">Vincent Siveton</a>
2929
* @deprecated Since 1.1, use {@link DocumentRenderer} instead.
3030
*/
31+
@Deprecated
3132
public interface DocRenderer
3233
{
3334
/** Plexus lookup. */

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/DocumentRenderer.java

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* @author ltheussl
3333
* @since 1.1
3434
*/
35+
@Deprecated
3536
public interface DocumentRenderer
3637
{
3738
/** Plexus lookup role. */

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/DocumentRendererContext.java

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* @author <a href="mailto:[email protected]">Vincent Siveton</a>
3131
* @since 1.1.2
3232
*/
33+
@Deprecated
3334
public class DocumentRendererContext
3435
{
3536
private String inputEncoding = ReaderFactory.UTF_8;

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/DocumentRendererException.java

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* @author <a href="mailto:[email protected]">Vincent Siveton</a>
2626
* @since 1.1
2727
*/
28+
@Deprecated
2829
public class DocumentRendererException
2930
extends Exception
3031
{

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/pdf/AbstractPdfRenderer.java

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* @author ltheussl
3535
* @since 1.1
3636
*/
37+
@Deprecated
3738
public abstract class AbstractPdfRenderer
3839
extends AbstractDocumentRenderer
3940
implements PdfRenderer

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/pdf/PdfRenderer.java

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* @author ltheussl
3131
* @since 1.1
3232
*/
33+
@Deprecated
3334
public interface PdfRenderer
3435
extends DocumentRenderer
3536
{

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/pdf/fo/FoPdfRenderer.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
* @author ltheussl
5656
* @since 1.1
5757
*/
58+
@Deprecated
5859
@Component( role = PdfRenderer.class, hint = "fo" )
5960
public class FoPdfRenderer
6061
extends AbstractPdfRenderer
@@ -300,7 +301,7 @@ private void renderModules( String href, FoAggregateSink sink, DocumentTOCItem t
300301
{
301302
String doc = href + "." + extension;
302303
File source = new File( moduleBasedir, doc );
303-
304+
304305
// Velocity file?
305306
if ( !source.exists() )
306307
{
@@ -314,12 +315,12 @@ private void renderModules( String href, FoAggregateSink sink, DocumentTOCItem t
314315
}
315316
source = new File( moduleBasedir, doc );
316317
}
317-
318+
318319
if ( source.exists() )
319320
{
320321
sink.setDocumentName( doc );
321322
sink.setDocumentTitle( tocItem.getName() );
322-
323+
323324
parse( source.getPath(), module.getParserId(), sink, context );
324325
}
325326
}

doxia-doc-renderer/src/main/java/org/apache/maven/doxia/docrenderer/pdf/itext/ITextPdfRenderer.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
* @author ltheussl
8080
* @since 1.1
8181
*/
82+
@Deprecated
8283
@Component( role = PdfRenderer.class, hint = "itext" )
8384
public class ITextPdfRenderer
8485
extends AbstractPdfRenderer
@@ -611,7 +612,7 @@ private List<File> parseTOCFiles( File outputDirectory, DocumentModel documentMo
611612
{
612613
String doc = href + "." + extension;
613614
File source = new File( moduleBasedir, doc );
614-
615+
615616
// Velocity file?
616617
if ( !source.exists() )
617618
{
@@ -625,7 +626,7 @@ private List<File> parseTOCFiles( File outputDirectory, DocumentModel documentMo
625626
}
626627
source = new File( moduleBasedir, doc );
627628
}
628-
629+
629630
if ( source.exists() )
630631
{
631632
String outputITextName = doc.substring( 0, doc.lastIndexOf( '.' ) + 1 ) + "xml";
@@ -635,7 +636,7 @@ private List<File> parseTOCFiles( File outputDirectory, DocumentModel documentMo
635636
{
636637
outputITextFileTmp.getParentFile().mkdirs();
637638
}
638-
639+
639640
iTextFiles.add( outputITextFileTmp );
640641
parse( source, module, outputITextFileTmp, context );
641642
}
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
--------------
2+
Maven Doxia Sitetools Doc Renderer
3+
--------------
4+
5+
~~ Licensed to the Apache Software Foundation (ASF) under one
6+
~~ or more contributor license agreements. See the NOTICE file
7+
~~ distributed with this work for additional information
8+
~~ regarding copyright ownership. The ASF licenses this file
9+
~~ to you under the Apache License, Version 2.0 (the
10+
~~ "License"); you may not use this file except in compliance
11+
~~ with the License. You may obtain a copy of the License at
12+
~~
13+
~~ http://www.apache.org/licenses/LICENSE-2.0
14+
~~
15+
~~ Unless required by applicable law or agreed to in writing,
16+
~~ software distributed under the License is distributed on an
17+
~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18+
~~ KIND, either express or implied. See the License for the
19+
~~ specific language governing permissions and limitations
20+
~~ under the License.
21+
22+
~~ NOTE: For help with the syntax of this file, see:
23+
~~ http://maven.apache.org/doxia/references/apt-format.html
24+
25+
Deprecation Notice
26+
27+
This Doxia Sitetools module is deprecated and will be removed in version 2.0.0.

0 commit comments

Comments
 (0)