|
From: Michael K. <ko...@us...> - 2005-10-21 16:04:20
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20264 Modified Files: build.xml changelog.txt Log Message: Index: changelog.txt =================================================================== RCS file: /cvsroot/cobricks/cobricks2/changelog.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- changelog.txt 10 Aug 2005 13:38:06 -0000 1.2 +++ changelog.txt 21 Oct 2005 16:04:05 -0000 1.3 @@ -1,5 +1,12 @@ Cobricks2 v0.35 +- core: org.cobricks.core.util.MailUtil now reads Cobricks properties + mail.smtp.from and mail.smtp.host and uses them + +- core: database abstraction + For MySQL, for timestamp values now datetime columns are created - + to avoid the MySQL auto-update functions for timestamp columns + - item,user,category,context: moved several functions from the different data classes and managers to org.cobricks.core.DataObject and org.cobricks.core.CoreManager to make data object handling @@ -10,14 +17,17 @@ present - item: change name of item attribute "description" to "content" -- core: org.cobricks.core.util.MailUtil now reads Cobricks properties - mail.smtp.from and mail.smtp.host and uses them - - user: Sorting of list of (all) attributes in user.html now works +- user: attribute lastlogin and registrationtime are now loaded + from the database and provided in User objects - portal: new class CobricksPortlet to integrate Cobricks in Jetspeed portlet - see documentation how to configure this - portal: new function sendEmail() in PortalPresenter - to be used for sending confirmation emails etc from web pages +- portal: user attribute lastlogin is now set +- course: changed course template to course module (renaming database + tables and references) + - New utility org.cobricks.util.logbrowser Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- build.xml 18 Oct 2005 23:54:30 -0000 1.47 +++ build.xml 21 Oct 2005 16:04:05 -0000 1.48 @@ -114,11 +114,11 @@ <include name="de/tum/cobricks/**"/> <exclude name="org/cobricks/portal/portlet/**/*.java"/> <exclude name="org/cobricks/item/xmldb/**/*.java"/> - <exclude name="org/cobricks/cwall/meeting/rfid/ReaderConfig.java"/> + <exclude name="org/cobricks/cwall/meeting/rfid/ReaderConfig.java"/> <exclude name="org/cobricks/cwall/meeting/rfid/TagReaderImpl.java"/> + <exclude name="org/cobricks/cwall/meeting/rfid/TagReaderStub.java"/> <exclude name="org/cobricks/cwall/meeting/rfid/TagSchedulerImpl.java"/> <exclude name="org/cobricks/cwall/meeting/rfid/rfidAdapter/**"/> - </javac> <!-- Create RMI stubs and skeletons --> @@ -185,7 +185,7 @@ <classpath> <path refid="compile.classpath"/> <fileset dir="${rfid.home}"> - <include name="WEB-INF/lib/OBIDISC4J.jar"/> + <include name="OBIDISC4J.jar"/> </fileset> </classpath> <include name="org/cobricks/cwall/meeting/rfid/ReaderConfig.java"/> |
|
From: Michael K. <ko...@us...> - 2006-02-16 15:18:27
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7578 Modified Files: build.xml changelog.txt Log Message: Index: changelog.txt =================================================================== RCS file: /cvsroot/cobricks/cobricks2/changelog.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- changelog.txt 3 Jan 2006 09:39:31 -0000 1.7 +++ changelog.txt 16 Feb 2006 15:18:18 -0000 1.8 @@ -17,7 +17,26 @@ - Added support for searching items with itemclass is equal or derived from a given itemclass - + +- Different handling of text objects and binary objects in the Portal + Component (using real mimetype information) + +- Support for public and authenticated user roles debugged and + activated +- support for access permissions in different components debugged + +- Added support for versioned item content +- Added support for Wiki pages in Portal Component (wiki language, + versioned content, support in demo ui) + +- Support for subscriptions implemented (you can now subscribe + to component events like item creations and get email or + messages as result) + +- Added new component to support agent/rule based actions + on component events - currently supporting the Drools rule + engine + Cobricks2 v0.35 - core: org.cobricks.core.util.MailUtil now reads Cobricks properties Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- build.xml 3 Jan 2006 09:39:31 -0000 1.52 +++ build.xml 16 Feb 2006 15:18:18 -0000 1.53 @@ -5,7 +5,7 @@ installations, but add your property changes to build.properties --> -<project name="cobricks-2" default="compile" basedir="."> +<project name="cobricks2" default="compile" basedir="."> <!-- ==================== Property Definitions ========================== --> @@ -408,8 +408,13 @@ <target name="copydoc" description="Copies documentation from Wiki to docs directory"> + <javac srcdir="docs" destdir="docs" + debug="${compile.debug}" + deprecation="${compile.deprecation}" + optimize="${compile.optimize}"/> <!-- use wget version 1.9 or higher --> <!-- keep files: convFiles.java, style.css, README.txt !!! --> + <echo>Loading pages from Wiki ...</echo> <exec executable="wget" dir="docs"> <arg line="-q -r -l 2 -nd -E -k -p -nc -R 'index.php*' -R 'Talk:*' -R 'Image:*' -R 'Help:*' -R 'CobricksWiki:*' -R 'Special:*' http://131.159.24.138/wiki/mw/index.php/Main_Page" /> </exec> |
|
From: Michael K. <ko...@us...> - 2006-07-11 10:27:07
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16693 Modified Files: build.xml changelog.txt Log Message: Index: changelog.txt =================================================================== RCS file: /cvsroot/cobricks/cobricks2/changelog.txt,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- changelog.txt 31 May 2006 06:04:18 -0000 1.10 +++ changelog.txt 11 Jul 2006 10:27:02 -0000 1.11 @@ -1,5 +1,9 @@ Cobricks2 v0.37 +- forgot password dialog fixed + +- added correct handling for mimetype text/x-vcard - .vcf + - Module course reworked completely (to fit needs of course management at TUM) Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.55 retrieving revision 1.56 diff -u -d -r1.55 -r1.56 --- build.xml 30 May 2006 14:20:49 -0000 1.55 +++ build.xml 11 Jul 2006 10:27:02 -0000 1.56 @@ -795,5 +795,12 @@ </copy> </target> +<target name="html" depends="compile"> + <java fork="yes" classname="org.cobricks.core.util.HTMLUtil" + classpathref="exec.classpath"> + <arg line="test.html"/> + </java> +</target> + </project> |
|
From: Michael K. <ko...@us...> - 2006-11-24 08:06:30
|
Update of /cvsroot/cobricks/cobricks2 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv375 Modified Files: build.xml changelog.txt Log Message: Index: changelog.txt =================================================================== RCS file: /cvsroot/cobricks/cobricks2/changelog.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- changelog.txt 11 Jul 2006 10:27:02 -0000 1.11 +++ changelog.txt 24 Nov 2006 08:05:56 -0000 1.12 @@ -1,3 +1,13 @@ +Cobricks2 v0.38 + +- added file extension swf to mime type heuristics in PortalObject + +- corrected some errors in item search code (for complex queries) + +- corrected errors in context component + +- added support for Geo functions + Cobricks2 v0.37 - forgot password dialog fixed Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/cobricks2/build.xml,v retrieving revision 1.57 retrieving revision 1.58 diff -u -d -r1.57 -r1.58 --- build.xml 3 Nov 2006 07:22:55 -0000 1.57 +++ build.xml 24 Nov 2006 08:05:56 -0000 1.58 @@ -249,6 +249,7 @@ <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" includes="org/cobricks/discussion/**" /> </jar> + <copy file="${distbin}/web/WEB-INF/lib/cobricks.jar" tofile="${dist.home}/cobricks.jar" overwrite="true" /> <jar jarfile="${distbin}/web/WEB-INF/lib/cobricksCwall.jar"> <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" @@ -264,7 +265,34 @@ <fileset dir="${build.home}/webapps/ROOT" includes="*/**" /> </jar> - <copy file="${basedir}/conf/localproperties.txt" tofile="${build.home}/webapps/ROOT/WEB-INF/conf/localproperties.txt" overwrite="true" /> + <copy file="${basedir}/conf/localproperties.txt" + tofile="${build.home}/webapps/ROOT/WEB-INF/conf/localproperties.txt" + overwrite="true" failonerror="false" /> + <copy file="${web.home}/WEB-INF/conf/localproperties.txt" + tofile="${dist.home}/mm/conf/localproperties.txt" + overwrite="true" failonerror="false" /> + + <!-- Create JAR file for webspace --> + <jar destfile="${dist.home}/webapp.jar" + basedir="${build.home}/webapps/${webappname}"> + <include name="item/**" /> + <include name="user/**" /> + <include name="portal/**" /> + <include name="course/**" /> + <include name="ADMIN/**" /> + <include name="notfound.html.de" /> + <include name="noaccess.html.de" /> + <include name="noaccess-expired.html.de" /> + <include name="notfound.html.en" /> + <include name="noaccess.html.en" /> + <include name="noaccess-expired.html.en" /> + <include name="pageheader.html.de" /> + <include name="pageheader.html.en" /> + <include name="pagefooter.html.de" /> + <include name="pagefooter.html.en" /> + <include name="navigation.html.de" /> + <include name="navigation.html.en" /> + </jar> </target> |