Skip to content

Commit

Permalink
Version 2022 - Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul.Kubadia authored and Rahul.Kubadia committed Jul 28, 2022
0 parents commit 331e388
Show file tree
Hide file tree
Showing 824 changed files with 1,842,344 additions and 0 deletions.
42 changes: 42 additions & 0 deletions DMS Server - Community Edition 2022/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/activation-1.1.jar"/>
<classpathentry kind="lib" path="lib/commons-io-2.0.1.jar"/>
<classpathentry kind="lib" path="lib/commons-lang3-3.1.jar"/>
<classpathentry kind="lib" path="lib/commons-logging.jar"/>
<classpathentry kind="lib" path="lib/commons-modeler.jar"/>
<classpathentry kind="lib" path="lib/commons-validator-1.4.0.jar"/>
<classpathentry kind="lib" path="lib/derby.jar"/>
<classpathentry kind="lib" path="lib/ecj-4.4.jar"/>
<classpathentry kind="lib" path="lib/filters-2.0.235.jar"/>
<classpathentry kind="lib" path="lib/forms-7.1.16.jar"/>
<classpathentry kind="lib" path="lib/io-7.1.16.jar"/>
<classpathentry kind="lib" path="lib/itextpdf-5.2.0.jar"/>
<classpathentry kind="lib" path="lib/itext-xtra-5.2.0.jar"/>
<classpathentry kind="lib" path="lib/javax.mail-1.6.2.jar"/>
<classpathentry kind="lib" path="lib/json-simple-1.1.1.jar"/>
<classpathentry kind="lib" path="lib/kernel-7.1.16.jar"/>
<classpathentry kind="lib" path="lib/layout-7.1.16.jar"/>
<classpathentry kind="lib" path="lib/tomcat-dbcp.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-core.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-el.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-jasper.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-logging-juli.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-logging-log4j.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-websocket.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="lib" path="lib/jodconverter-core-4.4.2.jar"/>
<classpathentry kind="lib" path="lib/jodconverter-local-4.4.2.jar"/>
<classpathentry kind="lib" path="lib/gson-2.8.6.jar"/>
<classpathentry kind="lib" path="lib/juh-2.3.0.jar"/>
<classpathentry kind="lib" path="lib/jurt-2.3.0.jar"/>
<classpathentry kind="lib" path="lib/ridl-2.3.0.jar"/>
<classpathentry kind="lib" path="lib/unoil-2.3.0.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.17.jar"/>
<classpathentry kind="lib" path="lib/slf4j-api-1.7.25.jar"/>
<classpathentry kind="lib" path="lib/slf4j-simple-1.7.25.jar"/>
<classpathentry kind="lib" path="lib/tomcat-embed-programmatic.jar"/>
<classpathentry kind="lib" path="lib/annotations-api.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
17 changes: 17 additions & 0 deletions DMS Server - Community Edition 2022/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>DMS Server - Community Edition 2022</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=1.8
1 change: 1 addition & 0 deletions DMS Server - Community Edition 2022/bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/com/
95 changes: 95 additions & 0 deletions DMS Server - Community Edition 2022/build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?xml version="1.0"?>
<project name="Primeleaf Product" default="clean" basedir=".">
<property name="sourcedir" value="${basedir}/src" />
<property name="targetdir" value="K:/Product Installers/2022/Community Edition/Setup Sources/" />
<property name="linux_targetdir" value="K:/Releases/KRYSTAL CE/2022/Linux Distribution/"/>
<property name="libdir" value="${basedir}/lib" />
<property name="serverlibdir" value="${basedir}/lib" />
<property name="basename" value="dmsserver.jar" />
<property name="modeljarname" value="dmsmodel.jar" />
<property name="webjarname" value="dmsweb.jar" />
<target name="build">
<javac srcdir="${sourcedir}" description="Build entire project"
destdir="./bin" debug="on" includeantruntime="false">
<classpath>
<fileset dir="${librarydir}">
<include name="*.jar,*.zip" />
</fileset>
</classpath>
</javac>
</target>

