Index: lams_tool_vote/db/sql/tool_insert.sql =================================================================== diff -u -r40529cd9dba723f60bb5b2ae6143638371651625 -r37e069c3c0f79b2219988ca3443734df0e43fb7c --- lams_tool_vote/db/sql/tool_insert.sql (.../tool_insert.sql) (revision 40529cd9dba723f60bb5b2ae6143638371651625) +++ lams_tool_vote/db/sql/tool_insert.sql (.../tool_insert.sql) (revision 37e069c3c0f79b2219988ca3443734df0e43fb7c) @@ -55,7 +55,7 @@ 'Voting', 'Voting', 'vote', -'20061102', +'20061113', NULL, NULL, 0, Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteImportContentVersionFilter.java =================================================================== diff -u --- lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteImportContentVersionFilter.java (revision 0) +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteImportContentVersionFilter.java (revision 37e069c3c0f79b2219988ca3443734df0e43fb7c) @@ -0,0 +1,39 @@ +/*************************************************************************** + * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * ============================================================= + * License Information: http://lamsfoundation.org/licensing/lams/2.0/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2.0 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * ************************************************************************ + */ +package org.lamsfoundation.lams.tool.vote.service; + +import org.lamsfoundation.lams.learningdesign.service.ToolContentVersionFilter; + +/** + * Import filter class for different versions of Q&A content. + */ +public class VoteImportContentVersionFilter extends ToolContentVersionFilter{ + + /** + * Import 2.0RC1 version content to 2.0RC2 version. Added lock on finish + * field. + */ + public void up20061102To20061113(){ + // Change name to suit the version you give the tool. + } +}