%
/******************************************************************************
* Copyright (c) 2000-2004 e-Deal
*
* e-Deal S.A.
* 55 rue Brillat Savarin
* 75013 Paris
* France
*
* T: +33 (0)1 53 80 80 30
* F: +33 (0)1 73 01 69 77
* http://www.e-deal.com
*
* La diffusion de ce code source sous quelque forme que ce soit sans
* l'autorisation de E-DEAL est interdite.
*
* Vous êtes autorisés à modifier ce code source uniquement pour votre usage
* propre et sous réserve que les mentions de copyright demeurent intactes.
*
* Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou
* implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour
* responsable des dommages pouvant résulter de l'utilisation de ce code
* source.
*
*
******************************************************************************/
%><%@page session="true" import="com.edeal.frontline.*,java.util.*,java.text.*,java.lang.reflect.*, com.edeal.frontline.navigation.*"%>
<%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %>
<%
final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
FlRequest flRequest = new FlRequest(request);
FlContext context = flRequest.getContext();
DataDictionary dico = context.getDataDictionary();
// get linkscriptelement ID parameter. Is null if this is the creation.
//String id = Utils.getRequestParameter(context, request, "id");
String id = null;
try{
ScriptPage.getID();
}catch(FieldNotInitializedException fnie){
id = flRequest.getRequestParameterOrAttribute("id");
}
// get scriptID. It's a param if this is the creation, get it from the linkscriptelementbean if this is an edition
String scriptID = null;
try {
scriptID = ScriptPage.getScpScriptID();
} catch (FieldNotInitializedException e) {
scriptID = flRequest.getRequestParameterOrAttribute("ScpScriptID");
}
if (scriptID == null) {
logger.warn("linkscriptelement/edit_body.jsp : I really need a script ID to do this!!");
}
int position = Integer.MIN_VALUE;
try {
position = ScriptPage.getScpPosition();
} catch (FieldNotInitializedException fnie) {
// get max page position
String[] fields = {"ScpID", "ScpPosition"};
String[][] query = {{"ScpScriptID = " + Utils.formatToSQL(context , scriptID)}};
String[] orderBy = {"ScpPosition DESC"};
Vector posList = ScriptPageBean.listSummary(session, fields, query, orderBy);
if (posList != null && posList.size() > 0) {
Number maxPosition = (Number)((Hashtable)posList.elementAt(0)).get("ScpPosition");
if (maxPosition != null) {
position = maxPosition.intValue() + 10;
}
}
}
if (position == Integer.MIN_VALUE) {
position = 10;
}
ScriptPage.setScpPosition(position);
%>