<target name="makeWebJar" depends="build">
<jar destfile="${serverlibdir}/${webjarname}" basedir="./bin"
includes="com/primeleaf/krystal/web/**" />
</target>

<target name="makeModelJar" depends="makeWebJar">
<jar destfile="${serverlibdir}/${modeljarname}" basedir="./bin"
includes="com/primeleaf/krystal/model/**" />
</target>

<target name="makeServerJar" depends="makeModelJar">
<jar destfile="${serverlibdir}/${basename}" basedir="./bin"
excludes="com/primeleaf/krystal/web/**,com/primeleaf/krystal/model/**" />
</target>

<target name="copy-resources" depends="makeServerJar">
<copy todir="${targetdir}">
<fileset dir="./">
<exclude name="src/" />
<exclude name="work/" />
<exclude name="data/" />
<exclude name="**/CheckOutApplet.class" />
<exclude name="**/GenerateKrystalLicense.class" />
<exclude name="**/GenerateKrystalLicense.java" />
<exclude name="bin/" />
<exclude name="**/*.java" />
<exclude name="**/*.classpath" />
<exclude name=".settings/" />
<exclude name="WEB-INF/" />
<exclude name="cache/" />
<exclude name="**/CVS/*" />
<exclude name="**/*.project" />
<exclude name="**/*.static" />
<exclude name="**/*.log" />
<exclude name="**/log/**" />
<exclude name="**/build.xml" />
<exclude name="**/Desktop.ini" />
<exclude name="**/Thumbs.db/" />
</fileset>
</copy>
</target>

<target name="copy-resources_linux" depends="copy-resources">
<copy todir="${linux_targetdir}">
<fileset dir="./">
<exclude name="src/" />
<exclude name="work/" />
<exclude name="data/" />
<exclude name="**/CheckOutApplet.class" />
<exclude name="**/GenerateKrystalLicense.class" />
<exclude name="**/GenerateKrystalLicense.java" />
<exclude name="bin/" />
<exclude name="**/*.java" />
<exclude name="**/*.classpath" />
<exclude name=".settings/" />
<exclude name="WEB-INF/" />
<exclude name="cache/" />
<exclude name="**/CVS/*" />
<exclude name="**/*.project" />
<exclude name="**/*.static" />
<exclude name="**/*.log" />
<exclude name="**/log/**" />
<exclude name="**/build.xml" />
<exclude name="**/Desktop.ini" />
<exclude name="**/Thumbs.db/" />
</fileset>
</copy>
</target>
<target name="clean" depends="copy-resources_linux">
<delete file="${serverlibdir}/${basename}"></delete>
<delete file="${serverlibdir}/${modeljarname}"></delete>
<delete file="${serverlibdir}/${webjarname}"></delete>
</target>
</project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#D:\Java Projects\Java DMS Projects\DMS Server - Community Edition 2018\data\KRYSTALCE
# ********************************************************************
# *** Please do NOT edit this file. ***
# *** CHANGING THE CONTENT OF THIS FILE MAY CAUSE DATA CORRUPTION. ***
# ********************************************************************
#Fri Apr 27 12:53:54 IST 2018
SysschemasIndex2Identifier=225
SyscolumnsIdentifier=144
SysconglomeratesIndex1Identifier=49
SysconglomeratesIdentifier=32
SyscolumnsIndex2Identifier=177
SysschemasIndex1Identifier=209
SysconglomeratesIndex3Identifier=81
SystablesIndex2Identifier=129
SyscolumnsIndex1Identifier=161
derby.serviceProtocol=org.apache.derby.database.Database
SysschemasIdentifier=192
derby.storage.propertiesId=16
SysconglomeratesIndex2Identifier=65
derby.serviceLocale=en_IN
SystablesIdentifier=96
SystablesIndex1Identifier=113
10 changes: 10 additions & 0 deletions DMS Server - Community Edition 2022/derby.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
----------------------------------------------------------------
Wed Jul 27 11:10:01 IST 2022:
Booting Derby version The Apache Software Foundation - Apache Derby - 10.8.1.2 - (1095077): instance a816c00e-0182-3e2b-4b97-00000d55aab0
on database directory K:\Projects\JAVA DMS Projects\2022\DMS Server - Community Edition 2022\data\KRYSTALCE with class loader sun.misc.Launcher$AppClassLoader@18b4aac2
Loaded from file:/K:/Projects/JAVA%20DMS%20Projects/2022/DMS%20Server%20-%20Community%20Edition%202022/lib/derby.jar
java.vendor=Oracle Corporation
java.runtime.version=1.8.0_301-b09
user.dir=K:\Projects\JAVA DMS Projects\2022\DMS Server - Community Edition 2022
derby.system.home=null
Database Class Loader started - derby.database.classpath=''
3 changes: 3 additions & 0 deletions DMS Server - Community Edition 2022/krystaldms.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
echo "Starting KRYSTAL DMS - Community Edition 2021 ..."
java -classpath "./lib/*" com.primeleaf.krystal.KRYSTALServer &
echo "KRYSTAL DMS - Community Edition 2021 Started ..."
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DMS Server - Community Edition 2022/lib/derby.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[Lockdata]
User=PRIMELEAF/Rahul.Kubadia
Host=PRIMELEAF
Stamp=49D4E437B72E0DE11AE2AEA48FAA38C7
Time=Wed Jul 27 11:10:04 2022
IPCServer=true

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<!--***********************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
***********************************************************-->
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic">REM ***** BASIC *****

