-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
1,221 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,272 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.io7m.laurel</groupId> | ||
<artifactId>com.io7m.laurel</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>com.io7m.laurel.documentation</artifactId> | ||
|
||
<packaging>jar</packaging> | ||
<name>com.io7m.laurel.documentation</name> | ||
<description>Image caption management (Documentation)</description> | ||
<url>https://www.io7m.com/software/laurel/</url> | ||
|
||
<properties> | ||
<mdep.analyze.skip>true</mdep.analyze.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>com.io7m.laurel.filemodel</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.io7m.primogenitor</groupId> | ||
<artifactId>com.io7m.primogenitor.support</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi.annotation.bundle</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi.annotation.versioning</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
|
||
<plugins> | ||
<!-- Copy documentation resources into build directory --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>copy-documentation-resources</id> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/documentation/</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources/com/io7m/laurel/documentation/</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
|
||
<execution> | ||
<id>copy-documentation-resources-epub</id> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/epub/</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources/com/io7m/laurel/documentation/</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
|
||
<execution> | ||
<id>copy-generated-epub</id> | ||
<phase>site</phase> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.parent.build.directory}/minisite/documentation/</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${project.build.directory}/epub/</directory> | ||
<includes> | ||
<include>documentation.epub</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<!-- Unpack sources of dependencies --> | ||
<execution> | ||
<id>unpack-sources</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>unpack-dependencies</goal> | ||
</goals> | ||
<configuration> | ||
<excludes>module-info.java</excludes> | ||
<includeGroupIds>${project.groupId}</includeGroupIds> | ||
<classifier>sources</classifier> | ||
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> | ||
<outputDirectory>${project.build.directory}/javadoc-sources</outputDirectory> | ||
</configuration> | ||
</execution> | ||
|
||
<execution> | ||
<id>make-classpath</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>build-classpath</goal> | ||
</goals> | ||
<configuration> | ||
<outputFile>${project.build.directory}/javadoc-classpath</outputFile> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<executions> | ||
<!-- Javadoc handling --> | ||
<execution> | ||
<id>javadoc</id> | ||
<goals> | ||
<goal>java</goal> | ||
</goals> | ||
<phase>package</phase> | ||
<configuration> | ||
<mainClass>com.io7m.primogenitor.support.TrivialJavadoc</mainClass> | ||
<arguments> | ||
<argument>${project.build.directory}/javadoc-sources</argument> | ||
<argument>${project.build.directory}/javadoc-classpath</argument> | ||
<argument>${project.build.directory}/documentation/apidocs</argument> | ||
<argument>${project.build.directory}/javadoc-log.txt</argument> | ||
<argument>${project.build.directory}/javadoc-options</argument> | ||
</arguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!-- Generate documentation in various formats. --> | ||
<plugin> | ||
<groupId>com.io7m.xstructural</groupId> | ||
<artifactId>com.io7m.xstructural.maven_plugin</artifactId> | ||
<version>${com.io7m.xstructural.version}</version> | ||
<executions> | ||
<execution> | ||
<id>xhtml-single</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>xhtml-single</goal> | ||
</goals> | ||
<configuration> | ||
<brandingFile>${project.build.directory}/documentation/brand.xml</brandingFile> | ||
<sourceFile>${project.build.directory}/documentation/main.xml</sourceFile> | ||
<outputDirectory>${project.build.directory}/documentation</outputDirectory> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>xhtml-multi</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>xhtml-multi</goal> | ||
</goals> | ||
<configuration> | ||
<brandingFile>${project.build.directory}/documentation/brand.xml</brandingFile> | ||
<sourceFile>${project.build.directory}/documentation/main.xml</sourceFile> | ||
<outputDirectory>${project.build.directory}/documentation</outputDirectory> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>epub</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>epub</goal> | ||
</goals> | ||
<configuration> | ||
<brandingFile>${project.build.directory}/documentation/brand.xml</brandingFile> | ||
<sourceFile>${project.build.directory}/documentation/main.xml</sourceFile> | ||
<outputDirectory>${project.build.directory}/epub</outputDirectory> | ||
<outputFileName>documentation.epub</outputFileName> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!-- Produce documentation archive --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/main/assembly/documentation.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
<configuration> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!-- Unpack the documentation archive to the parent's generated site minisite directory. --> | ||
<!-- This is arguably abusive, but there appears to be no other way to achieve it. --> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>truezip-maven-plugin</artifactId> | ||
<inherited>false</inherited> | ||
<executions> | ||
<execution> | ||
<id>copy-site-documentation</id> | ||
<goals> | ||
<goal>copy</goal> | ||
</goals> | ||
<phase>site</phase> | ||
<configuration> | ||
<verbose>true</verbose> | ||
<fileset> | ||
<directory> | ||
${project.build.directory}/${project.name}-${project.version}.zip/${project.name}-${project.version}/ | ||
</directory> | ||
<outputDirectory>${project.parent.build.directory}/minisite/documentation/</outputDirectory> | ||
</fileset> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
16 changes: 16 additions & 0 deletions
16
com.io7m.laurel.documentation/src/main/assembly/documentation.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | ||
<id>documentation</id> | ||
<baseDirectory>${project.name}-${project.version}</baseDirectory> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${project.build.directory}/documentation</directory> | ||
<outputDirectory>/</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
29 changes: 29 additions & 0 deletions
29
com.io7m.laurel.documentation/src/main/java/com/io7m/laurel/documentation/Documentation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright © 2024 Mark Raynsford <[email protected]> https://www.io7m.com | ||
* | ||
* Permission to use, copy, modify, and/or distribute this software for any | ||
* purpose with or without fee is hereby granted, provided that the above | ||
* copyright notice and this permission notice appear in all copies. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR | ||
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
|
||
package com.io7m.laurel.documentation; | ||
|
||
/** | ||
* Documentation marker class. | ||
*/ | ||
|
||
public final class Documentation | ||
{ | ||
private Documentation() | ||
{ | ||
|
||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
com.io7m.laurel.documentation/src/main/java/com/io7m/laurel/documentation/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Copyright © 2024 Mark Raynsford <[email protected]> https://www.io7m.com | ||
* | ||
* Permission to use, copy, modify, and/or distribute this software for any | ||
* purpose with or without fee is hereby granted, provided that the above | ||
* copyright notice and this permission notice appear in all copies. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR | ||
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* Image caption management (Documentation) | ||
*/ | ||
|
||
@Export | ||
@Version("1.0.0") | ||
package com.io7m.laurel.documentation; | ||
|
||
import org.osgi.annotation.bundle.Export; | ||
import org.osgi.annotation.versioning.Version; |
27 changes: 27 additions & 0 deletions
27
com.io7m.laurel.documentation/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright © 2024 Mark Raynsford <[email protected]> https://www.io7m.com | ||
* | ||
* Permission to use, copy, modify, and/or distribute this software for any | ||
* purpose with or without fee is hereby granted, provided that the above | ||
* copyright notice and this permission notice appear in all copies. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR | ||
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* Image caption management (Documentation) | ||
*/ | ||
|
||
module com.io7m.laurel.documentation | ||
{ | ||
requires static org.osgi.annotation.bundle; | ||
requires static org.osgi.annotation.versioning; | ||
|
||
exports com.io7m.laurel.documentation; | ||
} |
Binary file added
BIN
+8.13 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160045_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+31.5 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160235_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+42.7 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160243_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43.8 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160339_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+62.7 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160443_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+100 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160507_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+318 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160527_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+102 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160544_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+104 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160558_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+99.6 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160619_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+103 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160628_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+104 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160643_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+86 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160655_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+87.6 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160711_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+84.5 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160722_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.2 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160735_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33.5 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160753_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+31.3 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160808_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+31.6 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160824_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+35 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160835_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+31 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160851_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+19 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160908_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+22.9 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160917_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+52.4 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160936_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+55.9 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-160946_1100x800_scrot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+21.2 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161016_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+28.4 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161041_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+23.6 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161054_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+20.4 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161116_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+38.3 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161219_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+74.4 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161257_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+49.6 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161405_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+45.6 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161422_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+99.9 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-161443_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+76.8 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-170158_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+28.4 KB
...in/resources/com/io7m/laurel/documentation/2024-09-28-185417_1100x800_scrot.png
Oops, something went wrong.
Binary file added
BIN
+44.1 KB
...l.documentation/src/main/resources/com/io7m/laurel/documentation/bookBanner.jpg
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
com.io7m.laurel.documentation/src/main/resources/com/io7m/laurel/documentation/brand.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
|
||
<div xmlns="http://www.w3.org/1999/xhtml" | ||
class="brandingContainer"> | ||
<div class="branding"> | ||
<a href="https://www.io7m.com/">io7m</a> | | ||
<a href="index.xhtml">single-page</a> | | ||
<a href="index-m.xhtml">multi-page</a> | | ||
<a href="documentation.epub">epub</a> | | ||
Laurel User Manual ${project.version} | ||
</div> | ||
</div> |
Oops, something went wrong.