X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fproducer%2FPDFPreFormattingProducerNode.java;h=50e69bf27037a145c8e4b764dac0ad0b88d81571;hb=4451d4c8c25d46e9c405e966ff6bd016a1512f4f;hp=86ad9a919435d0cc021072717832e6d65d4d0acd;hpb=a459f111d85598df56c6ab711cec11632676b39c;p=mir.git diff --git a/source/mircoders/producer/PDFPreFormattingProducerNode.java b/source/mircoders/producer/PDFPreFormattingProducerNode.java index 86ad9a91..50e69bf2 100755 --- a/source/mircoders/producer/PDFPreFormattingProducerNode.java +++ b/source/mircoders/producer/PDFPreFormattingProducerNode.java @@ -18,13 +18,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * In addition, as a special exception, The Mir-coders gives permission to link - * the code of this program with any library licensed under the Apache Software License, - * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library - * (or with modified versions of the above that use the same license as the above), - * and distribute linked combinations including the two. You must obey the - * GNU General Public License in all respects for all of the code used other than - * the above mentioned libraries. If you modify this file, you may extend this - * exception to your version of the file, but you are not obligated to do so. + * the code of this program with any library licensed under the Apache Software License, + * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library + * (or with modified versions of the above that use the same license as the above), + * and distribute linked combinations including the two. You must obey the + * GNU General Public License in all respects for all of the code used other than + * the above mentioned libraries. If you modify this file, you may extend this + * exception to your version of the file, but you are not obligated to do so. * If you do not wish to do so, delete this exception statement from your version. */ @@ -33,10 +33,12 @@ package mircoders.producer; import java.io.PrintWriter; import java.util.ArrayList; import java.util.HashMap; +import java.util.Iterator; import java.util.Map; +import java.util.Vector; import mir.entity.Entity; -import mir.entity.EntityList; +import mir.entity.EntityBrowser; import mir.entity.adapter.EntityAdapter; import mir.log.LoggerToWriterAdapter; import mir.log.LoggerWrapper; @@ -48,10 +50,7 @@ import mir.util.HTMLRoutines; import mir.util.ParameterExpander; import mircoders.entity.EntityContent; import mircoders.entity.EntityImages; -import mircoders.storage.DatabaseContentToMedia; - -//because images are returned as a template model!(maybe not needed after all!) -//import freemarker.template.*; +import mircoders.storage.DatabaseImages; public class PDFPreFormattingProducerNode implements ProducerNode { @@ -106,7 +105,13 @@ public class PDFPreFormattingProducerNode implements ProducerNode { ArrayList brokenUpContent = new ArrayList(); - EntityList images=DatabaseContentToMedia.getInstance().getImages((EntityContent)entity); + Vector extraTables = new Vector(); + extraTables.add("content_x_media cxm"); + Iterator images = new EntityBrowser( + DatabaseImages.getInstance(), "i", extraTables, + "cxm.content_id="+entity.getId()+"and cxm.media_id=i.id", + "i.id desc", 30, -1, 0); + String theContent = ((EntityContent) entity).getValue("content_data"); //remove pesky characters theContent = HTMLRoutines.encodeXML(theContent);