Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Rendering Grails Plugin
=======================

This plugin adds PDF, GIF, PNG and JPEG rendering facilities to Grails applications via the [XHTML Renderer](https://xhtmlrenderer.dev.java.net/) library.
This plugin adds PDF, GIF, PNG and JPEG rendering facilities to Grails applications via the [XHTML Renderer](https://github.com/flyingsaucerproject/flyingsaucer) library.

Rendering is either done directly via one of the `«format»RenderingService` services …

Expand All @@ -15,5 +15,5 @@ Or via one of the `render«format»()` methods added to controllers …

Please see the [User Guide](http://gpc.github.io/rendering/ "Grails Rendering Plugin @ GitHub") for more information.

The plugin is released under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html "Apache License, Version 2.0 - The Apache Software Foundation") and is produced under the [Grails Plugin Collective](http://gpc.github.com/).
However, it does [LGPL](http://www.gnu.org/licenses/lgpl.html) libraries: [XhtmlRenderer](https://code.google.com/p/flying-saucer/) and [iText](http://sourceforge.net/projects/itext/).
The plugin is released under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html "Apache License, Version 2.0 - The Apache Software Foundation") and is produced under the [Grails Plugin Collective](https://github.com/gpc).
However, it does include [LGPL](http://www.gnu.org/licenses/lgpl.html) libraries: [XhtmlRenderer](https://github.com/flyingsaucerproject/flyingsaucer)
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectVersion=7.0.0-SNAPSHOT
grailsVersion=7.0.0-RC2
javaVersion=17
asciidoctorGradlePluginVersion=4.0.4
asciidoctorGradlePluginVersion=4.0.5

2 changes: 1 addition & 1 deletion src/main/asciidoc/1. Introduction.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Introduction

This plugin adds additional rendering capabilities to Grails applications via the https://xhtmlrenderer.dev.java.net/[XHTML Renderer] library.
This plugin adds additional rendering capabilities to Grails applications via the https://github.com/flyingsaucerproject/flyingsaucer[XHTML Renderer] library.

Rendering is either done directly via `«format»RenderingService` services ...

Expand Down
2 changes: 1 addition & 1 deletion src/main/asciidoc/3. Rendering.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ new File("coupon.jpg").withOutputStream { outputStream ->
}
----

For information on rendering to the HTTP response, see <<guide:5. Rendering To The Response,Rendering To The Response>>.
For information on rendering to the HTTP response, see <<rendering-to-the-response,Rendering To The Response>>.

=== Basic Render Arguments

Expand Down
Loading