You can subscribe to this list here.
2003 |
Jan
|
Feb
(14) |
Mar
(107) |
Apr
(211) |
May
(93) |
Jun
(158) |
Jul
(159) |
Aug
(368) |
Sep
(188) |
Oct
(151) |
Nov
(115) |
Dec
(98) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(25) |
Feb
|
Mar
(33) |
Apr
(28) |
May
(116) |
Jun
(2) |
Jul
(117) |
Aug
(19) |
Sep
(9) |
Oct
(2) |
Nov
|
Dec
(4) |
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(9) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
(22) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(267) |
Sep
|
Oct
|
Nov
(6) |
Dec
(512) |
2008 |
Jan
(187) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Santi B. <san...@us...> - 2007-12-09 23:34:48
|
Update of /cvsroot/babeldoc/babeldoc/modules/web/build/console/journal In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17425/modules/web/build/console/journal Log Message: Directory /cvsroot/babeldoc/babeldoc/modules/web/build/console/journal added to the repository |
From: Santi B. <san...@us...> - 2007-12-09 23:34:48
|
Update of /cvsroot/babeldoc/babeldoc/modules/web/build/console/WEB-INF/classes/com/babeldoc/web/context In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17425/modules/web/build/console/WEB-INF/classes/com/babeldoc/web/context Log Message: Directory /cvsroot/babeldoc/babeldoc/modules/web/build/console/WEB-INF/classes/com/babeldoc/web/context added to the repository |
From: Santi B. <san...@us...> - 2007-12-09 23:34:48
|
Update of /cvsroot/babeldoc/babeldoc/modules/web/build/console/WEB-INF/classes/com/babeldoc/web In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17425/modules/web/build/console/WEB-INF/classes/com/babeldoc/web Log Message: Directory /cvsroot/babeldoc/babeldoc/modules/web/build/console/WEB-INF/classes/com/babeldoc/web added to the repository |
From: Santi B. <san...@us...> - 2007-12-09 23:34:48
|
Update of /cvsroot/babeldoc/babeldoc/modules/web/build/console/WEB-INF/lib In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17425/modules/web/build/console/WEB-INF/lib Log Message: Directory /cvsroot/babeldoc/babeldoc/modules/web/build/console/WEB-INF/lib added to the repository |
From: Santi B. <san...@us...> - 2007-12-09 23:34:47
|
Update of /cvsroot/babeldoc/babeldoc/modules/web/build/META-INF/services In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17425/modules/web/build/META-INF/services Log Message: Directory /cvsroot/babeldoc/babeldoc/modules/web/build/META-INF/services added to the repository |
From: Santi B. <san...@us...> - 2007-12-09 23:22:32
|
Update of /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/pipeline/stage In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12797/src/com/babeldoc/jabber/pipeline/stage Modified Files: XmppWriterPipelineStage.java MessageDeliveryStatus.java PipelineMessageEventNotificationListener.java Log Message: Changed the metod to controls the singleton of MesageDeliveryStatus. Don't raise exception, set an error condition. Index: XmppWriterPipelineStage.java =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/pipeline/stage/XmppWriterPipelineStage.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** XmppWriterPipelineStage.java 9 Dec 2007 01:01:43 -0000 1.4 --- XmppWriterPipelineStage.java 9 Dec 2007 23:22:34 -0000 1.5 *************** *** 243,246 **** --- 243,253 ---- Thread.sleep(15); } + if(deliveryStatus.getDeliveryStatus(message.getPacketID()) == MessageDeliveryStatus.ERROR || + deliveryStatus.getDeliveryStatus(message.getPacketID()) == MessageDeliveryStatus.NOT_INITIATED){ + throw new PipelineException("Can't determine de delivery status."); + } + if(deliveryStatus.getDeliveryStatus(message.getPacketID()) == MessageDeliveryStatus.OFFLINE) + throw new PipelineException("Can't send the message, the user is offline."); + } catch (InterruptedException e) { throw new PipelineException( *************** *** 253,258 **** throw new PipelineException("Error sending message", xme); // xme.printStackTrace(); - } catch (MessageStatusException e) { - throw new PipelineException("Can't read message status."); } --- 260,263 ---- Index: PipelineMessageEventNotificationListener.java =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/pipeline/stage/PipelineMessageEventNotificationListener.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PipelineMessageEventNotificationListener.java 9 Dec 2007 01:01:43 -0000 1.1 --- PipelineMessageEventNotificationListener.java 9 Dec 2007 23:22:34 -0000 1.2 *************** *** 21,30 **** // Message was delivered, wait until displayed deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! try { ! deliveredStatus.setDeliveryStatus(arg0, arg1); ! } catch (MessageStatusException e) { ! //TODO some sort of pipeline exception ! System.out.println("Singleton error: " + e.getMessage()); ! } } --- 21,25 ---- // Message was delivered, wait until displayed deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! deliveredStatus.setDeliveryStatus(arg0, arg1); } *************** *** 33,42 **** // Message was displayed, piepline success deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! try { ! deliveredStatus.setDeliveryStatus(arg0, arg1); ! } catch (MessageStatusException e) { ! //TODO some sort of pipeline exception ! System.out.println("Singleton error: " + e.getMessage()); ! } } --- 28,32 ---- // Message was displayed, piepline success deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! deliveredStatus.setDeliveryStatus(arg0, arg1); } *************** *** 44,53 **** // The user is offline, pipeline fails deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! try { ! deliveredStatus.setDeliveryStatus(arg0, arg1); ! } catch (MessageStatusException e) { ! //TODO some sort of pipeline exception ! System.out.println("Singleton error: " + e.getMessage()); ! } } --- 34,38 ---- // The user is offline, pipeline fails deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! deliveredStatus.setDeliveryStatus(arg0, arg1); } Index: MessageDeliveryStatus.java =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/pipeline/stage/MessageDeliveryStatus.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MessageDeliveryStatus.java 9 Dec 2007 01:01:43 -0000 1.1 --- MessageDeliveryStatus.java 9 Dec 2007 23:22:34 -0000 1.2 *************** *** 13,16 **** --- 13,18 ---- public static final String DISPLAYED = MessageEvent.DISPLAYED; public static final String SENDING = "SENDING"; + public static final String ERROR = "ERROR"; + public static final String NOT_INITIATED = "NOT INITIATED"; private HashMap map; *************** *** 36,64 **** return messageStatus; } ! public String getDeliveryStatus (String packetID) throws MessageStatusException { ! if(messageStatus == null){ ! throw new MessageStatusException("Message Status not init."); ! } ! else if (!map.containsKey(packetID)){ ! throw new MessageStatusException("This message is not init."); ! } ! else ! return map.get(packetID).toString(); } ! public synchronized void setDeliveryStatus(String packetID, String status) throws MessageStatusException { if(messageStatus == null) ! throw new MessageStatusException("Message not registered."); ! if(map.containsKey(packetID)){ ! // They are the same ! if(map.get(packetID) == status) ! throw new MessageStatusException("Can't put the same state twice"); ! ! } ! else { map.put(packetID, status); ! } } - } --- 38,90 ---- return messageStatus; } ! // public String getDeliveryStatus (String packetID) throws MessageStatusException { ! // if(messageStatus == null){ ! // throw new MessageStatusException("Message Status not init."); ! // } ! // else if (!map.containsKey(packetID)){ ! // throw new MessageStatusException("This message is not init."); ! // } ! // else ! // return map.get(packetID).toString(); ! // } ! /** ! * This metod was modified to don't raise a exception. ! * We can assume that if the singleton is not init we can do safely ! */ ! public String getDeliveryStatus (String packetID){ ! if(messageStatus == null) ! messageStatus = new MessageDeliveryStatus(); ! if(!map.containsKey(packetID)) ! setDeliveryStatus(packetID, MessageDeliveryStatus.NOT_INITIATED); ! return map.get(packetID).toString(); } ! // public synchronized void setDeliveryStatus(String packetID, String status) throws MessageStatusException { ! // ! // if(messageStatus == null) ! // throw new MessageStatusException("Message not registered."); ! // if(map.containsKey(packetID)){ ! // // They are the same ! // if(map.get(packetID) == status) ! // throw new MessageStatusException("Can't put the same state twice"); ! // ! // } ! // else { ! // map.put(packetID, status); ! // } ! // } + /** + * The same as for the getDeliveryStatus. + */ + public synchronized void setDeliveryStatus(String packetID, String status){ if(messageStatus == null) ! messageStatus = new MessageDeliveryStatus(); ! if(map.containsKey(packetID) && map.get(packetID)==status){ ! setDeliveryStatus(packetID, MessageDeliveryStatus.ERROR); ! } else map.put(packetID, status); ! ! } } |
Update of /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/pipeline/stage In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096/src/com/babeldoc/jabber/pipeline/stage Modified Files: XmppWriterPipelineStage.java Added Files: MessageStatusException.java PipelineMessageEventNotificationListener.java MessageDeliveryStatus.java Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. Index: XmppWriterPipelineStage.java =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/pipeline/stage/XmppWriterPipelineStage.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** XmppWriterPipelineStage.java 4 Dec 2007 00:27:42 -0000 1.3 --- XmppWriterPipelineStage.java 9 Dec 2007 01:01:43 -0000 1.4 *************** *** 74,77 **** --- 74,79 ---- import org.jivesoftware.smack.XMPPConnection; import org.jivesoftware.smack.XMPPException; + import org.jivesoftware.smack.packet.Message; + import org.jivesoftware.smackx.MessageEventManager; import org.jivesoftware.smackx.muc.MultiUserChat; *************** *** 91,111 **** public class XmppWriterPipelineStage extends GenericWriterPipelineStage { ! public static final String HOST = "host"; ! public static final String PORT = "port"; ! public static final String USERNAME = "username"; ! public static final String PASSWORD = "password"; ! public static final String RECIPIENTS = "recipients"; public static final String CHATROOM = "chatroom"; //$NON-NLS-1$ ! public static final String NICKNAME = "nickname"; ! public static final String SSL = Messages.getString("XmppWriterPipelineStage.7"); public XmppWriterPipelineStage() { super(new PipelineStageInfo() { public String getName() { ! return "XmppWriter"; } public String getDescription() { ! return Messages.getString("XmppWriterPipelineStage.9"); //$NON-NLS-1$ } --- 93,127 ---- public class XmppWriterPipelineStage extends GenericWriterPipelineStage { ! /** ! * ! */ ! private static final long serialVersionUID = -4487658270290844665L; ! public static final String HOST = "host"; //$NON-NLS-1$ ! public static final String PORT = "port"; //$NON-NLS-1$ ! public static final String USERNAME = "username"; //$NON-NLS-1$ ! public static final String PASSWORD = "password"; //$NON-NLS-1$ ! public static final String RECIPIENTS = "recipients"; //$NON-NLS-1$ public static final String CHATROOM = "chatroom"; //$NON-NLS-1$ ! public static final String NICKNAME = "nickname"; //$NON-NLS-1$ ! public static final String SSL = "ssl"; //$NON-NLS-1$ ! public static final String WAIT_DELIVERY = "waitUntilDelivery"; //$NON-NLS-1$ ! public static final String MESSAGE = "notificationMessage"; //$NON-NLS-1$ ! public static final String ANSWER = "answer"; //$NON-NLS-1$ ! ! MessageDeliveryStatus deliveryStatus = null; public XmppWriterPipelineStage() { super(new PipelineStageInfo() { + /** + * + */ + private static final long serialVersionUID = 1L; + public String getName() { ! return "XmppWriter"; //$NON-NLS-1$ } public String getDescription() { ! return "Pipeline stage that use XMPP (Jabber) protocol for sending messages"; } *************** *** 113,139 **** ArrayList options = new ArrayList(); ! options.add(new ConfigOption(HOST, IConfigOptionType.STRING, ! "jabber.org", false, Messages.getString("XmppWriterPipelineStage.11"))); options.add(new ConfigOption(PORT, IConfigOptionType.INTEGER, ! "5222", false, ! Messages.getString("XmppWriterPipelineStage.13"))); //$NON-NLS-1$ options.add(new ConfigOption(USERNAME, ! IConfigOptionType.STRING, null, true, ! Messages.getString("XmppWriterPipelineStage.14"))); //$NON-NLS-1$ options.add(new ConfigOption(PASSWORD, ! IConfigOptionType.STRING, null, true, ! Messages.getString("XmppWriterPipelineStage.15"))); //$NON-NLS-1$ ! options ! .add(new ConfigOption(RECIPIENTS, ! IConfigOptionType.STRING, null, false, ! Messages.getString("XmppWriterPipelineStage.16"))); //$NON-NLS-1$ options.add(new ConfigOption(CHATROOM, ! IConfigOptionType.STRING, null, false, ! Messages.getString("XmppWriterPipelineStage.17"))); //$NON-NLS-1$ options.add(new ConfigOption(NICKNAME, ! IConfigOptionType.STRING, null, false, ! Messages.getString("XmppWriterPipelineStage.18"))); //$NON-NLS-1$ ! options.add(new ConfigOption(SSL, IConfigOptionType.BOOLEAN, ! "false", false, Messages.getString("XmppWriterPipelineStage.20"))); //$NON-NLS-1$ //$NON-NLS-2$ return options; --- 129,164 ---- ArrayList options = new ArrayList(); ! options ! .add(new ConfigOption( ! HOST, ! IConfigOptionType.STRING, ! "jabber.org", false, "Jabber server name")); //$NON-NLS-1$ options.add(new ConfigOption(PORT, IConfigOptionType.INTEGER, ! "5222", false, //$NON-NLS-1$ ! "Port using for connecting. Defaults to 5222")); options.add(new ConfigOption(USERNAME, ! IConfigOptionType.STRING, null, true, "Jabber account name")); options.add(new ConfigOption(PASSWORD, ! IConfigOptionType.STRING, null, true, "Jabber account password")); ! options.add(new ConfigOption(RECIPIENTS, ! IConfigOptionType.STRING, null, false, "Comma separated list of recipients that should receive IM")); options.add(new ConfigOption(CHATROOM, ! IConfigOptionType.STRING, null, false, "Name of chatroom that should receive IM")); options.add(new ConfigOption(NICKNAME, ! IConfigOptionType.STRING, null, false, "Nickname used for chatrooms")); ! options ! .add(new ConfigOption( ! SSL, ! IConfigOptionType.BOOLEAN, ! "false", false, "Use ssl connections")); //$NON-NLS-1$ ! options ! .add(new ConfigOption( ! WAIT_DELIVERY, ! IConfigOptionType.BOOLEAN, ! "false", false, "Wait until delivery event notification")); //$NON-NLS-1$ ! options.add(new ConfigOption(MESSAGE, IConfigOptionType.STRING, ! null, false, "Notification message to send")); ! options.add(new ConfigOption(ANSWER, IConfigOptionType.STRING, ! null, false, "Expected answer for send document")); return options; *************** *** 148,194 **** */ public PipelineStageResult[] process() throws PipelineException { ! String host = this.getInfo().getStrValue(HOST); ! int port = this.getInfo().getIntValue(PORT); ! String username = this.getInfo().getStrValue(USERNAME); ! String password = this.getInfo().getStrValue(PASSWORD); ! String[] recipients = StringUtils.split(this.getInfo().getStrValue( ! RECIPIENTS), ","); ! String chatroom = this.getInfo().getStrValue(CHATROOM); ! String nickname = this.getInfo().getStrValue(NICKNAME); ! boolean useSSL = this.getInfo().getBooleanValue(SSL); ConnectionConfiguration connConfig = null; XMPPConnection conn = null; MultiUserChat groupChat = null; ! String message = this.getContent(); try { if (useSSL) { // conn = new SSLXMPPConnection(host); ! throw new PipelineException("SSL Protocol not supported"); } else { ! connConfig = new ConnectionConfiguration(host,port); conn = new XMPPConnection(connConfig); ! } conn.login(username, password); for (int i = 0; i < recipients.length; i++) { Chat chat = conn.getChatManager().createChat(recipients[i], new XmppPipelineMessageListener()); chat.sendMessage(message); } ! if (chatroom != null && !"".equals(chatroom)) { // GroupChat chat = conn.createGroupChat(chatroom); // chat.sendMessage(message); groupChat.join(nickname, password); groupChat.sendMessage(message); } conn.disconnect(); } catch (XMPPException xme) { ! throw new PipelineException("Error sending message", xme); // xme.printStackTrace(); } return this.processHelper(); } - } --- 173,261 ---- */ public PipelineStageResult[] process() throws PipelineException { ! final String host = this.getInfo().getStrValue(HOST); ! final int port = this.getInfo().getIntValue(PORT); ! final String username = this.getInfo().getStrValue(USERNAME); ! final String password = this.getInfo().getStrValue(PASSWORD); ! final String[] recipients = StringUtils.split(this.getInfo().getStrValue( ! RECIPIENTS), ","); //$NON-NLS-1$ ! final String chatroom = this.getInfo().getStrValue(CHATROOM); ! final String nickname = this.getInfo().getStrValue(NICKNAME); ! final boolean useSSL = this.getInfo().getBooleanValue(SSL); ! boolean waitDelivery = this.getInfo().getBooleanValue(WAIT_DELIVERY); ! final String notificationMessage = this.getInfo().getStrValue(MESSAGE); ! final String answer = this.getInfo().getStrValue(ANSWER); ! ! deliveryStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); ! ConnectionConfiguration connConfig = null; XMPPConnection conn = null; MultiUserChat groupChat = null; ! Message message = null; ! try { if (useSSL) { // conn = new SSLXMPPConnection(host); ! throw new PipelineException("SSL Protocol not supported"); } else { ! connConfig = new ConnectionConfiguration(host, port); conn = new XMPPConnection(connConfig); ! } + MessageEventManager messageEventManager = new MessageEventManager( + conn); + messageEventManager + .addMessageEventNotificationListener(new PipelineMessageEventNotificationListener()); + conn.login(username, password); for (int i = 0; i < recipients.length; i++) { Chat chat = conn.getChatManager().createChat(recipients[i], new XmppPipelineMessageListener()); + message = new Message(); + message.setBody(notificationMessage); + message.setType(Message.Type.chat); + MessageEventManager.addNotificationsRequests(message, true, + true, true, true); + deliveryStatus.setDeliveryStatus(message.getPacketID(), + MessageDeliveryStatus.SENDING); chat.sendMessage(message); + } ! if (chatroom != null && !"".equals(chatroom)) { //$NON-NLS-1$ // GroupChat chat = conn.createGroupChat(chatroom); // chat.sendMessage(message); + + // If send message to a group dont wait for delivery + waitDelivery = false; groupChat.join(nickname, password); + message = groupChat.createMessage(); + message.setSubject(notificationMessage); + message.setBody(notificationMessage); + message.setType(Message.Type.groupchat); + // MessageEventManager.addNotificationsRequests(message, true, true, true, true); groupChat.sendMessage(message); } + if (waitDelivery) { + try { + while (deliveryStatus.getDeliveryStatus(message + .getPacketID()) == MessageDeliveryStatus.SENDING) { + + Thread.sleep(15); + } + } catch (InterruptedException e) { + throw new PipelineException( + "Pipeline aborted while waiting for delivery."); + + } + } conn.disconnect(); } catch (XMPPException xme) { ! throw new PipelineException("Error sending message", xme); // xme.printStackTrace(); + } catch (MessageStatusException e) { + throw new PipelineException("Can't read message status."); } return this.processHelper(); } } --- NEW FILE: PipelineMessageEventNotificationListener.java --- package com.babeldoc.jabber.pipeline.stage; import org.jivesoftware.smackx.MessageEventNotificationListener; public class PipelineMessageEventNotificationListener implements MessageEventNotificationListener { private static MessageDeliveryStatus deliveredStatus = null; public void cancelledNotification(String arg0, String arg1) { // Ignore this notification } public void composingNotification(String arg0, String arg1) { // Ignore this notification } public void deliveredNotification(String arg0, String arg1) { // Message was delivered, wait until displayed deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); try { deliveredStatus.setDeliveryStatus(arg0, arg1); } catch (MessageStatusException e) { //TODO some sort of pipeline exception System.out.println("Singleton error: " + e.getMessage()); } } public void displayedNotification(String arg0, String arg1) { // Message was displayed, piepline success deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); try { deliveredStatus.setDeliveryStatus(arg0, arg1); } catch (MessageStatusException e) { //TODO some sort of pipeline exception System.out.println("Singleton error: " + e.getMessage()); } } public void offlineNotification(String arg0, String arg1) { // The user is offline, pipeline fails deliveredStatus = MessageDeliveryStatus.getMessageDeliveryStatus(); try { deliveredStatus.setDeliveryStatus(arg0, arg1); } catch (MessageStatusException e) { //TODO some sort of pipeline exception System.out.println("Singleton error: " + e.getMessage()); } } } --- NEW FILE: MessageDeliveryStatus.java --- package com.babeldoc.jabber.pipeline.stage; import java.util.HashMap; import org.jivesoftware.smackx.packet.MessageEvent; public class MessageDeliveryStatus { public static final String DELIVERED = MessageEvent.DELIVERED; public static final String OFFLINE = MessageEvent.OFFLINE; public static final String CANCELLED = MessageEvent.CANCELLED; public static final String COMPOSING = MessageEvent.COMPOSING; public static final String DISPLAYED = MessageEvent.DISPLAYED; public static final String SENDING = "SENDING"; private HashMap map; private MessageDeliveryStatus() { } private static MessageDeliveryStatus messageStatus; public MessageDeliveryStatus newMessage(String packetID) { if (this.map.containsKey(packetID)){ return (this); } else { this.map.put(packetID, "false"); return(this); } } public static synchronized MessageDeliveryStatus getMessageDeliveryStatus() { if(messageStatus == null) messageStatus = new MessageDeliveryStatus(); return messageStatus; } public String getDeliveryStatus (String packetID) throws MessageStatusException { if(messageStatus == null){ throw new MessageStatusException("Message Status not init."); } else if (!map.containsKey(packetID)){ throw new MessageStatusException("This message is not init."); } else return map.get(packetID).toString(); } public synchronized void setDeliveryStatus(String packetID, String status) throws MessageStatusException { if(messageStatus == null) throw new MessageStatusException("Message not registered."); if(map.containsKey(packetID)){ // They are the same if(map.get(packetID) == status) throw new MessageStatusException("Can't put the same state twice"); } else { map.put(packetID, status); } } } --- NEW FILE: MessageStatusException.java --- package com.babeldoc.jabber.pipeline.stage; import com.babeldoc.core.GeneralException; public class MessageStatusException extends GeneralException { /** * */ private static final long serialVersionUID = -3324619817342835619L; /** * */ public MessageStatusException() { super(); } /** * @param message * @param exception */ public MessageStatusException(String message, Throwable exception) { super(message, exception); } /** * @param message */ public MessageStatusException(String message) { super(message); } } |
From: Santi B. <san...@us...> - 2007-12-09 01:01:40
|
Update of /cvsroot/babeldoc/modules/jabber/.externalToolBuilders In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096/.externalToolBuilders Added Files: jabber.launch Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. --- NEW FILE: jabber.launch --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="setup,clean,build,deploy,"/> <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> <listEntry value="/babeldoc_jabber/build.xml"/> </listAttribute> <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> <listEntry value="1"/> </listAttribute> <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/> <booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="true"/> <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="babeldoc_jabber"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/babeldoc_jabber/build.xml}"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,auto,"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/babeldoc_jabber}"/> </launchConfiguration> |
From: Santi B. <san...@us...> - 2007-12-09 01:01:40
|
Update of /cvsroot/babeldoc/modules/jabber In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096 Modified Files: .project build.properties .classpath build.xml Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. Index: .project =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .project 4 Dec 2007 00:27:42 -0000 1.1 --- .project 9 Dec 2007 01:01:43 -0000 1.2 *************** *** 4,7 **** --- 4,8 ---- <comment></comment> <projects> + <project>babeldoc</project> </projects> <buildSpec> *************** *** 11,14 **** --- 12,25 ---- </arguments> </buildCommand> + <buildCommand> + <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> + <triggers>auto,full,incremental,</triggers> + <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/jabber.launch</value> + </dictionary> + </arguments> + </buildCommand> </buildSpec> <natures> Index: build.xml =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 5 Dec 2003 23:40:34 -0000 1.2 --- build.xml 9 Dec 2007 01:01:43 -0000 1.3 *************** *** 45,49 **** </javac> ! <!-- Copy the configuration files to build/core/... --> <mkdir dir="${module_path}/${Module}"/> <copy toDir="${module_path}/${Module}"> --- 45,49 ---- </javac> ! <!-- Copy the configuration files to build/jabber/... --> <mkdir dir="${module_path}/${Module}"/> <copy toDir="${module_path}/${Module}"> Index: build.properties =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/build.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.properties 5 Dec 2003 23:40:34 -0000 1.2 --- build.properties 9 Dec 2007 01:01:43 -0000 1.3 *************** *** 4,7 **** ModuleClass=com.babeldoc.jabber.module.XmppWriterModule ! babeldoc_home=../../Babeldoc/build --- 4,9 ---- ModuleClass=com.babeldoc.jabber.module.XmppWriterModule ! babeldoc_home=../babeldoc/build ! custom = true ! Index: .classpath =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/.classpath,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .classpath 4 Dec 2007 00:27:42 -0000 1.1 --- .classpath 9 Dec 2007 01:01:43 -0000 1.2 *************** *** 4,10 **** <classpathentry kind="src" path="config"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry combineaccessrules="false" exported="true" kind="src" path="/babeldoc"/> ! <classpathentry kind="lib" path="lib/smack.jar"/> ! <classpathentry kind="lib" path="lib/smackx.jar"/> <classpathentry kind="output" path="build"/> </classpath> --- 4,10 ---- <classpathentry kind="src" path="config"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry combineaccessrules="false" kind="src" path="/babeldoc"/> ! <classpathentry exported="true" kind="lib" path="lib/smack.jar"/> ! <classpathentry exported="true" kind="lib" path="lib/smackx.jar"/> <classpathentry kind="output" path="build"/> </classpath> |
From: Santi B. <san...@us...> - 2007-12-09 01:01:40
|
Update of /cvsroot/babeldoc/modules/jabber/.settings In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096/.settings Added Files: org.eclipse.ltk.core.refactoring.prefs org.eclipse.wst.validation.prefs Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. --- NEW FILE: org.eclipse.wst.validation.prefs --- #Sat Dec 08 16:26:41 CET 2007 DELEGATES_PREFERENCE=delegateValidatorListorg.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator\=org.eclipse.wst.xsd.core.internal.validation.eclipse.Validator;org.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator\=org.eclipse.wst.wsdl.validation.internal.eclipse.Validator; USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator; USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator; USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.1.101.v200706071630 eclipse.preferences.version=1 --- NEW FILE: org.eclipse.ltk.core.refactoring.prefs --- #Sat Dec 08 16:26:44 CET 2007 eclipse.preferences.version=1 org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false |
From: Santi B. <san...@us...> - 2007-12-09 01:01:40
|
Update of /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/module In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096/src/com/babeldoc/jabber/module Modified Files: XmppWriterModule.java Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. Index: XmppWriterModule.java =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/src/com/babeldoc/jabber/module/XmppWriterModule.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XmppWriterModule.java 5 Dec 2003 23:40:10 -0000 1.1 --- XmppWriterModule.java 9 Dec 2007 01:01:43 -0000 1.2 *************** *** 71,103 **** import java.util.Set; - /** ! * This is the jfreereports module - it doesn't do very much except support the dependsOn. ! * * @author MCA * @version 1.0 */ public class XmppWriterModule extends BabeldocModule { ! public static final String MODULE = "jabber"; ! /** ! * jabber module only depends on core ! * ! * @return ! */ ! public Set getDependsOn() { ! Set set = new HashSet(); ! set.add("core"); ! return set; ! } ! /** ! * The Name of the module is jfreereports ! * ! * @return ! */ ! public String getName() { ! return MODULE; ! } } --- 71,107 ---- import java.util.Set; /** ! * This is the jfreereports module - it doesn't do very much except support the ! * dependsOn. ! * * @author MCA * @version 1.0 */ public class XmppWriterModule extends BabeldocModule { ! /** ! * ! */ ! private static final long serialVersionUID = 7745617813378787658L; ! public static final String MODULE = "jabber"; ! /** ! * jabber module only depends on core ! * ! * @return ! */ ! public Set getDependsOn() { ! Set set = new HashSet(); ! set.add("core"); ! return set; ! } ! /** ! * The Name of the module is jfreereports ! * ! * @return ! */ ! public String getName() { ! return MODULE; ! } } |
From: Santi B. <san...@us...> - 2007-12-09 01:01:40
|
Update of /cvsroot/babeldoc/modules/jabber/config/i18n In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096/config/i18n Modified Files: messages.properties Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. Index: messages.properties =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/config/i18n/messages.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** messages.properties 4 Dec 2007 00:27:42 -0000 1.3 --- messages.properties 9 Dec 2007 01:01:43 -0000 1.4 *************** *** 1,13 **** XmppPipelineMessageListener.0=Received message: XmppPipelineMessageListener.1=Can't send message to recipient. ! XmppWriterPipelineStage.9=Pipeline stage that use XMPP (Jabber) protocol for sending messages ! XmppWriterPipelineStage.11=Jabber server name ! XmppWriterPipelineStage.13=Port using for connecting. Defaults to 5222 ! XmppWriterPipelineStage.14=Jabber account name ! XmppWriterPipelineStage.15=Jabber account password ! XmppWriterPipelineStage.16=Comma separated list of recipients that should receive IM ! XmppWriterPipelineStage.17=Name of chatroom that should receive IM ! XmppWriterPipelineStage.18=Nickname used for chatrooms ! XmppWriterPipelineStage.20=Use ssl connections XmppWriterPipelineStage.22=SSL Protocol not supported XmppWriterPipelineStage.24=Error sending message --- 1,5 ---- XmppPipelineMessageListener.0=Received message: XmppPipelineMessageListener.1=Can't send message to recipient. ! XmppWriterPipelineStage.4=Pipeline interrupted waiting for message delivery XmppWriterPipelineStage.22=SSL Protocol not supported XmppWriterPipelineStage.24=Error sending message |
From: Santi B. <san...@us...> - 2007-12-09 01:01:32
|
Update of /cvsroot/babeldoc/modules/jabber/.settings In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24080/.settings Log Message: Directory /cvsroot/babeldoc/modules/jabber/.settings added to the repository |
From: Santi B. <san...@us...> - 2007-12-09 01:01:30
|
Update of /cvsroot/babeldoc/modules/jabber/.externalToolBuilders In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24080/.externalToolBuilders Log Message: Directory /cvsroot/babeldoc/modules/jabber/.externalToolBuilders added to the repository |
From: Santi B. <san...@us...> - 2007-12-08 17:17:48
|
Update of /cvsroot/babeldoc/babeldoc/.externalToolBuilders In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7459/.externalToolBuilders Modified Files: babeldoc.launch Added Files: org.eclipse.wst.common.project.facet.core.builder.launch org.eclipse.jdt.core.javabuilder (1).launch org.eclipse.wst.validation.validationbuilder (1).launch Log Message: Eclipse configuration mods. --- NEW FILE: org.eclipse.wst.common.project.facet.core.builder.launch --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_BUILDER_ENABLED" value="false"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_DISABLED_BUILDER" value="org.eclipse.wst.common.project.facet.core.builder"/> <mapAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> </launchConfiguration> Index: babeldoc.launch =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.externalToolBuilders/babeldoc.launch,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** babeldoc.launch 8 Dec 2007 15:13:41 -0000 1.1 --- babeldoc.launch 8 Dec 2007 17:17:47 -0000 1.2 *************** *** 7,10 **** --- 7,11 ---- <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="true"/> + <stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/> <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> <listEntry value="/babeldoc/build.xml"/> *************** *** 16,20 **** <mapAttribute key="org.eclipse.debug.core.environmentVariables"> <mapEntry key="CLASSPATH" value=".;${system_property:java.class.path}"/> ! <mapEntry key="JAVA_HOME" value="C:\Java\jdk1.6.0"/> <mapEntry key="BABELDOC_HOME" value="${resource_path:/babeldoc/build}"/> <mapEntry key="ANT_HOME" value="C:\eclipse\plugins\org.apache.ant_1.7.0.v200706080842"/> --- 17,21 ---- <mapAttribute key="org.eclipse.debug.core.environmentVariables"> <mapEntry key="CLASSPATH" value=".;${system_property:java.class.path}"/> ! <mapEntry key="JAVA_HOME" value="C:\java\j2sdk1.4.2_16"/> <mapEntry key="BABELDOC_HOME" value="${resource_path:/babeldoc/build}"/> <mapEntry key="ANT_HOME" value="C:\eclipse\plugins\org.apache.ant_1.7.0.v200706080842"/> --- NEW FILE: org.eclipse.wst.validation.validationbuilder (1).launch --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_BUILDER_ENABLED" value="false"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_DISABLED_BUILDER" value="org.eclipse.wst.validation.validationbuilder"/> <mapAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> </launchConfiguration> --- NEW FILE: org.eclipse.jdt.core.javabuilder (1).launch --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_BUILDER_ENABLED" value="false"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_DISABLED_BUILDER" value="org.eclipse.jdt.core.javabuilder"/> <mapAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> </launchConfiguration> |
From: Santi B. <san...@us...> - 2007-12-08 17:17:47
|
Update of /cvsroot/babeldoc/babeldoc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7459 Modified Files: .project Log Message: Eclipse configuration mods. Index: .project =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.project,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** .project 8 Dec 2007 15:13:41 -0000 1.3 --- .project 8 Dec 2007 17:17:47 -0000 1.4 *************** *** 7,12 **** <buildSpec> <buildCommand> ! <name>org.eclipse.wst.common.project.facet.core.builder</name> <arguments> </arguments> </buildCommand> --- 7,17 ---- <buildSpec> <buildCommand> ! <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> ! <triggers>full,incremental,</triggers> <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/org.eclipse.wst.common.project.facet.core.builder.launch</value> + </dictionary> </arguments> </buildCommand> *************** *** 22,32 **** </buildCommand> <buildCommand> ! <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> ! <name>org.eclipse.wst.validation.validationbuilder</name> <arguments> </arguments> </buildCommand> --- 27,47 ---- </buildCommand> <buildCommand> ! <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> ! <triggers>full,incremental,</triggers> <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/org.eclipse.jdt.core.javabuilder (1).launch</value> + </dictionary> </arguments> </buildCommand> <buildCommand> ! <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> ! <triggers>full,incremental,</triggers> <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/org.eclipse.wst.validation.validationbuilder (1).launch</value> + </dictionary> </arguments> </buildCommand> |
From: Santi B. <san...@us...> - 2007-12-08 17:16:08
|
Update of /cvsroot/babeldoc/babeldoc/modules/j2ee In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7053/modules/j2ee Removed Files: .cvsignore Log Message: --- .cvsignore DELETED --- |
From: Santi B. <san...@us...> - 2007-12-08 15:13:45
|
Update of /cvsroot/babeldoc/babeldoc/modules/init In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/modules/init Modified Files: build.xml Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: build.xml =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/init/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 27 Jun 2003 02:43:19 -0000 1.4 --- build.xml 8 Dec 2007 15:13:41 -0000 1.5 *************** *** 1,3 **** ! <project name="conversion" basedir="." default="setup"> <property file="build.properties"/> <property name="module_name" value="babeldoc_${Module}"/> --- 1,3 ---- ! <project name="init" basedir="." default="setup"> <property file="build.properties"/> <property name="module_name" value="babeldoc_${Module}"/> |
From: Santi B. <san...@us...> - 2007-12-08 15:13:45
|
Update of /cvsroot/babeldoc/babeldoc/modules/core In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/modules/core Modified Files: build.xml Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: build.xml =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/build.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** build.xml 10 Mar 2006 13:07:41 -0000 1.13 --- build.xml 8 Dec 2007 15:13:41 -0000 1.14 *************** *** 1,3 **** ! <project name="conversion" basedir="." default="setup"> <property file="build.properties"/> --- 1,3 ---- ! <project name="core" basedir="." default="setup"> <property file="build.properties"/> |
From: Santi B. <san...@us...> - 2007-12-08 15:13:40
|
Update of /cvsroot/babeldoc/babeldoc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713 Modified Files: .project .cvsignore .classpath Added Files: local.properties Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: .cvsignore =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** .cvsignore 4 Aug 2007 11:37:26 -0000 1.3 --- .cvsignore 8 Dec 2007 15:13:41 -0000 1.4 *************** *** 2,3 **** --- 2,7 ---- build .externalToolBuilders + local.properties + babeldoc-bin-1.2.2-RC1.zip + babeldoc-src-1.2.2-RC1.zip + .beaninfoConfig Index: .project =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.project,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .project 4 Aug 2007 11:37:26 -0000 1.2 --- .project 8 Dec 2007 15:13:41 -0000 1.3 *************** *** 7,20 **** <buildSpec> <buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> ! <triggers>auto,full,incremental,</triggers> <arguments> <dictionary> <key>LaunchConfigHandle</key> ! <value><project>/.externalToolBuilders/babeldoc.launch</value> </dictionary> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.wst.validation.validationbuilder</name> <arguments> --- 7,30 ---- <buildSpec> <buildCommand> + <name>org.eclipse.wst.common.project.facet.core.builder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> ! <triggers>full,incremental,</triggers> <arguments> <dictionary> <key>LaunchConfigHandle</key> ! <value><project>/.externalToolBuilders/org.eclipse.wst.validation.validationbuilder.launch</value> </dictionary> </arguments> </buildCommand> <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> <name>org.eclipse.wst.validation.validationbuilder</name> <arguments> *************** *** 23,31 **** <buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> - <triggers>full,incremental,</triggers> <arguments> <dictionary> <key>LaunchConfigHandle</key> ! <value><project>/.externalToolBuilders/org.eclipse.jdt.core.javabuilder.launch</value> </dictionary> </arguments> --- 33,40 ---- <buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> <arguments> <dictionary> <key>LaunchConfigHandle</key> ! <value><project>/.externalToolBuilders/babeldoc.launch</value> </dictionary> </arguments> *************** *** 36,39 **** --- 45,51 ---- <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.jem.beaninfo.BeanInfoNature</nature> + <nature>org.eclipse.wst.common.project.facet.core.nature</nature> + <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> + <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> </natures> </projectDescription> --- NEW FILE: local.properties --- # This file controls some build properties for local developement # put here your especific configs for ant compilation # Local Build settings build.compiler=1.5 compile.debug='' compile.deprecation=on Index: .classpath =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.classpath,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** .classpath 4 Aug 2007 11:37:27 -0000 1.3 --- .classpath 8 Dec 2007 15:13:41 -0000 1.4 *************** *** 14,57 **** <classpathentry kind="src" path="modules/web/src"/> <classpathentry kind="src" path="modules/babelfish/src"/> ! <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-cli.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/log4j.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/avalon-framework.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-lang.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-logging.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/velocity.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-collections.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/xerces.jar"/> ! <classpathentry kind="lib" path="support/ant/lib/junit.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/csv19.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-discovery.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/activation.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/ostermiller-utils.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-pool.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/concurrent.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/dom4j-full.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-net.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-digester.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/JTidy.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/mail.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/bsf.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/xml-apis.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/xmlsec.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-beanutils.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-dbcp.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/docbook-xalan.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/js.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/xalan.jar"/> ! <classpathentry kind="lib" path="modules/web/lib/servlet.jar"/> ! <classpathentry kind="lib" path="modules/conversion/lib/poi.jar"/> ! <classpathentry kind="lib" path="modules/j2ee/lib/j2ee.jar"/> ! <classpathentry kind="lib" path="modules/soap/lib/jaxm-api.jar"/> ! <classpathentry kind="lib" path="modules/soap/lib/saaj-api.jar"/> ! <classpathentry kind="lib" path="modules/sql/lib/classes12.jar"/> ! <classpathentry kind="lib" path="modules/xslfo/lib/batik.jar"/> ! <classpathentry kind="lib" path="modules/xslfo/lib/fop.jar"/> ! <classpathentry kind="lib" path="support/ant/lib/ant.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-codec-1.3.jar"/> ! <classpathentry kind="lib" path="modules/core/lib/commons-httpclient.jar"/> <classpathentry kind="output" path="bin"/> </classpath> --- 14,57 ---- <classpathentry kind="src" path="modules/web/src"/> <classpathentry kind="src" path="modules/babelfish/src"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-cli.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/log4j.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/avalon-framework.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-lang.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-logging.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/velocity.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-collections.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/xerces.jar"/> ! <classpathentry exported="true" kind="lib" path="support/ant/lib/junit.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/csv19.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-discovery.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/activation.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/ostermiller-utils.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-pool.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/concurrent.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/dom4j-full.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-net.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-digester.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/JTidy.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/mail.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/bsf.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/xml-apis.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/xmlsec.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-beanutils.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-dbcp.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/docbook-xalan.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/js.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/xalan.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/web/lib/servlet.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/conversion/lib/poi.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/j2ee/lib/j2ee.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/soap/lib/jaxm-api.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/soap/lib/saaj-api.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/sql/lib/classes12.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/xslfo/lib/batik.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/xslfo/lib/fop.jar"/> ! <classpathentry exported="true" kind="lib" path="support/ant/lib/ant.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-codec-1.3.jar"/> ! <classpathentry exported="true" kind="lib" path="modules/core/lib/commons-httpclient.jar"/> ! <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/j2sdk1.4.2_16"/> <classpathentry kind="output" path="bin"/> </classpath> |
From: Santi B. <san...@us...> - 2007-12-08 15:13:40
|
Update of /cvsroot/babeldoc/babeldoc/.externalToolBuilders In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/.externalToolBuilders Added Files: org.eclipse.wst.validation.validationbuilder.launch babeldoc.launch Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. --- NEW FILE: org.eclipse.wst.validation.validationbuilder.launch --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_DISABLED_BUILDER" value="org.eclipse.wst.validation.validationbuilder"/> <mapAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_BUILDER_ENABLED" value="false"/> </launchConfiguration> --- NEW FILE: babeldoc.launch --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="setup,"/> <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AUTO_TARGETS" value="build,deploy,"/> <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_CLEAN_TARGETS" value="module_clean,clean,"/> <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="module_clean,clean,setup,dist,deploy,"/> <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="true"/> <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> <listEntry value="/babeldoc/build.xml"/> </listAttribute> <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> <listEntry value="1"/> </listAttribute> <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> <mapAttribute key="org.eclipse.debug.core.environmentVariables"> <mapEntry key="CLASSPATH" value=".;${system_property:java.class.path}"/> <mapEntry key="JAVA_HOME" value="C:\Java\jdk1.6.0"/> <mapEntry key="BABELDOC_HOME" value="${resource_path:/babeldoc/build}"/> <mapEntry key="ANT_HOME" value="C:\eclipse\plugins\org.apache.ant_1.7.0.v200706080842"/> </mapAttribute> <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> <listAttribute key="org.eclipse.jdt.launching.CLASSPATH"> <listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry type="4" path="1" containerPath="org.eclipse.jdt.launching.JRE_CONTAINER"/> "/> <listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry id="org.eclipse.ant.ui.classpathentry.antHome"> <memento default="true"/> </runtimeClasspathEntry> "/> <listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry type="2" path="3" internalArchive="/babeldoc/support/ant/lib/xercesImpl.jar"/> "/> <listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry type="2" path="3" internalArchive="/babeldoc/support/jalopy/lib/jalopy-1.0b10.jar"/> "/> <listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry type="2" path="3" internalArchive="/babeldoc/support/jalopy/lib/jalopy-ant-0.6.1.jar"/> "/> <listEntry value="<?xml version="1.0" encoding="UTF-8"?> <runtimeClasspathEntry id="org.eclipse.ant.ui.classpathentry.extraClasspathEntries"> <memento/> </runtimeClasspathEntry> "/> </listAttribute> <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/> <booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="false"/> <stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/j2sdk1.4.2_16"/> <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.eclipse.ant.internal.ui.antsupport.InternalAntRunner"/> <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="babeldoc"/> <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:babeldoc}"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_BUILDER_ENABLED" value="true"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/babeldoc/build.xml}"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,auto,clean"/> <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/babeldoc}"/> <stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/> </launchConfiguration> |
From: Santi B. <san...@us...> - 2007-12-08 15:13:40
|
Update of /cvsroot/babeldoc/babeldoc/modules/web/docs/pipeline In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/modules/web/docs/pipeline Modified Files: stage-details.vm index.vm Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: stage-details.vm =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/web/docs/pipeline/stage-details.vm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** stage-details.vm 12 Aug 2003 23:44:45 -0000 1.2 --- stage-details.vm 8 Dec 2007 15:13:41 -0000 1.3 *************** *** 37,80 **** #set($configKeys = $config.getChildrenNameSet()) #foreach($configKey in $configKeys) ! #set($value=$config.getChild($configKey)) ! #if( $velocityCount % 2 == 0 ) ! <tr bgcolor="#eeeeee"> ! #else ! <tr> ! #end ! <td>$velocityCount</td> ! <td>$configKey</td> ! <td> ! #if( $value.Value ) ! $value.Value ! #end ! </td> ! #if($value.keys) ! <td> ! <table> ! <tr bgcolor="#dddddd"> ! <td>#</td> ! <td>name</td> ! <td>value</td> ! </tr> ! #set($subcount=0) ! #foreach($suboptionKey in $value.getChildrenNameSet()) ! #if( $velocityCount % 2 == 0 ) ! <tr bgcolor="#eeeeee"> ! #else ! <tr> ! #end ! <td>$velocityCount</td> ! <td>$suboptionKey</td> ! <td>$value.getChild($suboptionKey).Value</td> ! </tr> ! #set($subcount = $subcount+1) ! #end ! </table> ! </td> ! #else ! <td></td> ! #end ! </tr> #end </table> --- 37,87 ---- #set($configKeys = $config.getChildrenNameSet()) #foreach($configKey in $configKeys) ! #set($value=$config.getChild($configKey)) ! #if( $velocityCount % 2 == 0 ) ! <tr bgcolor="#eeeeee"> ! #else ! <tr> ! #end ! <td>$velocityCount</td> ! <td>$configKey</td> ! <td> ! #if( $value.Value ) ! #if( $configKey == "nextStage" ) ! <a href="stage-details.vm?pipeline=${pipeline}&stage=${value.Value}"> ! (if)$value.Value ! </a> ! #else ! (else)$value.Value ! #end ! #end ! ! </td> ! #if($value.keys) ! <td> ! <table> ! <tr bgcolor="#dddddd"> ! <td>#</td> ! <td>name</td> ! <td>value</td> ! </tr> ! #set($subcount=0) ! #foreach($suboptionKey in $value.getChildrenNameSet()) ! #if( $velocityCount % 2 == 0 ) ! <tr bgcolor="#eeeeee"> ! #else ! <tr> ! #end ! <td>$velocityCount</td> ! <td>$suboptionKey</td> ! <td>$value.getChild($suboptionKey).Value</td> ! </tr> ! #set($subcount = $subcount+1) ! #end ! </table> ! </td> ! #else ! <td></td> ! #end ! </tr> #end </table> Index: index.vm =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/web/docs/pipeline/index.vm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.vm 24 Feb 2003 22:48:07 -0000 1.1.1.1 --- index.vm 8 Dec 2007 15:13:41 -0000 1.2 *************** *** 5,8 **** --- 5,9 ---- </head> <body bgcolor="#ffffff"> + <table width="700"> <tr bgcolor="#aaaaaa"> *************** *** 17,22 **** --- 18,25 ---- </td> <td> + Document </td> <td> + Do </td> </tr> *************** *** 25,28 **** --- 28,33 ---- #set($entrystage = $babel.PipelineListing.getPipelineEntryStage($pipeline)) <tr> + <form name="${pipeline}" action="/babeldoc-httpfeed" method="post"> + <input type="hidden" name="PIPELINE" value="${pipeline}> <td> <a href="all-stages.vm?pipeline=$pipeline"> *************** *** 35,43 **** </a> </td> ! <td></td> ! <td></td> </tr> #end </table> </center> </html> --- 40,50 ---- </a> </td> ! <td><input name="DOCUMENT" type="file" size="40"></td> ! <td><input type="submit" src="../images/recycle.png" value="processa"></td> ! </form> </tr> #end </table> + </center> </html> |
From: Santi B. <san...@us...> - 2007-12-08 15:13:38
|
Update of /cvsroot/babeldoc/babeldoc/modules/web In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/modules/web Modified Files: build.properties Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: build.properties =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/web/build.properties,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** build.properties 10 Jun 2003 01:31:48 -0000 1.7 --- build.properties 8 Dec 2007 15:13:41 -0000 1.8 *************** *** 10,14 **** # The home of the webserver ! web_server_home=${base_dir}/../tomcat # The directory to place all babeldoc and support libs --- 10,15 ---- # The home of the webserver ! web_server_home=C:/apache-tomcat-5.5.25 ! #web_server_home=tomcat # The directory to place all babeldoc and support libs *************** *** 25,28 **** # Application to actually run the webserver ! web_server_startup=${web_server_home}/bin/catalina.sh --- 26,29 ---- # Application to actually run the webserver ! web_server_startup=${web_server_home}/bin/startup.bat |
From: Santi B. <san...@us...> - 2007-12-08 15:13:38
|
Update of /cvsroot/babeldoc/babeldoc/modules/xslfo In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/modules/xslfo Modified Files: build.xml Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: build.xml =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/xslfo/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build.xml 10 Mar 2006 13:07:43 -0000 1.6 --- build.xml 8 Dec 2007 15:13:41 -0000 1.7 *************** *** 1,3 **** ! <project name="conversion" basedir="." default="setup"> <property file="build.properties"/> --- 1,3 ---- ! <project name="xslfo" basedir="." default="setup"> <property file="build.properties"/> |
From: Santi B. <san...@us...> - 2007-12-08 15:13:38
|
Update of /cvsroot/babeldoc/babeldoc/.settings In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23713/.settings Modified Files: org.eclipse.jdt.core.prefs org.eclipse.wst.validation.prefs org.eclipse.jdt.ui.prefs Added Files: org.eclipse.wst.common.project.facet.core.xml org.eclipse.jst.common.project.facet.core.prefs org.eclipse.wst.common.component Log Message: Some changes for integration with eclipse IDE. web: corrected index page and added new form. Index: org.eclipse.jdt.core.prefs =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.settings/org.eclipse.jdt.core.prefs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** org.eclipse.jdt.core.prefs 4 Aug 2007 11:37:01 -0000 1.3 --- org.eclipse.jdt.core.prefs 8 Dec 2007 15:13:40 -0000 1.4 *************** *** 1,3 **** ! #Sat Aug 04 00:51:40 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.builder.cleanOutputFolder=clean --- 1,3 ---- ! #Fri Oct 19 00:57:43 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.builder.cleanOutputFolder=clean *************** *** 10,16 **** org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled ! org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve ! org.eclipse.jdt.core.compiler.compliance=1.6 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate --- 10,16 ---- org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled ! org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve ! org.eclipse.jdt.core.compiler.compliance=1.4 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate *************** *** 19,23 **** org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=ignore ! org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.autoboxing=ignore org.eclipse.jdt.core.compiler.problem.deprecation=warning --- 19,23 ---- org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=ignore ! org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning org.eclipse.jdt.core.compiler.problem.autoboxing=ignore org.eclipse.jdt.core.compiler.problem.deprecation=warning *************** *** 26,30 **** org.eclipse.jdt.core.compiler.problem.discouragedReference=warning org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore ! org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.fatalOptionalError=enabled org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore --- 26,30 ---- org.eclipse.jdt.core.compiler.problem.discouragedReference=warning org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore ! org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning org.eclipse.jdt.core.compiler.problem.fatalOptionalError=enabled org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore *************** *** 77,81 **** org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=ignore ! org.eclipse.jdt.core.compiler.source=1.6 org.eclipse.jdt.core.incompatibleJDKLevel=ignore org.eclipse.jdt.core.incompleteClasspath=error --- 77,81 ---- org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=ignore ! org.eclipse.jdt.core.compiler.source=1.3 org.eclipse.jdt.core.incompatibleJDKLevel=ignore org.eclipse.jdt.core.incompleteClasspath=error --- NEW FILE: org.eclipse.wst.common.project.facet.core.xml --- <?xml version="1.0" encoding="UTF-8"?> <faceted-project> <fixed facet="jst.utility"/> <fixed facet="jst.java"/> <installed facet="jst.utility" version="1.0"/> <installed facet="jst.java" version="1.4"/> </faceted-project> --- NEW FILE: org.eclipse.jst.common.project.facet.core.prefs --- #Fri Oct 19 00:59:59 CEST 2007 classpath.helper/org.eclipse.jdt.launching.JRE_CONTAINER\:\:org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\:\:jre1.5.0_13/owners=jst.java\:1.4 eclipse.preferences.version=1 Index: org.eclipse.jdt.ui.prefs =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.settings/org.eclipse.jdt.ui.prefs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** org.eclipse.jdt.ui.prefs 4 Aug 2007 11:37:01 -0000 1.2 --- org.eclipse.jdt.ui.prefs 8 Dec 2007 15:13:40 -0000 1.3 *************** *** 1,4 **** ! #Sat Aug 04 00:51:39 CEST 2007 eclipse.preferences.version=1 - internal.default.compliance=default org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/> --- 1,3 ---- ! #Fri Oct 19 00:57:43 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/> Index: org.eclipse.wst.validation.prefs =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/.settings/org.eclipse.wst.validation.prefs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** org.eclipse.wst.validation.prefs 4 Aug 2007 11:37:01 -0000 1.1 --- org.eclipse.wst.validation.prefs 8 Dec 2007 15:13:40 -0000 1.2 *************** *** 1,6 **** ! #Sat Aug 04 00:32:55 CEST 2007 ! DELEGATES_PREFERENCE=delegateValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator\=org.eclipse.wst.wsdl.validation.internal.eclipse.Validator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator\=org.eclipse.wst.xsd.core.internal.validation.eclipse.Validator; ! USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.xml.core.internal.validation.eclipse.Validator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator; ! USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator;org.eclipse.wst.html.internal.validation.HTMLValidator; USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.1.4.v200704161800 eclipse.preferences.version=1 --- 1,6 ---- ! #Sun Aug 05 02:26:58 CEST 2007 ! DELEGATES_PREFERENCE=delegateValidatorListorg.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator\=org.eclipse.wst.xsd.core.internal.validation.eclipse.Validator;org.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator\=org.eclipse.wst.wsdl.validation.internal.eclipse.Validator; ! USER_BUILD_PREFERENCE=enabledBuildValidatorList ! USER_MANUAL_PREFERENCE=enabledManualValidatorList USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.1.4.v200704161800 eclipse.preferences.version=1 --- NEW FILE: org.eclipse.wst.common.component --- <?xml version="1.0" encoding="UTF-8"?> <project-modules id="moduleCoreId" project-version="1.5.0"> <wb-module deploy-name="babeldoc"> <wb-resource deploy-path="/" source-path="/modules/gui/src"/> <wb-resource deploy-path="/" source-path="/modules/j2ee/gensrc"/> <wb-resource deploy-path="/" source-path="/modules/j2ee/src"/> <wb-resource deploy-path="/" source-path="/modules/crypto/src"/> <wb-resource deploy-path="/" source-path="/modules/core/src"/> <wb-resource deploy-path="/" source-path="/modules/sql/src"/> <wb-resource deploy-path="/" source-path="/modules/conversion/src"/> <wb-resource deploy-path="/" source-path="/modules/xslfo/src"/> <wb-resource deploy-path="/" source-path="/modules/soap/src"/> <wb-resource deploy-path="/" source-path="/modules/scanner/src"/> <wb-resource deploy-path="/" source-path="/modules/init/src"/> <wb-resource deploy-path="/" source-path="/modules/web/src"/> <wb-resource deploy-path="/" source-path="/modules/babelfish/src"/> </wb-module> </project-modules> |