Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #4540 - Add documentation for FileUpload extension #4543

Merged
merged 1 commit into from
Jan 19, 2025
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: 6 additions & 0 deletions extension/fileupload/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,10 @@
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<site>
<id>default</id>
<url>file:///tmp/piranha/extension/file-upload/</url>
</site>
</distributionManagement>
</project>
8 changes: 8 additions & 0 deletions extension/fileupload/src/site/markdown/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Piranha File Upload Extension

The File Upload extension delivers the ability for a Piranha runtime to support
file upload. This extension is available by default for the following runtimes:

1. Piranha Server
1. Piranha Servlet
1. Piranha Web Profile
9 changes: 9 additions & 0 deletions extension/fileupload/src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="ISO-8859-1"?>

<project>
<body>
<menu name="Overview">
<item name="Introduction" href="index.html"/>
</menu>
</body>
</project>
3 changes: 3 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<item name="Servlet" href="dist/servlet/index.html"/>
<item name="Web Profile" href="dist/webprofile/index.html"/>
</menu>
<menu name="Extensions">
<item name="File Upload" href="extension/file-upload/index.html"/>
</menu>
</body>
<custom>
<fluidoSkin>
Expand Down
Loading