diff --git a/pom.xml b/pom.xml
index f31692039..bbcda53ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,11 +39,11 @@
1.8
- 1.1.1
- 0.8.6
+ 1.1.2
+ 0.8.8
0.7.1
0.2.5
- 0.5.1
+ 0.5.2
1.7.21
@@ -54,7 +54,7 @@
4.12
- 0.6.3
+ 0.6.6
1.1.0-SNAPSHOT
@@ -63,12 +63,12 @@
5.1.0-SNAPSHOT
- 5.1.1
- 5.1.1.0
+ 5.1.2
+ 5.1.2.0
- 8.5.5
- 0.5.0
+ 8.5.9
+ 0.5.1
/usr/share/fess
diff --git a/src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java b/src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
index efea5fa79..97cf19cbc 100644
--- a/src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
+++ b/src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
@@ -156,12 +156,12 @@ public abstract class FessBaseAction extends TypicalAction // has several interf
protected void saveInfo(final VaMessenger validationMessagesLambda) {
final FessMessages messages = createMessages();
validationMessagesLambda.message(messages);
- sessionManager.info().save(messages);
+ sessionManager.info().saveMessages(messages);
}
protected void saveError(final VaMessenger validationMessagesLambda) {
final FessMessages messages = createMessages();
validationMessagesLambda.message(messages);
- sessionManager.errors().save(messages);
+ sessionManager.errors().saveMessages(messages);
}
}
diff --git a/src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java b/src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java
index 5632e71ca..742d734c1 100644
--- a/src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java
+++ b/src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java
@@ -572,6 +572,19 @@ public abstract class EsAbstractConditionBean implements ConditionBean {
// do nothing
}
+ // no annotation for compatible with 1.1.1
+ public void enableSpecifyColumnRequired() {
+ // do nothing
+ }
+
+ public void disableSpecifyColumnRequired() {
+ // do nothing
+ }
+
+ public void xcheckSpecifyColumnRequiredIfNeeds() {
+ // do nothing
+ }
+
@Override
public boolean hasSpecifiedLocalColumn() {
return false;
diff --git a/src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java b/src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java
index e8310ffdd..7f5adc18d 100644
--- a/src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java
+++ b/src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java
@@ -572,6 +572,19 @@ public abstract class EsAbstractConditionBean implements ConditionBean {
// do nothing
}
+ // no annotation for compatible with 1.1.1
+ public void enableSpecifyColumnRequired() {
+ // do nothing
+ }
+
+ public void disableSpecifyColumnRequired() {
+ // do nothing
+ }
+
+ public void xcheckSpecifyColumnRequiredIfNeeds() {
+ // do nothing
+ }
+
@Override
public boolean hasSpecifiedLocalColumn() {
return false;
diff --git a/src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java b/src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
index 801d30b49..3f874d4f6 100644
--- a/src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
+++ b/src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
@@ -572,6 +572,19 @@ public abstract class EsAbstractConditionBean implements ConditionBean {
// do nothing
}
+ // no annotation for compatible with 1.1.1
+ public void enableSpecifyColumnRequired() {
+ // do nothing
+ }
+
+ public void disableSpecifyColumnRequired() {
+ // do nothing
+ }
+
+ public void xcheckSpecifyColumnRequiredIfNeeds() {
+ // do nothing
+ }
+
@Override
public boolean hasSpecifiedLocalColumn() {
return false;
diff --git a/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java b/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
index 14ce2f502..482ba81aa 100644
--- a/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
+++ b/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
@@ -537,6 +537,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/** The key of the configuration. e.g. .fess_basic_config.bulk,.fess_config.bulk,.fess_user.bulk,system.properties */
String INDEX_BACKUP_TARGETS = "index.backup.targets";
+ /** The key of the configuration. e.g. 4000 */
+ String FORM_ADMIN_MAX_INPUT_SIZE = "form.admin.max.input.size";
+
/** The key of the configuration. e.g. admin */
String AUTHENTICATION_ADMIN_USERS = "authentication.admin.users";
@@ -573,10 +576,10 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/** The key of the configuration. e.g. FES */
String COOKIE_REMEMBER_ME_HARBOR_KEY = "cookie.remember.me.harbor.key";
- /** The key of the configuration. e.g. 4 */
+ /** The key of the configuration. e.g. 25 */
String PAGING_PAGE_SIZE = "paging.page.size";
- /** The key of the configuration. e.g. 3 */
+ /** The key of the configuration. e.g. 5 */
String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
/** The key of the configuration. e.g. true */
@@ -2627,6 +2630,21 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
*/
String getIndexBackupTargets();
+ /**
+ * Get the value for the key 'form.admin.max.input.size'.
+ * The value is, e.g. 4000
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
+ */
+ String getFormAdminMaxInputSize();
+
+ /**
+ * Get the value for the key 'form.admin.max.input.size' as {@link Integer}.
+ * The value is, e.g. 4000
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
+ * @throws NumberFormatException When the property is not integer.
+ */
+ Integer getFormAdminMaxInputSizeAsInteger();
+
/**
* Get the value for the key 'authentication.admin.users'.
* The value is, e.g. admin
@@ -2760,7 +2778,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/**
* Get the value for the key 'paging.page.size'.
- * The value is, e.g. 4
+ * The value is, e.g. 25
* comment: The size of one page for paging
* @return The value of found property. (NotNull: if not found, exception but basically no way)
*/
@@ -2768,7 +2786,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/**
* Get the value for the key 'paging.page.size' as {@link Integer}.
- * The value is, e.g. 4
+ * The value is, e.g. 25
* comment: The size of one page for paging
* @return The value of found property. (NotNull: if not found, exception but basically no way)
* @throws NumberFormatException When the property is not integer.
@@ -2777,7 +2795,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/**
* Get the value for the key 'paging.page.range.size'.
- * The value is, e.g. 3
+ * The value is, e.g. 5
* comment: The size of page range for paging
* @return The value of found property. (NotNull: if not found, exception but basically no way)
*/
@@ -2785,7 +2803,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/**
* Get the value for the key 'paging.page.range.size' as {@link Integer}.
- * The value is, e.g. 3
+ * The value is, e.g. 5
* comment: The size of page range for paging
* @return The value of found property. (NotNull: if not found, exception but basically no way)
* @throws NumberFormatException When the property is not integer.
@@ -5210,6 +5228,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
return get(FessConfig.INDEX_BACKUP_TARGETS);
}
+ public String getFormAdminMaxInputSize() {
+ return get(FessConfig.FORM_ADMIN_MAX_INPUT_SIZE);
+ }
+
+ public Integer getFormAdminMaxInputSizeAsInteger() {
+ return getAsInteger(FessConfig.FORM_ADMIN_MAX_INPUT_SIZE);
+ }
+
public String getAuthenticationAdminUsers() {
return get(FessConfig.AUTHENTICATION_ADMIN_USERS);
}