Forum
Reihenfolge der Threads ist nun per Config einstellbar. git-svn-id: https://svn.libreccm.org/ccm/trunk@1474 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
e8b1968c12
commit
55657c07e1
|
|
@ -597,7 +597,7 @@ public class Forum extends Application {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
threadsData.addOrder("lastUpdate desc");
|
threadsData.addOrder(getConfig().getThreadOrder());
|
||||||
|
|
||||||
return new ThreadCollection(threadsData);
|
return new ThreadCollection(threadsData);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,6 @@ import org.apache.log4j.Logger;
|
||||||
public class ForumConfig extends AbstractConfig {
|
public class ForumConfig extends AbstractConfig {
|
||||||
|
|
||||||
private static final Logger s_log = Logger.getLogger(ForumConfig.class);
|
private static final Logger s_log = Logger.getLogger(ForumConfig.class);
|
||||||
|
|
||||||
private Parameter m_adminEditPosts;
|
private Parameter m_adminEditPosts;
|
||||||
private Parameter m_authorEditPosts;
|
private Parameter m_authorEditPosts;
|
||||||
private Parameter m_authorDeletePosts;
|
private Parameter m_authorDeletePosts;
|
||||||
|
|
@ -62,6 +61,8 @@ public class ForumConfig extends AbstractConfig {
|
||||||
private Parameter m_useWysiwygEditor;
|
private Parameter m_useWysiwygEditor;
|
||||||
private Parameter m_rejectionMessage;
|
private Parameter m_rejectionMessage;
|
||||||
private Parameter m_threadPageSize;
|
private Parameter m_threadPageSize;
|
||||||
|
private Parameter m_threadOrderField;
|
||||||
|
private Parameter m_threadOrderDir;
|
||||||
private Parameter m_quickFinish;
|
private Parameter m_quickFinish;
|
||||||
private Parameter m_deleteSentSubscriptionNotifications;
|
private Parameter m_deleteSentSubscriptionNotifications;
|
||||||
|
|
||||||
|
|
@ -122,6 +123,12 @@ public class ForumConfig extends AbstractConfig {
|
||||||
m_threadPageSize = new IntegerParameter(
|
m_threadPageSize = new IntegerParameter(
|
||||||
"com.arsdigita.forum.thread_page_size",
|
"com.arsdigita.forum.thread_page_size",
|
||||||
Parameter.REQUIRED, new Integer(10));
|
Parameter.REQUIRED, new Integer(10));
|
||||||
|
m_threadOrderField = new StringParameter(
|
||||||
|
"com.arsdigita.forum.thread_order_field",
|
||||||
|
Parameter.REQUIRED, new String("lastUpdate"));
|
||||||
|
m_threadOrderDir = new StringParameter(
|
||||||
|
"com.arsdigita.forum.thread_order_dir",
|
||||||
|
Parameter.REQUIRED, new String("desc"));
|
||||||
m_quickFinish = new BooleanParameter(
|
m_quickFinish = new BooleanParameter(
|
||||||
"com.arsdigita.forum.allow_quick_finish",
|
"com.arsdigita.forum.allow_quick_finish",
|
||||||
Parameter.OPTIONAL,
|
Parameter.OPTIONAL,
|
||||||
|
|
@ -131,8 +138,7 @@ public class ForumConfig extends AbstractConfig {
|
||||||
Parameter.OPTIONAL,
|
Parameter.OPTIONAL,
|
||||||
Boolean.FALSE);
|
Boolean.FALSE);
|
||||||
|
|
||||||
m_adapters = new ResourceParameter
|
m_adapters = new ResourceParameter("com.arsdigita.forum.traversal_adapters",
|
||||||
("com.arsdigita.forum.traversal_adapters",
|
|
||||||
Parameter.REQUIRED,
|
Parameter.REQUIRED,
|
||||||
"/WEB-INF/resources/forum-adapters.xml");
|
"/WEB-INF/resources/forum-adapters.xml");
|
||||||
|
|
||||||
|
|
@ -151,6 +157,8 @@ public class ForumConfig extends AbstractConfig {
|
||||||
register(m_useWysiwygEditor);
|
register(m_useWysiwygEditor);
|
||||||
register(m_rejectionMessage);
|
register(m_rejectionMessage);
|
||||||
register(m_threadPageSize);
|
register(m_threadPageSize);
|
||||||
|
register(m_threadOrderField);
|
||||||
|
register(m_threadOrderDir);
|
||||||
register(m_quickFinish);
|
register(m_quickFinish);
|
||||||
register(m_deleteSentSubscriptionNotifications);
|
register(m_deleteSentSubscriptionNotifications);
|
||||||
loadInfo();
|
loadInfo();
|
||||||
|
|
@ -189,9 +197,9 @@ public class ForumConfig extends AbstractConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Supports prevention of client and middleware caching -
|
* Supports prevention of client and middleware caching - use in situations
|
||||||
* use in situations where users with different
|
* where users with different permissions share machines
|
||||||
* permissions share machines
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public boolean disableClientPageCaching() {
|
public boolean disableClientPageCaching() {
|
||||||
|
|
@ -199,9 +207,9 @@ public class ForumConfig extends AbstractConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* if true, disables topic tab for non admin users. Topic
|
* if true, disables topic tab for non admin users. Topic tab does not
|
||||||
* tab does not access control topic creation, so set this
|
* access control topic creation, so set this to true to maintain control of
|
||||||
* to true to maintain control of the topics on the forum.
|
* the topics on the forum.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
@ -210,6 +218,7 @@ public class ForumConfig extends AbstractConfig {
|
||||||
public boolean topicCreationByAdminOnly() {
|
public boolean topicCreationByAdminOnly() {
|
||||||
return ((Boolean) get(m_adminOnlyCreateTopics)).booleanValue();
|
return ((Boolean) get(m_adminOnlyCreateTopics)).booleanValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
public User getDigestUser() {
|
public User getDigestUser() {
|
||||||
String email = getDigestUserEmail();
|
String email = getDigestUserEmail();
|
||||||
|
|
||||||
|
|
@ -225,10 +234,11 @@ public class ForumConfig extends AbstractConfig {
|
||||||
users.close();
|
users.close();
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns the maximum allowed size (in bytes) of
|
* returns the maximum allowed size (in bytes) of image files attached to
|
||||||
* image files attached to posts. Any larger
|
* posts. Any larger files are rejected by UI validation
|
||||||
* files are rejected by UI validation
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public long getMaxImageSize() {
|
public long getMaxImageSize() {
|
||||||
|
|
@ -239,10 +249,11 @@ public class ForumConfig extends AbstractConfig {
|
||||||
}
|
}
|
||||||
return longSize;
|
return longSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns the maximum allowed size (in bytes) of
|
* returns the maximum allowed size (in bytes) of files attached to posts.
|
||||||
* files attached to posts. Any larger
|
* Any larger files are rejected by UI validation
|
||||||
* files are rejected by UI validation
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public long getMaxFileSize() {
|
public long getMaxFileSize() {
|
||||||
|
|
@ -254,26 +265,26 @@ public class ForumConfig extends AbstractConfig {
|
||||||
return longSize;
|
return longSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* if true, alerts tab displays thread alerts for this and all other
|
* if true, alerts tab displays thread alerts for this and all other forums.
|
||||||
* forums. If false, only display thread subscriptions for current
|
* If false, only display thread subscriptions for current forum.
|
||||||
* forum.
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* If true, the thread alert page lists thread alerts from
|
* If true, the thread alert page lists thread alerts from all forums -
|
||||||
* all forums - alerts not from the current forum have
|
* alerts not from the current forum have links to the thread displayed
|
||||||
* links to the thread displayed within the context of
|
* within the context of the current forum. Looks weird and needs to be
|
||||||
* the current forum. Looks weird and needs to be sorted out
|
* sorted out presumably the correct forum needs to be set in the
|
||||||
* presumably the correct forum needs to be set in the ForumContext
|
* ForumContext when a link is selected
|
||||||
* when a link is selected
|
|
||||||
*/
|
*/
|
||||||
public boolean showThreadAlertsForAllForums() {
|
public boolean showThreadAlertsForAllForums() {
|
||||||
return ((Boolean) get(m_showAllThreadAlerts)).booleanValue();
|
return ((Boolean) get(m_showAllThreadAlerts)).booleanValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* if true, displays setup and permissions tabs
|
* if true, displays setup and permissions tabs
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public boolean showNewTabs() {
|
public boolean showNewTabs() {
|
||||||
|
|
@ -285,9 +296,9 @@ public class ForumConfig extends AbstractConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* message added to the bottom of the moderation reection email.
|
* message added to the bottom of the moderation reection email. May give
|
||||||
* May give details about what the poster can do if not happy
|
* details about what the poster can do if not happy with rejection
|
||||||
* with rejection
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public String getRejectionMessage() {
|
public String getRejectionMessage() {
|
||||||
|
|
@ -298,6 +309,22 @@ public class ForumConfig extends AbstractConfig {
|
||||||
return ((Integer) get(m_threadPageSize)).intValue();
|
return ((Integer) get(m_threadPageSize)).intValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getThreadOrder() {
|
||||||
|
String field = (String) get(m_threadOrderField);
|
||||||
|
String dir = (String) get(m_threadOrderDir);
|
||||||
|
|
||||||
|
// Test for validity
|
||||||
|
if(!field.equals("lastUpdate") && !field.equals("root.sent")) {
|
||||||
|
field = "lastUpdate"; // Default behaviour
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!dir.equals("asc") && !dir.equals("desc")) {
|
||||||
|
dir = "desc"; // Default behaviour
|
||||||
|
}
|
||||||
|
|
||||||
|
return field + " " + dir;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean quickFinishAllowed() {
|
public boolean quickFinishAllowed() {
|
||||||
return ((Boolean) get(m_quickFinish)).booleanValue();
|
return ((Boolean) get(m_quickFinish)).booleanValue();
|
||||||
}
|
}
|
||||||
|
|
@ -305,5 +332,4 @@ public class ForumConfig extends AbstractConfig {
|
||||||
public boolean deleteNotifications() {
|
public boolean deleteNotifications() {
|
||||||
return ((Boolean) get(m_deleteSentSubscriptionNotifications)).booleanValue();
|
return ((Boolean) get(m_deleteSentSubscriptionNotifications)).booleanValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,16 @@ com.arsdigita.forum.thread_page_size.purpose=balance page loading time against n
|
||||||
com.arsdigita.forum.thread_page_size.format=[integer]
|
com.arsdigita.forum.thread_page_size.format=[integer]
|
||||||
com.arsdigita.forum.thread_page_size.example=10
|
com.arsdigita.forum.thread_page_size.example=10
|
||||||
|
|
||||||
|
com.arsdigita.forum.thread_order_field.title=Thread list order field
|
||||||
|
com.arsdigita.forum.thread_order_field.purpose=Define field by which the thread list will be orderd
|
||||||
|
com.arsdigita.forum.thread_order_field.format=[string]
|
||||||
|
com.arsdigita.forum.thread_order_field.example=lastUpdate|root.sent
|
||||||
|
|
||||||
|
com.arsdigita.forum.thread_order_dir.title=Thread list order direction
|
||||||
|
com.arsdigita.forum.thread_order_dir.purpose=Ascending or descending sort order
|
||||||
|
com.arsdigita.forum.thread_order_dir.format=[string]
|
||||||
|
com.arsdigita.forum.thread_order_dir.example=asc|desc
|
||||||
|
|
||||||
com.arsdigita.forum.allow_quick_finish.title=Allow quick finish on posts
|
com.arsdigita.forum.allow_quick_finish.title=Allow quick finish on posts
|
||||||
com.arsdigita.forum.allow_quick_finish.purpose=To give users the option of omitting post steps if they have a quick text post
|
com.arsdigita.forum.allow_quick_finish.purpose=To give users the option of omitting post steps if they have a quick text post
|
||||||
com.arsdigita.forum.allow_quick_finish.format=[boolean]
|
com.arsdigita.forum.allow_quick_finish.format=[boolean]
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ forum.ui.no=Nein
|
||||||
|
|
||||||
forum.ui.thread.newPost=Neuer Beitrag
|
forum.ui.thread.newPost=Neuer Beitrag
|
||||||
forum.ui.thread.subscribe=Beitrag abonnieren
|
forum.ui.thread.subscribe=Beitrag abonnieren
|
||||||
forum.ui.thread.unsubscribe=Beitrag Abonoment stornieren
|
forum.ui.thread.unsubscribe=Beitrag Abonnement stornieren
|
||||||
forum.ui.thread.viewAll=Alle Beitr\u00e4ge
|
forum.ui.thread.viewAll=Alle Beitr\u00e4ge
|
||||||
|
|
||||||
forum.ui.topic.description=Beschreibung
|
forum.ui.topic.description=Beschreibung
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue