Changeset 2507
- Timestamp:
- 10/01/08 13:41:59 (5 years ago)
- Location:
- FCKeditor.Java/branches/2.5-test
- Files:
-
- 7 edited
-
java-core/src/main/java/net/fckeditor/handlers/PropertiesLoader.java (modified) (1 diff)
-
pom.xml (modified) (11 diffs)
-
src/main/assembly/bin.xml (modified) (2 diffs)
-
src/site/apt/demo.apt.vm (modified) (1 diff)
-
src/site/apt/download.apt.vm (modified) (1 diff)
-
src/site/apt/index.apt (modified) (1 diff)
-
src/site/apt/installation.apt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/handlers/PropertiesLoader.java
r2292 r2507 73 73 } 74 74 75 // 2. load user defaults 75 // 2. load user defaults if present 76 76 InputStream in2 = PropertiesLoader.class 77 77 .getResourceAsStream("/fckeditor.properties"); -
FCKeditor.Java/branches/2.5-test/pom.xml
r2476 r2507 1 <project xmlns="http://maven.apache.org/POM/4.0.0" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4 2 <modelVersion>4.0.0</modelVersion> 5 3 <groupId>net.fckeditor</groupId> … … 12 10 </modules> 13 11 <properties> 14 <project.build.sourceEncoding> 15 UTF-8 16 </project.build.sourceEncoding> 17 <project.reporting.outputEncoding> 18 UTF-8 19 </project.reporting.outputEncoding> 12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 13 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 20 14 <slf4j.version>1.5.2</slf4j.version> 21 15 22 16 <!-- site plugin properties for Velocity --> 23 17 <slf4jVersion>${slf4j.version}</slf4jVersion> … … 39 33 </configuration> 40 34 </plugin> 41 <plugin>42 <artifactId>maven-javadoc-plugin</artifactId>43 <version>2.5</version>44 </plugin>45 35 </plugins> 46 36 </pluginManagement> … … 68 58 <plugin> 69 59 <artifactId>maven-assembly-plugin</artifactId> 70 <version>2.2-beta- 2</version>60 <version>2.2-beta-1</version> 71 61 <configuration> 72 62 <descriptors> … … 79 69 </descriptors> 80 70 </configuration> 71 </plugin> 72 <plugin> 73 <artifactId>maven-javadoc-plugin</artifactId> 74 <executions> 75 <execution> 76 <id>attach-javadocs</id> 77 <goals> 78 <goal>jar</goal> 79 </goals> 80 </execution> 81 </executions> 81 82 </plugin> 82 83 <plugin> … … 98 99 </configuration> 99 100 </plugin> 101 100 102 <plugin> 101 103 <artifactId>maven-antrun-plugin</artifactId> … … 109 111 <configuration> 110 112 <tasks> 111 <copy overwrite="true" todir="src/site" 112 flatten="true"> 113 <copy overwrite="true" todir="src/site" flatten="true"> 113 114 <fileset dir=".."> 114 <include 115 name="src/site/site.xml" /> 115 <include name="src/site/site.xml" /> 116 116 </fileset> 117 117 </copy> 118 <replace value="<src>../" 119 token="<src>/" dir=".."> 120 <include 121 name="${pom.artifactId}/src/site/site.xml" /> 122 <exclude 123 name="fckeditor-java/src/site/site.xml" /> 118 <replace value="<src>../" token="<src>/" dir=".."> 119 <include name="${pom.artifactId}/src/site/site.xml" /> 120 <exclude name="fckeditor-java/src/site/site.xml" /> 124 121 </replace> 125 <replace value="href="../" 126 token="href="/" dir=".."> 127 <include 128 name="${pom.artifactId}/src/site/site.xml" /> 129 <exclude 130 name="fckeditor-java/src/site/site.xml" /> 122 <replace value="href="../" token="href="/" dir=".."> 123 <include name="${pom.artifactId}/src/site/site.xml" /> 124 <exclude name="fckeditor-java/src/site/site.xml" /> 131 125 </replace> 132 <replace value="href="" 133 token="href="../${pom.artifactId}/" dir=".."> 134 <include 135 name="${pom.artifactId}/src/site/site.xml" /> 136 <exclude 137 name="fckeditor-java/src/site/site.xml" /> 126 <replace value="href="" token="href="../${pom.artifactId}/" dir=".."> 127 <include name="${pom.artifactId}/src/site/site.xml" /> 128 <exclude name="fckeditor-java/src/site/site.xml" /> 138 129 </replace> 139 <replace value="href="../images" 140 token="href="images" dir=".."> 141 <include 142 name="${pom.artifactId}/src/site/site.xml" /> 143 <exclude 144 name="fckeditor-java/src/site/site.xml" /> 130 <replace value="href="../images" token="href="images" dir=".."> 131 <include name="${pom.artifactId}/src/site/site.xml" /> 132 <exclude name="fckeditor-java/src/site/site.xml" /> 145 133 </replace> 146 134 </tasks> … … 168 156 </artifactId> 169 157 <version>2.1</version> 170 <inherited>false</inherited>171 158 <reportSets> 172 159 <reportSet> … … 198 185 </reportSet> 199 186 </reportSets> 187 </plugin> 188 <plugin> 189 <artifactId>maven-javadoc-plugin</artifactId> 190 <configuration> 191 <quiet>true</quiet> 192 </configuration> 200 193 </plugin> 201 194 </plugins> … … 306 299 </mailingLists> 307 300 <scm> 308 <connection> 309 scm:svn:http://svn.fckeditor.net/FCKeditor.Java/trunk 310 </connection> 311 <developerConnection> 312 scm:svn:https://svn.fckeditor.net/FCKeditor.Java/trunk 313 </developerConnection> 301 <connection>scm:svn:http://svn.fckeditor.net/FCKeditor.Java/trunk</connection> 302 <developerConnection>scm:svn:https://svn.fckeditor.net/FCKeditor.Java/trunk</developerConnection> 314 303 <url>http://dev.fckeditor.net/browser/FCKeditor.Java/trunk</url> 315 304 </scm> … … 320 309 <repository> 321 310 <id>local</id> 322 <url>file:///home/mosipov/public_html/m2repo</url> 311 <url> 312 file:///home/mosipov/public_html/m2repo 313 </url> 323 314 </repository> 324 315 <snapshotRepository> 325 316 <id>local</id> 326 <url>file:///home/mosipov/public_html/m2repo-snapshots</url> 317 <url> 318 file:///home/mosipov/public_html/m2repo-snapshots 319 </url> 327 320 </snapshotRepository> 328 321 <site> 329 322 <id>local</id> 330 <url>file:///home/mosipov/public_html/docs</url> 323 <url> 324 file:///home/mosipov/public_html/docs 325 </url> 331 326 </site> 332 327 </distributionManagement> -
FCKeditor.Java/branches/2.5-test/src/main/assembly/bin.xml
r2476 r2507 19 19 </dependencySets> 20 20 <outputFileNameMapping> 21 fckeditor-${module.artifactId}-${module.version}.${module.extension}21 ${module.build.finalName}.${module.extension} 22 22 </outputFileNameMapping> 23 23 <unpack>false</unpack> … … 32 32 <includeDependencies>false</includeDependencies> 33 33 <outputFileNameMapping> 34 fckeditor-${module.artifactId}-${module.version}-${module.classifier}.${module.extension}34 ${module.build.finalName}${dashClassifier?}.${module.extension} 35 35 </outputFileNameMapping> 36 36 <unpack>false</unpack> -
FCKeditor.Java/branches/2.5-test/src/site/apt/demo.apt.vm
r2213 r2507 28 28 29 29 The demo is intended for novices, beginners, and for everyone who wants to see 30 the FCKeditor (version 2.6. 2) in action right out of the box. It's also a good30 the FCKeditor (version 2.6.4) in action right out of the box. It's also a good 31 31 reference for you to see how all integral parts work together. 32 32 -
FCKeditor.Java/branches/2.5-test/src/site/apt/download.apt.vm
r2213 r2507 103 103 We use the state-of-the-art logging facade <<<SLF4J>>>. To make SFL4J work at 104 104 runtime, you have to add <<one>> binding and the corresponding backend (may 105 be optional) in toyour classpath. Please check the {{{http://slf4j.org}SLF4J website}}105 be optional) in your classpath. Please check the {{{http://slf4j.org}SLF4J website}} 106 106 for more information on bindings and the API itself. -
FCKeditor.Java/branches/2.5-test/src/site/apt/index.apt
r2213 r2507 37 37 38 38 This documentation is straight forward to use!\ 39 Read the {{{changes-report.html} changes}} compared to the lastrelease. Go over39 Read the {{{changes-report.html}Changes}} in this release. Go over 40 40 and checkout the {{{demo.html}Demo}} and if you are ready to deploy the FCKeditor 41 in your webapp, {{{download.html}download}} it, follow the {{{installation.html}Installation Guide}} 41 in your webapp, {{{download.html}download}} it, follow the {{{installation.html}Installation 42 Guide}} 42 43 and the {{{overview.html}Integration Overview}}. 43 44 -
FCKeditor.Java/branches/2.5-test/src/site/apt/installation.apt
r2492 r2507 29 29 * Integration pack installation 30 30 31 Installing the integration pack, it 's dependencies, and a required SLF4J binding.31 Installing the integration pack, its dependencies, and a preferred SLF4J binding. 32 32 33 33 ** Using Maven 2 34 34 35 35 If you have already declared the dependency reference as described in the 36 {{{download.html} download guide}}, Maven has already installed everything for37 you. Declare the chosen SFL4J binding and corresponding backend (may be optional)38 in the dependencies section of your POM within the <runtime> scope.36 {{{download.html}Download Guide}}, Maven has already installed everything for 37 you. You just need to declare the chosen SFL4J binding and corresponding backend 38 (may be optional) in the dependencies section of your POM within the <runtime> scope. 39 39 40 40 ** Manual installation 41 41 42 Simply put the downloaded core jar, it 's dependencies and your favorite SFL4J43 binding together with the corresponding backend (may be optional) in toyour42 Simply put the downloaded core jar, its dependencies and your favorite SFL4J 43 binding together with the corresponding backend (may be optional) in your 44 44 classpath (usually <<<WEB-INF/lib>>>) and you are ready to go. 45 45 … … 48 48 Although the public distribution is fine, it still contains a lot of superfluous 49 49 files for a Java environment. Use the following <<<Ant>>> target on the FCKeditor 50 2.6. 2 zip file (1,26MiB) to create a cleaner and smaller distribution zip file51 ( 996KiB). After the reduction you can unzip the smaller distribution zip50 2.6.4 zip file (? MiB) to create a cleaner and smaller distribution zip file 51 (? KiB). After the reduction you can unzip the smaller distribution zip 52 52 file into your webapp. 53 53 … … 56 56 <!-- Adapt these properties to your needs --> 57 57 <property name="fckeditor-tmp" location="fckeditor-tmp" /> 58 <property name="fckeditor-basename" value="FCKeditor_2.6. 2" />58 <property name="fckeditor-basename" value="FCKeditor_2.6.4" /> 59 59 <property name="fckeditor-destfile" value="${fckeditor-basename}_clean.zip" /> 60 60
Note: See TracChangeset
for help on using the changeset viewer.
