Index: lams_tool_vote/db/sql/tool_insert.sql =================================================================== RCS file: /usr/local/cvsroot/lams_tool_vote/db/sql/tool_insert.sql,v diff -u -r1.7 -r1.8 --- lams_tool_vote/db/sql/tool_insert.sql 3 Nov 2006 00:11:06 -0000 1.7 +++ lams_tool_vote/db/sql/tool_insert.sql 13 Nov 2006 20:35:40 -0000 1.8 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteImportContentVersionFilter.java,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/service/VoteImportContentVersionFilter.java 13 Nov 2006 20:35:40 -0000 1.1 @@ -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. + } +}