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

Feature/320/form entries #2933

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Draft
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
66 changes: 33 additions & 33 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ LABEL org.opencontainers.image.keywords="PDF, manipulation, merge, split, conver

# Set Environment Variables
ENV DOCKER_ENABLE_SECURITY=false \
VERSION_TAG=$VERSION_TAG \
JAVA_TOOL_OPTIONS="-XX:+UnlockExperimentalVMOptions \
-XX:MaxRAMPercentage=75 \
-XX:InitiatingHeapOccupancyPercent=20 \
-XX:+G1PeriodicGCInvokesConcurrent \
-XX:G1PeriodicGCInterval=10000 \
-XX:+UseStringDeduplication \
-XX:G1PeriodicGCSystemLoadThreshold=70" \
HOME=/home/stirlingpdfuser \
PUID=1000 \
PGID=1000 \
UMASK=022
VERSION_TAG=$VERSION_TAG \
JAVA_TOOL_OPTIONS="-XX:+UnlockExperimentalVMOptions \
-XX:MaxRAMPercentage=75 \
-XX:InitiatingHeapOccupancyPercent=20 \
-XX:+G1PeriodicGCInvokesConcurrent \
-XX:G1PeriodicGCInterval=10000 \
-XX:+UseStringDeduplication \
-XX:G1PeriodicGCSystemLoadThreshold=70" \
HOME=/home/stirlingpdfuser \
PUID=1000 \
PGID=1000 \
UMASK=022


# JDK for app
RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/main" | tee -a /etc/apk/repositories && \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" | tee -a /etc/apk/repositories && \
apk upgrade --no-cache -a && \
apk add --no-cache \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" | tee -a /etc/apk/repositories && \
apk upgrade --no-cache -a && \
apk add --no-cache \
ca-certificates \
tzdata \
tini \
Expand All @@ -55,28 +55,28 @@ RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/main" | tee -a /et
openssl \
openssl-dev \
openjdk21-jre \
# Doc conversion
# Doc conversion
libreoffice \
# pdftohtml
# pdftohtml
poppler-utils \
# OCR MY PDF (unpaper for descew and other advanced features)
# OCR MY PDF (unpaper for descew and other advanced features)
tesseract-ocr-data-eng \
# CV
py3-opencv \
# python3/pip
# CV

# python3/pip
python3 \
py3-pip && \
# uno unoconv and HTML
pip install --break-system-packages --no-cache-dir --upgrade unoconv WeasyPrint pdf2image pillow && \
mv /usr/share/tessdata /usr/share/tessdata-original && \
mkdir -p $HOME /configs /logs /customFiles /pipeline/watchedFolders /pipeline/finishedFolders && \
fc-cache -f -v && \
chmod +x /scripts/* && \
chmod +x /scripts/init.sh && \
# User permissions
addgroup -S stirlingpdfgroup && adduser -S stirlingpdfuser -G stirlingpdfgroup && \
chown -R stirlingpdfuser:stirlingpdfgroup $HOME /scripts /usr/share/fonts/opentype/noto /configs /customFiles /pipeline && \
chown stirlingpdfuser:stirlingpdfgroup /app.jar
# uno unoconv and HTML
pip install --break-system-packages --no-cache-dir --upgrade unoconv WeasyPrint pdf2image pillow && \
mv /usr/share/tessdata /usr/share/tessdata-original && \
mkdir -p $HOME /configs /logs /customFiles /pipeline/watchedFolders /pipeline/finishedFolders && \
fc-cache -f -v && \
chmod +x /scripts/* && \
chmod +x /scripts/init.sh && \
# User permissions
addgroup -S stirlingpdfgroup && adduser -S stirlingpdfuser -G stirlingpdfgroup && \
chown -R stirlingpdfuser:stirlingpdfgroup $HOME /scripts /usr/share/fonts/opentype/noto /configs /customFiles /pipeline && \
chown stirlingpdfuser:stirlingpdfgroup /app.jar

EXPOSE 8080/tcp

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import lombok.extern.slf4j.Slf4j;
import stirling.software.SPDF.config.InstallationPathConfig;
import stirling.software.SPDF.controller.api.pipeline.UserServiceInterface;
import stirling.software.SPDF.controller.web.GeneralWebController.FontResource;
import stirling.software.SPDF.model.SignatureFile;
import stirling.software.SPDF.service.SignatureService;

Expand Down Expand Up @@ -192,6 +193,14 @@ public String signForm(Model model) {
return "sign";
}

@GetMapping("/forms")
@Hidden
public String addElements(Model model) {
model.addAttribute("currentPage", "forms");
model.addAttribute("fonts", getFontNames());
return "forms";
}

@GetMapping("/multi-page-layout")
@Hidden
public String multiPageLayoutForm(Model model) {
Expand Down
31 changes: 31 additions & 0 deletions src/main/resources/messages_en_GB.properties
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,37 @@ sign.next=Next page
sign.previous=Previous page
sign.maintainRatio=Toggle maintain aspect ratio

#add elements
add-elements.title=Forms
add-elements.header=Forms
add-elements.upload=Upload Image
add-elements.draw=Draw Signature
add-elements.text=Text Input
add-elements.checkbox=Check Box
add-elements.dropdown=Dropdown
add-elements.optionList=Option List
add-elements.radioButton=Radio Button
add-elements.textbox=Text Box
add-elements.clear=Clear
add-elements.add=Add
add-elements.Dropdown-options=Dropdown options (comma separated)
add-elements.options=Options (comma separated)
add-elements.element-id=Element ID
add-elements.label=label
add-elements.size.label=Select Font Size:
add-elements.backgroundColour=Background Colour
add-elements.textColour=Text Colour
add-elements.addNew=Add New Form
add-elements.editForm=Edit Form

#fonts
font.size.small=Small
font.size.smaller=Smaller
font.size.medium=Medium
font.size.large=Large
font.size.larger=Larger
font.size.xlarge=X-Large
font.size.xxlarge=XX-Large

#repair
repair.title=Repair
Expand Down
Loading