Sub Main

End Sub</script:module>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false"/>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false">
<library:element library:name="Module1"/>
</library:library>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" library:link="false"/>
</library:libraries>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" library:link="false"/>
</library:libraries>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>

<office:marker-table xmlns:office="http://openoffice.org/2000/office" xmlns:style="http://openoffice.org/2000/style" xmlns:text="http://openoffice.org/2000/text" xmlns:table="http://openoffice.org/2000/table" xmlns:draw="http://openoffice.org/2000/drawing" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="http://openoffice.org/2000/meta" xmlns:number="http://openoffice.org/2000/datastyle" xmlns:svg="http://www.w3.org/2000/svg" xmlns:chart="http://openoffice.org/2000/chart" xmlns:dr3d="http://openoffice.org/2000/dr3d" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="http://openoffice.org/2000/form" xmlns:script="http://openoffice.org/2000/script">
<draw:marker draw:name="Arrowhead 1" svg:viewBox="0 0 2132 2132" svg:d="m1066 0 1066 2132h-2132z"/>
<draw:marker draw:name="Arrowhead 2" svg:viewBox="0 0 1599 2132" svg:d="m799 0 800 2132h-1599z"/>
<draw:marker draw:name="Arrowhead 3" svg:viewBox="0 0 1066 2132" svg:d="m533 0 533 2132h-1066z"/>
<draw:marker draw:name="Arrowhead 4" svg:viewBox="0 0 1995 2132" svg:d="m0 0h1995v137h-997l997 1995h-1995l998-1995h-998z"/>
<draw:marker draw:name="Arrowhead 5" svg:viewBox="0 0 1496 2132" svg:d="m0 0h1496v137h-748l748 1995h-1496l748-1995h-748z"/>
<draw:marker draw:name="Arrowhead 6" svg:viewBox="0 0 998 2132" svg:d="m0 0h998v137h-499l499 1995h-998l499-1995h-499z"/>
<draw:marker draw:name="Arrowhead 7" svg:viewBox="0 0 2132 2132" svg:d="m1066 0 1066 2132-712-272h-708l-712 272z"/>
<draw:marker draw:name="Arrowhead 8" svg:viewBox="0 0 1584 2132" svg:d="m792 0 792 2132-529-272h-526l-529 272z"/>
<draw:marker draw:name="Arrowhead 9" svg:viewBox="0 0 1057 2132" svg:d="m529 0 528 2132-353-272h-351l-353 272z"/>
<draw:marker draw:name="Arrowhead 10" svg:viewBox="0 0 2162 2560" svg:d="m1076 0 1066 2132-532-155 552 583-1086-234v0l-1076 229 179-189 179-189 179-191-537 156z"/>
<draw:marker draw:name="Arrowhead 11" svg:viewBox="0 0 2132 1146" svg:d="m1066 0 1066 1146-712-272h-708l-712 272z"/>
<draw:marker draw:name="Arrowhead 12" svg:viewBox="0 0 2132 2132" svg:d="m2132 1066c0-588-478-1066-1066-1066-588 0-1066 478-1066 1066 0 588 478 1066 1066 1066 588 0 1066-478 1066-1066z"/>
<draw:marker draw:name="Arrowhead 13" svg:viewBox="0 0 2116 2116" svg:d="m0 0h705 705 706v705 705 706h-705-705-706v-705-705z"/>
<draw:marker draw:name="Arrowhead 14" svg:viewBox="0 0 2461 2132" svg:d="m0 1066 615 1066h1231l615-1066-615-1066h-1231z"/>
<draw:marker draw:name="Arrowhead 15" svg:viewBox="0 0 1995 137" svg:d="m0 0h1995v137h-1995z"/>
<draw:marker draw:name="Arrowhead 16" svg:viewBox="0 0 1995 282" svg:d="m0 0h1995v282h-1995z"/>
<draw:marker draw:name="Arrowhead 17" svg:viewBox="0 0 1995 506" svg:d="m0 0h1995v506h-1995z"/>
<draw:marker draw:name="Arrowhead 18" svg:viewBox="0 0 966 2566" svg:d="m0 2566v0-303l488-760-485 185 581-1050-453 262 357-900-178 682 440-245-334 893 289-106 261 1044v298z"/>
<draw:marker draw:name="Arrowhead 19" svg:viewBox="0 0 2440 2584" svg:d="m982 2228h469l51-139 51 227 108-361 779 629-611-980 377 33-360-243 511-428-587 109 395-805-596 571-16-295-169 261-175-807-143 682-227-236 18 386-790-302 605 646-344 92 370 185-698 662 739-319-101 293 194-75 33 311 108-218z"/>
<draw:marker draw:name="Arrowhead 20" svg:viewBox="0 0 1169 2584" svg:d="m0 2584v-506l57-669 65 387 52-902 75 645 60-1122 116 1386 83-1803 99 1481 70-1240 47 841 82-1058 29 1725 83-1215 93 829 88-590 70 1269v542z"/>
<draw:marker draw:name="Arrowhead 21" svg:viewBox="0 0 2142 2142" svg:d="m0 1162h855l-607 607 125 123 606-608v858h176v-855l608 605 125-125-604-605h858v-178h-855l599-606-124-126-607 607v-859h-176v859l-609-607-123 125 608 607h-855z"/>
<draw:marker draw:name="Arrowhead 22" svg:viewBox="0 0 2364 2178" svg:d="m0 2065 1182-2065 1182 2063-64 112-1118-716-1118 719z"/>
<draw:marker draw:name="Arrowhead 23" svg:viewBox="0 0 1107 1619" svg:d="m547 1619-546-676-1-942 546 318 560-319 1 942z"/>
<draw:marker draw:name="Arrowhead 24" svg:viewBox="0 0 1108 993" svg:d="m609 992-123 1-486-364 486 153 2-91-488-182 1-46 485 115 2-69-487-196v-52l484 154v-59l-484-196v-159l544 218 560-219 2 159-499 196v57l499-152v52l-496 196-2 69 498-118 1 45-497 192-2 85 497-153z"/>
</office:marker-table>
Binary file not shown.
Loading

0 comments on commit 331e388

Please sign in to comment.