Changeset 2248 for FCKeditor.Java/trunk
- Timestamp:
- 2008-07-21 15:14:11 (5 months ago)
- Location:
- FCKeditor.Java/trunk
- Files:
-
- 6 added
- 4 modified
- 1 copied
-
java-core/src/main/javadoc/net/fckeditor/localization (added)
-
java-core/src/main/javadoc/net/fckeditor/localization/impl (added)
-
java-core/src/main/javadoc/net/fckeditor/localization/impl/package.html (added)
-
java-core/src/main/javadoc/net/fckeditor/localization/package.html (added)
-
java-core/src/main/java/net/fckeditor/localization/impl/JstlResolver.java (modified) (1 diff)
-
java-core/src/main/java/net/fckeditor/localization/LocaleResolver.java (modified) (1 diff)
-
src/site/apt/ext_overview.apt (added)
-
src/site/apt/i18n.apt (added)
-
src/site/apt/installation.apt (modified) (2 diffs)
-
src/site/apt/int_overview.apt (copied) (copied from FCKeditor.Java/trunk/src/site/apt/overview.apt) (2 diffs, 1 prop)
-
src/site/site.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/localization/impl/JstlResolver.java
r2234 r2248 29 29 30 30 /** 31 * This implementation maps directly to the JSTL locale mechanism. This is 32 * recommended for thos who FMT tags for example. 31 33 * 32 34 * @version $Id$ 33 * 35 * 34 36 */ 35 37 public class JstlResolver implements LocaleResolver { 36 38 39 /* 40 * (non-Javadoc) 41 * @see net.fckeditor.localization.LocaleResolver#resolveLocale(javax.servlet.http.HttpServletRequest) 42 */ 37 43 public Locale resolveLocale(HttpServletRequest request) { 38 44 39 45 return (Locale) Config.get(request.getSession(), Config.FMT_LOCALE); 40 46 } -
FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/localization/LocaleResolver.java
r2234 r2248 26 26 27 27 /** 28 * An interface which provides the ability to resolve the current user's locale 29 * independently from any framework or direct implementation. 28 30 * 29 31 * @version $Id$ 30 * 32 * 31 33 */ 32 34 public interface LocaleResolver { 33 35 34 36 /** 35 37 * 36 38 * @param request 37 * @return 39 * The current request instance 40 * @return The locale of the user or <code>null</code> if the locale 41 * cannot be resolved 38 42 */ 39 43 public Locale resolveLocale(HttpServletRequest request); -
FCKeditor.Java/trunk/src/site/apt/installation.apt
r2213 r2248 33 33 ** Using Maven 2 34 34 35 If you have already declared the depe dency reference as described in the35 If you have already declared the dependency reference as described in the 36 36 {{{download.html}download guide}}, Maven has already installed everything for 37 37 you. Declare the chosen SFL4J binding and corresponding backend (may be optional) … … 49 49 files for a Java environment. Use the following <<<Ant>>> target on the FCKeditor 50 50 2.6.2 zip file (1,26 MiB) to create a cleaner and smaller distribution zip file 51 (996 KiB). After the minification you can unzip the smaller distribution zip51 (996 KiB). After the reduction you can unzip the smaller distribution zip 52 52 file into your webapp. 53 53 -
FCKeditor.Java/trunk/src/site/apt/int_overview.apt
r2213 r2248 24 24 Overview 25 25 26 The Java integration pack consists of two main components:26 The Java integration can be integrated in several systems and frameworks: 27 27 28 28 * <<JSP tag library>>: Easy integration of the FCKeditor in your JSPs. … … 30 30 * <<Connector>>: A servlet to manage resources like images, documents, and other 31 31 files. 32 33 * <<Velocity/FreeMarker>>: This library is suitable to be integrated into a 34 template engine. 32 35 33 36 [] 34 37 35 Please read the integration parts carefully ! Both the tag library and the connector36 have been completely restructured.38 Please read the integration parts carefully if you intend to deploy the FCKeditor 39 in a particular system! -
FCKeditor.Java/trunk/src/site/site.xml
r2212 r2248 26 26 </menu> 27 27 <menu name="Integration"> 28 <item name="Overview" href="/ overview.html" />28 <item name="Overview" href="/int_overview.html" /> 29 29 <item name="Tag library" 30 30 href="/taglibrary.html" … … 32 32 <item name="Connector" href="/connector.html" /> 33 33 <item name="Velocity/FreeMarker" href="/velocity_freemarker.html"/> 34 </menu> 35 <menu name="Extending the Library"> 36 <item name="Overview" href="ext_overview.html"/> 37 <item name="UserAction" /> 38 <item name="UserPathBuilder" /> 39 <item name="I18n" href="/i18n.html" /> 34 40 </menu> 35 41 <menu name="Reference">