jamwiki-commit Mailing List for JAMWiki (Page 12)
Brought to you by:
wrh2
This list is closed, nobody may subscribe to it.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(86) |
Oct
(168) |
Nov
(115) |
Dec
(87) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(59) |
Feb
(36) |
Mar
(27) |
Apr
(24) |
May
(37) |
Jun
(16) |
Jul
(200) |
Aug
(114) |
Sep
(41) |
Oct
(36) |
Nov
(43) |
Dec
(29) |
2008 |
Jan
(63) |
Feb
(49) |
Mar
(62) |
Apr
(66) |
May
(25) |
Jun
(20) |
Jul
(4) |
Aug
(27) |
Sep
(51) |
Oct
(48) |
Nov
(12) |
Dec
(9) |
2009 |
Jan
(54) |
Feb
(33) |
Mar
(59) |
Apr
(35) |
May
(20) |
Jun
(18) |
Jul
(31) |
Aug
(44) |
Sep
(24) |
Oct
(32) |
Nov
(28) |
Dec
(35) |
2010 |
Jan
(51) |
Feb
(34) |
Mar
(93) |
Apr
(48) |
May
(30) |
Jun
(43) |
Jul
(29) |
Aug
(39) |
Sep
(61) |
Oct
(14) |
Nov
(30) |
Dec
(96) |
2011 |
Jan
(82) |
Feb
(18) |
Mar
(21) |
Apr
(18) |
May
(33) |
Jun
(45) |
Jul
(70) |
Aug
(36) |
Sep
(63) |
Oct
(28) |
Nov
(55) |
Dec
(47) |
2012 |
Jan
(82) |
Feb
(39) |
Mar
(21) |
Apr
(9) |
May
(15) |
Jun
(32) |
Jul
(36) |
Aug
(36) |
Sep
(22) |
Oct
(12) |
Nov
(4) |
Dec
(30) |
2013 |
Jan
(38) |
Feb
(25) |
Mar
(18) |
Apr
(15) |
May
(10) |
Jun
(6) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ccl...@us...> - 2012-06-09 07:33:13
|
Revision: 4074 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4074&view=rev Author: cclavadetscher Date: 2012-06-09 07:33:07 +0000 (Sat, 09 Jun 2012) Log Message: ----------- Last changes in application texts. Added Italian translation. Added German translation. List of updated and new texts: UPDATE: roles.help.userroles=Individual users may be assigned roles <b>in addition to</b> the roles assigned to them by GROUP_REGISTERED_USER or by other groups they belong to. Roles assigned by group membership are highlighted with a red background behing the corresponding checkbox. First, search for the user either by login, user role or group, then update the user's roles as appropriate. Users may need to re-login for changes to take effect. CREATE: group.header.modify=Create/Modify Group group.caption.selectgroup=Select group to update group.message.groupupdated=Group {0} was successfully updated group.message.groupadded=New Group {0} was successfully added group.message.groupfail=Error while adding or modifying group\: {0}. group.help.selectgroup=Select the group to update, or leave this value blank to create a new group. group.caption.groupname=Group name group.help.groupname=Valid characters for the name name are letters, numbers and underscores. Any other character, including spaces, is invalid. Once created a group name may not be modified. group.help.groupdescription=The group description is an optional field describing what users in this group are allowed to do. group.caption.groupdescription=Description of the group group.error.description=The group description is invalid. Group descriptions must be less than 200 characters. group.error.name=The group name {0} is invalid. Group names may contain only letters, numbers and underscores. roles.caption.groups=Groups roles.caption.searchgroup=Search for users by group Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_de.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-08 06:00:58
|
Revision: 4073 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4073&view=rev Author: cclavadetscher Date: 2012-06-08 06:00:52 +0000 (Fri, 08 Jun 2012) Log Message: ----------- Special:Roles Added visualization of role assignments through group membership. jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java: Added DB call to retrieve roles given to users through group membership. The information is managed by GroupMap. jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java: Added attributes and methods to manage users' roles assigned through group membership. jamwiki-core/src/main/resources/sql/sql.ansi.properties: Added statement STATEMENT_SELECT_GROUP_MAP_AUTHORITIES to retrieve role given to users through group membership. Notice that the other roles querying statements are not suitable or would have required more coding. A single statement for this task is more efficient. jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp: Added conditional display of checkbox background color for roles assigned to a user by group membership. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/sql/sql.ansi.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-07 06:33:17
|
Revision: 4072 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4072&view=rev Author: cclavadetscher Date: 2012-06-07 06:33:06 +0000 (Thu, 07 Jun 2012) Log Message: ----------- Bug fix: Deal correctly with empty groups: jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java: initialize empty lists to avoid NullPointerException jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java: check GroupMap of users for null and initialize an empty GroupMap if necessary. This is used when a user is removed from all user defined groups. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java wiki/branches/cclavadetscher/jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-06-07 02:40:43
|
Revision: 4071 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4071&view=rev Author: wrh2 Date: 2012-06-07 02:40:37 +0000 (Thu, 07 Jun 2012) Log Message: ----------- JAMWIKI-90: * Problem with history when using DB2 database. Reported with a fix by Dennis N Brown. Modified Paths: -------------- wiki/branches/1.2.x/jamwiki-core/src/main/resources/sql/sql.db2.properties wiki/branches/1.2.x/jamwiki-war/src/main/webapp/CHANGELOG.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-06 15:38:07
|
Revision: 4070 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4070&view=rev Author: cclavadetscher Date: 2012-06-06 15:37:54 +0000 (Wed, 06 Jun 2012) Log Message: ----------- Addition of checks for null values in group list. This bug was generated by the fact that there can be no groups to display, i.e. no groups other than GROUP_ANONYMOUS or GROUP_REGISTERED_USER. In previous versions the bug did not appear because there were always those two system groups. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp wiki/branches/cclavadetscher/jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-06 13:44:44
|
Revision: 4069 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4069&view=rev Author: cclavadetscher Date: 2012-06-06 13:44:34 +0000 (Wed, 06 Jun 2012) Log Message: ----------- Minor correction: the algorithm for reassigning groups first delete all group memberships of a user and then sets the new ones. With the last changes, the groups GROUP_ANONYMOUS and GROUP_REGISTERED_USER are not displayed. The effect is that those memberships are deleted and never restored. Althought this was clearly a bug, it did not have an effect on the application. jamwiki-core/src/main/resources/sql/sql.ansi.properties: correction of statement STATEMENT_DELETE_GROUP_MAP_USER not to delete group memberships to GROUP_ANONYMOUS and GROUP_REGISTERED_USER Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/sql/sql.ansi.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-06 12:03:23
|
Revision: 4068 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4068&view=rev Author: cclavadetscher Date: 2012-06-06 12:03:13 +0000 (Wed, 06 Jun 2012) Log Message: ----------- Minor changes after first review. Details: jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java: removed line import org.jamwiki.db.QueryHandler. jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java: removed line import org.jamwiki.db.DatabaseConnection. jamwiki-core/src/main/java/org/jamwiki/DataHandler.java: correction of javadoc comments. jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java: removed usage of StringBuffer from toString. Correction of javadoc comments. jamwiki-core/src/main/resources/sql/sql.ansi.properties: correction statement STATEMENT_SELECT_GROUPS to not return GROUP_ANONYMOUS and GROUP_REGISTERED_USER. Since these groups are created during setup, I assume that selecting the group_id > 2 does the job. jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp: removed unnecessary div closing tag. jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java: removed static modifier from method buildGroupMap. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/DataHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/sql/sql.ansi.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp wiki/branches/cclavadetscher/jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-05 10:38:16
|
Revision: 4067 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4067&view=rev Author: cclavadetscher Date: 2012-06-05 10:38:05 +0000 (Tue, 05 Jun 2012) Log Message: ----------- New functionality - Assign to and remove users from groups. - Search users by group. jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java: New container class for mappings of users contained in a group and groups that a user belongs to. jamwiki-core/src/main/resources/sql/sql.ansi.properties: SQL statements to select and delete the elements of a GroupMap. jamwiki-core/src/main/java/org/jamwiki/db/QueryHandler.java: Methods to retrieve and delete GroupMaps. jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java: Implementation of additions in QueryHandler.java jamwiki-core/src/main/java/org/jamwiki/DataHandler.java: Methods to get and write GroupMaps jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java: Implementation of changes in DataHandler.java jamwiki-war/src/main/resources/ApplicationResources.properties: New text fragments for new functionality. jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java: - Modification of searchRoles() to search users by groups. - Modification of assignRoles() to add assignment of users to groups. - Addition of call to searchRoles() at the end of assignRoles and deletion of call to view() in order to stay on page after modification to roles or group assignments. jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp: - New group column in user role assignment page. - New search drop box to search users by group. - Addition of hidden fields to repeat search after modifications and display the same page to the user. Next steps depending of answer to the following questions: - Should the GROUP_ANONYMOUS and GROUP_REGISTERED_USER be removed from the list of assignable groups? Does it make sense for a user assign or remove users from those groups? - Should the roles that are inherited through group membership be shown as checked and disabled? This would increase readability of the page. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/DataHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/QueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/sql/sql.ansi.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp wiki/branches/cclavadetscher/jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java Added Paths: ----------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/model/GroupMap.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-06-02 08:22:38
|
Revision: 4066 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4066&view=rev Author: cclavadetscher Date: 2012-06-02 08:22:32 +0000 (Sat, 02 Jun 2012) Log Message: ----------- Management of groups for access control (add/modify group) jamwiki-core/src/main/resources/sql/sql.ansi.properties: New SQL statements STATEMENT_GET_GROUPS to retrieve the list of WikiGroups jamwiki-core/src/main/java/org/jamwiki/DataHandler.java: New method getAllWikiGroups() to retrieve the list of WikiGroups jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java: Implementation of getAllWikiGroups() jamwiki-core/src/main/java/org/jamwiki/db/QueryHandler.java: New method getGroups() to retrieve the list of WikiGroups jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java: Implementation of getGroups() jamwiki-core/src/main/java/org/jamwiki/utils/WikiUtil.java: New method validateWikiGroup() to check name validity for groups jamwiki-war/src/main/resources/ApplicationResources.properties: New texts for group management jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java: New method modifyGroup() to handle group management requests jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java: Update of method view() to pass group list object to GUI jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp: New section #createGroup for the group management GUI Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/DataHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/QueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/utils/WikiUtil.java wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/sql/sql.ansi.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources.properties wiki/branches/cclavadetscher/jamwiki-war/src/main/webapp/WEB-INF/jsp/admin-roles.jsp wiki/branches/cclavadetscher/jamwiki-web/src/main/java/org/jamwiki/servlets/RolesServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-05-31 14:51:06
|
Revision: 4065 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4065&view=rev Author: cclavadetscher Date: 2012-05-31 14:50:55 +0000 (Thu, 31 May 2012) Log Message: ----------- Adapted SQL statement in STATEMENT_SELECT_AUTHORITIES_USER to include group roles assigments. The method using this statement, i.e. AnsiQueryHandler.getRoleMapUser() has been adapted as well. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/sql/sql.ansi.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-30 04:29:45
|
Revision: 4064 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4064&view=rev Author: wrh2 Date: 2012-05-30 04:29:39 +0000 (Wed, 30 May 2012) Log Message: ----------- Documentation: * Updated CHANGELOG. Modified Paths: -------------- wiki/branches/1.2.x/jamwiki-war/src/main/webapp/CHANGELOG.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-30 04:28:20
|
Revision: 4063 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4063&view=rev Author: wrh2 Date: 2012-05-30 04:28:14 +0000 (Wed, 30 May 2012) Log Message: ----------- Merge: * Merged revision(s) 4054-4062 from wiki/trunk. Modified Paths: -------------- wiki/branches/1.2.x/jamwiki-war/src/main/resources/ApplicationResources_it.properties wiki/branches/1.2.x/jamwiki-war/src/main/webapp/CREDITS.txt wiki/branches/1.2.x/pom.xml Added Paths: ----------- wiki/branches/1.2.x/jamwiki-core/src/main/resources/pages/it/ Property Changed: ---------------- wiki/branches/1.2.x/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-30 04:23:11
|
Revision: 4062 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4062&view=rev Author: wrh2 Date: 2012-05-30 04:23:05 +0000 (Wed, 30 May 2012) Log Message: ----------- Documentation: * Add Charles Clavadetscher (cclavadetscher) to CREDITS. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/webapp/CREDITS.txt wiki/trunk/pom.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-30 04:20:38
|
Revision: 4061 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4061&view=rev Author: wrh2 Date: 2012-05-30 04:20:32 +0000 (Wed, 30 May 2012) Log Message: ----------- Merge: * Merge changes from the cclavadetscher branch to trunk. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_it.properties Added Paths: ----------- wiki/trunk/jamwiki-core/src/main/resources/pages/it/ Property Changed: ---------------- wiki/trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-30 04:18:37
|
Revision: 4060 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4060&view=rev Author: wrh2 Date: 2012-05-30 04:18:30 +0000 (Wed, 30 May 2012) Log Message: ----------- Translations: * Update translations with correct property file escapes. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-05-29 07:40:05
|
Revision: 4059 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4059&view=rev Author: cclavadetscher Date: 2012-05-29 07:39:56 +0000 (Tue, 29 May 2012) Log Message: ----------- Last modification to Italian translation - ready for merge/deploy Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-27 18:25:21
|
Revision: 4058 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4058&view=rev Author: wrh2 Date: 2012-05-27 18:25:15 +0000 (Sun, 27 May 2012) Log Message: ----------- Translations: * Update translations with correct property file escapes and latest translations from trunk. Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-05-26 11:56:24
|
Revision: 4057 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4057&view=rev Author: cclavadetscher Date: 2012-05-26 11:56:18 +0000 (Sat, 26 May 2012) Log Message: ----------- Correction - Italian special characters HTML encoded Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-05-25 14:37:10
|
Revision: 4056 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4056&view=rev Author: cclavadetscher Date: 2012-05-25 14:37:04 +0000 (Fri, 25 May 2012) Log Message: ----------- Italian translation - first draft completed, ready for review Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-05-23 15:09:28
|
Revision: 4055 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4055&view=rev Author: cclavadetscher Date: 2012-05-23 15:09:19 +0000 (Wed, 23 May 2012) Log Message: ----------- Started Italian translation Modified Paths: -------------- wiki/branches/cclavadetscher/jamwiki-war/src/main/resources/ApplicationResources_it.properties wiki/branches/cclavadetscher/pom.xml Added Paths: ----------- wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/pages/it/ wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/pages/it/JAMWiki%3AFooter.txt wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/pages/it/JAMWiki%3AHeader.txt wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/pages/it/JAMWiki%3ASidebar.txt wiki/branches/cclavadetscher/jamwiki-core/src/main/resources/pages/it/StartingPoints.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-23 04:49:38
|
Revision: 4054 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4054&view=rev Author: wrh2 Date: 2012-05-23 04:49:32 +0000 (Wed, 23 May 2012) Log Message: ----------- Exp4j: * Fix exp4j Maven version. Reported by cclavadetscher. Modified Paths: -------------- wiki/trunk/pom.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ccl...@us...> - 2012-05-22 12:06:02
|
Revision: 4053 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4053&view=rev Author: cclavadetscher Date: 2012-05-22 12:05:51 +0000 (Tue, 22 May 2012) Log Message: ----------- Creating private branch cclavadetscher Added Paths: ----------- wiki/branches/cclavadetscher/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-01 03:14:21
|
Revision: 4052 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4052&view=rev Author: wrh2 Date: 2012-05-01 03:14:15 +0000 (Tue, 01 May 2012) Log Message: ----------- Create wrh2/wip branch. Added Paths: ----------- wiki/branches/wrh2/wip/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2012-05-01 03:02:40
|
Revision: 4051 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4051&view=rev Author: wrh2 Date: 2012-05-01 03:02:34 +0000 (Tue, 01 May 2012) Log Message: ----------- Search: * Upgrade to Lucene Search 3.6. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/webapp/CHANGELOG.txt wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/search/LuceneSearchEngine.java wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/servlets/UpgradeServlet.java wiki/trunk/pom.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <uni...@us...> - 2012-04-20 12:07:41
|
Revision: 4050 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=4050&view=rev Author: uniwueinfo2 Date: 2012-04-20 12:07:35 +0000 (Fri, 20 Apr 2012) Log Message: ----------- Added Paths: ----------- wiki/branches/uniwueinfo2/ Removed Paths: ------------- wiki/branches/3805327/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |