jamwiki-commit Mailing List for JAMWiki (Page 38)
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: <wr...@us...> - 2011-01-12 00:55:24
|
Revision: 3424 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3424&view=rev Author: wrh2 Date: 2011-01-12 00:55:18 +0000 (Wed, 12 Jan 2011) Log Message: ----------- Configuration: * Oracle automatically converts empty string ("") to NULL, which breaks the NOT NULL constraint on the jam_configuration table. Add a workaround. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/db/AnsiQueryHandler.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-12 00:53:27
|
Revision: 3423 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3423&view=rev Author: wrh2 Date: 2011-01-12 00:53:20 +0000 (Wed, 12 Jan 2011) Log Message: ----------- Javascript: * Fix an issue with extra whitespace causing problems with database field pre-population for Oracle. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/webapp/WEB-INF/jsp/shared-db-javascript.jsp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-11 03:32:34
|
Revision: 3422 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3422&view=rev Author: wrh2 Date: 2011-01-11 03:32:28 +0000 (Tue, 11 Jan 2011) Log Message: ----------- Parser: * Fix category sort keys, which were incorrectly defaulting to the category name and causing incorrect sort order. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/JFlexParserUtil.java wiki/trunk/jamwiki-core/src/test/java/org/jamwiki/parser/jflex/ParserTest.java wiki/trunk/jamwiki-core/src/test/resources/data/results/WikiCategory wiki/trunk/jamwiki-core/src/test/resources/data/topics/WikiCategory This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-10 18:05:48
|
Revision: 3421 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3421&view=rev Author: wrh2 Date: 2011-01-10 18:05:41 +0000 (Mon, 10 Jan 2011) Log Message: ----------- Documentation: * Fix three minor errors in the 0.8.0 UPGRADE.txt instructions. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/webapp/UPGRADE.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-10 07:08:50
|
Revision: 3420 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3420&view=rev Author: wrh2 Date: 2011-01-10 07:08:44 +0000 (Mon, 10 Jan 2011) Log Message: ----------- Translation Updates: * Updated Russian translations (shar). Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_ru.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-09 22:57:17
|
Revision: 3419 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3419&view=rev Author: wrh2 Date: 2011-01-09 22:57:11 +0000 (Sun, 09 Jan 2011) Log Message: ----------- Search: * Add an option to disable autocommit during search updates. A test loader that I run spends an inordinate amount of time on the IndexWriter.commit() call. Disabling autocommit and using explicit SearchEngine.commit() calls decreases the time it takes to add/update a topic by ~20%. * Note that this change has no effect on core JAMWiki code since it is late in the development cycle and I did not want to introduce any functional changes. This will be an area to look into for JAMWiki 1.1.0. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/SearchEngine.java wiki/trunk/jamwiki-core/src/test/java/org/jamwiki/TestSearchEngine.java wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/search/LuceneSearchEngine.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-09 18:32:40
|
Revision: 3418 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3418&view=rev Author: wrh2 Date: 2011-01-09 18:32:34 +0000 (Sun, 09 Jan 2011) Log Message: ----------- Translation Updates: * Updated German translations (axelclk). Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_de.properties This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-09 18:11:11
|
Revision: 3417 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3417&view=rev Author: wrh2 Date: 2011-01-09 18:11:05 +0000 (Sun, 09 Jan 2011) Log Message: ----------- Special:Import: * Do not throw a "topic already exists" error if importing a topic when the existing topic name differs from the new topic in a case-sensitive way. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/migrate/MediaWikiXmlImporter.java wiki/trunk/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: <mic...@us...> - 2011-01-09 15:47:31
|
Revision: 3416 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3416&view=rev Author: michael-o Date: 2011-01-09 15:47:25 +0000 (Sun, 09 Jan 2011) Log Message: ----------- Removed dir for two reasons: 1. Dependencies should be accessed from a repository 2. direct include of a dep with scope system is deprecated since Maven 3 Removed Paths: ------------- wiki/trunk/repository/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-09 07:21:43
|
Revision: 3415 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3415&view=rev Author: wrh2 Date: 2011-01-09 07:21:37 +0000 (Sun, 09 Jan 2011) Log Message: ----------- Special:Import: * When importing Mediawiki XML the Special:Import tool should trim author names longer than 100 characters to conform to JAMWiki database limits. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/migrate/MediaWikiXmlImporter.java wiki/trunk/jamwiki-core/src/test/resources/data/files/mediawiki-export-one-topic-with-unsorted-history.xml wiki/trunk/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...> - 2011-01-08 08:12:52
|
Revision: 3414 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3414&view=rev Author: wrh2 Date: 2011-01-08 08:12:45 +0000 (Sat, 08 Jan 2011) Log Message: ----------- Documentation: * Add mosipov to the CREDITS file. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/webapp/CREDITS.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-08 02:12:23
|
Revision: 3413 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3413&view=rev Author: wrh2 Date: 2011-01-08 02:12:16 +0000 (Sat, 08 Jan 2011) Log Message: ----------- Parser: * Fix an issue that caused non-link signatures ("my sig") to display tildes instead of the signature text. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/WikiSignatureTag.java wiki/trunk/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...> - 2011-01-08 01:55:56
|
Revision: 3412 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3412&view=rev Author: wrh2 Date: 2011-01-08 01:55:50 +0000 (Sat, 08 Jan 2011) Log Message: ----------- Parser: * Refactor handling for includeonly, onlyinclude and noinclude. Instead of parsing these tags simultaneously with the rest of the template content add a separate parser pass to process just these tags. This fixes some issues where onlyinclude could cause infinite loops for content such as "<onlyinclude>content</onlyinclude> Example: {{template}}". Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/IncludeOnlyTag.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/JFlexParser.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/OnlyIncludeTag.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/TemplateTag.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-07 23:28:53
|
Revision: 3411 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3411&view=rev Author: wrh2 Date: 2011-01-07 23:28:47 +0000 (Fri, 07 Jan 2011) Log Message: ----------- Parser: * Make the parser's infinite loop detection more robust. * In testing with a very large sample data set I've found a couple of instances where invalid template nesting can throw the code into an infinite loop, so this change sets a limit of five infinite loop detections during a topic parse, after which the parser quits and simply returns the raw wiki text. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/Environment.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/ParserInput.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/JFlexLexer.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/JFlexParser.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/TemplateTag.java wiki/trunk/jamwiki-core/src/test/resources/data/results/TemplateInfinite2 wiki/trunk/jamwiki-core/src/test/resources/data/results/Transclusion1 wiki/trunk/jamwiki-war/src/main/webapp/CHANGELOG.txt Added Paths: ----------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/ExcessiveNestingException.java Removed Paths: ------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/ExcessiveNestingException.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mic...@us...> - 2011-01-07 23:28:16
|
Revision: 3410 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3410&view=rev Author: michael-o Date: 2011-01-07 23:28:10 +0000 (Fri, 07 Jan 2011) Log Message: ----------- - Split up logging into three appenders - Default one is stdout - Added some lines of comment - Added date/time to patterns as appropriate - added thread name to improve debugging information - truncated logger name to avoid long lines - Set context name to jamwiki to avoid name clashes with other webapps running with logback - fileNamePatterns added to the end to ease tab completion in shells Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/resources/logback.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-07 23:18:33
|
Revision: 3409 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3409&view=rev Author: wrh2 Date: 2011-01-07 23:18:27 +0000 (Fri, 07 Jan 2011) Log Message: ----------- Documentation: * Rephrase two CHANGELOG entries to improve clarity about what changed. Modified Paths: -------------- wiki/trunk/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: <mic...@us...> - 2011-01-07 23:11:12
|
Revision: 3408 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3408&view=rev Author: michael-o Date: 2011-01-07 23:11:06 +0000 (Fri, 07 Jan 2011) Log Message: ----------- Bump SLF4J and LogBack version 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: <wr...@us...> - 2011-01-07 22:22:13
|
Revision: 3407 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3407&view=rev Author: wrh2 Date: 2011-01-07 22:22:07 +0000 (Fri, 07 Jan 2011) Log Message: ----------- Parser: * Use the JFlexParserUtil.parseFragment utility method instead of custom code in IncludeOnlyTag, NoIncludeTag and OnlyIncludeTag. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/IncludeOnlyTag.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/NoIncludeTag.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/OnlyIncludeTag.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-07 20:33:30
|
Revision: 3406 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3406&view=rev Author: wrh2 Date: 2011-01-07 20:33:24 +0000 (Fri, 07 Jan 2011) Log Message: ----------- Parser: * Fix <onlyinclude> - the tag should not render its contents on the Template: page per http://en.wikipedia.org/wiki/Help:Template#onlyinclude Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/parser/jflex/OnlyIncludeTag.java wiki/trunk/jamwiki-core/src/test/resources/data/topics/Template_-_Onlyinclude Added Paths: ----------- wiki/trunk/jamwiki-core/src/test/resources/data/results/Template_-_Onlyinclude This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-05 18:02:37
|
Revision: 3405 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3405&view=rev Author: wrh2 Date: 2011-01-05 18:02:30 +0000 (Wed, 05 Jan 2011) Log Message: ----------- Cache: * Fix an issue where topic names differing by case might not be properly cleared from the cache. Reported by MaX. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/db/AnsiDataHandler.java wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/utils/WikiCache.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-05 07:14:42
|
Revision: 3404 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3404&view=rev Author: wrh2 Date: 2011-01-05 07:14:35 +0000 (Wed, 05 Jan 2011) Log Message: ----------- Special:Diff: * Clicking the "diff" button on the Special:History page for topics with only one revision should not generate a system error. Reported by shar. Modified Paths: -------------- wiki/trunk/jamwiki-war/src/main/webapp/CHANGELOG.txt wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/servlets/DiffServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-04 18:01:22
|
Revision: 3403 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3403&view=rev Author: wrh2 Date: 2011-01-04 18:01:16 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Tag the 0.9.5 release. Added Paths: ----------- wiki/tags/release-0.9.5/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-04 17:47:07
|
Revision: 3402 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3402&view=rev Author: wrh2 Date: 2011-01-04 17:47:01 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Logging: * Remove several references to the jamwiki.log file from WikiLogger as that is something that is likely to change. * Replace references to logging.properties with logback.xml. Modified Paths: -------------- wiki/trunk/jamwiki-core/src/main/java/org/jamwiki/utils/WikiLogger.java wiki/trunk/jamwiki-core/src/test/resources/ApplicationResources.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_da.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_de.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_es.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_fr.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_gl.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_hr.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_hu.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_it.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_ja.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_nl.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_no.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_pl.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_pt.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_pt_BR.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_ru.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_si_LK.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_sk.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_sv.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_uk.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_zh_CN.properties wiki/trunk/jamwiki-war/src/main/resources/ApplicationResources_zh_TW.properties wiki/trunk/jamwiki-war/src/main/webapp/README.txt wiki/trunk/jamwiki-war/src/main/webapp/UPGRADE.txt wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/servlets/SetupServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-04 06:56:22
|
Revision: 3401 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3401&view=rev Author: wrh2 Date: 2011-01-04 06:56:16 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Special:Upgrade: * Update a message key param from 0.7.0 to the correct value of 0.8.0. Modified Paths: -------------- wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/servlets/UpgradeServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2011-01-04 06:49:48
|
Revision: 3400 http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3400&view=rev Author: wrh2 Date: 2011-01-04 06:49:42 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Special:Upgrade: * While the scripts for upgrading from JAMWiki versions prior to 0.8.0 were removed in revision 3111, the code that actually verifies that the version is 0.8.0 or greater was not updated; fix that. Revision Links: -------------- http://jamwiki.svn.sourceforge.net/jamwiki/?rev=3111&view=rev Modified Paths: -------------- wiki/trunk/jamwiki-web/src/main/java/org/jamwiki/servlets/UpgradeServlet.java This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |