mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-10-25 11:17:28 +02:00 
			
		
		
		
	
						commit
						5fad085db5
					
				
							
								
								
									
										41
									
								
								.github/workflows/licenses-update.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								.github/workflows/licenses-update.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,41 @@ | ||||
| name: License Report Workflow | ||||
| 
 | ||||
| on: | ||||
|   push: | ||||
|     branches: | ||||
|       - main | ||||
|     paths: | ||||
|       - 'build.gradle' | ||||
| 
 | ||||
| permissions: | ||||
|   contents: write | ||||
|   pull-requests: write | ||||
| 
 | ||||
| jobs: | ||||
|   generate-license-report: | ||||
|     runs-on: ubuntu-latest | ||||
| 
 | ||||
|     steps: | ||||
|       - name: Check out code | ||||
|         uses: actions/checkout@v3 | ||||
| 
 | ||||
|       - name: Set up JDK 17 | ||||
|         uses: actions/setup-java@v3 | ||||
|         with: | ||||
|           java-version: '17' | ||||
|           distribution: 'adopt' | ||||
| 
 | ||||
|       - name: Run Gradle Command | ||||
|         run: ./gradlew clean generateLicenseReport | ||||
| 
 | ||||
|       - name: Move and Rename License File | ||||
|         run: | | ||||
|           mv build/reports/dependency-license/index.json src/main/resources/static/3rdPartyLicenses.json | ||||
| 
 | ||||
|       - name: Commit and Push Changes | ||||
|         run: | | ||||
|           git config --global user.name 'Stirling-PDF-Bot' | ||||
|           git config --global user.email 'Stirling-PDF-Bot@stirlingtools.com' | ||||
|           git add src/main/resources/static/3rdPartyLicenses.json | ||||
|           git commit -m "Update 3rd Party Licenses" | ||||
|           git push | ||||
| @ -147,7 +147,7 @@ Note: Podman is CLI-compatible with Docker, so simply replace "docker" with "pod | ||||
| Please view https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToUseOCR.md | ||||
| 
 | ||||
| ## Want to add your own language? | ||||
| Stirling PDF currently supports 25! | ||||
| Stirling PDF currently supports 26! | ||||
| - English (English) (en_GB) | ||||
| - English (US) (en_US) | ||||
| - Arabic (العربية) (ar_AR) | ||||
| @ -173,6 +173,7 @@ Stirling PDF currently supports 25! | ||||
| - Hindi (हिंदी) (hi_IN) | ||||
| - Hungarian (Magyar) (hu_HU) | ||||
| - Bulgarian (Български) (bg_BG) | ||||
| - Sebian Latin alphabet (Srpski) (sr-Latn-RS) | ||||
| 
 | ||||
| If you want to add your own language to Stirling-PDF please refer | ||||
| https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md | ||||
|  | ||||
							
								
								
									
										11
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								build.gradle
									
									
									
									
									
								
							| @ -6,16 +6,25 @@ plugins { | ||||
|     id "io.swagger.swaggerhub" version "1.3.2" | ||||
|     id 'edu.sc.seis.launch4j' version '3.0.5' | ||||
|     id 'com.diffplug.spotless' version '6.23.3' | ||||
|     id 'com.github.jk1.dependency-license-report' version '2.5' | ||||
| } | ||||
| 
 | ||||
| import com.github.jk1.license.render.* | ||||
| 
 | ||||
| group = 'stirling.software' | ||||
| version = '0.18.1' | ||||
| version = '0.18.2' | ||||
| sourceCompatibility = '17' | ||||
| 
 | ||||
| repositories { | ||||
|     mavenCentral() | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| licenseReport { | ||||
|     renderers = [new JsonReportRenderer()] | ||||
| } | ||||
| 
 | ||||
| sourceSets { | ||||
|     main { | ||||
|         java { | ||||
|  | ||||
| @ -10,6 +10,16 @@ import org.springframework.web.bind.annotation.ResponseBody; | ||||
| import io.swagger.v3.oas.annotations.Hidden; | ||||
| 
 | ||||
| import stirling.software.SPDF.model.ApplicationProperties; | ||||
| import stirling.software.SPDF.model.Dependency; | ||||
| 
 | ||||
| import com.fasterxml.jackson.core.type.TypeReference; | ||||
| import com.fasterxml.jackson.databind.ObjectMapper; | ||||
| import org.springframework.core.io.ClassPathResource; | ||||
| import org.springframework.core.io.Resource; | ||||
| import java.io.IOException; | ||||
| import java.nio.file.Files; | ||||
| import java.util.List; | ||||
| import java.util.Map; | ||||
| 
 | ||||
| @Controller | ||||
| public class HomeWebController { | ||||
| @ -21,6 +31,23 @@ public class HomeWebController { | ||||
|         return "about"; | ||||
|     } | ||||
|      | ||||
|     @GetMapping("/licenses") | ||||
|     @Hidden | ||||
|     public String licensesForm(Model model) { | ||||
|         model.addAttribute("currentPage", "licenses"); | ||||
|         Resource resource = new ClassPathResource("static/3rdPartyLicenses.json"); | ||||
|         try { | ||||
|             String json = new String(Files.readAllBytes(resource.getFile().toPath())); | ||||
|             ObjectMapper mapper = new ObjectMapper(); | ||||
|             Map<String, List<Dependency>> data = mapper.readValue(json, new TypeReference<Map<String, List<Dependency>>>() {}); | ||||
|             model.addAttribute("dependencies", data.get("dependencies")); | ||||
|         } catch (IOException e) { | ||||
|             e.printStackTrace(); | ||||
|         } | ||||
|         return "licenses"; | ||||
|     } | ||||
|      | ||||
| 
 | ||||
|     @GetMapping("/") | ||||
|     public String home(Model model) { | ||||
|         model.addAttribute("currentPage", "home"); | ||||
|  | ||||
							
								
								
									
										13
									
								
								src/main/java/stirling/software/SPDF/model/Dependency.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								src/main/java/stirling/software/SPDF/model/Dependency.java
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,13 @@ | ||||
| package stirling.software.SPDF.model; | ||||
| 
 | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @Data | ||||
| public class Dependency { | ||||
|     private String moduleName; | ||||
|     private String moduleUrl; | ||||
|     private String moduleVersion; | ||||
|     private String moduleLicense; | ||||
|     private String moduleLicenseUrl; | ||||
| 
 | ||||
| } | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -920,3 +920,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -920,3 +920,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Divisiones Verticales | ||||
| split-by-sections.horizontal.placeholder=Introduzca el número de divisiones horizontales | ||||
| split-by-sections.vertical.placeholder=Introduzca el número de divisiones verticales | ||||
| split-by-sections.submit=Dividir PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Divisions verticales | ||||
| split-by-sections.horizontal.placeholder=Saisir le nombre de divisions horizontales | ||||
| split-by-sections.vertical.placeholder=Entrer le nombre de divisions verticales | ||||
| split-by-sections.submit=Diviser le PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=लंबवत विभाजन | ||||
| split-by-sections.horizontal.placeholder=क्षैतिज विभाजन की संख्या दर्ज करें | ||||
| split-by-sections.vertical.placeholder=लंबवत विभाजन की संख्या दर्ज करें | ||||
| split-by-sections.submit=PDF को विभाजित करें | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vízszintes szakaszok | ||||
| split-by-sections.horizontal.placeholder=Adja meg a vízszintes szakaszok számát | ||||
| split-by-sections.vertical.placeholder=Adja meg a függőleges szakaszok számát | ||||
| split-by-sections.submit=Felosztás | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Pembagian Vertikal | ||||
| split-by-sections.horizontal.placeholder=Input angka untuk pembagian horizontal | ||||
| split-by-sections.vertical.placeholder=Input angka untuk pembagian vertikal | ||||
| split-by-sections.submit=Pisahkan PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Divisioni verticali | ||||
| split-by-sections.horizontal.placeholder=Inserire il numero di divisioni orizzontali | ||||
| split-by-sections.vertical.placeholder=Inserire il numero di divisioni verticali | ||||
| split-by-sections.submit=Dividi PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,7 +1,7 @@ | ||||
| ########### | ||||
| ########### | ||||
| # Generic # | ||||
| ########### | ||||
| # the direction that the language is written (ltr = left to right, rtl = right to left) | ||||
| # the direction that the language is written (ltr=left to right, rtl = right to left) | ||||
| language.direction=ltr | ||||
| 
 | ||||
| pdfPrompt=Odaberi PDF(ove) | ||||
| @ -116,7 +116,7 @@ account.title=Podešavanja naloga | ||||
| account.accountSettings=Podešavanja naloga | ||||
| account.adminSettings=Admin podešavanja - Pregled i dodavanje korisnika | ||||
| account.userControlSettings=Podešavanja kontrole korisnika | ||||
| account.changeUsername=Novo korisničko ime | ||||
| account.changeUsername=Pormeni korisničko ime | ||||
| account.changeUsername=Pormeni korisničko ime | ||||
| account.password=Potvrda lozinke | ||||
| account.oldPassword=Stara lozinka | ||||
| @ -147,13 +147,13 @@ adminUserSettings.demoUser=Demo korisnik (Bez prilagođenih podešavanja) | ||||
| adminUserSettings.forceChange=Prisili korisnika da promeni korisničko ime/lozinku pri prijavi | ||||
| adminUserSettings.submit=Sačuvaj korisnika | ||||
| 
 | ||||
| 
 | ||||
| ############# | ||||
| # HOME-PAGE # | ||||
| ############# | ||||
| home.desc=Vaš lokalno hostovan jedinstveni alat za sve vaše potrebe vezane za PDF. | ||||
| home.searchBar=Pretraži funkcije... | ||||
| 
 | ||||
| 
 | ||||
| home.viewPdf.title=Pregledaj PDF | ||||
| home.viewPdf.desc=Pregledaj, anotiraj, dodaj tekst ili slike | ||||
| viewPdf.tags=pregled,čitanje,anotiranje,tekst,slika | ||||
| @ -174,6 +174,7 @@ home.rotate.title=Rotacija | ||||
| home.rotate.desc=Lako rotirajte vaše PDF-ove. | ||||
| rotate.tags=server strana | ||||
| 
 | ||||
| 
 | ||||
| home.imageToPdf.title=Slika u PDF | ||||
| home.imageToPdf.desc=Konvertujte sliku (PNG, JPEG, GIF) u PDF. | ||||
| imageToPdf.tags=konverzija,img,jpg,slika,foto | ||||
| @ -184,7 +185,8 @@ pdfToImage.tags=konverzija,img,jpg,slika,foto | ||||
| 
 | ||||
| home.pdfOrganiser.title=Organizacija | ||||
| home.pdfOrganiser.desc=Uklonite/Premeštajte stranice u bilo kom redosledu | ||||
| pdfOrganiser.tags,dupleks,paran,neparan,sortiraj,pomeri | ||||
| pdfOrganiser.tags=duplex,even,odd,sort,move | ||||
| 
 | ||||
| 
 | ||||
| home.addImage.title=Dodaj sliku | ||||
| home.addImage.desc=Dodaje sliku na određeno mesto u PDF-u | ||||
| @ -198,6 +200,7 @@ home.permissions.title=Promeni dozvole | ||||
| home.permissions.desc=Promenite dozvole vašeg PDF dokumenta | ||||
| permissions.tags=čitanje,pisanje,izmena,štampa | ||||
| 
 | ||||
| 
 | ||||
| home.removePages.title=Ukloni | ||||
| home.removePages.desc=Obrišite nepotrebne stranice iz vašeg PDF dokumenta. | ||||
| removePages.tags=Ukloni stranice,obriši stranice | ||||
| @ -214,6 +217,7 @@ home.compressPdfs.title=Kompresuj | ||||
| home.compressPdfs.desc=Kompresujte PDF-ove kako bi smanjili veličinu fajla. | ||||
| compressPdfs.tags=smanji,mali,minijaturni | ||||
| 
 | ||||
| 
 | ||||
| home.changeMetadata.title=Promena metapodataka | ||||
| home.changeMetadata.desc=Promenite/Uklonite/Dodajte metapodatke u PDF dokumentu | ||||
| changeMetadata.tags=Naslov,autor,datum,kreacije,vreme,izdavač,proizvođač,statistike | ||||
| @ -226,6 +230,7 @@ home.ocr.title=OCR / Čišćenje skenova | ||||
| home.ocr.desc=Čišćenje skenova i detektovanje teksta sa slika unutar PDF-a i ponovno dodavanje kao teksta. | ||||
| ocr.tags=prepoznavanje,tekst,slika,sken,čitanje,identifikacija,detekcija,uređivanje | ||||
| 
 | ||||
| 
 | ||||
| home.extractImages.title=Izvuci slike | ||||
| home.extractImages.desc=Izvlači sve slike iz PDF-a i čuva ih u zip formatu | ||||
| extractImages.tags=slika,foto,sačuvaj,arhiva,zip,zahvati,uhvati | ||||
| @ -250,6 +255,7 @@ home.PDFToHTML.title=PDF u HTML | ||||
| home.PDFToHTML.desc=Konvertujte PDF u HTML format | ||||
| PDFToHTML.tags=web sadržaj,prijateljski za pretraživače | ||||
| 
 | ||||
| 
 | ||||
| home.PDFToXML.title=PDF u XML | ||||
| home.PDFToXML.desc=Konvertujte PDF u XML format | ||||
| PDFToXML.tags=izdvajanje-podataka,strukturirani-sadržaj,interop,transformacija,konvertovanje | ||||
| @ -330,25 +336,30 @@ home.HTMLToPDF.title=HTML u PDF | ||||
| home.HTMLToPDF.desc=Konvertuje bilo koji HTML fajl ili zip u PDF | ||||
| HTMLToPDF.tags=oznake,web-sadržaj,transformacija,konvertovanje | ||||
| 
 | ||||
| 
 | ||||
| home.MarkdownToPDF.title=Markdown u PDF | ||||
| home.MarkdownToPDF.desc=Konvertuje bilo koji Markdown fajl u PDF | ||||
| MarkdownToPDF.tags=oznake,web-sadržaj,transformacija,konvertovanje | ||||
| 
 | ||||
| 
 | ||||
| home.getPdfInfo.title=Dohvati SVE informacije o PDF-u | ||||
| home.getPdfInfo.desc=Dobavlja sve moguće informacije o PDF-ovima | ||||
| getPdfInfo.tags=informacije,podaci,statistike | ||||
| 
 | ||||
| 
 | ||||
| home.extractPage.title=Izdvajanje stranica | ||||
| home.extractPage.desc=Izdvaja odabrane stranice iz PDF-a | ||||
| extractPage.tags=izdvajanje | ||||
| 
 | ||||
| 
 | ||||
| home.PdfToSinglePage.title=PDF u Jednu Veliku Stranicu | ||||
| home.PdfToSinglePage.desc=Spaja sve stranice PDF-a u jednu veliku stranicu | ||||
| PdfToSinglePage.tags=jedna-stranica | ||||
| 
 | ||||
| 
 | ||||
| home.showJS.title=Prikaži JavaScript | ||||
| home.showJS.desc=Pretražuje i prikazuje bilo koji JavaScript ubačen u PDF | ||||
| showJS.tags=JS | ||||
| showJS.tags=Cenzura,Sakrij,prekrivanje,crna,marker,skriveno | ||||
| 
 | ||||
| home.autoRedact.title=Automatsko Cenzurisanje | ||||
| home.autoRedact.desc=Automatsko cenzurisanje teksta u PDF-u na osnovu unetog teksta | ||||
| @ -358,10 +369,12 @@ home.tableExtraxt.title=PDF u CSV | ||||
| home.tableExtraxt.desc=Izdvaja tabele iz PDF-a pretvarajući ih u CSV | ||||
| tableExtraxt.tags=CSV,Izdvajanje tabela,izdvajanje,konvertovanje | ||||
| 
 | ||||
| 
 | ||||
| home.autoSizeSplitPDF.title=Automatsko Deljenje po Veličini/Broju | ||||
| home.autoSizeSplitPDF.desc=Deljenje jednog PDF-a na više dokumenata na osnovu veličine, broja stranica ili broja dokumenata | ||||
| autoSizeSplitPDF.tags=pdf,delenje,dokumenti,organizacija | ||||
| 
 | ||||
| 
 | ||||
| home.overlay-pdfs.title=Preklapanje PDF-ova | ||||
| home.overlay-pdfs.desc=Preklapa PDF-ove jedan preko drugog | ||||
| overlay-pdfs.tags=Preklapanje | ||||
| @ -431,6 +444,7 @@ MarkdownToPDF.help=Rad u toku | ||||
| MarkdownToPDF.credit=Koristi WeasyPrint | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| #url-to-pdf | ||||
| URLToPDF.title=URL u PDF | ||||
| URLToPDF.header=URL u PDF | ||||
| @ -800,7 +814,7 @@ removePassword.submit=Ukloni | ||||
| 
 | ||||
| 
 | ||||
| #changeMetadata | ||||
| changeMetadata.title=Promeni metapodatke | ||||
| changeMetadata.title=Naslov: | ||||
| changeMetadata.header=Promeni metapodatke | ||||
| changeMetadata.selectText.1=Izmenite promenljive koje želite promeniti | ||||
| changeMetadata.selectText.2=Obriši sve metapodatke | ||||
| @ -863,7 +877,6 @@ PDFToXML.header=PDF u XML | ||||
| PDFToXML.credit=Ova usluga koristi LibreOffice za konverziju fajlova. | ||||
| PDFToXML.submit=Konvertuj | ||||
| 
 | ||||
| 
 | ||||
| #PDFToCSV | ||||
| PDFToCSV.title=PDF u CSV | ||||
| PDFToCSV.header=PDF u CSV | ||||
| @ -905,3 +918,13 @@ split-by-sections.vertical.label=Vertikalne podele | ||||
| split-by-sections.horizontal.placeholder=Unesite broj horizontalnih podele | ||||
| split-by-sections.vertical.placeholder=Unesite broj vertikalnih podele | ||||
| split-by-sections.submit=Razdvoji PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=Vertical Divisions | ||||
| split-by-sections.horizontal.placeholder=Enter number of horizontal divisions | ||||
| split-by-sections.vertical.placeholder=Enter number of vertical divisions | ||||
| split-by-sections.submit=Split PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -918,3 +918,13 @@ split-by-sections.vertical.label=垂直分割 | ||||
| split-by-sections.horizontal.placeholder=输入水平分割数 | ||||
| split-by-sections.vertical.placeholder=输入垂直分割数 | ||||
| split-by-sections.submit=分割PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,7 +1,7 @@ | ||||
| ########### | ||||
| ########### | ||||
| # Generic # | ||||
| ########### | ||||
| # the direction that the language is written (ltr = left to right, rtl = right to left) | ||||
| # the direction that the language is written (ltr=left to right, rtl = right to left) | ||||
| language.direction=ltr | ||||
| 
 | ||||
| pdfPrompt=選擇 PDF 檔案 | ||||
| @ -42,6 +42,7 @@ red=紅色 | ||||
| green=綠色 | ||||
| blue=藍色 | ||||
| custom=自訂... | ||||
| WorkInProgess=Work in progress, May not work or be buggy, Please report any ploblems! | ||||
| 
 | ||||
| changedCredsMessage=憑證已變更! | ||||
| notAuthenticatedMessage=使用者未認證。 | ||||
| @ -50,6 +51,29 @@ incorrectPasswordMessage=目前密碼不正確。 | ||||
| usernameExistsMessage=新使用者名稱已存在。 | ||||
| 
 | ||||
| 
 | ||||
| ############### | ||||
| #   Pipeline  # | ||||
| ############### | ||||
| pipeline.header=Pipeline Menu (Alpha) | ||||
| pipeline.uploadButton=Upload Custom | ||||
| pipeline.configureButton=Configure | ||||
| pipeline.defaultOption=Custom | ||||
| pipeline.submitButton=Submit | ||||
| 
 | ||||
| ###################### | ||||
| #  Pipeline Options  # | ||||
| ###################### | ||||
| pipelineOptions.header=Pipeline Configuration | ||||
| pipelineOptions.pipelineNameLabel=Pipeline Name | ||||
| pipelineOptions.saveSettings=Save Settings | ||||
| pipelineOptions.pipelineNamePrompt=Enter pipeline name here | ||||
| pipelineOptions.addOperationButton=Add operation | ||||
| pipelineOptions.pipelineHeader=Pipeline: | ||||
| pipelineOptions.saveButton=Download | ||||
| pipelineOptions.validateButton=Validate | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| ############# | ||||
| #  NAVBAR   # | ||||
| @ -92,7 +116,7 @@ account.title=帳戶設定 | ||||
| account.accountSettings=帳戶設定 | ||||
| account.adminSettings=管理設定 - 檢視和新增使用者 | ||||
| account.userControlSettings=使用者控制設定 | ||||
| account.changeUsername=新使用者名稱 | ||||
| account.changeUsername=修改使用者名稱 | ||||
| account.changeUsername=修改使用者名稱 | ||||
| account.password=確認密碼 | ||||
| account.oldPassword=舊密碼 | ||||
| @ -120,7 +144,7 @@ adminUserSettings.actions=操作 | ||||
| adminUserSettings.apiUser=受限制的 API 使用者 | ||||
| adminUserSettings.webOnlyUser=僅使用網頁的使用者 | ||||
| adminUserSettings.demoUser=示範用途的使用者(無自訂設定) | ||||
| adminUserSettings.forceChange = 強制使用者在登入時修改使用者名稱/密碼 | ||||
| adminUserSettings.forceChange=強制使用者在登入時修改使用者名稱/密碼 | ||||
| adminUserSettings.submit=儲存 | ||||
| 
 | ||||
| ############# | ||||
| @ -335,7 +359,7 @@ PdfToSinglePage.tags=單一頁面 | ||||
| 
 | ||||
| home.showJS.title=顯示 JavaScript | ||||
| home.showJS.desc=搜尋並顯示嵌入 PDF 中的任何 JS(JavaScript) | ||||
| showJS.tags=JS | ||||
| showJS.tags=塗黑,隱藏,塗黑,黑色,標記,隱藏 | ||||
| 
 | ||||
| home.autoRedact.title=自動塗黑 | ||||
| home.autoRedact.desc=根據輸入的文字自動塗黑 PDF 中的文字 | ||||
| @ -790,7 +814,7 @@ removePassword.submit=移除 | ||||
| 
 | ||||
| 
 | ||||
| #changeMetadata | ||||
| changeMetadata.title=變更中繼資料 | ||||
| changeMetadata.title=標題: | ||||
| changeMetadata.header=變更中繼資料 | ||||
| changeMetadata.selectText.1=請編輯您希望變更的變數 | ||||
| changeMetadata.selectText.2=刪除所有中繼資料 | ||||
| @ -894,3 +918,13 @@ split-by-sections.vertical.label=垂直劃分 | ||||
| split-by-sections.horizontal.placeholder=輸入水平劃分的數量 | ||||
| split-by-sections.vertical.placeholder=輸入垂直劃分的數量 | ||||
| split-by-sections.submit=分割 PDF | ||||
| 
 | ||||
| 
 | ||||
| #licenses | ||||
| licenses.title=3rd Party Licenses | ||||
| licenses.header=3rd Party Licenses | ||||
| licenses.module=Module | ||||
| licenses.version=Version | ||||
| licenses.license=License | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
							
								
								
									
										846
									
								
								src/main/resources/static/3rdPartyLicenses.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										846
									
								
								src/main/resources/static/3rdPartyLicenses.json
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,846 @@ | ||||
| { | ||||
|     "dependencies": [ | ||||
|         { | ||||
|             "moduleName": "ch.qos.logback:logback-classic", | ||||
|             "moduleUrl": "http://www.qos.ch", | ||||
|             "moduleVersion": "1.4.14", | ||||
|             "moduleLicense": "GNU Lesser General Public License", | ||||
|             "moduleLicenseUrl": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "ch.qos.logback:logback-core", | ||||
|             "moduleUrl": "http://www.qos.ch", | ||||
|             "moduleVersion": "1.4.14", | ||||
|             "moduleLicense": "GNU Lesser General Public License", | ||||
|             "moduleLicenseUrl": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.core:jackson-annotations", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.core:jackson-core", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson-core", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.core:jackson-databind", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson-dataformats-text", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names", | ||||
|             "moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names", | ||||
|             "moduleVersion": "2.15.3", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml.jackson:jackson-bom", | ||||
|             "moduleVersion": "2.15.3" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.fasterxml:classmate", | ||||
|             "moduleUrl": "https://github.com/FasterXML/java-classmate", | ||||
|             "moduleVersion": "1.6.0", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.github.vladimir-bukhtoyarov:bucket4j-core", | ||||
|             "moduleUrl": "http://github.com/vladimir-bukhtoyarov/bucket4j/bucket4j-core", | ||||
|             "moduleVersion": "7.6.0", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.google.zxing:core", | ||||
|             "moduleUrl": "https://github.com/zxing/zxing/core", | ||||
|             "moduleVersion": "3.5.2", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.h2database:h2", | ||||
|             "moduleUrl": "https://h2database.com", | ||||
|             "moduleVersion": "2.1.214", | ||||
|             "moduleLicense": "MPL 2.0", | ||||
|             "moduleLicenseUrl": "https://www.mozilla.org/en-US/MPL/2.0/" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.opencsv:opencsv", | ||||
|             "moduleUrl": "http://opencsv.sf.net", | ||||
|             "moduleVersion": "5.9", | ||||
|             "moduleLicense": "Apache 2", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.sun.istack:istack-commons-runtime", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "4.1.2", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.common:common-image", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.common:common-io", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.common:common-lang", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-batik", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-bmp", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-core", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-jpeg", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-metadata", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-tiff", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.twelvemonkeys.imageio:imageio-webp", | ||||
|             "moduleVersion": "3.10.1", | ||||
|             "moduleLicense": "The BSD License", | ||||
|             "moduleLicenseUrl": "https://github.com/haraldk/TwelveMonkeys#license" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "com.zaxxer:HikariCP", | ||||
|             "moduleUrl": "https://github.com/brettwooldridge/HikariCP", | ||||
|             "moduleVersion": "5.0.1", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "commons-beanutils:commons-beanutils", | ||||
|             "moduleUrl": "https://commons.apache.org/proper/commons-beanutils/", | ||||
|             "moduleVersion": "1.9.4", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "commons-collections:commons-collections", | ||||
|             "moduleUrl": "http://commons.apache.org/collections/", | ||||
|             "moduleVersion": "3.2.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "commons-io:commons-io", | ||||
|             "moduleUrl": "https://commons.apache.org/proper/commons-io/", | ||||
|             "moduleVersion": "2.15.1", | ||||
|             "moduleLicense": "Apache-2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "commons-logging:commons-logging", | ||||
|             "moduleUrl": "http://jakarta.apache.org/commons/logging/", | ||||
|             "moduleVersion": "1.0.4", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "/LICENSE.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.micrometer:micrometer-commons", | ||||
|             "moduleUrl": "https://github.com/micrometer-metrics/micrometer", | ||||
|             "moduleVersion": "1.12.1", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.micrometer:micrometer-core", | ||||
|             "moduleUrl": "https://github.com/micrometer-metrics/micrometer", | ||||
|             "moduleVersion": "1.12.1", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.micrometer:micrometer-jakarta9", | ||||
|             "moduleUrl": "https://github.com/micrometer-metrics/micrometer", | ||||
|             "moduleVersion": "1.12.1", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.micrometer:micrometer-observation", | ||||
|             "moduleUrl": "https://github.com/micrometer-metrics/micrometer", | ||||
|             "moduleVersion": "1.12.1", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.smallrye:jandex", | ||||
|             "moduleVersion": "3.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.swagger.core.v3:swagger-annotations-jakarta", | ||||
|             "moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-annotations", | ||||
|             "moduleVersion": "2.2.15", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.swagger.core.v3:swagger-core-jakarta", | ||||
|             "moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-core", | ||||
|             "moduleVersion": "2.2.15", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "io.swagger.core.v3:swagger-models-jakarta", | ||||
|             "moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-models", | ||||
|             "moduleVersion": "2.2.15", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.activation:jakarta.activation-api", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "2.1.2", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.annotation:jakarta.annotation-api", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "2.1.1", | ||||
|             "moduleLicense": "GPL2 w/ CPE", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.inject:jakarta.inject-api", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "2.0.1", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.persistence:jakarta.persistence-api", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "3.1.0", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.transaction:jakarta.transaction-api", | ||||
|             "moduleUrl": "https://projects.eclipse.org/projects/ee4j.jta", | ||||
|             "moduleVersion": "2.0.1", | ||||
|             "moduleLicense": "GPL2 w/ CPE", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.validation:jakarta.validation-api", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "3.0.2", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "jakarta.xml.bind:jakarta.xml.bind-api", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "4.0.1", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "net.bytebuddy:byte-buddy", | ||||
|             "moduleVersion": "1.14.10", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.antlr:antlr4-runtime", | ||||
|             "moduleUrl": "https://www.antlr.org/", | ||||
|             "moduleVersion": "4.13.0", | ||||
|             "moduleLicense": "BSD-3-Clause", | ||||
|             "moduleLicenseUrl": "https://www.antlr.org/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.commons:commons-collections4", | ||||
|             "moduleUrl": "https://commons.apache.org/proper/commons-collections/", | ||||
|             "moduleVersion": "4.4", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.commons:commons-lang3", | ||||
|             "moduleUrl": "https://commons.apache.org/proper/commons-lang/", | ||||
|             "moduleVersion": "3.13.0", | ||||
|             "moduleLicense": "Apache-2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.commons:commons-text", | ||||
|             "moduleUrl": "https://commons.apache.org/proper/commons-text", | ||||
|             "moduleVersion": "1.11.0", | ||||
|             "moduleLicense": "Apache-2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.logging.log4j:log4j-api", | ||||
|             "moduleVersion": "2.21.1", | ||||
|             "moduleLicense": "Apache-2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.logging.log4j:log4j-to-slf4j", | ||||
|             "moduleVersion": "2.21.1", | ||||
|             "moduleLicense": "Apache-2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.pdfbox:fontbox", | ||||
|             "moduleUrl": "http://pdfbox.apache.org/", | ||||
|             "moduleVersion": "2.0.29", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.pdfbox:pdfbox", | ||||
|             "moduleUrl": "http://pdfbox.apache.org", | ||||
|             "moduleVersion": "2.0.29", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.pdfbox:xmpbox", | ||||
|             "moduleUrl": "http://pdfbox.apache.org", | ||||
|             "moduleVersion": "2.0.29", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.tomcat.embed:tomcat-embed-core", | ||||
|             "moduleUrl": "https://tomcat.apache.org/", | ||||
|             "moduleVersion": "10.1.17", | ||||
|             "moduleLicense": "Eclipse Public License - v 2.0", | ||||
|             "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.tomcat.embed:tomcat-embed-el", | ||||
|             "moduleUrl": "https://tomcat.apache.org/", | ||||
|             "moduleVersion": "10.1.17", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.tomcat.embed:tomcat-embed-websocket", | ||||
|             "moduleUrl": "https://tomcat.apache.org/", | ||||
|             "moduleVersion": "10.1.17", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.xmlgraphics:batik-all", | ||||
|             "moduleVersion": "1.17", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.apache.xmlgraphics:xmlgraphics-commons", | ||||
|             "moduleUrl": "http://xmlgraphics.apache.org/commons/", | ||||
|             "moduleVersion": "2.9", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.aspectj:aspectjweaver", | ||||
|             "moduleUrl": "https://www.eclipse.org/aspectj/", | ||||
|             "moduleVersion": "1.9.21", | ||||
|             "moduleLicense": "Eclipse Public License - v 2.0", | ||||
|             "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.attoparser:attoparser", | ||||
|             "moduleUrl": "https://www.attoparser.org", | ||||
|             "moduleVersion": "2.0.7.RELEASE", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.bouncycastle:bcpkix-jdk18on", | ||||
|             "moduleUrl": "https://www.bouncycastle.org/java.html", | ||||
|             "moduleVersion": "1.77", | ||||
|             "moduleLicense": "Bouncy Castle Licence", | ||||
|             "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.bouncycastle:bcprov-jdk18on", | ||||
|             "moduleUrl": "https://www.bouncycastle.org/java.html", | ||||
|             "moduleVersion": "1.77", | ||||
|             "moduleLicense": "Bouncy Castle Licence", | ||||
|             "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.bouncycastle:bcutil-jdk18on", | ||||
|             "moduleUrl": "https://www.bouncycastle.org/java.html", | ||||
|             "moduleVersion": "1.77", | ||||
|             "moduleLicense": "Bouncy Castle Licence", | ||||
|             "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.commonmark:commonmark", | ||||
|             "moduleVersion": "0.21.0", | ||||
|             "moduleLicense": "BSD 2-Clause License", | ||||
|             "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.eclipse.angus:angus-activation", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "2.0.1", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.glassfish.jaxb:jaxb-core", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "4.0.4", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.glassfish.jaxb:jaxb-runtime", | ||||
|             "moduleUrl": "https://www.eclipse.org", | ||||
|             "moduleVersion": "4.0.4", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.glassfish.jaxb:txw2", | ||||
|             "moduleUrl": "https://eclipse-ee4j.github.io/jaxb-ri/", | ||||
|             "moduleVersion": "4.0.4", | ||||
|             "moduleLicense": "GNU General Public License, version 2 with the GNU Classpath Exception", | ||||
|             "moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.hdrhistogram:HdrHistogram", | ||||
|             "moduleUrl": "http://hdrhistogram.github.io/HdrHistogram/", | ||||
|             "moduleVersion": "2.1.12", | ||||
|             "moduleLicense": "Public Domain, per Creative Commons CC0", | ||||
|             "moduleLicenseUrl": "http://creativecommons.org/publicdomain/zero/1.0/" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.hibernate.common:hibernate-commons-annotations", | ||||
|             "moduleUrl": "http://hibernate.org", | ||||
|             "moduleVersion": "6.0.6.Final", | ||||
|             "moduleLicense": "GNU Library General Public License v2.1 or later", | ||||
|             "moduleLicenseUrl": "http://www.opensource.org/licenses/LGPL-2.1" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.hibernate.orm:hibernate-core", | ||||
|             "moduleUrl": "https://www.hibernate.org/orm/6.4", | ||||
|             "moduleVersion": "6.4.1.Final", | ||||
|             "moduleLicense": "GNU Library General Public License v2.1 or later", | ||||
|             "moduleLicenseUrl": "https://www.opensource.org/licenses/LGPL-2.1" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.jboss.logging:jboss-logging", | ||||
|             "moduleUrl": "http://www.jboss.org", | ||||
|             "moduleVersion": "3.5.3.Final", | ||||
|             "moduleLicense": "Public Domain", | ||||
|             "moduleLicenseUrl": "http://repository.jboss.org/licenses/cc0-1.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.latencyutils:LatencyUtils", | ||||
|             "moduleUrl": "http://latencyutils.github.io/LatencyUtils/", | ||||
|             "moduleVersion": "2.0.3", | ||||
|             "moduleLicense": "Public Domain, per Creative Commons CC0", | ||||
|             "moduleLicenseUrl": "http://creativecommons.org/publicdomain/zero/1.0/" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.slf4j:jul-to-slf4j", | ||||
|             "moduleUrl": "http://www.slf4j.org", | ||||
|             "moduleVersion": "2.0.9", | ||||
|             "moduleLicense": "MIT License", | ||||
|             "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.slf4j:slf4j-api", | ||||
|             "moduleUrl": "http://www.slf4j.org", | ||||
|             "moduleVersion": "2.0.9", | ||||
|             "moduleLicense": "MIT License", | ||||
|             "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springdoc:springdoc-openapi-starter-common", | ||||
|             "moduleVersion": "2.2.0", | ||||
|             "moduleLicense": "The Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-api", | ||||
|             "moduleVersion": "2.2.0", | ||||
|             "moduleLicense": "The Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-ui", | ||||
|             "moduleVersion": "2.2.0", | ||||
|             "moduleLicense": "The Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-actuator", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-actuator-autoconfigure", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-autoconfigure", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-devtools", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-actuator", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-aop", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-data-jpa", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-jdbc", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-json", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-logging", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-security", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-thymeleaf", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-tomcat", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.boot:spring-boot-starter-web", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-boot", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.data:spring-data-commons", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-data", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.data:spring-data-jpa", | ||||
|             "moduleUrl": "https://projects.spring.io/spring-data-jpa", | ||||
|             "moduleVersion": "3.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.security:spring-security-config", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-security", | ||||
|             "moduleVersion": "6.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.security:spring-security-core", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-security", | ||||
|             "moduleVersion": "6.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.security:spring-security-crypto", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-security", | ||||
|             "moduleVersion": "6.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework.security:spring-security-web", | ||||
|             "moduleUrl": "https://spring.io/projects/spring-security", | ||||
|             "moduleVersion": "6.2.1", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-aop", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-aspects", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-beans", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-context", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-core", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-expression", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-jcl", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-jdbc", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-orm", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-tx", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-web", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.springframework:spring-webmvc", | ||||
|             "moduleUrl": "https://github.com/spring-projects/spring-framework", | ||||
|             "moduleVersion": "6.1.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.thymeleaf.extras:thymeleaf-extras-springsecurity5", | ||||
|             "moduleVersion": "3.1.2.RELEASE", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.thymeleaf:thymeleaf", | ||||
|             "moduleVersion": "3.1.2.RELEASE", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.thymeleaf:thymeleaf-spring5", | ||||
|             "moduleVersion": "3.1.2.RELEASE", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.thymeleaf:thymeleaf-spring6", | ||||
|             "moduleVersion": "3.1.2.RELEASE", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.unbescape:unbescape", | ||||
|             "moduleUrl": "http://www.unbescape.org", | ||||
|             "moduleVersion": "1.1.6.RELEASE", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.webjars:swagger-ui", | ||||
|             "moduleUrl": "http://webjars.org", | ||||
|             "moduleVersion": "5.2.0", | ||||
|             "moduleLicense": "Apache 2.0", | ||||
|             "moduleLicenseUrl": "https://github.com/swagger-api/swagger-ui" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "org.yaml:snakeyaml", | ||||
|             "moduleUrl": "https://bitbucket.org/snakeyaml/snakeyaml", | ||||
|             "moduleVersion": "2.2", | ||||
|             "moduleLicense": "Apache License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "xml-apis:xml-apis", | ||||
|             "moduleUrl": "http://xml.apache.org/commons/components/external/", | ||||
|             "moduleVersion": "1.4.01", | ||||
|             "moduleLicense": "The W3C License", | ||||
|             "moduleLicenseUrl": "http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/java-binding.zip" | ||||
|         }, | ||||
|         { | ||||
|             "moduleName": "xml-apis:xml-apis-ext", | ||||
|             "moduleUrl": "http://xml.apache.org/commons/components/external/", | ||||
|             "moduleVersion": "1.3.04", | ||||
|             "moduleLicense": "The Apache Software License, Version 2.0", | ||||
|             "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||||
|         } | ||||
|     ] | ||||
| } | ||||
| @ -11,6 +11,13 @@ body, select, textarea { | ||||
|   color: rgb(var(--base-font-color)) !important; | ||||
| } | ||||
| 
 | ||||
|  a { | ||||
|     color: #add8e6; | ||||
|  } | ||||
|  a:hover { | ||||
|     color: #87ceeb; /* Slightly brighter blue on hover for accessibility */ | ||||
| } | ||||
| 
 | ||||
| .dark-card { | ||||
|   background-color: rgb(var(--body-background-color)) !important; | ||||
|   color: rgb(var(--base-font-color)) !important; | ||||
|  | ||||
| @ -1,9 +1,58 @@ | ||||
| <div th:fragment="footer"> | ||||
| 	<footer id="footer" class="text-center py-3"> | ||||
|         <a href="https://github.com/Stirling-Tools/Stirling-PDF" target="_blank" class="mx-1" title="Visit Github Repository"><img src="images/github.svg"></img></a> | ||||
| 		<a href="https://hub.docker.com/r/frooodle/s-pdf" target="_blank" class="mx-1" title="See Docker Hub"><img src="images/docker.svg"></img></a> | ||||
| 		<a href="https://discord.gg/Cn8pWhQRxZ" target="_blank" class="mx-1" title="Join Discord Channel"><img src="images/discord.svg"></img></a> | ||||
| 		<a href="https://github.com/sponsors/Frooodle" target="_blank" class="mx-1" title="Donate"><img src="images/suit-heart-fill.svg"></img></a> | ||||
|         <div th:if="${@appName} != 'Stirling PDF'" class="mt-2" style="color: grey;">Powered by Stirling PDF</div> | ||||
|     </footer> | ||||
| 		<div class="footer-center"> | ||||
| 
 | ||||
| 			<a href="https://github.com/Stirling-Tools/Stirling-PDF" | ||||
| 				target="_blank" class="mx-1" title="Visit Github Repository"><img | ||||
| 				src="images/github.svg"></img></a> <a | ||||
| 				href="https://hub.docker.com/r/frooodle/s-pdf" target="_blank" | ||||
| 				class="mx-1" title="See Docker Hub"><img src="images/docker.svg"></img></a> | ||||
| 			<a href="https://discord.gg/Cn8pWhQRxZ" target="_blank" class="mx-1" | ||||
| 				title="Join Discord Channel"><img src="images/discord.svg"></img></a> | ||||
| 			<a href="https://github.com/sponsors/Frooodle" target="_blank" | ||||
| 				class="mx-1" title="Donate"><img | ||||
| 				src="images/suit-heart-fill.svg"></img></a> | ||||
| 		</div> | ||||
| 		<div class="right-link-container"> | ||||
| 
 | ||||
| 			<!--<a href="licenses" id="licenses" target="_blank" class="mx-1" | ||||
| 				title=""> About </a> --> | ||||
| 				 | ||||
| 			 <a href="licenses" id="licenses" target="_blank" class="mx-1" title=""> Licenses </a>  | ||||
| 		</div> | ||||
| 
 | ||||
| 		<div th:if="${@appName} != 'Stirling PDF'" class="mt-2 footer-center" | ||||
| 			style="color: grey;">Powered by Stirling PDF</div> | ||||
| 
 | ||||
| 		<style> | ||||
| #licenses { | ||||
| 	text-decoration: none; | ||||
| } | ||||
| 
 | ||||
| #licenses:hover, #licenses:focus { | ||||
| 	text-decoration: underline; | ||||
| 	/* Adds underline on hover/focus for clarity */ | ||||
| } | ||||
| 
 | ||||
| #footer { | ||||
| 	display: flex; | ||||
| 	justify-content: space-between; | ||||
| 	align-items: center; | ||||
| 	width: 100%; | ||||
| } | ||||
| 
 | ||||
| .footer-center { | ||||
| 	display: flex; | ||||
| 	justify-content: center; | ||||
| 	align-items: center; | ||||
| 	flex-grow: 1; | ||||
| } | ||||
| 
 | ||||
| .right-link-container { | ||||
| 	margin-left: auto; /* Push the link to the far right */ | ||||
| 	padding-right: 20px; | ||||
| } | ||||
| </style> | ||||
| 	</footer> | ||||
| 
 | ||||
| </div> | ||||
|  | ||||
							
								
								
									
										56
									
								
								src/main/resources/templates/licenses.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										56
									
								
								src/main/resources/templates/licenses.html
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,56 @@ | ||||
| <!DOCTYPE html> | ||||
| <html th:lang="${#locale.toString()}" | ||||
| 	th:lang-direction="#{language.direction}" | ||||
| 	xmlns:th="http://www.thymeleaf.org"> | ||||
| 
 | ||||
| <th:block | ||||
| 	th:insert="~{fragments/common :: head(title=#{licenses.title}, header=#{licenses.title})}"></th:block> | ||||
| 
 | ||||
| 
 | ||||
| <style> | ||||
| td a { | ||||
| 	text-decoration: none; | ||||
| } | ||||
| 
 | ||||
| td a:hover, td a:focus { | ||||
| 	text-decoration: underline; | ||||
| 	/* Adds underline on hover/focus for clarity */ | ||||
| } | ||||
| </style> | ||||
| <body> | ||||
| 	<div id="page-container"> | ||||
| 		<div id="content-wrap"> | ||||
| 			<div th:insert="~{fragments/navbar.html :: navbar}"></div> | ||||
| 			<br> <br> | ||||
| 
 | ||||
| 			<div class="container"> | ||||
| 				<div class="row justify-content-center"> | ||||
| 					<div class="col-md-6"> | ||||
| 						<h2 th:text="#{licenses.header}">3rd Party licenses</h2> | ||||
| 						<table class="table table-striped"> | ||||
| 							<thead> | ||||
| 								<tr> | ||||
| 									<th th:text="#{licenses.module}">Module</th> | ||||
| 									<th th:text="#{licenses.version}">Version</th> | ||||
| 									<th th:text="#{licenses.license}">License</th> | ||||
| 								</tr> | ||||
| 							</thead> | ||||
| 							<tbody> | ||||
| 								<tr th:each="dep : ${dependencies}"> | ||||
| 									<td><a th:href="${dep.moduleUrl}" | ||||
| 										th:text="${dep.moduleName}"></a></td> | ||||
| 									<td th:text="${dep.moduleVersion}"></td> | ||||
| 									<td><a th:href="${dep.moduleLicenseUrl}" | ||||
| 										th:text="${dep.moduleLicense}"></a></td> | ||||
| 								</tr> | ||||
| 							</tbody> | ||||
| 						</table> | ||||
| 
 | ||||
| 					</div> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 		</div> | ||||
| 		<div th:insert="~{fragments/footer.html :: footer}"></div> | ||||
| 	</div> | ||||
| </body> | ||||
| </html> | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user