I18n-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- 786 discussions
r1791 - in trunk: . ant-i18n-task maven-i18n-plugin maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle nuiton-i18n
by tchemit@users.nuiton.org 08 Nov '10
by tchemit@users.nuiton.org 08 Nov '10
08 Nov '10
Author: tchemit
Date: 2010-11-08 21:09:24 +0100 (Mon, 08 Nov 2010)
New Revision: 1791
Url: http://nuiton.org/repositories/revision/i18n/1791
Log:
pass to version 2.0-SNAPSHOT
Evolution #1020: Add addBundleOuputDirParent parameter in BundleMojo
Evolution #1021: Add generateDefinitionFile parameter in BundleMojo
Modified:
trunk/ant-i18n-task/pom.xml
trunk/maven-i18n-plugin/pom.xml
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/BundleMojo.java
trunk/nuiton-i18n/pom.xml
trunk/pom.xml
Modified: trunk/ant-i18n-task/pom.xml
===================================================================
--- trunk/ant-i18n-task/pom.xml 2010-11-08 15:09:17 UTC (rev 1790)
+++ trunk/ant-i18n-task/pom.xml 2010-11-08 20:09:24 UTC (rev 1791)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>i18n</artifactId>
- <version>1.2.3-SNAPSHOT</version>
+ <version>2.0-SNAPSHOT</version>
</parent>
<groupId>org.nuiton.i18n</groupId>
Modified: trunk/maven-i18n-plugin/pom.xml
===================================================================
--- trunk/maven-i18n-plugin/pom.xml 2010-11-08 15:09:17 UTC (rev 1790)
+++ trunk/maven-i18n-plugin/pom.xml 2010-11-08 20:09:24 UTC (rev 1791)
@@ -33,7 +33,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>i18n</artifactId>
- <version>1.2.3-SNAPSHOT</version>
+ <version>2.0-SNAPSHOT</version>
</parent>
<groupId>org.nuiton.i18n</groupId>
Modified: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/BundleMojo.java
===================================================================
--- trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/BundleMojo.java 2010-11-08 15:09:17 UTC (rev 1790)
+++ trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/BundleMojo.java 2010-11-08 20:09:24 UTC (rev 1791)
@@ -97,7 +97,6 @@
* vides.
*
* @parameter expression="${i18n.checkBundle}" default-value="true"
- * @required
* @since 1.0.0
*/
protected boolean checkBundle;
@@ -107,11 +106,33 @@
* #checkBundle} activé).
*
* @parameter expression="${i18n.showEmpty}" default-value="false"
- * @required
* @since 1.0.0
*/
protected boolean showEmpty;
+ /**
+ * Un drapeau pour utiliser le répertoire parent du {@link #bundleOutputDir}
+ * comme répertoire de ressources à ajouter ua build.
+ * <p/>
+ * Si ce drapeau n'est pas activé, alors on utilise directement le répertoire donné.
+ *
+ * @parameter expression="${i18n.addBundleOuputDirParent}" default-value="true"
+ * @since 2.0
+ */
+ protected boolean addBundleOuputDirParent;
+
+ /**
+ * Un drapeau pour générer le fichier de définition i18n.
+ * <p/>
+ * Ce fichier permet d'avoir les locales utilisables par I18n ainsi que les
+ * chemins (dans le classpath) des resources i18n utilisées pour construire
+ * le bundle final.
+ *
+ * @parameter expression="${i18n.generateDefinitionFile}" default-value="true"
+ * @since 2.0
+ */
+ protected boolean generateDefinitionFile;
+
@Override
public void init() throws Exception {
super.init();
@@ -121,7 +142,12 @@
// ajout de repertoire de generation (le parent en fait)
// dans les resources du projet
- addResourceDir(bundleOutputDir.getParentFile(), "**/*.properties");
+ File ressourceDir = bundleOutputDir;
+
+ if (addBundleOuputDirParent) {
+ ressourceDir = ressourceDir.getParentFile();
+ }
+ addResourceDir(ressourceDir, "**/*.properties");
}
@Override
@@ -206,30 +232,33 @@
}
}
- // ecriture du ficher des definitions i18n (permet de faire une
- // recherche extact sur un fichier puis d'en deduire les bundles a
- // charger
- String f = String.format(DefaultI18nInitializer.UNIQUE_BUNDLE_DEF,
- bundleOutputName);
- File defOut = new File(bundleOutputDir, f);
- if (!silent) {
- getLog().info("prepare i18n definition " +
- defOut.getAbsolutePath());
+ if (generateDefinitionFile) {
+
+ // ecriture du ficher des definitions i18n (permet de faire une
+ // recherche extact sur un fichier puis d'en deduire les bundles a
+ // charger
+ String f = String.format(DefaultI18nInitializer.UNIQUE_BUNDLE_DEF,
+ bundleOutputName);
+ File defOut = new File(bundleOutputDir, f);
+ if (!silent) {
+ getLog().info("prepare i18n definition " +
+ defOut.getAbsolutePath());
+ }
+ SortedProperties p = new SortedProperties(encoding, false);
+ p.setProperty(DefaultI18nInitializer.BUNDLE_DEF_LOCALES, bundles);
+ p.setProperty(DefaultI18nInitializer.BUNDLE_DEF_VERSION, version);
+ for (Entry<Locale, String> e : bundleDico.entrySet()) {
+ p.setProperty(DefaultI18nInitializer.BUNDLES_FOR_LOCALE +
+ e.getKey().toString(), e.getValue());
+ }
+ FileOutputStream out = new FileOutputStream(defOut);
+ try {
+ p.store(out, null);
+ } finally {
+ out.close();
+ }
+
}
- SortedProperties p = new SortedProperties(encoding, false);
- p.setProperty(DefaultI18nInitializer.BUNDLE_DEF_LOCALES, bundles);
- p.setProperty(DefaultI18nInitializer.BUNDLE_DEF_VERSION, version);
- for (Entry<Locale, String> e : bundleDico.entrySet()) {
- p.setProperty(DefaultI18nInitializer.BUNDLES_FOR_LOCALE +
- e.getKey().toString(), e.getValue());
- }
- FileOutputStream out = new FileOutputStream(defOut);
- try {
- p.store(out, null);
- } finally {
- out.close();
- }
-
if (!silent && verbose) {
getLog().info("done in " +
PluginHelper.convertTime(t00, System.nanoTime()));
Modified: trunk/nuiton-i18n/pom.xml
===================================================================
--- trunk/nuiton-i18n/pom.xml 2010-11-08 15:09:17 UTC (rev 1790)
+++ trunk/nuiton-i18n/pom.xml 2010-11-08 20:09:24 UTC (rev 1791)
@@ -34,7 +34,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>i18n</artifactId>
- <version>1.2.3-SNAPSHOT</version>
+ <version>2.0-SNAPSHOT</version>
</parent>
<groupId>org.nuiton.i18n</groupId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-11-08 15:09:17 UTC (rev 1790)
+++ trunk/pom.xml 2010-11-08 20:09:24 UTC (rev 1791)
@@ -39,7 +39,7 @@
</parent>
<artifactId>i18n</artifactId>
- <version>1.2.3-SNAPSHOT</version>
+ <version>2.0-SNAPSHOT</version>
<modules>
<module>nuiton-i18n</module>
1
0
r1790 - trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle
by tchemit@users.nuiton.org 08 Nov '10
by tchemit@users.nuiton.org 08 Nov '10
08 Nov '10
Author: tchemit
Date: 2010-11-08 16:09:17 +0100 (Mon, 08 Nov 2010)
New Revision: 1790
Url: http://nuiton.org/repositories/revision/i18n/1790
Log:
add doc + improve code
Modified:
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/CollectI18nArtifactsMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/I18nArtifact.java
Modified: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/CollectI18nArtifactsMojo.java
===================================================================
--- trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/CollectI18nArtifactsMojo.java 2010-11-08 10:28:45 UTC (rev 1789)
+++ trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/CollectI18nArtifactsMojo.java 2010-11-08 15:09:17 UTC (rev 1790)
@@ -205,16 +205,7 @@
I18nArtifact i18nArtifact;
for (Object o : project.getArtifacts()) {
i18nArtifact = new I18nArtifact((Artifact) o);
- if (i18nArtifact.detectBundles()) {
- if (!silent) {
- getLog().info("detected i18n artifact " + i18nArtifact);
- }
- dico.put(i18nArtifact.getArtifact(), i18nArtifact);
- } else {
- if (getLog().isDebugEnabled()) {
- getLog().debug("reject artifact " + i18nArtifact);
- }
- }
+ detectBundles(i18nArtifact, null, dico);
}
ArtifactFilter artifactFilter
@@ -233,25 +224,34 @@
// bundles alors ils doivent etre charge en dernier
Artifact projectArtifact = project.getArtifact();
+
+
i18nArtifact = new I18nArtifact(projectArtifact, src.getParentFile());
+ detectBundles(i18nArtifact, artifacts, dico);
+ I18nArtifact[] result = new I18nArtifact[artifacts.size()];
+ int i = 0;
+ for (Artifact artifact : artifacts) {
+ result[i++] = dico.get(artifact);
+ }
+ return result;
+ }
+
+ protected void detectBundles(I18nArtifact i18nArtifact,
+ List<Artifact> artifacts,
+ Map<Artifact, I18nArtifact> dico) throws IOException {
if (i18nArtifact.detectBundles()) {
if (!silent) {
getLog().info("detected i18n artifact " + i18nArtifact);
}
- artifacts.add(i18nArtifact.getArtifact());
+ if (artifacts != null) {
+ artifacts.add(i18nArtifact.getArtifact());
+ }
dico.put(i18nArtifact.getArtifact(), i18nArtifact);
} else {
if (getLog().isDebugEnabled()) {
getLog().debug("reject artifact " + i18nArtifact);
}
}
-
- I18nArtifact[] result = new I18nArtifact[artifacts.size()];
- int i = 0;
- for (Artifact artifact : artifacts) {
- result[i++] = dico.get(artifact);
- }
- return result;
}
}
Modified: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/I18nArtifact.java
===================================================================
--- trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/I18nArtifact.java 2010-11-08 10:28:45 UTC (rev 1789)
+++ trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/I18nArtifact.java 2010-11-08 15:09:17 UTC (rev 1790)
@@ -80,6 +80,13 @@
return I18nBundleUtil.getBundleEntries(l, defaultLocale, bundles);
}
+ /**
+ * Detects the i18n bundles for this artifacts, says in i18n directory.
+ *
+ * @return {@code true} if artifact has some i18n bunbles, {@code false}
+ * otherwise.
+ * @throws IOException if any IO error.
+ */
public boolean detectBundles() throws IOException {
URL[] i18nUrls = I18nBundleUtil.getURLs(url);
1
0
r1789 - in trunk/nuiton-i18n/src/main/java/org/nuiton/i18n: . bundle init
by tchemit@users.nuiton.org 08 Nov '10
by tchemit@users.nuiton.org 08 Nov '10
08 Nov '10
Author: tchemit
Date: 2010-11-08 11:28:45 +0100 (Mon, 08 Nov 2010)
New Revision: 1789
Url: http://nuiton.org/repositories/revision/i18n/1789
Log:
box log invocation with if (log.isXXX)
Modified:
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18n.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nLanguage.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nStore.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nUtil.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundle.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleEntry.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleUtil.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/DefaultI18nInitializer.java
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18n.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18n.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18n.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -180,9 +180,11 @@
try {
return applyFilter(String.format(message, args));
} catch (Exception zzz) {
- log.warn(
- _("nuitonutil.error.i18n.untranslated.message", message),
- zzz);
+ if (log.isWarnEnabled()) {
+ log.warn(
+ _("nuitonutil.error.i18n.untranslated.message", message),
+ zzz);
+ }
return applyFilter(message);
}
}
@@ -213,9 +215,11 @@
try {
return String.format(message, args);
} catch (Exception eee) {
- log.warn(
- _("nuitonutil.error.i18n.unformated.message", message, Arrays.toString(args)),
- eee);
+ if (log.isWarnEnabled()) {
+ log.warn(
+ _("nuitonutil.error.i18n.unformated.message", message, Arrays.toString(args)),
+ eee);
+ }
return message;
}
}
@@ -267,7 +271,7 @@
*
* @return the instanciated i18n store
*/
- public static synchronized I18nStore getStore() {
+ public static I18nStore getStore() {
if (store == null) {
store = new I18nStore(DEFAULT_LOCALE, initializer);
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nLanguage.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nLanguage.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nLanguage.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -146,10 +146,14 @@
recordNotFound(sentence);
return sentence;
} catch (MissingResourceException eee) {
- log.warn("Resource " + sentence + " unavailable", eee);
+ if (log.isWarnEnabled()) {
+ log.warn("Resource " + sentence + " unavailable", eee);
+ }
return sentence;
} catch (Exception eee) {
- log.error("Unexpected error while translating : ", eee);
+ if (log.isErrorEnabled()) {
+ log.error("Unexpected error while translating : ", eee);
+ }
return sentence;
}
}
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nStore.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nStore.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nStore.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -151,7 +151,7 @@
*
* @param locale la locale du language requis
*/
- protected synchronized void setLanguage(Locale locale) {
+ protected void setLanguage(Locale locale) {
init();
if (log.isDebugEnabled()) {
log.debug("locale: " + locale);
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nUtil.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nUtil.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nUtil.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -56,6 +56,8 @@
public static final Locale DEFAULT_LOCALE = Locale.UK;
+ public static final String[] EMPTY_STRING_ARRAY = new String[0];
+
/**
* Parse a list of {@link Locale} seperated by comma.
* <p/>
@@ -92,8 +94,9 @@
try {
return (Locale) new LocaleConverter().convert(Locale.class, str);
} catch (Exception e) {
- log.warn("could not load locale '" + str + " for reason : " +
+ if (log.isWarnEnabled()) {log.warn("could not load locale '" + str + " for reason : " +
e.getMessage());
+ }
// use default locale
return DEFAULT_LOCALE;
}
@@ -340,7 +343,7 @@
if (classPath != null) {
paths = classPath.split(" ");
} else {
- paths = new String[0];
+ paths = EMPTY_STRING_ARRAY;
}
result = new URL[paths.length + 1];
result[0] = jarURL;
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundle.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundle.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundle.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -165,7 +165,7 @@
entries = new ArrayList<I18nBundleEntry>();
}
boolean b = entries.add(entry);
- if (log.isDebugEnabled()) {
+ if (log.isInfoEnabled()) {
log.info(this + "\n\t" + entry);
}
return b;
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleEntry.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleEntry.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleEntry.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -132,7 +132,8 @@
private static final long serialVersionUID = 1L;
- public void load(InputStream inStream) throws IOException {
+ @Override
+ public synchronized void load(InputStream inStream) throws IOException {
String charset = I18nUtil.ISO_8859_1_ENCONDING;
Charset charsetTo = Charset.forName(charset);
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleUtil.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleUtil.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleUtil.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -31,11 +31,17 @@
import java.io.File;
import java.io.FileInputStream;
-import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
-import java.util.*;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Locale;
+import java.util.Set;
import java.util.regex.Matcher;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
@@ -265,8 +271,10 @@
}
return listURLs.toArray(new URL[listURLs.size()]);
} catch (Exception eee) {
- log.warn("Unable to find urls for urls : " + Arrays.toString(urls) +
- " for reason " + eee.getMessage(), eee);
+ if (log.isWarnEnabled()) {
+ log.warn("Unable to find urls for urls : " + Arrays.toString(urls) +
+ " for reason " + eee.getMessage(), eee);
+ }
return EMPTY_URL_ARRAY;
}
}
@@ -398,15 +406,19 @@
if (bundle.size() == 0) {
// there is no entry to take...
- log.warn("PROMUTE NO ENTRY FOUND");
+ if (log.isWarnEnabled()) {
+ log.warn("PROMUTE NO ENTRY FOUND");
+ }
return EMPTY_I18N_BUNDLE_ENTRYS_ARRAY;
}
if (bundle.size() == 1) {
// there is one entry take it,what ever...
I18nBundleEntry entry = bundle.getEntries().get(0);
- log.warn("PROMUTE" + l + " to " + entry.getLocale() +
- " [" + bundle.getBundlePrefix() + ']');
+ if (log.isWarnEnabled()) {
+ log.warn("PROMUTE" + l + " to " + entry.getLocale() +
+ " [" + bundle.getBundlePrefix() + ']');
+ }
return new I18nBundleEntry[]{entry};
}
@@ -446,8 +458,10 @@
if (i18nBundleScope == I18nBundleScope.FULL &&
!locale1.getCountry().equals(locale.getCountry()) &&
locale1.getLanguage().equals(locale.getLanguage())) {
- log.warn(locale + " to " + locale1 +
- " [" + bundle.getBundlePrefix() + ']');
+ if (log.isWarnEnabled()) {
+ log.warn(locale + " to " + locale1 +
+ " [" + bundle.getBundlePrefix() + ']');
+ }
result.add(entry);
// we take the first one, this is a resuce!!!
break;
@@ -477,8 +491,10 @@
if (i18nBundleScope == I18nBundleScope.FULL &&
locale1.getLanguage().equals(locale.getLanguage())) {
result.add(entry);
- log.warn(locale + " to " + locale1 + " [" +
- bundle.getBundlePrefix() + ']');
+ if (log.isWarnEnabled()) {
+ log.warn(locale + " to " + locale1 + " [" +
+ bundle.getBundlePrefix() + ']');
+ }
// we take the first one, this is a resuce!!!
break;
}
@@ -500,16 +516,20 @@
// there is one entry take it,what ever...
I18nBundleEntry entry = bundle.getEntries().get(0);
result.add(entry);
- log.warn(locale + " to " + entry.getLocale() + " [" +
- bundle.getBundlePrefix() + ']');
+ if (log.isWarnEnabled()) {
+ log.warn(locale + " to " + entry.getLocale() + " [" +
+ bundle.getBundlePrefix() + ']');
+ }
return;
}
I18nBundleScope scope = I18nBundleScope.valueOf(defaultLocale);
for (I18nBundleEntry entry : bundle.getEntries(scope)) {
if (entry.getLocale().equals(defaultLocale)) {
// default locale found
- log.warn(locale + " to " + entry.getLocale() + " [" +
- bundle.getBundlePrefix() + ']');
+ if (log.isWarnEnabled()) {
+ log.warn(locale + " to " + entry.getLocale() + " [" +
+ bundle.getBundlePrefix() + ']');
+ }
result.add(entry);
return;
}
@@ -518,8 +538,10 @@
// default locale not found, take the first one ?
I18nBundleEntry entry = bundle.getEntries().get(0);
result.add(entry);
- log.warn(locale + " to " + entry.getLocale() + " [" +
- bundle.getBundlePrefix() + ']');
+ if (log.isWarnEnabled()) {
+ log.warn(locale + " to " + entry.getLocale() + " [" +
+ bundle.getBundlePrefix() + ']');
+ }
//TODO Should try to load default en_GB from I18nLoader ?
//I18n.DEFAULT_LOCALE.getCountry()
}
@@ -528,36 +550,38 @@
String pattern = SEARCH_BUNDLE_PATTERN;
try {
+ ZipInputStream zis = new ZipInputStream(new FileInputStream(jarfile));
+ try {
+ List<URL> result = new ArrayList<URL>();
+ ClassLoader cl = new URLClassLoader(
+ new URL[]{incomingURL},
+ I18nBundleUtil.class.getClassLoader());
+ while (zis.available() != 0) {
+ ZipEntry entry = zis.getNextEntry();
- List<URL> result = new ArrayList<URL>();
- InputStream in = new FileInputStream(jarfile);
- ZipInputStream zis = new ZipInputStream(in);
- ClassLoader cl = new URLClassLoader(
- new URL[]{incomingURL},
- I18nBundleUtil.class.getClassLoader());
- while (zis.available() != 0) {
- ZipEntry entry = zis.getNextEntry();
+ if (entry == null) {
+ break;
+ }
- if (entry == null) {
- break;
- }
+ String name = entry.getName();
- String name = entry.getName();
-
- if (name.matches(pattern)) {
- // on recupere le fichier correspondant au pattern dans le
- // classloader
- if (log.isDebugEnabled()) {
- log.debug(name + " accepted for pattern " + pattern);
+ if (name.matches(pattern)) {
+ // on recupere le fichier correspondant au pattern dans le
+ // classloader
+ if (log.isDebugEnabled()) {
+ log.debug(name + " accepted for pattern " + pattern);
+ }
+ URL url = cl.getResource(name);
+ // on ajoute le fichier correspondant au pattern dans la
+ // liste
+ result.add(url);
}
- URL url = cl.getResource(name);
- // on ajoute le fichier correspondant au pattern dans la
- // liste
- result.add(url);
}
+
+ return result;
+ } finally {
+ zis.close();
}
-
- return result;
} catch (Exception eee) {
throw new RuntimeException(
"n'a pas pu trouve la resource dans le jar " +
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/DefaultI18nInitializer.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/DefaultI18nInitializer.java 2010-11-08 10:28:15 UTC (rev 1788)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/DefaultI18nInitializer.java 2010-11-08 10:28:45 UTC (rev 1789)
@@ -49,7 +49,7 @@
public static String UNIQUE_BUNDLE_DEF = "%1$s-definition.properties";
- public static String UNIQUE_BUNDLE_ENTRY = "%1$s-%2$s.properties";
+ public static String UNIQUE_BUNDLE_ENTRY = "%1$s_%2$s.properties";
public static String BUNDLE_DEF_LOCALES = "locales";
1
0
r1788 - in trunk: maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin nuiton-i18n/src/main/java/org/nuiton/i18n/bundle nuiton-i18n/src/test/resources/META-INF
by tchemit@users.nuiton.org 08 Nov '10
by tchemit@users.nuiton.org 08 Nov '10
08 Nov '10
Author: tchemit
Date: 2010-11-08 11:28:15 +0100 (Mon, 08 Nov 2010)
New Revision: 1788
Url: http://nuiton.org/repositories/revision/i18n/1788
Log:
Anomalie #1018: Use a resource bundle api compatible name for translation files
Added:
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_en_GB.properties
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_fr_FR.properties
Removed:
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties
Modified:
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nMojo.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleScope.java
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties
Modified: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nMojo.java
===================================================================
--- trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nMojo.java 2010-11-08 09:32:44 UTC (rev 1787)
+++ trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nMojo.java 2010-11-08 10:28:15 UTC (rev 1788)
@@ -199,7 +199,7 @@
Locale locale, boolean create) throws IOException {
File file = new File(
root.getAbsolutePath() + File.separatorChar + artifactId +
- "-" + locale.toString() + ".properties");
+ "_" + locale.toString() + ".properties");
if (create && !file.exists()) {
createNewFile(file);
}
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleScope.java
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleScope.java 2010-11-08 09:32:44 UTC (rev 1787)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleScope.java 2010-11-08 10:28:15 UTC (rev 1788)
@@ -73,7 +73,7 @@
},
/** language scope (no country information) */
- LANGUAGE("(.*/.+)-(\\w\\w)\\.properties") {
+ LANGUAGE("(.*/.+)_(\\w\\w)\\.properties") {
@Override
public Locale getLocale(Matcher matcher) {
Locale result = null;
@@ -85,7 +85,7 @@
},
/** full scope : language + country */
- FULL("(.*/.+)-(\\w\\w_\\w\\w)\\.properties") {
+ FULL("(.*/.+)_(\\w\\w_\\w\\w)\\.properties") {
@Override
public Locale getLocale(Matcher matcher) {
Locale result = null;
Modified: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties 2010-11-08 09:32:44 UTC (rev 1787)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties 2010-11-08 10:28:15 UTC (rev 1788)
@@ -23,6 +23,6 @@
# #L%
###
#Sun Mar 07 00:23:58 CET 2010
-bundles.en_GB=bundleTest/I18nStoreTest-en_GB.properties
-bundles.fr_FR=bundleTest/I18nStoreTest-fr_FR.properties
+bundles.en_GB=bundleTest/I18nStoreTest_en_GB.properties
+bundles.fr_FR=bundleTest/I18nStoreTest_fr_FR.properties
locales=fr_FR,en_GB
Deleted: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties 2010-11-08 09:32:44 UTC (rev 1787)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties 2010-11-08 10:28:15 UTC (rev 1788)
@@ -1,26 +0,0 @@
-###
-# #%L
-# I18n :: Api
-#
-# $Id$
-# $HeadURL$
-# %%
-# Copyright (C) 2004 - 2010 CodeLutin
-# %%
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Lesser Public License for more details.
-#
-# You should have received a copy of the GNU General Lesser Public
-# License along with this program. If not, see
-# <http://www.gnu.org/licenses/lgpl-3.0.html>.
-# #L%
-###
-key.one=First
-key.two=Second
Deleted: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties 2010-11-08 09:32:44 UTC (rev 1787)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties 2010-11-08 10:28:15 UTC (rev 1788)
@@ -1,26 +0,0 @@
-###
-# #%L
-# I18n :: Api
-#
-# $Id$
-# $HeadURL$
-# %%
-# Copyright (C) 2004 - 2010 CodeLutin
-# %%
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Lesser Public License for more details.
-#
-# You should have received a copy of the GNU General Lesser Public
-# License along with this program. If not, see
-# <http://www.gnu.org/licenses/lgpl-3.0.html>.
-# #L%
-###
-key.one=Premier
-key.two=Seconde
Copied: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_en_GB.properties (from rev 1786, trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties)
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_en_GB.properties (rev 0)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_en_GB.properties 2010-11-08 10:28:15 UTC (rev 1788)
@@ -0,0 +1,26 @@
+###
+# #%L
+# I18n :: Api
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2004 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
+key.one=First
+key.two=Second
Property changes on: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_en_GB.properties
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision HeadURL
Copied: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_fr_FR.properties (from rev 1786, trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties)
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_fr_FR.properties (rev 0)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_fr_FR.properties 2010-11-08 10:28:15 UTC (rev 1788)
@@ -0,0 +1,26 @@
+###
+# #%L
+# I18n :: Api
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2004 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
+key.one=Premier
+key.two=Seconde
Property changes on: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest_fr_FR.properties
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision HeadURL
1
0
r1787 - trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser
by tchemit@users.nuiton.org 08 Nov '10
by tchemit@users.nuiton.org 08 Nov '10
08 Nov '10
Author: tchemit
Date: 2010-11-08 10:32:44 +0100 (Mon, 08 Nov 2010)
New Revision: 1787
Url: http://nuiton.org/repositories/revision/i18n/1787
Log:
Anomalie #562: Bad log spelling
Modified:
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractI18nParserMojo.java
Modified: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractI18nParserMojo.java
===================================================================
--- trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractI18nParserMojo.java 2010-10-29 13:37:37 UTC (rev 1786)
+++ trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractI18nParserMojo.java 2010-11-08 09:32:44 UTC (rev 1787)
@@ -247,7 +247,7 @@
if (!silent) {
getLog().info("start entry " + entry.toString());
- getLog().info(files.length + " file(s) to treate (amoung " +
+ getLog().info(files.length + " file(s) to process (among " +
entry.getFoudFiles() + " files)");
}
1
0
r1786 - in trunk: . maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n
by tchemit@users.nuiton.org 29 Oct '10
by tchemit@users.nuiton.org 29 Oct '10
29 Oct '10
Author: tchemit
Date: 2010-10-29 15:37:37 +0200 (Fri, 29 Oct 2010)
New Revision: 1786
Url: http://nuiton.org/repositories/revision/i18n/1786
Log:
do not add headers on THIRD-PARTY.properties + add headers + reformat pom
Modified:
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties
trunk/pom.xml
Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties 2010-10-29 08:28:37 UTC (rev 1785)
+++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties 2010-10-29 13:37:37 UTC (rev 1786)
@@ -1,2 +1,26 @@
+###
+# #%L
+# I18n :: Maven Plugin
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2007 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
javaGetter.old.key1=hum1
javaGetter.old.key2=hum2
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-29 08:28:37 UTC (rev 1785)
+++ trunk/pom.xml 2010-10-29 13:37:37 UTC (rev 1786)
@@ -23,7 +23,9 @@
<http://www.gnu.org/licenses/lgpl-3.0.html>.
#L%
-->
-<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">
+<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">
<modelVersion>4.0.0</modelVersion>
@@ -227,10 +229,9 @@
<!-- pour un muli module on doit fixer le projectId -->
<projectId>i18n</projectId>
- <!-- remove this when using mavenpom >= 2.4 -->
+ <!-- remove this when using mavenpom > 2.4 -->
<helperPluginVersion>1.3-SNAPSHOT</helperPluginVersion>
- <!-- remove this when using mavenpom >= 2.4 -->
<processorVersion>1.0.4-SNAPSHOT</processorVersion>
<!--Multilanguage maven-site -->
@@ -245,8 +246,27 @@
<!-- Source control management. -->
<scm>
<connection>scm:svn:http://svn.nuiton.org/svn/i18n/trunk</connection>
- <developerConnection>scm:svn:http://svn.nuiton.org/svn/i18n/trunk</developerConnection>
+ <developerConnection>
+ scm:svn:http://svn.nuiton.org/svn/i18n/trunk
+ </developerConnection>
<url>http://www.nuiton.org/repositories/browse/i18n/trunk</url>
</scm>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <!-- remove this while using mavenpom > 2.4 -->
+ <plugin>
+ <groupId>org.nuiton</groupId>
+ <artifactId>maven-license-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/THIRD-PARTY.properties</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
</project>
1
0
Author: tchemit
Date: 2010-10-29 10:28:37 +0200 (Fri, 29 Oct 2010)
New Revision: 1785
Url: http://nuiton.org/repositories/revision/i18n/1785
Log:
Update mavenpom4redmineAndCentral to 2.4.
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-26 12:58:29 UTC (rev 1784)
+++ trunk/pom.xml 2010-10-29 08:28:37 UTC (rev 1785)
@@ -33,7 +33,7 @@
<parent>
<groupId>org.nuiton</groupId>
<artifactId>mavenpom4redmineAndCentral</artifactId>
- <version>2.4-SNAPSHOT</version>
+ <version>2.4</version>
</parent>
<artifactId>i18n</artifactId>
1
0
Author: tchemit
Date: 2010-10-26 14:58:29 +0200 (Tue, 26 Oct 2010)
New Revision: 1784
Url: http://nuiton.org/repositories/revision/i18n/1784
Log:
fix build (use inheritance from mavenpom for commons libs)
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-26 12:13:27 UTC (rev 1783)
+++ trunk/pom.xml 2010-10-26 12:58:29 UTC (rev 1784)
@@ -49,7 +49,7 @@
<dependencyManagement>
<dependencies>
- <dependency>
+ <!--dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
@@ -62,7 +62,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- </dependency>
+ </dependency-->
<dependency>
<groupId>org.nuiton.processor</groupId>
@@ -157,11 +157,11 @@
<!-- tests dependencies -->
- <dependency>
+ <!--dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
- </dependency>
+ </dependency-->
<!-- provided dependencies -->
<dependency>
@@ -193,10 +193,10 @@
<scope>compile</scope>
</dependency>
- <dependency>
+ <!--dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- </dependency>
+ </dependency-->
<dependency>
<groupId>org.apache.ant</groupId>
1
0
Author: tchemit
Date: 2010-10-26 14:13:27 +0200 (Tue, 26 Oct 2010)
New Revision: 1783
Url: http://nuiton.org/repositories/revision/i18n/1783
Log:
use mavenpom 2.4-SNAPSHOT
use camelCase style for version properties
use default libraries version from mavenpom
Modified:
trunk/nuiton-i18n-editor/pom.xml
trunk/pom.xml
Modified: trunk/nuiton-i18n-editor/pom.xml
===================================================================
--- trunk/nuiton-i18n-editor/pom.xml 2010-10-25 07:57:22 UTC (rev 1782)
+++ trunk/nuiton-i18n-editor/pom.xml 2010-10-26 12:13:27 UTC (rev 1783)
@@ -28,20 +28,20 @@
<dependency>
<groupId>org.nuiton</groupId>
<artifactId>nuiton-utils</artifactId>
- <version>${lutinutil.version}</version>
+ <version>${nuitonUtilsVersion}</version>
</dependency>
<!--Jaxx-->
<dependency>
<groupId>org.nuiton.jaxx</groupId>
<artifactId>jaxx-runtime</artifactId>
- <version>${jaxx.version}</version>
+ <version>${jaxxVersion}</version>
</dependency>
<dependency>
<groupId>org.nuiton.jaxx</groupId>
<artifactId>jaxx-widgets</artifactId>
- <version>${jaxx.version}</version>
+ <version>${jaxxVersion}</version>
</dependency>
</dependencies>
@@ -71,11 +71,10 @@
<properties>
<!-- main class in jar -->
- <maven.jar.main.class>org.nuiton.i18n.editor.I18nEditor
- </maven.jar.main.class>
+ <maven.jar.main.class>org.nuiton.i18n.editor.I18nEditor</maven.jar.main.class>
- <jaxx.version>2.0</jaxx.version>
- <lutinutil.version>1.2</lutinutil.version>
+ <jaxxVersion>2.0</jaxxVersion>
+ <nuitonUtilsVersion>1.2</nuitonUtilsVersion>
<!-- default license to use -->
<license.licenseName>gpl_v3</license.licenseName>
@@ -124,7 +123,7 @@
<plugin>
<groupId>org.nuiton.jaxx</groupId>
<artifactId>maven-jaxx-plugin</artifactId>
- <version>${jaxx.version}</version>
+ <version>${jaxxVersion}</version>
<executions>
<execution>
<goals>
@@ -251,7 +250,7 @@
<!-- plugin site -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
- <version>2.0.1</version>
+ <version>2.1.1</version>
<dependencies>
<dependency>
<groupId>org.nuiton</groupId>
@@ -270,7 +269,7 @@
<plugin>
<groupId>org.nuiton.thirdparty</groupId>
<artifactId>webstart-maven-plugin</artifactId>
- <version>1.0-alpha-2-cl_20091001</version>
+ <version>${webstartPluginVersion}</version>
</plugin>
</plugins>
</reporting>
@@ -329,7 +328,6 @@
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-25 07:57:22 UTC (rev 1782)
+++ trunk/pom.xml 2010-10-26 12:13:27 UTC (rev 1783)
@@ -52,20 +52,16 @@
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
- <version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
- <version>1.8.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>1.4</version>
- <scope>compile</scope>
</dependency>
<dependency>
@@ -164,7 +160,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.8.1</version>
<scope>test</scope>
</dependency>
@@ -201,7 +196,6 @@
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- <version>1.2.16</version>
</dependency>
<dependency>
1
0
Author: tchemit
Date: 2010-10-25 09:57:22 +0200 (Mon, 25 Oct 2010)
New Revision: 1782
Url: http://nuiton.org/repositories/revision/i18n/1782
Log:
Evolution #986: Use new maven-license-plugin mecanism to update file headers
add svn:keywords on files
Removed:
trunk/src/license/
Modified:
trunk/LICENSE.txt
trunk/README.txt
trunk/ant-i18n-task/LICENSE.txt
trunk/ant-i18n-task/README.txt
trunk/ant-i18n-task/changelog.txt
trunk/ant-i18n-task/pom.xml
trunk/ant-i18n-task/src/license/THIRD-PARTY.properties
trunk/ant-i18n-task/src/main/java/org/nuiton/i18n/ant/I18nExtractorTask.java
trunk/ant-i18n-task/src/site/apt/index.apt
trunk/ant-i18n-task/src/site/en/apt/index.apt
trunk/ant-i18n-task/src/site/site_en.xml
trunk/ant-i18n-task/src/site/site_fr.xml
trunk/changelog.txt
trunk/maven-i18n-plugin/LICENSE.txt
trunk/maven-i18n-plugin/README.txt
trunk/maven-i18n-plugin/changelog.txt
trunk/maven-i18n-plugin/pom.xml
trunk/maven-i18n-plugin/src/it/parsers/newProject/LICENSE.txt
trunk/maven-i18n-plugin/src/it/parsers/newProject/README.txt
trunk/maven-i18n-plugin/src/it/parsers/newProject/changelog.txt
trunk/maven-i18n-plugin/src/it/parsers/newProject/invoker.properties
trunk/maven-i18n-plugin/src/it/parsers/newProject/pom.xml
trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/java/org/nuiton/i18n/test/MyBean.java
trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml
trunk/maven-i18n-plugin/src/it/parsers/newProject/verify.groovy
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/LICENSE.txt
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/README.txt
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/changelog.txt
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/invoker.properties
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/pom.xml
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/java/org/nuiton/i18n/test/MyBean.java
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml
trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/verify.groovy
trunk/maven-i18n-plugin/src/it/settings.xml
trunk/maven-i18n-plugin/src/license/THIRD-PARTY.properties
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/GenerateMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/GetterMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/AbstractI18nBundleMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/BundleMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/CollectI18nArtifactsMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/I18nArtifact.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/TapestryBundleMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractFileParser.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractI18nParserMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/FileParser.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/I18nParserConfiguration.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/I18nSourceEntry.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/KeysModifier.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/Parser.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/ParserEvent.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/ParserException.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/ParserExecutor.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/SourceEntry.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserJavaActionConfigMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserJavaMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserJavaTabConfigMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserValidationMojo.java
trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserXmlMojo.java
trunk/maven-i18n-plugin/src/main/resources/META-INF/services/org.apache.commons.logging.LogFactory
trunk/maven-i18n-plugin/src/main/resources/jaxx.rules
trunk/maven-i18n-plugin/src/main/resources/log4j.properties
trunk/maven-i18n-plugin/src/main/resources/swixat.rules
trunk/maven-i18n-plugin/src/main/resources/validation.rules
trunk/maven-i18n-plugin/src/main/resources/xwork-validator-1.0.2.dtd
trunk/maven-i18n-plugin/src/site/apt/index.apt
trunk/maven-i18n-plugin/src/site/apt/usages.apt
trunk/maven-i18n-plugin/src/site/en/apt/index.apt
trunk/maven-i18n-plugin/src/site/en/apt/usages.apt
trunk/maven-i18n-plugin/src/site/site_en.xml
trunk/maven-i18n-plugin/src/site/site_fr.xml
trunk/nuiton-i18n-editor/LICENSE.txt
trunk/nuiton-i18n-editor/README.txt
trunk/nuiton-i18n-editor/changelog.txt
trunk/nuiton-i18n-editor/pom.xml
trunk/nuiton-i18n-editor/src/main/assembly/bin.xml
trunk/nuiton-i18n-editor/src/main/assembly/go.bat
trunk/nuiton-i18n-editor/src/main/assembly/go.sh
trunk/nuiton-i18n-editor/src/main/filters/nuiton-i18n-editor.properties
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/I18nEditor.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/I18nEditorConfig.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/I18nEditorContext.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/AbstractI18nProject.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/AbstractI18nProjectProvider.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProject.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProjectConfigurePanelUI.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProjectFactory.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProjectProvider.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/DirectoryI18nProject.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/DirectoryI18nProjectConfigurePanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/DirectoryI18nProjectProvider.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/JarI18nProject.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/JarI18nProjectConfigurePanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/JarI18nProjectProvider.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleCheckBoxMenuUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleValueUI.css
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleValueUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleValuesUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreateBundleUI.css
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreateBundleUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreatePackageUI.css
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreatePackageUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/I18nEditorUI.css
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/I18nEditorUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/I18nEditorUIHandler.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/PackageCheckBoxMenuUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/PropertieNode.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/PropertiesTreeModel.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/TreeModelMode.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectStep.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectUI.css
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectUIModel.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/SelectBundlesTableModel.java
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/AbstractProjectTabPanelUI.css
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/AbstractProjectTabPanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/ChooseProjectTypePanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/ConfigureProjectPanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/PersistPanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/ResumePanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/SelectBundlesPanelUI.jaxx
trunk/nuiton-i18n-editor/src/main/jnlp/jxlayer.jnlp
trunk/nuiton-i18n-editor/src/main/jnlp/sun.jnlp
trunk/nuiton-i18n-editor/src/main/resources/META-INF/services/org.nuiton.i18n.editor.project.I18nProjectProvider
trunk/nuiton-i18n-editor/src/main/resources/i18n/nuiton-i18n-editor-en_GB.properties
trunk/nuiton-i18n-editor/src/main/resources/i18n/nuiton-i18n-editor-fr_FR.properties
trunk/nuiton-i18n-editor/src/main/resources/icons/action-about.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-accept.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-add.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-calculator.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-cancel.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-close.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-closeTab.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-collapseAll.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-combobox-reset.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-combobox-sort.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-config.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_creating.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_no.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_ok.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_untested.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-connected.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-change.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-local.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-none.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-remote.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-delete.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-edit.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-exit.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-expandAll.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-fileChooser.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-fullscreen.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-back.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-detail.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-down.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-jump.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-up.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-help.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-i18n-es.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-i18n-fr.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-i18n-gb.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-import-gps.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-information.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-leave-fullscreen.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-local-export.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-local-import.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-mode-create.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-mode-read.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-mode-update.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-next-step.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-open.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-previous-step.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-remote-export.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-remote-import.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-revert.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-save.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-select-ssl-cert.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-show-help.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-site.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-synch.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-synchro-pause.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-synchro-start.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-synchro-stop.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-translate.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-unconnected.png
trunk/nuiton-i18n-editor/src/main/resources/icons/action-validate.png
trunk/nuiton-i18n-editor/src/main/resources/icons/logo OT_rvb.png
trunk/nuiton-i18n-editor/src/main/resources/icons/logo-OT_web.png
trunk/nuiton-i18n-editor/src/main/resources/icons/logo_ird.png
trunk/nuiton-i18n-editor/src/main/resources/log4j.properties
trunk/nuiton-i18n-editor/src/site/apt/index.apt
trunk/nuiton-i18n-editor/src/site/site_fr.xml
trunk/nuiton-i18n/LICENSE.txt
trunk/nuiton-i18n/README.txt
trunk/nuiton-i18n/changelog.txt
trunk/nuiton-i18n/doc/FormatConverter-uml.uxf
trunk/nuiton-i18n/pom.xml
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/CountryEnum.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18n.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nBundleBridge.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nDefaultTooltipFilter.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nFilter.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nLanguage.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nStore.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nUtil.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/LanguageEnum.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundle.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleEntry.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleScope.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleUtil.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/ClassPathI18nInitializer.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/DefaultI18nInitializer.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/I18nInitializer.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/UserI18nInitializer.java
trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/package.html
trunk/nuiton-i18n/src/main/java/org/nuiton/util/LocaleConverter.java
trunk/nuiton-i18n/src/main/resources/META-INF/services/org.apache.commons.beanutils.Converter
trunk/nuiton-i18n/src/site/apt/index.apt
trunk/nuiton-i18n/src/site/en/apt/index.apt
trunk/nuiton-i18n/src/site/site_en.xml
trunk/nuiton-i18n/src/site/site_fr.xml
trunk/nuiton-i18n/src/test/java/org/nuiton/i18n/I18nStoreTest.java
trunk/nuiton-i18n/src/test/java/org/nuiton/i18n/bundle/I18nBundleScopeTest.java
trunk/nuiton-i18n/src/test/java/org/nuiton/util/LocaleConverterTest.java
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties
trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties
trunk/nuiton-i18n/src/test/resources/log4j.properties
trunk/pom.xml
trunk/src/site/apt/application.apt
trunk/src/site/apt/bestPractices.apt
trunk/src/site/apt/extendInitializer.apt
trunk/src/site/apt/helloWorld.apt
trunk/src/site/apt/index.apt
trunk/src/site/apt/library.apt
trunk/src/site/apt/presentation.apt
trunk/src/site/en/apt/application.apt
trunk/src/site/en/apt/bestPractices.apt
trunk/src/site/en/apt/extendInitializer.apt
trunk/src/site/en/apt/helloWorld.apt
trunk/src/site/en/apt/index.apt
trunk/src/site/en/apt/library.apt
trunk/src/site/en/apt/presentation.apt
trunk/src/site/resources/application-i18n.zip
trunk/src/site/resources/helloworld.zip
trunk/src/site/resources/library-i18n.zip
trunk/src/site/site_en.xml
trunk/src/site/site_fr.xml
Property changes on: trunk/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/ant-i18n-task/src/license/THIRD-PARTY.properties
===================================================================
--- trunk/ant-i18n-task/src/license/THIRD-PARTY.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/ant-i18n-task/src/license/THIRD-PARTY.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Ant task
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
# Generated by org.nuiton.license.plugin.AddThirdPartyMojo
#-------------------------------------------------------------------------------
# Already used licenses in project :
Property changes on: trunk/ant-i18n-task/src/main/java/org/nuiton/i18n/ant/I18nExtractorTask.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/src/site/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/src/site/en/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/src/site/site_en.xml
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/ant-i18n-task/src/site/site_fr.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/newProject/invoker.properties
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/newProject/invoker.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/newProject/invoker.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Maven Plugin
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2007 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
# A comma or space separated list of goals/phases to execute, may
# specify an empty list to execute the default goal of the IT project
invoker.goals=clean compile
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/invoker.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/newProject/pom.xml
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/newProject/pom.xml 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/newProject/pom.xml 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,4 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ I18n :: Maven Plugin
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2007 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<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/maven-v4_0_0.xsd">
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/java/org/nuiton/i18n/test/MyBean.java
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/java/org/nuiton/i18n/test/MyBean.java 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/java/org/nuiton/i18n/test/MyBean.java 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+/*
+ * #%L
+ * I18n :: Maven Plugin
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2007 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU General Lesser Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
package org.nuiton.i18n.test;
import static org.nuiton.i18n.I18n._;
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/java/org/nuiton/i18n/test/MyBean.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,4 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ I18n :: Maven Plugin
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2007 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<!DOCTYPE validators PUBLIC
"-//OpenSymphony Group//XWork Validator 1.0.2//EN"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/newProject/verify.groovy
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/newProject/verify.groovy 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/newProject/verify.groovy 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+/*
+ * #%L
+ * I18n :: Maven Plugin
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2007 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU General Lesser Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
file = new File(basedir, 'target/generated-sources/i18n/java.getter');
assert file.exists();
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/newProject/verify.groovy
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/invoker.properties
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/invoker.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/invoker.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Maven Plugin
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2007 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
# A comma or space separated list of goals/phases to execute, may
# specify an empty list to execute the default goal of the IT project
invoker.goals=clean compile
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/invoker.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/pom.xml
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/pom.xml 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/pom.xml 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,4 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ I18n :: Maven Plugin
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2007 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<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/maven-v4_0_0.xsd">
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/java/org/nuiton/i18n/test/MyBean.java
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/java/org/nuiton/i18n/test/MyBean.java 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/java/org/nuiton/i18n/test/MyBean.java 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+/*
+ * #%L
+ * I18n :: Maven Plugin
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2007 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU General Lesser Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
package org.nuiton.i18n.test;
import static org.nuiton.i18n.I18n._;
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/java/org/nuiton/i18n/test/MyBean.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,4 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ I18n :: Maven Plugin
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2007 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<!DOCTYPE validators PUBLIC
"-//OpenSymphony Group//XWork Validator 1.0.2//EN"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/org/nuiton/i18n/test/MyBean-validation.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/verify.groovy
===================================================================
--- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/verify.groovy 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/verify.groovy 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+/*
+ * #%L
+ * I18n :: Maven Plugin
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2007 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU General Lesser Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
file = new File(basedir, 'target/generated-sources/i18n/java.getter');
assert file.exists();
Property changes on: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/verify.groovy
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/it/settings.xml
===================================================================
--- trunk/maven-i18n-plugin/src/it/settings.xml 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/it/settings.xml 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,5 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ I18n :: Maven Plugin
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2007 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
Property changes on: trunk/maven-i18n-plugin/src/it/settings.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/license/THIRD-PARTY.properties
===================================================================
--- trunk/maven-i18n-plugin/src/license/THIRD-PARTY.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/license/THIRD-PARTY.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Maven Plugin
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2007 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
# Generated by org.nuiton.license.plugin.AddThirdPartyMojo
#-------------------------------------------------------------------------------
# Already used licenses in project :
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/GenerateMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/GetterMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/AbstractI18nBundleMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/BundleMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/CollectI18nArtifactsMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/I18nArtifact.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/TapestryBundleMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractFileParser.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/AbstractI18nParserMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/FileParser.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/I18nParserConfiguration.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/I18nSourceEntry.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/KeysModifier.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/Parser.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/ParserEvent.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/ParserException.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/ParserExecutor.java
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/SourceEntry.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserJavaActionConfigMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserJavaMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserJavaTabConfigMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserValidationMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/java/org/nuiton/i18n/plugin/parser/impl/ParserXmlMojo.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/resources/META-INF/services/org.apache.commons.logging.LogFactory
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/resources/jaxx.rules
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/main/resources/log4j.properties
===================================================================
--- trunk/maven-i18n-plugin/src/main/resources/log4j.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/main/resources/log4j.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Maven Plugin
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2007 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
# Global logging configuration
log4j.rootLogger=ERROR, stdout
# Console output...
Property changes on: trunk/maven-i18n-plugin/src/main/resources/log4j.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/resources/swixat.rules
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/main/resources/validation.rules
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/maven-i18n-plugin/src/main/resources/xwork-validator-1.0.2.dtd
===================================================================
--- trunk/maven-i18n-plugin/src/main/resources/xwork-validator-1.0.2.dtd 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/maven-i18n-plugin/src/main/resources/xwork-validator-1.0.2.dtd 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,5 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ #%L
+ I18n :: Maven Plugin
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2007 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
+
<!--
XWork Validators DTD.
Used the following DOCTYPE.
Property changes on: trunk/maven-i18n-plugin/src/main/resources/xwork-validator-1.0.2.dtd
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/site/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/site/apt/usages.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/site/en/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/site/en/apt/usages.apt
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/site/site_en.xml
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/maven-i18n-plugin/src/site/site_fr.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/doc/FormatConverter-uml.uxf
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/CountryEnum.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18n.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nBundleBridge.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nDefaultTooltipFilter.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nFilter.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nLanguage.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nStore.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/I18nUtil.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/LanguageEnum.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundle.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleEntry.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleScope.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/bundle/I18nBundleUtil.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/ClassPathI18nInitializer.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/DefaultI18nInitializer.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/I18nInitializer.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/init/UserI18nInitializer.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/package.html
===================================================================
--- trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/package.html 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/package.html 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+<!--
+ #%L
+ I18n :: Api
+
+ $Id$
+ $HeadURL$
+ %%
+ Copyright (C) 2004 - 2010 CodeLutin
+ %%
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Lesser Public License for more details.
+
+ You should have received a copy of the GNU General Lesser Public
+ License along with this program. If not, see
+ <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ #L%
+ -->
<html>
<body>
<h1>Nuiton i18n </h1>
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/i18n/package.html
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/java/org/nuiton/util/LocaleConverter.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/main/resources/META-INF/services/org.apache.commons.beanutils.Converter
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/site/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/site/en/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/site/site_en.xml
___________________________________________________________________
Modified: svn:keywords
- "Author Date Id Revision HeadURL
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/site/site_fr.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/test/java/org/nuiton/i18n/I18nStoreTest.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/test/java/org/nuiton/i18n/bundle/I18nBundleScopeTest.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n/src/test/java/org/nuiton/util/LocaleConverterTest.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Api
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2004 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
#Sun Mar 07 00:23:58 CET 2010
bundles.en_GB=bundleTest/I18nStoreTest-en_GB.properties
bundles.fr_FR=bundleTest/I18nStoreTest-fr_FR.properties
Property changes on: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-definition.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,2 +1,26 @@
+###
+# #%L
+# I18n :: Api
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2004 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
key.one=First
key.two=Second
Property changes on: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-en_GB.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,2 +1,26 @@
+###
+# #%L
+# I18n :: Api
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2004 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
key.one=Premier
key.two=Seconde
Property changes on: trunk/nuiton-i18n/src/test/resources/META-INF/I18nStoreTest-fr_FR.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Modified: trunk/nuiton-i18n/src/test/resources/log4j.properties
===================================================================
--- trunk/nuiton-i18n/src/test/resources/log4j.properties 2010-10-25 07:53:33 UTC (rev 1781)
+++ trunk/nuiton-i18n/src/test/resources/log4j.properties 2010-10-25 07:57:22 UTC (rev 1782)
@@ -1,3 +1,27 @@
+###
+# #%L
+# I18n :: Api
+#
+# $Id$
+# $HeadURL$
+# %%
+# Copyright (C) 2004 - 2010 CodeLutin
+# %%
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Lesser Public License for more details.
+#
+# You should have received a copy of the GNU General Lesser Public
+# License along with this program. If not, see
+# <http://www.gnu.org/licenses/lgpl-3.0.html>.
+# #L%
+###
# Global logging configuration
log4j.rootLogger=ERROR, stdout
# Console output...
Property changes on: trunk/nuiton-i18n/src/test/resources/log4j.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/LICENSE.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/README.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/changelog.txt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/assembly/bin.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/assembly/go.bat
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/assembly/go.sh
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/filters/nuiton-i18n-editor.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/I18nEditor.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/I18nEditorConfig.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/I18nEditorContext.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/AbstractI18nProject.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/AbstractI18nProjectProvider.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProject.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProjectConfigurePanelUI.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProjectFactory.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/I18nProjectProvider.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/DirectoryI18nProject.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/DirectoryI18nProjectConfigurePanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/DirectoryI18nProjectProvider.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/JarI18nProject.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/JarI18nProjectConfigurePanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/project/impl/JarI18nProjectProvider.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleCheckBoxMenuUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleValueUI.css
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleValueUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/BundleValuesUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreateBundleUI.css
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreateBundleUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreatePackageUI.css
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/CreatePackageUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/I18nEditorUI.css
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/I18nEditorUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/I18nEditorUIHandler.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/PackageCheckBoxMenuUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/PropertieNode.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/PropertiesTreeModel.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/TreeModelMode.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectStep.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectUI.css
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/ProjectUIModel.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/SelectBundlesTableModel.java
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/AbstractProjectTabPanelUI.css
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/AbstractProjectTabPanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/ChooseProjectTypePanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/ConfigureProjectPanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/PersistPanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/ResumePanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/java/org/nuiton/i18n/editor/ui/project/tabs/SelectBundlesPanelUI.jaxx
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/jnlp/jxlayer.jnlp
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/jnlp/sun.jnlp
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/META-INF/services/org.nuiton.i18n.editor.project.I18nProjectProvider
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/i18n/nuiton-i18n-editor-en_GB.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/i18n/nuiton-i18n-editor-fr_FR.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-about.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-accept.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-add.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-calculator.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-cancel.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-close.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-closeTab.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-collapseAll.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-combobox-reset.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-combobox-sort.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-config.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_creating.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_no.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_ok.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-connect_untested.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-connected.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-change.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-local.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-none.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-db-remote.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-delete.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-edit.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-exit.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-expandAll.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-fileChooser.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-fullscreen.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-back.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-detail.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-down.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-jump.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-go-up.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-help.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-i18n-es.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-i18n-fr.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-i18n-gb.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-import-gps.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-information.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-leave-fullscreen.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-local-export.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-local-import.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-mode-create.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-mode-read.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-mode-update.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-next-step.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-open.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-previous-step.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-remote-export.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-remote-import.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-revert.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-save.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-select-ssl-cert.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-show-help.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-site.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-synch.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-synchro-pause.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-synchro-start.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-synchro-stop.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-translate.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-unconnected.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/action-validate.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/logo OT_rvb.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/logo-OT_web.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/icons/logo_ird.png
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/main/resources/log4j.properties
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/site/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/nuiton-i18n-editor/src/site/site_fr.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/pom.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/application.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/bestPractices.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/extendInitializer.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/helloWorld.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/library.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/apt/presentation.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/application.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/bestPractices.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/extendInitializer.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/helloWorld.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/index.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/library.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/en/apt/presentation.apt
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/resources/application-i18n.zip
___________________________________________________________________
Modified: svn:keywords
- HeadURL Id Date Revision Author
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/resources/helloworld.zip
___________________________________________________________________
Modified: svn:keywords
- HeadURL Id Date Revision Author
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/resources/library-i18n.zip
___________________________________________________________________
Modified: svn:keywords
- HeadURL Id Date Revision Author
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/site_en.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
Property changes on: trunk/src/site/site_fr.xml
___________________________________________________________________
Modified: svn:keywords
- Id Author Rev URL Date
+ Author Date Id Revision HeadURL
1
0