diff --git a/wise-webapp/pom.xml b/wise-webapp/pom.xml index 1537ece9..54abb35a 100644 --- a/wise-webapp/pom.xml +++ b/wise-webapp/pom.xml @@ -200,23 +200,6 @@ 1.0 compile - - org.apache.xmlgraphics - batik-transcoder - 1.10 - compile - - - xalan - xalan - - - - - org.apache.xmlgraphics - batik-codec - 1.10 - javax.mail mail diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java index 51379493..f7d7d8e9 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportFormat.java @@ -21,15 +21,10 @@ package com.wisemapping.exporter; import org.jetbrains.annotations.NotNull; public enum ExportFormat { - SVG("image/svg+xml", "svg"), - JPG("image/jpeg", "jpg"), - PNG("image/png", "png"), - PDF("application/pdf", "pdf"), FREEMIND("application/freemind", "mm"), TEXT("text/plain", "txt"), MICROSOFT_EXCEL("application/vnd.ms-excel", "xls"), MICROSOFT_WORD("application/msword", "doc"), - OPEN_OFFICE_WRITER("application/vnd.oasis.opendocument.text", "odt"), MINDJET("application/vnd.mindjet.mindmanager", "mmap"), WISEMAPPING("application/wisemapping+xml", "wxml"); diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java index dd7edd3d..8a663759 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExportProperties.java @@ -31,13 +31,7 @@ public class ExportProperties { } public static ExportProperties create(final ExportFormat format) { - ExportProperties result; - if (format == ExportFormat.JPG || format == ExportFormat.PNG) { - result = new ImageProperties(format); - } else { - result = new GenericProperties(format); - } - return result; + return new GenericProperties(format); } public String getVersion() { @@ -54,33 +48,4 @@ public class ExportProperties { } } - static public class ImageProperties extends ExportProperties { - private Size size; - - public Size getSize() { - return size; - } - - public void setSize(Size size) { - this.size = size; - } - - ImageProperties(ExportFormat format) { - super(format); - } - - public enum Size { - SMALL(100), MEDIUM(800), XMEDIUM(1024), LARGE(2048); - private final int width; - - Size(int width) { - this.width = width; - } - - public Float getWidth() { - return (float) width; - } - } - } - } diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java index 070e343b..c8a40143 100644 --- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java +++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java @@ -19,19 +19,7 @@ package com.wisemapping.exporter; import com.wisemapping.importer.VersionNumber; -import org.apache.batik.ext.awt.image.rendered.TileCache; -import org.apache.batik.parser.AWTTransformProducer; -import org.apache.batik.parser.ParseException; -import org.apache.batik.parser.TransformListParser; -import org.apache.batik.transcoder.Transcoder; -import org.apache.batik.transcoder.TranscoderException; -import org.apache.batik.transcoder.TranscoderInput; -import org.apache.batik.transcoder.TranscoderOutput; -import org.apache.batik.transcoder.image.ImageTranscoder; -import org.apache.batik.transcoder.image.JPEGTranscoder; -import org.apache.batik.transcoder.image.PNGTranscoder; import org.apache.commons.io.IOUtils; -import org.apache.fop.svg.PDFTranscoder; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.w3c.dom.*; @@ -56,14 +44,9 @@ import java.util.regex.Pattern; public class ExporterFactory { - static { - // Try to prevent OOM. - TileCache.setSize(0); - } private static final String GROUP_NODE_NAME = "g"; private static final String IMAGE_NODE_NAME = "image"; private static final int MANGING = 50; - private static final String UTF_8_CHARSET_NAME = "UTF-8"; private final File baseImgDir; public ExporterFactory(@NotNull final ServletContext servletContext) { @@ -74,81 +57,16 @@ public class ExporterFactory { this.baseImgDir = baseImgDir; } - public void export(@NotNull ExportProperties properties, @Nullable String xml, @NotNull OutputStream output, @Nullable String mapSvg) throws ExportException, IOException, TranscoderException { + public void export(@NotNull ExportProperties properties, @Nullable String xml, @NotNull OutputStream output, @Nullable String mapSvg) throws ExportException, IOException { final ExportFormat format = properties.getFormat(); switch (format) { - case PNG: { - // Create a JPEG transcoder - final Transcoder transcoder = new PNGTranscoder(); - final ExportProperties.ImageProperties imageProperties = - (ExportProperties.ImageProperties) properties; - final ExportProperties.ImageProperties.Size size = imageProperties.getSize(); - transcoder.addTranscodingHint(ImageTranscoder.KEY_WIDTH, size.getWidth()); - - // Create the transcoder input. - final String svgString = normalizeSvg(mapSvg); - final CharArrayReader reader = new CharArrayReader(svgString.toCharArray()); - final TranscoderInput input = new TranscoderInput(reader); - - TranscoderOutput transcoderOutput = new TranscoderOutput(output); - - // Save the image. - transcoder.transcode(input, transcoderOutput); - reader.close(); - break; - } - case JPG: { - // Create a JPEG transcoder - final Transcoder transcoder = new JPEGTranscoder(); - transcoder.addTranscodingHint(JPEGTranscoder.KEY_QUALITY, .99f); - - final ExportProperties.ImageProperties imageProperties = - (ExportProperties.ImageProperties) properties; - final ExportProperties.ImageProperties.Size size = imageProperties.getSize(); - transcoder.addTranscodingHint(ImageTranscoder.KEY_WIDTH, size.getWidth()); - - // Create the transcoder input. - final String svgString = normalizeSvg(mapSvg); - CharArrayReader reader = new CharArrayReader(svgString.toCharArray()); - final TranscoderInput input = new TranscoderInput(reader); - TranscoderOutput trascoderOutput = new TranscoderOutput(output); - - // Save the image. - transcoder.transcode(input, trascoderOutput); - reader.close(); - break; - } - case PDF: { - // Create a JPEG transcoder - final Transcoder transcoder = new PDFTranscoder(); - - // Create the transcoder input. - final String svgString = normalizeSvg(mapSvg); - CharArrayReader reader = new CharArrayReader(svgString.toCharArray()); - final TranscoderInput input = new TranscoderInput(reader); - TranscoderOutput trascoderOutput = new TranscoderOutput(output); - // Save the image. - transcoder.transcode(input, trascoderOutput); - reader.close(); - break; - } - case SVG: { - final String svgString = normalizeSvg(mapSvg); - output.write(svgString.getBytes(StandardCharsets.UTF_8)); - break; - } case TEXT: { final Exporter exporter = XSLTExporter.create(XSLTExporter.Type.TEXT); exporter.export(xml.getBytes(StandardCharsets.UTF_8), output); break; } - case OPEN_OFFICE_WRITER: { - final Exporter exporter = XSLTExporter.create(XSLTExporter.Type.OPEN_OFFICE); - exporter.export(xml.getBytes(StandardCharsets.UTF_8), output); - break; - } case MICROSOFT_EXCEL: { final Exporter exporter = XSLTExporter.create(XSLTExporter.Type.MICROSOFT_EXCEL); exporter.export(xml.getBytes(StandardCharsets.UTF_8), output); @@ -173,54 +91,6 @@ public class ExporterFactory { output.close(); } - private String normalizeSvg(@NotNull String svgXml) throws ExportException { - - try { - DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); - final DocumentBuilder documentBuilder = factory.newDocumentBuilder(); - - if (!svgXml.contains("xmlns:xlink=\"http://www.w3.org/1999/xlink\"")) { - svgXml = svgXml.replaceFirst("]+)>", ""); - svgXml = svgXml.replaceAll("\u001B", ""); - final Reader in = new CharArrayReader(svgXml.toCharArray()); - final InputSource is = new InputSource(in); - document = documentBuilder.parse(is); - } - - resizeSVG(document); - - final Node child = document.getFirstChild(); - inlineImages(document, (Element) child); - - return domToString(document); - } catch (ParserConfigurationException | TransformerException | SAXException | IOException e) { - throw new ExportException(e); - } - - } - private static String domToString(@NotNull Document document) throws TransformerException { DOMSource domSource = new DOMSource(document); @@ -344,76 +214,4 @@ public class ExporterFactory { } } } - - private static void resizeSVG(@NotNull Document document) throws ExportException { - - try { - XPathFactory xPathfactory = XPathFactory.newInstance(); - XPath xpath = xPathfactory.newXPath(); - XPathExpression expr = xpath.compile("/svg/g/rect"); - - NodeList nl = (NodeList) expr.evaluate(document, XPathConstants.NODESET); - final int length = nl.getLength(); - double maxX = 0, minX = 0, minY = 0, maxY = 0; - - - for (int i = 0; i < length; i++) { - final Element rectElem = (Element) nl.item(i); - final Element gElem = (Element) rectElem.getParentNode(); - - - final TransformListParser p = new TransformListParser(); - final AWTTransformProducer tp = new AWTTransformProducer(); - p.setTransformListHandler(tp); - p.parse(gElem.getAttribute("transform")); - final AffineTransform transform = tp.getAffineTransform(); - - double yPos = transform.getTranslateY(); - if (yPos > 0) { - yPos += Double.parseDouble(rectElem.getAttribute("height")); - } - maxY = maxY < yPos ? yPos : maxY; - minY = minY > yPos ? yPos : minY; - - double xPos = transform.getTranslateX(); - if (xPos > 0) { - xPos += Double.parseDouble(rectElem.getAttribute("width")); - } - - maxX = maxX < xPos ? xPos : maxX; - minX = minX > xPos ? xPos : minX; - } - - // Add some extra margin ... - maxX += MANGING; - minX += -MANGING; - - maxY += MANGING; - minY += -MANGING; - - // Calculate dimentions ... - final double width = maxX + Math.abs(minX); - final double height = maxY + Math.abs(minY); - - // Finally, update centers ... - final Element svgNode = (Element) document.getFirstChild(); - - svgNode.setAttribute("viewBox", minX + " " + minY + " " + width + " " + height); - svgNode.setAttribute("width", Double.toString(width)); - svgNode.setAttribute("height", Double.toString(height)); - svgNode.setAttribute("preserveAspectRatio", "xMinYMin"); - } catch (XPathExpressionException | ParseException | NumberFormatException | DOMException e) { - throw new ExportException(e); - } - } - - private static String[] getTransformUnit(NamedNodeMap groupAttributes) { - final String value = groupAttributes.getNamedItem("transform").getNodeValue(); - final int pos = value.indexOf("translate"); - final int initTranslate = value.indexOf("(", pos); - final int endTranslate = value.indexOf(")", pos); - final String transate = value.substring(initTranslate + 1, endTranslate); - return transate.contains(",") ? transate.split(",") : transate.split(" "); - } - } diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java b/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java index 1b5c8824..7f12becf 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/TransformerController.java @@ -42,55 +42,7 @@ public class TransformerController extends BaseController { private static final String PARAM_WISE_MAP_XML = "mapXml"; private static final String PARAM_FILENAME = "filename"; - @RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"application/pdf"}, consumes = {"image/svg+xml"}) - @ResponseBody - public ModelAndView transformPdf(@RequestBody @Nullable final String content) { - final Map values = new HashMap(); - if (content == null || content.length() == 0) { - throw new IllegalArgumentException("Body can not be null."); - } - - values.put("content", content); - return new ModelAndView("transformViewPdf", values); - } - - @RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"image/svg+xml"}, consumes = {"image/svg+xml"}) - @ResponseBody - public ModelAndView transformSvg(@RequestBody @Nullable final String content) { - final Map values = new HashMap(); - if (content == null || content.length() == 0) { - throw new IllegalArgumentException("Body can not be null."); - } - - values.put("content", content); - return new ModelAndView("transformViewSvg", values); - } - - @RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"image/png"}, consumes = {"image/svg+xml"}) - @ResponseBody - public ModelAndView transformPng(@RequestBody @Nullable final String content) { - final Map values = new HashMap(); - if (content == null || content.length() == 0) { - throw new IllegalArgumentException("Body can not be null."); - } - values.put("content", content); - values.put("imageSize", ExportProperties.ImageProperties.Size.LARGE); - return new ModelAndView("transformViewPng", values); - } - - @RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"image/jpeg"}, consumes = {"image/svg+xml"}) - @ResponseBody - public ModelAndView transformJpeg(@RequestBody @Nullable final String content) throws IOException { - final Map values = new HashMap(); - if (content == null || content.length() == 0) { - throw new IllegalArgumentException("Body can not be null."); - } - values.put("content", content); - values.put("imageSize", ExportProperties.ImageProperties.Size.LARGE); - return new ModelAndView("transformViewJpeg", values); - } - - @RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"application/freemind"}, consumes = {"application/xml"}) + @RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"application/freemind"}, consumes = {"application/xml"}) @ResponseBody public ModelAndView transformFreemind(@RequestBody @Nullable final String content) throws IOException { final Map values = new HashMap(); @@ -100,40 +52,4 @@ public class TransformerController extends BaseController { values.put("content", content); return new ModelAndView("transformViewFreemind", values); } - - @RequestMapping(method = RequestMethod.POST, value = "/transform", consumes = {"application/x-www-form-urlencoded"}) - public ModelAndView transform(@NotNull HttpServletRequest request) throws IOException { - final String svg = request.getParameter(PARAM_SVG_XML); - final String mapXml = request.getParameter(PARAM_WISE_MAP_XML); - final String filename = request.getParameter(PARAM_FILENAME); - - - // Obtains transformation type based on the last part of the URL ... - final String requestURI = request.getRequestURI(); - final String format = requestURI.substring(requestURI.lastIndexOf(".") + 1); - final ExportFormat exportFormat = ExportFormat.valueOf(format.toUpperCase()); - - ModelAndView result; - switch (exportFormat) { - case PNG: - result = this.transformPng(svg); - break; - case JPG: - result = this.transformJpeg(svg); - break; - case PDF: - result = this.transformPdf(svg); - break; - case SVG: - result = this.transformSvg(svg); - break; - default: - throw new IllegalArgumentException("Unsupported export format"); - - } - if (filename != null) { - result.getModelMap().put("filename", filename); - } - return result; - } } diff --git a/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java b/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java index 359c6ab4..0c510232 100644 --- a/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java +++ b/wise-webapp/src/main/java/com/wisemapping/rest/view/TransformView.java @@ -63,10 +63,6 @@ public class TransformView extends AbstractView { // Build format properties ... final ExportProperties properties = ExportProperties.create(exportFormat); - if (properties instanceof ExportProperties.ImageProperties) { - final ExportProperties.ImageProperties imageProperties = (ExportProperties.ImageProperties) properties; - imageProperties.setSize(ExportProperties.ImageProperties.Size.LARGE); - } if (version != null) { properties.setVersion(version); } @@ -93,7 +89,7 @@ public class TransformView extends AbstractView { final Object mindmap = viewMap.get("mindmap"); final StreamResult result = new StreamResult(outputStream); jaxbMarshaller.marshal(mindmap, result); - } else if (exportFormat == ExportFormat.MICROSOFT_EXCEL || exportFormat == ExportFormat.TEXT || exportFormat == ExportFormat.OPEN_OFFICE_WRITER || exportFormat == ExportFormat.MINDJET) { + } else if (exportFormat == ExportFormat.MICROSOFT_EXCEL || exportFormat == ExportFormat.TEXT || exportFormat == ExportFormat.MINDJET) { response.setContentType(String.format("%s; charset=%s", contentType, DEFAULT_ENCODING)); factory.export(properties, content, outputStream, null); diff --git a/wise-webapp/src/main/webapp/jsp/mindmapEditorToolbar.jsf b/wise-webapp/src/main/webapp/jsp/mindmapEditorToolbar.jsf index bc66bbe7..b51b439f 100644 --- a/wise-webapp/src/main/webapp/jsp/mindmapEditorToolbar.jsf +++ b/wise-webapp/src/main/webapp/jsp/mindmapEditorToolbar.jsf @@ -91,7 +91,6 @@
-
diff --git a/wise-webapp/src/test/java/com/wisemapping/test/export/ExportSVGBasedTest.java b/wise-webapp/src/test/java/com/wisemapping/test/export/ExportSVGBasedTest.java deleted file mode 100644 index ff7e887e..00000000 --- a/wise-webapp/src/test/java/com/wisemapping/test/export/ExportSVGBasedTest.java +++ /dev/null @@ -1,109 +0,0 @@ -package com.wisemapping.test.export; - -import com.wisemapping.exporter.ExportException; -import com.wisemapping.exporter.ExportFormat; -import com.wisemapping.exporter.ExportProperties; -import com.wisemapping.exporter.ExporterFactory; -import org.apache.batik.transcoder.TranscoderException; -import org.apache.commons.io.FileUtils; -import org.jetbrains.annotations.NotNull; -import org.testng.annotations.DataProvider; -import org.testng.annotations.Test; - -import java.io.*; - -@Test -public class ExportSVGBasedTest { - private static final String DATA_DIR_PATH = "src/test/resources/data/svg/"; - public static final String ICONS_BASED_PATH = "/../../../../../src/main/webapp/map-icons"; - - @Test(dataProvider = "Data-Provider-Function") - public void exportSvgTest(@NotNull final File svgFile, @NotNull final File pngFile, @NotNull final File pdfFile, @NotNull final File svgExpFile) throws IOException, ExportException, TranscoderException { - - final String svgXml = FileUtils.readFileToString(svgFile, "UTF-8"); - - exportPng(svgFile, pngFile, svgXml); - exportPdf(svgFile, pdfFile, svgXml); - exportSvg(svgFile, svgExpFile, svgXml); - - } - - private void exportSvg(File svgFile, File pdfFile, String svgXml) throws IOException, ExportException, TranscoderException { - final ExportFormat format = ExportFormat.SVG; - final ExportProperties properties = ExportProperties.create(format); - - String baseUrl = svgFile.getParentFile().getAbsolutePath() + ICONS_BASED_PATH; - ExporterFactory factory = new ExporterFactory(new File(baseUrl)); - // Write content ... - if (pdfFile.exists()) { - // Export mile content ... - final ByteArrayOutputStream bos = new ByteArrayOutputStream(); - factory.export(properties, null, bos, svgXml); - } else { - OutputStream outputStream = new FileOutputStream(pdfFile, false); - factory.export(properties, null, outputStream, svgXml); - outputStream.close(); - } - } - - private void exportPng(File svgFile, File pngFile, String svgXml) throws ExportException, IOException, TranscoderException { - final ExportFormat format = ExportFormat.PNG; - final ExportProperties properties = ExportProperties.create(format); - final ExportProperties.ImageProperties imageProperties = (ExportProperties.ImageProperties) properties; - imageProperties.setSize(ExportProperties.ImageProperties.Size.LARGE); - - String baseUrl = svgFile.getParentFile().getAbsolutePath() + ICONS_BASED_PATH; - ExporterFactory factory = new ExporterFactory(new File(baseUrl)); - // Write content ... - if (pngFile.exists()) { - // Export mile content ... - final ByteArrayOutputStream bos = new ByteArrayOutputStream(); - factory.export(imageProperties, null, bos, svgXml); - } else { - OutputStream outputStream = new FileOutputStream(pngFile, false); - factory.export(imageProperties, null, outputStream, svgXml); - outputStream.close(); - } - } - - private void exportPdf(File svgFile, File pdfFile, String svgXml) throws ExportException, IOException, TranscoderException { - final ExportFormat format = ExportFormat.PDF; - final ExportProperties properties = ExportProperties.create(format); - - String baseUrl = svgFile.getParentFile().getAbsolutePath() + ICONS_BASED_PATH; - ExporterFactory factory = new ExporterFactory(new File(baseUrl)); - // Write content ... - if (pdfFile.exists()) { - // Export mile content ... - final ByteArrayOutputStream bos = new ByteArrayOutputStream(); - factory.export(properties, null, bos, svgXml); - } else { - OutputStream outputStream = new FileOutputStream(pdfFile, false); - factory.export(properties, null, outputStream, svgXml); - outputStream.close(); - } - } - - //This function will provide the parameter data - @DataProvider(name = "Data-Provider-Function") - public Object[][] parameterIntTestProvider() { - - final File dataDir = new File(DATA_DIR_PATH); - final File[] svgFile = dataDir.listFiles((dir, name) -> name.endsWith(".svg") && !name.contains("-exp.svg")); - - if (svgFile == null) { - throw new IllegalArgumentException("Wrong based path specified. Change based path..."); - } - - final Object[][] result = new Object[svgFile.length][4]; - for (int i = 0; i < svgFile.length; i++) { - File freeMindFile = svgFile[i]; - final String name = freeMindFile.getName(); - result[i] = new Object[]{freeMindFile, new File(DATA_DIR_PATH, name.substring(0, name.lastIndexOf(".")) + ".png"), new File(DATA_DIR_PATH, name.substring(0, name.lastIndexOf(".")) + ".pdf"), new File(DATA_DIR_PATH, name.substring(0, name.lastIndexOf(".")) + "-exp.svg")}; - } - - return result; - } - - -} diff --git a/wise-webapp/src/test/java/com/wisemapping/test/export/ExportXsltBasedTest.java b/wise-webapp/src/test/java/com/wisemapping/test/export/ExportXsltBasedTest.java deleted file mode 100644 index b12e8cc9..00000000 --- a/wise-webapp/src/test/java/com/wisemapping/test/export/ExportXsltBasedTest.java +++ /dev/null @@ -1,87 +0,0 @@ -package com.wisemapping.test.export; - -import com.wisemapping.exporter.ExportException; -import com.wisemapping.exporter.ExportFormat; -import com.wisemapping.exporter.Exporter; -import com.wisemapping.exporter.XSLTExporter; -import com.wisemapping.model.Mindmap; -import org.apache.commons.io.FileUtils; -import org.jetbrains.annotations.NotNull; -import org.testng.Assert; -import org.testng.annotations.DataProvider; -import org.testng.annotations.Test; - -import java.io.*; -import java.nio.charset.StandardCharsets; - -@Test -public class ExportXsltBasedTest { - private static final String DATA_DIR_PATH = "src/test/resources/data/export/"; - private static final String ENC_UTF_8 = "UTF-8"; - - - @Test(dataProvider = "Data-Provider-Function") - public void exportImportExportTest(@NotNull XSLTExporter.Type type, @NotNull final File wisemap, @NotNull final File recFile) throws IOException, ExportException { - - final Exporter exporter = XSLTExporter.create(type); - byte[] wiseMapContent = FileUtils.readFileToByteArray(wisemap); - if (recFile.exists()) { - // Compare rec and file ... - final String recContent = FileUtils.readFileToString(recFile, ENC_UTF_8) - .replaceAll("\n\\p{Blank}+", "\n") - .replaceAll("\n+", "\n"); - - // Export mile content ... - final ByteArrayOutputStream bos = new ByteArrayOutputStream(); - exporter.export(wiseMapContent, bos); - final String exportContent = bos.toString(StandardCharsets.UTF_8) - .replaceAll("\n\\p{Blank}+", "\n") - .replaceAll("\n+", "\n"); - Assert.assertEquals(exportContent, recContent); - - } else { - final OutputStream fos = new FileOutputStream(recFile); - exporter.export(wiseMapContent, fos); - fos.close(); - } - } - - private Mindmap load(@NotNull File wisemap) throws IOException { - final byte[] recContent = FileUtils.readFileToByteArray(wisemap); - final Mindmap result = new Mindmap(); - result.setUnzipXml(recContent); - return result; - } - - //This function will provide the parameter data - @DataProvider(name = "Data-Provider-Function") - public Object[][] parameterIntTestProvider() { - - final File dataDir = new File(DATA_DIR_PATH); - final File[] freeMindFiles = dataDir.listFiles(new FilenameFilter() { - - public boolean accept(File dir, String name) { - return name.endsWith(".wxml"); - } - }); - - final Object[][] result = new Object[freeMindFiles.length * 7][2]; - for (int i = 0; i < freeMindFiles.length; i++) { - File freeMindFile = freeMindFiles[i]; - final String name = freeMindFile.getName(); - - int pos = i * 7; - final String fileName = name.substring(0, name.lastIndexOf(".")); - result[pos++] = new Object[]{XSLTExporter.Type.TEXT, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.TEXT.getFileExtension())}; - result[pos++] = new Object[]{XSLTExporter.Type.CSV, freeMindFile, new File(DATA_DIR_PATH, fileName + ".csv")}; - result[pos++] = new Object[]{XSLTExporter.Type.WORD, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.MICROSOFT_WORD.getFileExtension())}; - result[pos++] = new Object[]{XSLTExporter.Type.LATEX, freeMindFile, new File(DATA_DIR_PATH, fileName + ".latex")}; - result[pos++] = new Object[]{XSLTExporter.Type.MICROSOFT_EXCEL, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.MICROSOFT_EXCEL.getFileExtension())}; - result[pos++] = new Object[]{XSLTExporter.Type.OPEN_OFFICE, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.OPEN_OFFICE_WRITER.getFileExtension())}; - result[pos++] = new Object[]{XSLTExporter.Type.MINDJET, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.MINDJET.getFileExtension())}; - - } - - return result; - } -} diff --git a/wise-webapp/src/test/java/com/wisemapping/test/model/IconsTest.java b/wise-webapp/src/test/java/com/wisemapping/test/model/IconsTest.java deleted file mode 100644 index 4d23132b..00000000 --- a/wise-webapp/src/test/java/com/wisemapping/test/model/IconsTest.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.wisemapping.test.model; - - -import com.wisemapping.model.IconFamily; -import com.wisemapping.model.MindmapIcon; -import com.wisemapping.model.MindmapIcons; -import org.testng.Assert; -import org.testng.annotations.Test; - -import java.io.File; -import java.util.List; - -@Test -public class IconsTest { - final private static String CURRENT_JSON_ICONS = "[{\"id\": \"face\", \"icons\" : [\"face_plain\",\"face_sad\",\"face_crying\",\"face_smile\",\"face_surprise\",\"face_wink\"]},{\"id\": \"funy\", \"icons\" : [\"funy_angel\",\"funy_devilish\",\"funy_glasses\",\"funy_grin\",\"funy_kiss\",\"funy_monkey\"]},{\"id\": \"conn\", \"icons\" : [\"conn_connect\",\"conn_disconnect\"]},{\"id\": \"sport\", \"icons\" : [\"sport_basketball\",\"sport_football\",\"sport_golf\",\"sport_raquet\",\"sport_shuttlecock\",\"sport_soccer\",\"sport_tennis\"]},{\"id\": \"bulb\", \"icons\" : [\"bulb_light_on\",\"bulb_light_off\"]},{\"id\": \"thumb\", \"icons\" : [\"thumb_thumb_up\",\"thumb_thumb_down\"]},{\"id\": \"tick\", \"icons\" : [\"tick_tick\",\"tick_cross\"]},{\"id\": \"onoff\", \"icons\" : [\"onoff_clock\",\"onoff_clock_red\",\"onoff_add\",\"onoff_delete\",\"onoff_status_offline\",\"onoff_status_online\"]},{\"id\": \"money\", \"icons\" : [\"money_money\",\"money_dollar\",\"money_euro\",\"money_pound\",\"money_yen\",\"money_coins\",\"money_ruby\"]},{\"id\": \"time\", \"icons\" : [\"time_calendar\",\"time_clock\",\"time_hourglass\"]},{\"id\": \"chart\", \"icons\" : [\"chart_bar\",\"chart_line\",\"chart_curve\",\"chart_pie\",\"chart_organisation\"]},{\"id\": \"sign\", \"icons\" : [\"sign_warning\",\"sign_info\",\"sign_stop\",\"sign_help\",\"sign_cancel\"]},{\"id\": \"hard\", \"icons\" : [\"hard_cd\",\"hard_computer\",\"hard_controller\",\"hard_driver_disk\",\"hard_ipod\",\"hard_keyboard\",\"hard_mouse\",\"hard_printer\"]},{\"id\": \"soft\", \"icons\" : [\"soft_bug\",\"soft_cursor\",\"soft_database_table\",\"soft_database\",\"soft_feed\",\"soft_folder_explore\",\"soft_rss\",\"soft_penguin\"]},{\"id\": \"arrow\", \"icons\" : [\"arrow_up\",\"arrow_down\",\"arrow_left\",\"arrow_right\"]},{\"id\": \"arrowc\", \"icons\" : [\"arrowc_rotate_anticlockwise\",\"arrowc_rotate_clockwise\",\"arrowc_turn_left\",\"arrowc_turn_right\"]},{\"id\": \"people\", \"icons\" : [\"people_group\",\"people_male1\",\"people_male2\",\"people_female1\",\"people_female2\"]},{\"id\": \"mail\", \"icons\" : [\"mail_envelop\",\"mail_mailbox\",\"mail_edit\",\"mail_list\"]},{\"id\": \"flag\", \"icons\" : [\"flag_blue\",\"flag_green\",\"flag_orange\",\"flag_pink\",\"flag_purple\",\"flag_yellow\"]},{\"id\": \"bullet\", \"icons\" : [\"bullet_black\",\"bullet_blue\",\"bullet_green\",\"bullet_orange\",\"bullet_red\",\"bullet_pink\",\"bullet_purple\"]},{\"id\": \"tag\", \"icons\" : [\"tag_blue\",\"tag_green\",\"tag_orange\",\"tag_red\",\"tag_pink\",\"tag_yellow\",\"tag_purple\"]},{\"id\": \"object\", \"icons\" : [\"object_bell\",\"object_clanbomber\",\"object_key\",\"object_pencil\",\"object_phone\",\"object_magnifier\",\"object_clip\",\"object_music\",\"object_star\",\"object_wizard\",\"object_house\",\"object_cake\",\"object_camera\",\"object_palette\",\"object_rainbow\"]},{\"id\": \"weather\", \"icons\" : [\"weather_clear-night\",\"weather_clear\",\"weather_few-clouds-night\",\"weather_few-clouds\",\"weather_overcast\",\"weather_severe-alert\",\"weather_showers-scattered\",\"weather_showers\",\"weather_snow\",\"weather_storm\"]},{\"id\": \"task\", \"icons\" : [\"task_0\",\"task_25\",\"task_50\",\"task_75\",\"task_100\"]},{\"id\": \"number\", \"icons\" : [\"number_1\",\"number_2\",\"number_3\",\"number_4\",\"number_5\",\"number_6\",\"number_7\",\"number_8\",\"number_9\"]},]"; - - @Test - void checkImagesByFamily() throws IllegalAccessException { - List iconByFamily = MindmapIcons.getIconByFamily(IconFamily.BULLET); - Assert.assertEquals(iconByFamily.size(), 7); - } - - - @Test - void checkPngFile() throws IllegalAccessException { - - IconFamily[] values = IconFamily.values(); - for (IconFamily family : values) { - final List iconByFamily = MindmapIcons.getIconByFamily(family); - for (MindmapIcon mindmapIcon : iconByFamily) { - final String pngName = mindmapIcon.getId() + ".png"; - final File file = new File("src/main/webapp/map-icons/icons", pngName); - Assert.assertTrue(file.exists(), "Could not be found:" + file.getAbsolutePath()); - } - - - } - } - - @Test - void jsonGenerationRepresentation() { - - IconFamily[] values = IconFamily.values(); - final StringBuilder result = new StringBuilder("["); - - for (IconFamily family : values) { - result.append("{"); - result.append("\"id\": \"" + family.name().toLowerCase() + "\""); - result.append(", \"icons\" : ["); - - final List iconByFamily = MindmapIcons.getIconByFamily(family); - for (int i = 0; i < iconByFamily.size(); i++) { - if (i != 0) { - result.append(","); - } - MindmapIcon mindmapIcon = iconByFamily.get(i); - result.append("\"" + mindmapIcon.getId() + "\""); - } - - result.append("]},"); - } - result.append("]"); - Assert.assertEquals(result.toString(), CURRENT_JSON_ICONS, "Some change has been introduced in the icons library. Please, check the IconIcons.js and update the variable.mindplot.ImageIcon.prototype.ICON_FAMILIES"); - - } - -} diff --git a/wise-webapp/src/test/resources/data/svg/bug-nbsp-exp.svg b/wise-webapp/src/test/resources/data/svg/bug-nbsp-exp.svg deleted file mode 100644 index 648b34b5..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug-nbsp-exp.svg +++ /dev/null @@ -1,1325 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Insomnia - - - - - - - - NUTRITION/HEALTH - - - - - - - - - NUTRITION - - - - - - - - - Resist energy drinks - - - - - - - - - Take calcium, zinc and magnesium vitamins - - - - - - - - - Drink relaxing tea - - - - - - - - - Drink plenty of water - - - - - - - - - Eat food that promotes sleep - - - - - - - - - HEALTH - - - - - - - - - Get sunlight - - - - - - - - - Consult doctor - - - - - - - - - Check your thyroid - - - - - - - - - Avoid medicine that keeps you awake/alert - - - - - - - - - Address health issues - - - - - - - - - PHYSICAL - - - - - - - - - Meditate - - - - - - - - - Practice relaxation techniques - - - - - - - - - Maintain your ideal weight - - - - - - - - - Get massaged - - - - - - - - - Exercise - - - - - - - - - Spend time outside - - - - - - - - - Practice yoga - - - - - - - - - Enjoy activities during the day - - - - - - - - - Aroma therapy - - - - - - - - - SLEEP PATTERN/POSITION - - - - - - - - - BREATING - - - - - - - - - Slow down breathing - - - - - - - - - Do breathing exercises - - - - - - - - - SLEEP PATTERN - - - - - - - - - Wake up same time each day - - - - - - - - - Create bedtime ritual - - - - - - - - - Understand your sleep cycle - - - - - - - - - Tell your companions when they can wake you - - - - - - - - - Go to bed the same time every day - - - - - - - - - POSITIONING - - - - - - - - - Support body - - - - - - - - - Sleep in your bedroom and your bed - - - - - - - - - Pillow under knees - - - - - - - - - Change your position - - - - - - - - - Visit sleep clinic for problems - - - - - - - - - Children in their own bed - - - - - - - - - TO DO IN BED - - - - - - - - - RELAXATION - - - - - - - - - Repeat a mantra word - - - - - - - - - Recite favorite poems to yourself - - - - - - - - - Say your prayers - - - - - - - - - Read a thought or quote of the day - - - - - - - - - REFLEXOLOGY - - - - - - - - - Wiggle your toes - - - - - - - - - SLEEPING ACTIONS - - - - - - - - - Count backwards - - - - - - - - - Masks to cover eyes - - - - - - - - - Use ear plugs - - - - - - - - - Read a page of a day book - - - - - - - - - Count sheep - - - - - - - - - OPTIMISM/BEHAVIOR - - - - - - - - - PROBLEMS - - - - - - - - - Maintain safe environment - - - - - - - - - Acknowledge what is bothering you and let it go - - - - - - - - - Resolve disagreements - - - - - - - - - BEHAVIOR - - - - - - - - - If you can’t sleep, get up, do something until tired - - - - - - - - - Fight after dinner drowsiness - - - - - - - - - Wear comfortable sleeping clothes - - - - - - - - - Keep a sleep journal - - - - - - - - - Do some good for others - - - - - - - - - Behave well - - - - - - - - - OPTIMISIM - - - - - - - - - Keep a gratefulness diary/journal - - - - - - - - - Know you have the power to solve your problems - - - - - - - - - Think positively – you are going to have a good night’s sleep - - - - - - - - - Imagine something happy - - - - - - - - - Think positively and be happy - - - - - - - - - BEDROOM - - - - - - - - - Make bedroom sleep sanctuary - - - - - - - - - Reserve bed and bedroom for sleep, love and reading - - - - - - - - - ENVIRONMENT - - - - - - - - - Comfortable humidity - - - - - - - - - Let sunshine in - - - - - - - - - RELAXATION - - - - - - - - - Listen to a relaxation CD that shuts off by itself - - - - - - - - - Eucalyptus twigs in a bed stand vase - - - - - - - - - Scented candles - - - - - - - - - Keep bedroom neat without clutter - - - - - - - - - BED - - - - - - - - - Clean bedding - - - - - - - - - Bedding colors and textures should be soothing and peaceful - - - - - - - - - INTERIOR DESIGN - - - - - - - - - Peaceful, calm décor - - - - - - - - - Have an aquarium with fish - - - - - - - - - Select peaceful wall hangings - - - - - - - - - Arrange furniture to block light - - - - - - - - - Cool and dark - - - - - - - - - Have plants - - - - - - - - - Room darkening shades - - - - - - - - - Walls painted in restful colors - - - - - - - - - No technology in room (television, computer) - - - - - - - - - Low watt bulbs - - - - - - - - - White noise machine - - - - - - - - - NEAR BED - - - - - - - - - Water on bed stand - - - - - - - - - Place clock out of arm’s reach - - - - - - - - - Comfort items organized neatly near bed - - - - - - - - - BEFORE GOING TO BED - - - - - - - - - FOOD AND DRINKS - - - - - - - - - Drink a glass of warm milk - - - - - - - - - Have rosebud tea - - - - - - - - - Eat foods with tryptophan - - - - - - - - - DE-STRESSING - - - - - - - - - Write problems on paper and leave them there - - - - - - - - - Avoid emotional discussions - - - - - - - - - Stop watching television an hour before bedtime - - - - - - - - - RELAXATION - - - - - - - - - Turn off your mobile phone - - - - - - - - - Massage or cuddle with your loved one - - - - - - - - - Take a warm bath or shower - - - - - - - - - Have sex - - - - - - - - - Brush and floss your teeth - - - - - - - - - Use the bathroom - - - - - - - - - Take a sleep aid suggested by doctor - - - - - - - - - Use a flashlight to use the bathroom - - - - - - - - - DON'T - - - - - - - - - Smoke - - - - - - - - - Alcohol - - - - - - - - - Nap too much - - - - - - - - - Be angry - - - - - - - - - Watch/read news before bed - - - - - - - - - Eat a lot before bed - - - - - - - - - Sleep on the couch - - - - - - - - - No pets - - - - - - - - - Avoid eating - - - - - - - - - Avoid upsetting activities like bill paying - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/bug-nbsp.pdf b/wise-webapp/src/test/resources/data/svg/bug-nbsp.pdf deleted file mode 100644 index 89ce8cb5..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug-nbsp.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug-nbsp.png b/wise-webapp/src/test/resources/data/svg/bug-nbsp.png deleted file mode 100644 index ea327287..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug-nbsp.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug-nbsp.svg b/wise-webapp/src/test/resources/data/svg/bug-nbsp.svg deleted file mode 100644 index 13df10ec..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug-nbsp.svg +++ /dev/null @@ -1,2251 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Insomnia - - - - - - - - NUTRITION/HEALTH - - - - - - - - - NUTRITION - - - - - - - - - Resist energy drinks  - - - - - - - - - Take calcium, zinc and magnesium vitamins  - - - - - - - - - Drink relaxing tea  - - - - - - - - - Drink plenty of water  - - - - - - - - - Eat food that promotes sleep  - - - - - - - - - HEALTH - - - - - - - - - Get sunlight  - - - - - - - - - Consult doctor  - - - - - - - - - Check your thyroid  - - - - - - - - - Avoid medicine that keeps you awake/alert - - - - - - - - - Address health issues  - - - - - - - - - PHYSICAL - - - - - - - - - Meditate  - - - - - - - - - Practice relaxation techniques  - - - - - - - - - Maintain your ideal weight  - - - - - - - - - Get massaged  - - - - - - - - - Exercise  - - - - - - - - - Spend time outside  - - - - - - - - - Practice yoga  - - - - - - - - - Enjoy activities during the day  - - - - - - - - - Aroma therapy  - - - - - - - - - SLEEP PATTERN/POSITION - - - - - - - - - BREATING - - - - - - - - - Slow down breathing  - - - - - - - - - Do breathing exercises  - - - - - - - - - SLEEP PATTERN - - - - - - - - - Wake up same time each day  - - - - - - - - - Create bedtime ritual  - - - - - - - - - Understand your sleep cycle  - - - - - - - - - Tell your companions when they can wake you  - - - - - - - - - Go to bed the same time every day  - - - - - - - - - POSITIONING - - - - - - - - - Support body  - - - - - - - - - Sleep in your bedroom and your bed - - - - - - - - - Pillow under knees  - - - - - - - - - Change your position  - - - - - - - - - Visit sleep clinic for problems  - - - - - - - - - Children in their own bed  - - - - - - - - - TO DO IN BED - - - - - - - - - RELAXATION - - - - - - - - - Repeat a mantra word  - - - - - - - - - Recite favorite poems to yourself  - - - - - - - - - Say your prayers  - - - - - - - - - Read a thought or quote of the day  - - - - - - - - - REFLEXOLOGY - - - - - - - - - Wiggle your toes  - - - - - - - - - SLEEPING ACTIONS - - - - - - - - - Count backwards  - - - - - - - - - Masks to cover eyes  - - - - - - - - - Use ear plugs  - - - - - - - - - Read a page of a day book  - - - - - - - - - Count sheep  - - - - - - - - - OPTIMISM/BEHAVIOR - - - - - - - - - PROBLEMS - - - - - - - - - Maintain safe environment  - - - - - - - - - Acknowledge what is bothering you and let it go  - - - - - - - - - Resolve disagreements  - - - - - - - - - BEHAVIOR - - - - - - - - - If you can’t sleep, get up, do something until tired - - - - - - - - - Fight after dinner drowsiness - - - - - - - - - Wear comfortable sleeping clothes  - - - - - - - - - Keep a sleep journal  - - - - - - - - - Do some good for others  - - - - - - - - - Behave well  - - - - - - - - - OPTIMISIM - - - - - - - - - Keep a gratefulness diary/journal  - - - - - - - - - Know you have the power to solve your problems  - - - - - - - - - Think positively – you are going to have a good night’s sleep  - - - - - - - - - Imagine something happy  - - - - - - - - - Think positively and be happy - - - - - - - - - BEDROOM - - - - - - - - - Make bedroom sleep sanctuary  - - - - - - - - - Reserve bed and bedroom for sleep, love and reading  - - - - - - - - - ENVIRONMENT - - - - - - - - - Comfortable humidity  - - - - - - - - - Let sunshine in  - - - - - - - - - RELAXATION - - - - - - - - - Listen to a relaxation CD that shuts off by itself  - - - - - - - - - Eucalyptus twigs in a bed stand vase - - - - - - - - - Scented candles  - - - - - - - - - Keep bedroom neat without clutter  - - - - - - - - - BED - - - - - - - - - Clean bedding  - - - - - - - - - Bedding colors and textures should be soothing and peaceful  - - - - - - - - - INTERIOR DESIGN - - - - - - - - - Peaceful, calm décor  - - - - - - - - - Have an aquarium with fish  - - - - - - - - - Select peaceful wall hangings  - - - - - - - - - Arrange furniture to block light  - - - - - - - - - Cool and dark - - - - - - - - - Have plants  - - - - - - - - - Room darkening shades  - - - - - - - - - Walls painted in restful colors  - - - - - - - - - No technology in room (television, computer)  - - - - - - - - - Low watt bulbs  - - - - - - - - - White noise machine  - - - - - - - - - NEAR BED - - - - - - - - - Water on bed stand  - - - - - - - - - Place clock out of arm’s reach  - - - - - - - - - Comfort items organized neatly near bed  - - - - - - - - - BEFORE GOING TO BED  - - - - - - - - - FOOD AND DRINKS - - - - - - - - - Drink a glass of warm milk  - - - - - - - - - Have rosebud tea  - - - - - - - - - Eat foods with tryptophan  - - - - - - - - - DE-STRESSING - - - - - - - - - Write problems on paper and leave them there  - - - - - - - - - Avoid emotional discussions  - - - - - - - - - Stop watching television an hour before bedtime  - - - - - - - - - RELAXATION - - - - - - - - - Turn off your mobile phone  - - - - - - - - - Massage or cuddle with your loved one  - - - - - - - - - Take a warm bath or shower  - - - - - - - - - Have sex  - - - - - - - - - Brush and floss your teeth  - - - - - - - - - Use the bathroom  - - - - - - - - - Take a sleep aid suggested by doctor - - - - - - - - - Use a flashlight to use the bathroom  - - - - - - - - - DON'T - - - - - - - - - Smoke  - - - - - - - - - Alcohol  - - - - - - - - - Nap too much  - - - - - - - - - Be angry  - - - - - - - - - Watch/read news before bed  - - - - - - - - - Eat a lot before bed  - - - - - - - - - Sleep on the couch - - - - - - - - - No pets  - - - - - - - - - Avoid eating  - - - - - - - - - Avoid upsetting activities like bill paying  - - - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/bug1-exp.svg b/wise-webapp/src/test/resources/data/svg/bug1-exp.svg deleted file mode 100644 index 0e8315f4..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug1-exp.svg +++ /dev/null @@ -1,475 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Diseño de Paginas WEB - - - - - - - - Ventajas y Beneficios - - - - - - - - - - - Obtención de clientes y contactos - - - - - - - - - - - Imagen corporativa - - - - - - - - - - - Informa - - - - - - - - - - - Internacionalización - - - - - - - - - - - Captación - - - - - - - - - - - Fidelización - - - - - - - - - - - Nuevos clientes - - - - - - - - - - - MARKETING - - - - - - - - - - - son una herramienta de: - - - - - - - - - Tipos de Paginas WEB - - - - - - - - - - - Por su audiencia - - - - - - - - - - - Públicos - - - - - - - - - - - Extranet - - - - - - - - - Intranet - - - - - - - - - Por su dinamismo - - - - - - - - - - - Por su estructura - - - - - - - - - - - Sitios Interactivos - - - - - - - - - - - Sitios estáticos - - - - - - - - - - - Por su profundidad - - - - - - - - - - - Por sus objetivos - - - - - - - - - - - Comerciales - - - - - - - - - - - Informativos - - - - - - - - - - - Ocio - - - - - - - - - - - Navegación - - - - - - - - - - - Artísticos - - - - - - - - - - - Personales - - - - - - - - - - - Por su apertura - - - - - - - - - - - abierta - - - - - - - - - cerrada - - - - - - - - - semicerrada - - - - - - - - - Importancia - - - - - - - - - internet - - - - - - - - - - - medio de difusion - - - - - - - - - - - popular - - - - - - - - - - - economico - - - - - - - - - - - Atractivas - - - - - - - - - Combinacion de Colores - - - - - - - - - - - contraste - - - - - - - - - significado de colores - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/bug1.pdf b/wise-webapp/src/test/resources/data/svg/bug1.pdf deleted file mode 100644 index 8e655938..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug1.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug1.png b/wise-webapp/src/test/resources/data/svg/bug1.png deleted file mode 100644 index a6750237..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug1.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug1.svg b/wise-webapp/src/test/resources/data/svg/bug1.svg deleted file mode 100644 index 70a750aa..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug1.svg +++ /dev/null @@ -1,797 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Diseño de Paginas WEB - - - - - - - - Ventajas y Beneficios - - - - - - - - - - - Obtención de clientes y contactos - - - - - - - - - - - Imagen corporativa - - - - - - - - - - - Informa - - - - - - - - - - - Internacionalización - - - - - - - - - - - Captación - - - - - - - - - - - Fidelización - - - - - - - - - - - Nuevos clientes - - - - - - - - - - - MARKETING - - - - - - - - - - - son una herramienta de: - - - - - - - - - Tipos de Paginas WEB - - - - - - - - - - - Por su audiencia - - - - - - - - - - - Públicos - - - - - - - - - - - Extranet - - - - - - - - - Intranet - - - - - - - - - Por su dinamismo - - - - - - - - - - - Por su estructura - - - - - - - - - - - Sitios Interactivos - - - - - - - - - - - Sitios estáticos - - - - - - - - - - - Por su profundidad - - - - - - - - - - - Por sus objetivos - - - - - - - - - - - Comerciales - - - - - - - - - - - Informativos - - - - - - - - - - - Ocio - - - - - - - - - - - Navegación - - - - - - - - - - - Artísticos - - - - - - - - - - - Personales - - - - - - - - - - - Por su apertura - - - - - - - - - - - abierta - - - - - - - - - cerrada - - - - - - - - - semicerrada - - - - - - - - - Importancia - - - - - - - - - internet - - - - - - - - - - - medio de difusion - - - - - - - - - - - popular - - - - - - - - - - - economico - - - - - - - - - - - Atractivas - - - - - - - - - Combinacion de Colores - - - - - - - - - - - contraste - - - - - - - - - significado de colores - - - - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/bug2-exp.svg b/wise-webapp/src/test/resources/data/svg/bug2-exp.svg deleted file mode 100644 index fd607f20..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug2-exp.svg +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Script_Bro_P1 - - - - - - - - ??????favor - - - - - - - - - enter - - - - - - - - - ??/???????? - - - - - - - - - exit - - - - - - - - - ???????????? - - - - - - - - - ?????????? - - - - - - - - - ???????????? - - - - - - - - - ????????? - - - - - - - - - ????????? - - - - - - - - - ?????????X? - - - - - - - - - ??-->?????? - - - - - - - - - ???? - - - - - - - - - ????? - - - - - - - - - ??-->???? - - - - - - - - - ??tab - - - - - - - - - ???>???????->???? - - - - - - - - - ???>????->javascript - - - - - - - - - ???>??>?????? - - - - - - - - - ???>????>???? - - - - - - - - - ??????? - - - - - - - - - Browser ?call?SM??? - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/bug2.pdf b/wise-webapp/src/test/resources/data/svg/bug2.pdf deleted file mode 100644 index c6c959c5..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug2.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug2.png b/wise-webapp/src/test/resources/data/svg/bug2.png deleted file mode 100644 index 02181b8d..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug2.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug2.svg b/wise-webapp/src/test/resources/data/svg/bug2.svg deleted file mode 100644 index 81edcea6..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug2.svg +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Script_Bro_P1 - - - - - - - - ??????favor - - - - - - - - - enter - - - - - - - - - ??/???????? - - - - - - - - - exit - - - - - - - - - ???????????? - - - - - - - - - ?????????? - - - - - - - - - ???????????? - - - - - - - - - ????????? - - - - - - - - - ????????? - - - - - - - - - ?????????X? - - - - - - - - - ??-->?????? - - - - - - - - - ???? - - - - - - - - - ????? - - - - - - - - - ??-->???? - - - - - - - - - ??tab - - - - - - - - - ???>???????->???? - - - - - - - - - ???>????->javascript - - - - - - - - - ???>??>?????? - - - - - - - - - ???>????>???? - - - - - - - - - ??????? - - - - - - - - - Browser ?call?SM??? - - - - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/bug3-exp.svg b/wise-webapp/src/test/resources/data/svg/bug3-exp.svg deleted file mode 100644 index 32a25e4a..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug3-exp.svg +++ /dev/null @@ -1,4379 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Connections B - - - - - - - - The Northern Gannet - - - - - - - - - flute - - - - - - - - - middle school - - - - - - - - - lockers - - - - - - - - - new territory - - - - - - - - - university - - - - - - - - - streets - - - - - - - - - walking - - - - - - - - - zombies - - - - - - - - - apocalypse - - - - - - - - - the day after tomorrow - - - - - - - - - exercise - - - - - - - - - weekends - - - - - - - - - independence - - - - - - - - - growing up - - - - - - - - - nunavut - - - - - - - - - co-op - - - - - - - - - cold - - - - - - - - - intimidation - - - - - - - - - bears - - - - - - - - - baseball - - - - - - - - - diamonds - - - - - - - - - engagement - - - - - - - - - ring - - - - - - - - - fingers - - - - - - - - - fetish - - - - - - - - - scales - - - - - - - - - piano - - - - - - - - - nail polish - - - - - - - - - manicures - - - - - - - - - telephone - - - - - - - - - marilyn monroe - - - - - - - - - blonde - - - - - - - - - perfection - - - - - - - - - white dress - - - - - - - - - tiffany's - - - - - - - - - breakfast at - - - - - - - - - audrey hepburn - - - - - - - - - classy - - - - - - - - - black & white - - - - - - - - - wine - - - - - - - - - parties - - - - - - - - - night club - - - - - - - - - weekends - - - - - - - - - bomber - - - - - - - - - stereotypical - - - - - - - - - camping - - - - - - - - - solitude - - - - - - - - - woods - - - - - - - - - cabin - - - - - - - - - joss whedon - - - - - - - - - avengers - - - - - - - - - super powers - - - - - - - - - sky high - - - - - - - - - what would you rather? - - - - - - - - - high school games - - - - - - - - - dots - - - - - - - - - brain damaged - - - - - - - - - firefly - - - - - - - - - cult - - - - - - - - - hiking - - - - - - - - - boots - - - - - - - - - rain - - - - - - - - - waterloo - - - - - - - - - hurricane sandy - - - - - - - - - blackout - - - - - - - - - boyfriend - - - - - - - - - justin bieber - - - - - - - - - one direction - - - - - - - - - self-esteem - - - - - - - - - depression - - - - - - - - - treatable - - - - - - - - - suicide - - - - - - - - - believe - - - - - - - - - silver linings - - - - - - - - - jennifer lawrence - - - - - - - - - the hunger games - - - - - - - - - cloud watching - - - - - - - - - up! - - - - - - - - - dreams - - - - - - - - - sleep - - - - - - - - - future - - - - - - - - - back to the future - - - - - - - - - wild west - - - - - - - - - serene - - - - - - - - - picnics - - - - - - - - - pop culture - - - - - - - - - sarcasm - - - - - - - - - perez hilton - - - - - - - - - high pitched - - - - - - - - - falsetto - - - - - - - - - glass shattering - - - - - - - - - fat lady - - - - - - - - - narrator - - - - - - - - - flocks - - - - - - - - - coffee table book - - - - - - - - - caffeine - - - - - - - - - energy - - - - - - - - - crash - - - - - - - - - manga - - - - - - - - - ottawa - - - - - - - - - canada - - - - - - - - - home - - - - - - - - - is whenever I'm with you - - - - - - - - - music - - - - - - - - - indie - - - - - - - - - bluesfest - - - - - - - - - edward sharpe - - - - - - - - - twilight - - - - - - - - - breaking dawn - - - - - - - - - almost over - - - - - - - - - universally ridiculed - - - - - - - - - kardashians - - - - - - - - - kristen stewart - - - - - - - - - home sweet home - - - - - - - - - cross stitch - - - - - - - - - candy house - - - - - - - - - gingerbread - - - - - - - - - hansel & gretel witch - - - - - - - - - once upon a time - - - - - - - - - sundays - - - - - - - - - breakfast - - - - - - - - - church - - - - - - - - - potluck - - - - - - - - - must catch up - - - - - - - - - running - - - - - - - - - races - - - - - - - - - horses - - - - - - - - - riding boots - - - - - - - - - fall - - - - - - - - - bad egg - - - - - - - - - allergies - - - - - - - - - for life - - - - - - - - - dopestrong - - - - - - - - - behind - - - - - - - - - homework - - - - - - - - - procrastination - - - - - - - - - parliament - - - - - - - - - downtown - - - - - - - - - the market - - - - - - - - - bargaining - - - - - - - - - negotiation - - - - - - - - - males vs. females - - - - - - - - - allowance - - - - - - - - - childhood - - - - - - - - - monsters under the bed - - - - - - - - - sketch - - - - - - - - - comedy - - - - - - - - - Ana Soler - - - - - - - - - motion - - - - - - - - - stop motion - - - - - - - - - tim burton - - - - - - - - - tennis - - - - - - - - - racket - - - - - - - - - noise - - - - - - - - - sound - - - - - - - - - sonic boom - - - - - - - - - hedgehogs - - - - - - - - - needles - - - - - - - - - pine trees - - - - - - - - - christmas - - - - - - - - - countdowns - - - - - - - - - anticipation - - - - - - - - - video games - - - - - - - - - courts - - - - - - - - - law - - - - - - - - - judge - - - - - - - - - opinions - - - - - - - - - gossip - - - - - - - - - gossip girl - - - - - - - - - tv shows - - - - - - - - - seasonal - - - - - - - - - holidays - - - - - - - - - christmas - - - - - - - - - halloween - - - - - - - - - allergies - - - - - - - - - death - - - - - - - - - ghosts - - - - - - - - - hospitals - - - - - - - - - cancer - - - - - - - - - peanuts - - - - - - - - - comics - - - - - - - - - manga - - - - - - - - - confrontation - - - - - - - - - negotiation - - - - - - - - - weakness - - - - - - - - - interviews - - - - - - - - - kryptonite - - - - - - - - - eggs - - - - - - - - - sunnyside up - - - - - - - - - library - - - - - - - - - favourite spaces - - - - - - - - - tlc - - - - - - - - - books made into movies - - - - - - - - - harry potter - - - - - - - - - fond childhood - - - - - - - - - magic - - - - - - - - - sleepless in seattle - - - - - - - - - the hunger games - - - - - - - - - dystopian - - - - - - - - - archery - - - - - - - - - life or death - - - - - - - - - time traveler's wife - - - - - - - - - romance - - - - - - - - - love - - - - - - - - - love at first sight - - - - - - - - - mystic - - - - - - - - - exists? - - - - - - - - - chivalry - - - - - - - - - bygone eras - - - - - - - - - star-crossed lovers - - - - - - - - - tragedy - - - - - - - - - hamlet - - - - - - - - - plays - - - - - - - - - theatre - - - - - - - - - opera - - - - - - - - - falsetto - - - - - - - - - broadway - - - - - - - - - new york city - - - - - - - - - landscapes - - - - - - - - - paintings - - - - - - - - - scenery - - - - - - - - - beauty - - - - - - - - - memorable - - - - - - - - - 9/11 - - - - - - - - - lightbulb memory - - - - - - - - - shakespeare - - - - - - - - - inventor of words - - - - - - - - - evolution of english language - - - - - - - - - tears - - - - - - - - - catharsis - - - - - - - - - oedipus rex - - - - - - - - - mother complex - - - - - - - - - purging - - - - - - - - - spring cleaning - - - - - - - - - bulimia - - - - - - - - - women - - - - - - - - - illness - - - - - - - - - rumors - - - - - - - - - adele - - - - - - - - - singing - - - - - - - - - voice - - - - - - - - - grapevine - - - - - - - - - vine yard - - - - - - - - - bottle shock - - - - - - - - - life ruining - - - - - - - - - unplanned pregnancy - - - - - - - - - sicknesses - - - - - - - - - reputation - - - - - - - - - word of mouth - - - - - - - - - bad boy/good boy - - - - - - - - - litigation - - - - - - - - - forensics - - - - - - - - - csi - - - - - - - - - miami - - - - - - - - - beaches - - - - - - - - - sunscreen - - - - - - - - - tans - - - - - - - - - life guards - - - - - - - - - volleyball - - - - - - - - - police officers - - - - - - - - - donuts - - - - - - - - - sirens - - - - - - - - - mermaids - - - - - - - - - enchantments - - - - - - - - - disney - - - - - - - - - halloween costumes - - - - - - - - - shipwrecks - - - - - - - - - treasure island - - - - - - - - - classic books - - - - - - - - - map making - - - - - - - - - art exhibit - - - - - - - - - museums - - - - - - - - - museum project - - - - - - - - - travelling - - - - - - - - - backpacking - - - - - - - - - explorers - - - - - - - - - map making - - - - - - - - - darwin - - - - - - - - - survival of the fittest - - - - - - - - - cliches - - - - - - - - - dora - - - - - - - - - children - - - - - - - - - birth - - - - - - - - - past - - - - - - - - - ghosts - - - - - - - - - halloween - - - - - - - - - scary movies - - - - - - - - - faster - - - - - - - - - cars - - - - - - - - - accidents - - - - - - - - - cooking - - - - - - - - - smart - - - - - - - - - good grades - - - - - - - - - clever - - - - - - - - - fox - - - - - - - - - similes - - - - - - - - - history of their conception - - - - - - - - - cookies - - - - - - - - - repetition - - - - - - - - - how kids learn - - - - - - - - - focus - - - - - - - - - attention span - - - - - - - - - camera - - - - - - - - - flash - - - - - - - - - super heroes - - - - - - - - - save the world - - - - - - - - - photography - - - - - - - - - hobby - - - - - - - - - crafts - - - - - - - - - Klutz - - - - - - - - - first love - - - - - - - - - talent - - - - - - - - - party tricks - - - - - - - - - singing - - - - - - - - - life style - - - - - - - - - magazine - - - - - - - - - healthy living - - - - - - - - - eat well - - - - - - - - - work well - - - - - - - - - sleep well - - - - - - - - - instagram - - - - - - - - - apps - - - - - - - - - iPhone 5 - - - - - - - - - foreign - - - - - - - - - films - - - - - - - - - artsy - - - - - - - - - "different" - - - - - - - - - Why we broke up book - - - - - - - - - accents - - - - - - - - - understandable - - - - - - - - - Gloria - - - - - - - - - Modern Family - - - - - - - - - accent colours - - - - - - - - - interior decor - - - - - - - - - Justin Timberlake - - - - - - - - - diaries - - - - - - - - - feelings - - - - - - - - - magazines - - - - - - - - - fashion - - - - - - - - - coco chanel - - - - - - - - - home decor - - - - - - - - - interior design - - - - - - - - - martha stewart - - - - - - - - - tv show - - - - - - - - - jail - - - - - - - - - arthur - - - - - - - - - after school programs - - - - - - - - - pinterest - - - - - - - - - internet startups - - - - - - - - - dropbox - - - - - - - - - competitions - - - - - - - - - sports - - - - - - - - - cloud data - - - - - - - - - tanning - - - - - - - - - skin cancer - - - - - - - - - personal - - - - - - - - - life record - - - - - - - - - helena bonham carter - - - - - - - - - crazy hair - - - - - - - - - johnny depp - - - - - - - - - scruff - - - - - - - - - childhood crushes - - - - - - - - - elementary school - - - - - - - - - sherlock holmes - - - - - - - - - britain - - - - - - - - - olympics - - - - - - - - - big ben - - - - - - - - - english accents - - - - - - - - - tea - - - - - - - - - typical - - - - - - - - - broken promises - - - - - - - - - heart break - - - - - - - - - all packaged kits - - - - - - - - - beauty boxes - - - - - - - - - solid business model - - - - - - - - - start ups - - - - - - - - - angel investments - - - - - - - - - tears - - - - - - - - - fathers - - - - - - - - - male complex - - - - - - - - - vegetables - - - - - - - - - weekly grocery shopping - - - - - - - - - REM - - - - - - - - - 9 - - - - - - - - - boybands - - - - - - - - - longevity - - - - - - - - - comedy - - - - - - - - - snl - - - - - - - - - animated movie - - - - - - - - - hayao miyazaki - - - - - - - - - first person - - - - - - - - - novels - - - - - - - - - i - - - - - - - - - nanowrimo - - - - - - - - - late starts - - - - - - - - - track and field - - - - - - - - - quantity - - - - - - - - - probability - - - - - - - - - self-obsessed - - - - - - - - - me generation - - - - - - - - - baby boomers - - - - - - - - - electronics - - - - - - - - - statistics - - - - - - - - - professors - - - - - - - - - painful - - - - - - - - - break - - - - - - - - - academia - - - - - - - - - phd - - - - - - - - - food - - - - - - - - - apples - - - - - - - - - nutrition - - - - - - - - - great american novel - - - - - - - - - on the road - - - - - - - - - cross canada - - - - - - - - - railways - - - - - - - - - scenery - - - - - - - - - favourite artists - - - - - - - - - stars - - - - - - - - - regina spektor - - - - - - - - - marina & the diamonds - - - - - - - - - 424 fluency - - - - - - - - - - - - - WHISPERED SECRETS - - - - - - - - - - - - - QUALITY TV SHOW REFERENCES - - - - - - - - - - - - - RESPONSIBILITY - - - - - - - - - - - - - INSTAGRAMED LATTES - - - - - - - - - SELF-CONSCIOUS SHOWER SINGING - - - - - - - - - - - - - DISCOVERING CITY HEARTS - - - - - - - - - 379 flexibility - - - - - - - - - - - - - MIDWIVE TALES TO SCARE CHILDREN - - - - - - - - - - - - - - - - - 8 convergence - - - - - - - - - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/bug3.pdf b/wise-webapp/src/test/resources/data/svg/bug3.pdf deleted file mode 100644 index 69a60e1e..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug3.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug3.png b/wise-webapp/src/test/resources/data/svg/bug3.png deleted file mode 100644 index ae975710..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug3.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug3.svg b/wise-webapp/src/test/resources/data/svg/bug3.svg deleted file mode 100644 index 30c91767..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug3.svg +++ /dev/null @@ -1,7536 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Connections B - - - - - - - - The Northern Gannet - - - - - - - - - flute - - - - - - - - - middle school - - - - - - - - - lockers - - - - - - - - - new territory - - - - - - - - - university - - - - - - - - - streets - - - - - - - - - walking - - - - - - - - - zombies - - - - - - - - - apocalypse - - - - - - - - - the day after tomorrow - - - - - - - - - exercise - - - - - - - - - weekends - - - - - - - - - independence - - - - - - - - - growing up - - - - - - - - - nunavut - - - - - - - - - co-op - - - - - - - - - cold - - - - - - - - - intimidation - - - - - - - - - bears - - - - - - - - - baseball - - - - - - - - - diamonds - - - - - - - - - engagement - - - - - - - - - ring - - - - - - - - - fingers - - - - - - - - - fetish - - - - - - - - - scales - - - - - - - - - piano - - - - - - - - - nail polish - - - - - - - - - manicures - - - - - - - - - telephone - - - - - - - - - marilyn monroe - - - - - - - - - blonde - - - - - - - - - perfection - - - - - - - - - white dress - - - - - - - - - tiffany's - - - - - - - - - breakfast at - - - - - - - - - audrey hepburn - - - - - - - - - classy - - - - - - - - - black & white - - - - - - - - - wine - - - - - - - - - parties - - - - - - - - - night club - - - - - - - - - weekends - - - - - - - - - bomber - - - - - - - - - stereotypical - - - - - - - - - camping - - - - - - - - - solitude - - - - - - - - - woods - - - - - - - - - cabin - - - - - - - - - joss whedon - - - - - - - - - avengers - - - - - - - - - super powers - - - - - - - - - sky high - - - - - - - - - what would you rather? - - - - - - - - - high school games - - - - - - - - - dots - - - - - - - - - brain damaged - - - - - - - - - firefly - - - - - - - - - cult - - - - - - - - - hiking - - - - - - - - - boots - - - - - - - - - rain - - - - - - - - - waterloo - - - - - - - - - hurricane sandy - - - - - - - - - blackout - - - - - - - - - boyfriend - - - - - - - - - justin bieber - - - - - - - - - one direction - - - - - - - - - self-esteem - - - - - - - - - depression - - - - - - - - - treatable - - - - - - - - - suicide - - - - - - - - - believe - - - - - - - - - silver linings - - - - - - - - - jennifer lawrence - - - - - - - - - the hunger games - - - - - - - - - cloud watching - - - - - - - - - up! - - - - - - - - - dreams - - - - - - - - - sleep - - - - - - - - - future - - - - - - - - - back to the future - - - - - - - - - wild west - - - - - - - - - serene - - - - - - - - - picnics - - - - - - - - - pop culture - - - - - - - - - sarcasm - - - - - - - - - perez hilton - - - - - - - - - high pitched - - - - - - - - - falsetto - - - - - - - - - glass shattering - - - - - - - - - fat lady - - - - - - - - - narrator - - - - - - - - - flocks - - - - - - - - - coffee table book - - - - - - - - - caffeine - - - - - - - - - energy - - - - - - - - - crash - - - - - - - - - manga - - - - - - - - - ottawa - - - - - - - - - canada - - - - - - - - - home - - - - - - - - - is whenever I'm with you - - - - - - - - - music - - - - - - - - - indie - - - - - - - - - bluesfest - - - - - - - - - edward sharpe - - - - - - - - - twilight - - - - - - - - - breaking dawn - - - - - - - - - almost over - - - - - - - - - universally ridiculed - - - - - - - - - kardashians - - - - - - - - - kristen stewart - - - - - - - - - home sweet home - - - - - - - - - cross stitch - - - - - - - - - candy house - - - - - - - - - gingerbread - - - - - - - - - hansel & gretel witch - - - - - - - - - once upon a time - - - - - - - - - sundays - - - - - - - - - breakfast - - - - - - - - - church - - - - - - - - - potluck - - - - - - - - - must catch up - - - - - - - - - running - - - - - - - - - races - - - - - - - - - horses - - - - - - - - - riding boots - - - - - - - - - fall - - - - - - - - - bad egg - - - - - - - - - allergies - - - - - - - - - for life - - - - - - - - - dopestrong - - - - - - - - - behind - - - - - - - - - homework - - - - - - - - - procrastination - - - - - - - - - parliament - - - - - - - - - downtown - - - - - - - - - the market - - - - - - - - - bargaining - - - - - - - - - negotiation - - - - - - - - - males vs. females - - - - - - - - - allowance - - - - - - - - - childhood - - - - - - - - - monsters under the bed - - - - - - - - - sketch - - - - - - - - - comedy - - - - - - - - - Ana Soler - - - - - - - - - motion - - - - - - - - - stop motion - - - - - - - - - tim burton - - - - - - - - - tennis - - - - - - - - - racket - - - - - - - - - noise - - - - - - - - - sound - - - - - - - - - sonic boom - - - - - - - - - hedgehogs - - - - - - - - - needles - - - - - - - - - pine trees - - - - - - - - - christmas - - - - - - - - - countdowns - - - - - - - - - anticipation - - - - - - - - - video games - - - - - - - - - courts - - - - - - - - - law - - - - - - - - - judge - - - - - - - - - opinions - - - - - - - - - gossip - - - - - - - - - gossip girl - - - - - - - - - tv shows - - - - - - - - - seasonal - - - - - - - - - holidays - - - - - - - - - christmas - - - - - - - - - halloween - - - - - - - - - allergies - - - - - - - - - death - - - - - - - - - ghosts - - - - - - - - - hospitals - - - - - - - - - cancer - - - - - - - - - peanuts - - - - - - - - - comics - - - - - - - - - manga - - - - - - - - - confrontation - - - - - - - - - negotiation - - - - - - - - - weakness - - - - - - - - - interviews - - - - - - - - - kryptonite - - - - - - - - - eggs - - - - - - - - - sunnyside up - - - - - - - - - library - - - - - - - - - favourite spaces - - - - - - - - - tlc - - - - - - - - - books made into movies - - - - - - - - - harry potter - - - - - - - - - fond childhood - - - - - - - - - magic - - - - - - - - - sleepless in seattle - - - - - - - - - the hunger games - - - - - - - - - dystopian - - - - - - - - - archery - - - - - - - - - life or death - - - - - - - - - time traveler's wife - - - - - - - - - romance - - - - - - - - - love - - - - - - - - - love at first sight - - - - - - - - - mystic - - - - - - - - - exists? - - - - - - - - - chivalry - - - - - - - - - bygone eras - - - - - - - - - star-crossed lovers - - - - - - - - - tragedy - - - - - - - - - hamlet - - - - - - - - - plays - - - - - - - - - theatre - - - - - - - - - opera - - - - - - - - - falsetto - - - - - - - - - broadway - - - - - - - - - new york city - - - - - - - - - landscapes - - - - - - - - - paintings - - - - - - - - - scenery - - - - - - - - - beauty - - - - - - - - - memorable - - - - - - - - - 9/11 - - - - - - - - - lightbulb memory - - - - - - - - - shakespeare - - - - - - - - - inventor of words - - - - - - - - - evolution of english language - - - - - - - - - tears - - - - - - - - - catharsis - - - - - - - - - oedipus rex - - - - - - - - - mother complex - - - - - - - - - purging - - - - - - - - - spring cleaning - - - - - - - - - bulimia - - - - - - - - - women - - - - - - - - - illness - - - - - - - - - rumors - - - - - - - - - adele - - - - - - - - - singing - - - - - - - - - voice - - - - - - - - - grapevine - - - - - - - - - vine yard - - - - - - - - - bottle shock - - - - - - - - - life ruining - - - - - - - - - unplanned pregnancy - - - - - - - - - sicknesses - - - - - - - - - reputation - - - - - - - - - word of mouth - - - - - - - - - bad boy/good boy - - - - - - - - - litigation - - - - - - - - - forensics - - - - - - - - - csi - - - - - - - - - miami - - - - - - - - - beaches - - - - - - - - - sunscreen - - - - - - - - - tans - - - - - - - - - life guards - - - - - - - - - volleyball - - - - - - - - - police officers - - - - - - - - - donuts - - - - - - - - - sirens - - - - - - - - - mermaids - - - - - - - - - enchantments - - - - - - - - - disney - - - - - - - - - halloween costumes - - - - - - - - - shipwrecks - - - - - - - - - treasure island - - - - - - - - - classic books - - - - - - - - - map making - - - - - - - - - art exhibit - - - - - - - - - museums - - - - - - - - - museum project - - - - - - - - - travelling - - - - - - - - - backpacking - - - - - - - - - explorers - - - - - - - - - map making - - - - - - - - - darwin - - - - - - - - - survival of the fittest - - - - - - - - - cliches - - - - - - - - - dora - - - - - - - - - children - - - - - - - - - birth - - - - - - - - - past - - - - - - - - - ghosts - - - - - - - - - halloween - - - - - - - - - scary movies - - - - - - - - - faster - - - - - - - - - cars - - - - - - - - - accidents - - - - - - - - - cooking - - - - - - - - - smart - - - - - - - - - good grades - - - - - - - - - clever - - - - - - - - - fox - - - - - - - - - similes - - - - - - - - - history of their conception - - - - - - - - - cookies - - - - - - - - - repetition - - - - - - - - - how kids learn - - - - - - - - - focus - - - - - - - - - attention span - - - - - - - - - camera - - - - - - - - - flash - - - - - - - - - super heroes - - - - - - - - - save the world - - - - - - - - - photography - - - - - - - - - hobby - - - - - - - - - crafts - - - - - - - - - Klutz - - - - - - - - - first love - - - - - - - - - talent - - - - - - - - - party tricks - - - - - - - - - singing - - - - - - - - - life style - - - - - - - - - magazine - - - - - - - - - healthy living - - - - - - - - - eat well - - - - - - - - - work well - - - - - - - - - sleep well - - - - - - - - - instagram - - - - - - - - - apps - - - - - - - - - iPhone 5 - - - - - - - - - foreign - - - - - - - - - films - - - - - - - - - artsy - - - - - - - - - "different" - - - - - - - - - Why we broke up book - - - - - - - - - accents - - - - - - - - - understandable - - - - - - - - - Gloria - - - - - - - - - Modern Family - - - - - - - - - accent colours - - - - - - - - - interior decor - - - - - - - - - Justin Timberlake - - - - - - - - - diaries - - - - - - - - - feelings - - - - - - - - - magazines - - - - - - - - - fashion - - - - - - - - - coco chanel - - - - - - - - - home decor - - - - - - - - - interior design - - - - - - - - - martha stewart - - - - - - - - - tv show - - - - - - - - - jail - - - - - - - - - arthur - - - - - - - - - after school programs - - - - - - - - - pinterest - - - - - - - - - internet startups - - - - - - - - - dropbox - - - - - - - - - competitions - - - - - - - - - sports - - - - - - - - - cloud data - - - - - - - - - tanning - - - - - - - - - skin cancer - - - - - - - - - personal - - - - - - - - - life record - - - - - - - - - helena bonham carter - - - - - - - - - crazy hair - - - - - - - - - johnny depp - - - - - - - - - scruff - - - - - - - - - childhood crushes - - - - - - - - - elementary school - - - - - - - - - sherlock holmes - - - - - - - - - britain - - - - - - - - - olympics - - - - - - - - - big ben - - - - - - - - - english accents - - - - - - - - - tea - - - - - - - - - typical - - - - - - - - - broken promises - - - - - - - - - heart break - - - - - - - - - all packaged kits - - - - - - - - - beauty boxes - - - - - - - - - solid business model - - - - - - - - - start ups - - - - - - - - - angel investments - - - - - - - - - tears - - - - - - - - - fathers - - - - - - - - - male complex - - - - - - - - - vegetables - - - - - - - - - weekly grocery shopping - - - - - - - - - REM - - - - - - - - - 9 - - - - - - - - - boybands - - - - - - - - - longevity - - - - - - - - - comedy - - - - - - - - - snl - - - - - - - - - animated movie - - - - - - - - - hayao miyazaki - - - - - - - - - first person - - - - - - - - - novels - - - - - - - - - i - - - - - - - - - nanowrimo - - - - - - - - - late starts - - - - - - - - - track and field - - - - - - - - - quantity - - - - - - - - - probability - - - - - - - - - self-obsessed - - - - - - - - - me generation - - - - - - - - - baby boomers - - - - - - - - - electronics - - - - - - - - - statistics - - - - - - - - - professors - - - - - - - - - painful - - - - - - - - - break - - - - - - - - - academia - - - - - - - - - phd - - - - - - - - - food - - - - - - - - - apples - - - - - - - - - nutrition - - - - - - - - - great american novel - - - - - - - - - on the road - - - - - - - - - cross canada - - - - - - - - - railways - - - - - - - - - scenery - - - - - - - - - favourite artists - - - - - - - - - stars - - - - - - - - - regina spektor - - - - - - - - - marina & the diamonds - - - - - - - - - 424 fluency - - - - - - - - - - - - - WHISPERED SECRETS - - - - - - - - - - - - - QUALITY TV SHOW REFERENCES - - - - - - - - - - - - - RESPONSIBILITY - - - - - - - - - - - - - INSTAGRAMED LATTES - - - - - - - - - SELF-CONSCIOUS SHOWER SINGING - - - - - - - - - - - - - DISCOVERING CITY HEARTS - - - - - - - - - 379 flexibility - - - - - - - - - - - - - MIDWIVE TALES TO SCARE CHILDREN - - - - - - - - - - - - - - - - - 8 convergence - - - - - - - - - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/bug4-exp.svg b/wise-webapp/src/test/resources/data/svg/bug4-exp.svg deleted file mode 100644 index 114fbee3..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug4-exp.svg +++ /dev/null @@ -1,985 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Einblicke Marc - - - - - - - -Andere Terminals - - - - - - - - -Härkingen - - - - - - - - -wohl grösstes Terminal - - - - - - - - -für SBBC nur nutzbar, wenn Verlad mit Dreier - - - - - - - - -Cadenazzo - - - - - - - - -SBBC, von Post benutzt - - - - - - - - -Diskriminierungsfreiheit - - - - - - - - -nur SBB C hält ein - - - - - - - - -Andere Terminals holen auch BAV-Beiträge, aber nicht diskr.frei, - - - - - - - - -z.B. Härkingen - - - - - - - - -SBBC = Musterknabe, aber man verdient nichts als Musterknabe, Sogar Rückzahlung BAV-Beiträge - - - - - - - - -Verschlafen - - - - - - - - -Ein eigenes Terminal in Härkingen/Gäu etc. - - - - - - - - -Kunden - - - - - - - - -Dreier - - - - - - - - -stark Internat., wieder Fokus auf CH - - - - - - - - -Hauptcarrier der Post - - - - - - - - -Viel Baulogistik, sehr kombiaffin, viel Kombi-Equipment - - - - - - - - -Nur Neuverkehr als KV, nie Umstellung bisheriger Kunden - - - - - - - - -Post - - - - - - - - -lagert alle Transporte aus, aber an grosse UNT - - - - - - - - -Terminals - - - - - - - - -War Erster im KV, rein intern - - - - - - - - -wird als "Kundenlösung" verkauft & durch SBBC gefahren - - - - - - - - -RailCare - - - - - - - - -für Post gefahren - - - - - - - - -Knatsch ca. 2011/12 - - - - - - - - -Unwissen, was Post auf SBB-Züge draufgestellt hat (auch fremde Waren) - - - - - - - - -Railcare hat SBB-Züge als Komplettpaket vermarktet - - - - - - - - -Tür zu Tür-Kompetenz, auch LKW-Flotte - - - - - - - - -Betreuung RailCare durch Marc mit Ziel: verhindern, dass Railcare Post transportiert - - - - - - - - -H&M - - - - - - - - -Ausschreibung: UNT hat 30% unter Offerte SBB - - - - - - - - -hat nicht funktioniert, Aufgabe - - - - - - - - -Neuausschreibung. Für SBBC schwierig, Preis wieder hochzukriegen - - - - - - - - -Bei C&A und Vögele gesehen, dass es mit Dreier klappt - - - - - - - - -Falconnier: bei H&M gemeint, dass er dies in Zusammenarbeit mit Dreier realisieren könnte... - - - - - - - - -Entwicklung SBB Cargo - - - - - - - - -Dispo ist nicht das Herz - - - - - - - - -Werbung beim Endkunden nötig - - - - - - - - -damit Produkt bekannt ist - - - - - - - - -damit KV nicht nur für Neukunden - - - - - - - - -nicht nur via Dreier etc. - - - - - - - - -Spediteure wollen manchmal nicht von sich aus aufs Bahn-KV Angebot aufmerksam machen - - - - - - - - -Kundenkampagne (Telefonanfragen, Gespräche) - - - - - - - - -Ziel: Transporteure kanzeln Bahn nicht als "Seich" ab - - - - - - - - -Kein Knowhow für Gesamtlösung vorhanden - - - - - - - - -DB Schenker: - - - - - - - - -Gesamtlösung - - - - - - - - -Falls Gesamtlogistik: - - - - - - - - -kein Knoehow vorhanden, müsste Firma kaufen - - - - - - - - --> man hätte dann grösste Bude, aber keinen Marktanteil mehr - - - - - - - - -Marktanteil SBBC: ca. 10% (DB hat weniger) - - - - - - - - -Unterthema - - - - - - - - -z.B. Kauf Planzer (10%): Galliker etc. würde nicht mehr mit SBBC fahren - - - - - - - - -Kauf RailCare? - - - - - - - - -Schon lange Vorschlag von Marc - - - - - - - - -Planzer als Kunde hätte ein Problem damit - - - - - - - - -schon nur wegen Dispo - - - - - - - - -Coop wäre als Kunde zurück - - - - - - - - -Branche - - - - - - - - -Chaotische Industrie, Ständiges Troubleshooting - - - - - - - - -Verkehrsprobleme (Stau etc.) - - - - - - - - -CEO's KV-begeistert, Problem: Disponenten - - - - - - - - -Zusatzkosten für Umstellung - - - - - - - - -roh, wenn stabile Lagef - - - - - - - - -Aspekt wurde von SBBC unterschätzt - - - - - - - - -Wäre Zusatzaufwand für Dispo - - - - - - - - -Dispo = Herz der UNT, Effizienz - - - - - - - - -Nichts zu verdienen - - - - - - - - -Wechselbehälter international Standard, aber nicht wg. Bahn - - - - - - - - -Subunternehmen - - - - - - - - -z.T. Drecksgeschäft: Chauffeure kaufen Lastwagen, hartes Gewerbe - - - - - - - - -Produkt - - - - - - - - -Kosten durch LKW statt KV werden nicht s/w ausgewiesen - - - - - - - - -schwierig zu verkaufen - - - - - - - - -in Brasilien eine Goldgrube, da nicht reguliert - - - - - - - - -DHL mit Steuergeldern die Welt erschlossen - - - - - - - - -Zusammenarbeit mit "Konkurrenten" normal - - - - - - - - -Konkurrenz CH - - - - - - - - -Binnen-KV möglich - - - - - - - - -Dreier ist akzeptiert, Planzer schlechter Ruf (kauft alle auf) - - - - - - - - -Sieber - - - - - - - - -Dreier & andere sagen auch, dass man mehr zusammenarbeiten sollte - - - - - - - - -= faktisch Dreier-Stützpunkte - - - - - - - - -Post-Terminals aus eig. Angebot rausgenommen - - - - - - - - -guter Wiederverkäufer, da an Post nur Einzelwagen verkauft - - - - - - - - -Railcare ganz draussen, Postzüge als Kundenlösung - - - - - - - - -Gossau: Notterminal: Frauenfeld Post - - - - - - - - -Schöni baut in Rothrist, Bahnanschluss obwohl nicht bahnaffin - - - - - - - - -WLV kein Wachstumsfeld, heute alles Terminware - - - - - - - - -Ausschreibung 2014: 65 Züge im Jahr, Päckli müssen nicht ausgeschrieben werden - - - - - - - - -Verhandlung lenken auf Trasse, Abbruch d. Verhandlungen. Cargo hat verloren, mehrere Mio wären möglich gewesen - - - - - - - - -Härkingen, Frauenfeld, Daillens, Cadenazzo (SBBC) - - - - - - - - -Verkauf - - - - - - - - -vermietet gar Behälter, damit Leute beginnen - - - - - - - - -Generell - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/bug4.pdf b/wise-webapp/src/test/resources/data/svg/bug4.pdf deleted file mode 100644 index f1074226..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug4.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug4.png b/wise-webapp/src/test/resources/data/svg/bug4.png deleted file mode 100644 index 9cbbe76c..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/bug4.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/bug4.svg b/wise-webapp/src/test/resources/data/svg/bug4.svg deleted file mode 100644 index 5c6a9caa..00000000 --- a/wise-webapp/src/test/resources/data/svg/bug4.svg +++ /dev/null @@ -1 +0,0 @@ -Einblicke MarcAndere TerminalsHärkingen wohl grösstes Terminalfür SBBC nur nutzbar, wenn Verlad mit DreierCadenazzo SBBC, von Post benutztDiskriminierungsfreiheitnur SBB C hält einAndere Terminals holen auch BAV-Beiträge, aber nicht diskr.frei,z.B. HärkingenSBBC = Musterknabe, aber man verdient nichts als Musterknabe, Sogar Rückzahlung BAV-BeiträgeVerschlafen Ein eigenes Terminal in Härkingen/Gäu etc.KundenDreierstark Internat., wieder Fokus auf CHHauptcarrier der PostViel Baulogistik, sehr kombiaffin, viel Kombi-EquipmentNur Neuverkehr als KV, nie Umstellung bisheriger KundenPostlagert alle Transporte aus, aber an grosse UNTTerminalsWar Erster im KV, rein internwird als "Kundenlösung" verkauft & durch SBBC gefahrenRailCarefür Post gefahrenKnatsch ca. 2011/12Unwissen, was Post auf SBB-Züge draufgestellt hat (auch fremde Waren)Railcare hat SBB-Züge als Komplettpaket vermarktetTür zu Tür-Kompetenz, auch LKW-FlotteBetreuung RailCare durch Marc mit Ziel: verhindern, dass Railcare Post transportiertH&MAusschreibung: UNT hat 30% unter Offerte SBB hat nicht funktioniert, AufgabeNeuausschreibung. Für SBBC schwierig, Preis wieder hochzukriegenBei C&A und Vögele gesehen, dass es mit Dreier klapptFalconnier: bei H&M gemeint, dass er dies in Zusammenarbeit mit Dreier realisieren könnte...Entwicklung SBB CargoDispo ist nicht das HerzWerbung beim Endkunden nötigdamit Produkt bekannt istdamit KV nicht nur für Neukundennicht nur via Dreier etc.Spediteure wollen manchmal nicht von sich aus aufs Bahn-KV Angebot aufmerksam machenKundenkampagne (Telefonanfragen, Gespräche)Ziel: Transporteure kanzeln Bahn nicht als "Seich" abKein Knowhow für Gesamtlösung vorhandenDB Schenker: GesamtlösungFalls Gesamtlogistik: kein Knoehow vorhanden, müsste Firma kaufen-> man hätte dann grösste Bude, aber keinen Marktanteil mehr Marktanteil SBBC: ca. 10% (DB hat weniger)Unterthemaz.B. Kauf Planzer (10%): Galliker etc. würde nicht mehr mit SBBC fahrenKauf RailCare? Schon lange Vorschlag von MarcPlanzer als Kunde hätte ein Problem damitschon nur wegen DispoCoop wäre als Kunde zurückBrancheChaotische Industrie, Ständiges TroubleshootingVerkehrsprobleme (Stau etc.)CEO's KV-begeistert, Problem: DisponentenZusatzkosten für Umstellungroh, wenn stabile LagefAspekt wurde von SBBC unterschätztWäre Zusatzaufwand für DispoDispo = Herz der UNT, EffizienzNichts zu verdienenWechselbehälter international Standard, aber nicht wg. BahnSubunternehmen z.T. Drecksgeschäft: Chauffeure kaufen Lastwagen, hartes GewerbeProduktKosten durch LKW statt KV werden nicht s/w ausgewiesenschwierig zu verkaufenin Brasilien eine Goldgrube, da nicht reguliertDHL mit Steuergeldern die Welt erschlossenZusammenarbeit mit "Konkurrenten" normalKonkurrenz CHBinnen-KV möglichDreier ist akzeptiert, Planzer schlechter Ruf (kauft alle auf)Sieber Dreier & andere sagen auch, dass man mehr zusammenarbeiten sollte= faktisch Dreier-StützpunktePost-Terminals aus eig. Angebot rausgenommenguter Wiederverkäufer, da an Post nur Einzelwagen verkauftRailcare ganz draussen, Postzüge als KundenlösungGossau: Notterminal: Frauenfeld PostSchöni baut in Rothrist, Bahnanschluss obwohl nicht bahnaffinWLV kein Wachstumsfeld, heute alles TerminwareAusschreibung 2014: 65 Züge im Jahr, Päckli müssen nicht ausgeschrieben werdenVerhandlung lenken auf Trasse, Abbruch d. Verhandlungen. Cargo hat verloren, mehrere Mio wären möglich gewesenHärkingen, Frauenfeld, Daillens, Cadenazzo (SBBC)Verkaufvermietet gar Behälter, damit Leute beginnenGenerell \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/export-exp.svg b/wise-webapp/src/test/resources/data/svg/export-exp.svg deleted file mode 100644 index fafcc654..00000000 --- a/wise-webapp/src/test/resources/data/svg/export-exp.svg +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Comment démarrer ? - - - - - - - - - -Propriétés des noeuds - - - - - - - - - - -Ajouter des liens vers des pages web - - - - - - - - - - -Ajouter Notes - - - - - - - - - - -Icônes fantaisie - - - - - - - - - - -Multiples Styles de Texte - - - - - - - - -Couleurs de caractères - - - - - - - - -Styles de caractères - - - - - - - - -Types de caractères - - - - - - - - -Differentes Formes - - - - - - - - -Edition avec le clavier - - - - - - - - - - -Se déplacer entre les noeuds avec les flèches - - - - - - - - -Pour éditer, commencer à taper du texte - - - - - - - - -Appuyer sur Ctrl/Meta+Enter pour ajouter un noeud enfant - - - - - - - - -Appuyer sur Enter pour ajouter un noeud de même niveau - - - - - - - - -Plus de ?. Cliquer sur les raccourcis - - - - - - - - -Partage - - - - - - - - -Inviter des amis - - - - - - - - -Encapsuler dans un blog - - - - - - - - -Publier votre carte - - - - - - - - -Edition avec la souris - - - - - - - - - - -Double-Clic sur un noeud : édite le texte - - - - - - - - -Double-Clic sur le fond : créer un noeud - - - - - - - - -Déplacer la position des noeuds - - - - - - - - -Utiliser la barre d'outils - - - - - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/export.pdf b/wise-webapp/src/test/resources/data/svg/export.pdf deleted file mode 100644 index 38471eec..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/export.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/export.png b/wise-webapp/src/test/resources/data/svg/export.png deleted file mode 100644 index bcf3a70b..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/export.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/export.svg b/wise-webapp/src/test/resources/data/svg/export.svg deleted file mode 100644 index d7e40660..00000000 --- a/wise-webapp/src/test/resources/data/svg/export.svg +++ /dev/null @@ -1,2 +0,0 @@ -Comment démarrer ?Propriétés des noeudsAjouter des liens vers des pages webAjouter NotesIcônes fantaisieMultiples Styles de TexteCouleurs de caractèresStyles de caractèresTypes de caractèresDifferentes FormesEdition avec le clavierSe déplacer entre les noeuds avec les flèchesPour éditer, commencer à taper du texteAppuyer sur Ctrl/Meta+Enter pour ajouter un noeud enfantAppuyer sur Enter pour ajouter un noeud de même niveauPlus de ?. Cliquer sur les raccourcisPartageInviter des amisEncapsuler dans un blogPublier votre carteEdition avec la sourisDouble-Clic sur un noeud : édite le texteDouble-Clic sur le fond : créer un noeud Déplacer la position des noeudsUtiliser la barre d'outils - diff --git a/wise-webapp/src/test/resources/data/svg/map-3.0-exp.svg b/wise-webapp/src/test/resources/data/svg/map-3.0-exp.svg deleted file mode 100644 index 638b2ab7..00000000 --- a/wise-webapp/src/test/resources/data/svg/map-3.0-exp.svg +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - aaaa - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Main Topic - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/map-3.0.pdf b/wise-webapp/src/test/resources/data/svg/map-3.0.pdf deleted file mode 100644 index b36de2ae..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map-3.0.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map-3.0.png b/wise-webapp/src/test/resources/data/svg/map-3.0.png deleted file mode 100644 index 80f20ff6..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map-3.0.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map-3.0.svg b/wise-webapp/src/test/resources/data/svg/map-3.0.svg deleted file mode 100644 index f7de595c..00000000 --- a/wise-webapp/src/test/resources/data/svg/map-3.0.svg +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - aaaa - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Main Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Main Topic - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/map1-exp.svg b/wise-webapp/src/test/resources/data/svg/map1-exp.svg deleted file mode 100644 index a399e0ea..00000000 --- a/wise-webapp/src/test/resources/data/svg/map1-exp.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Aval de la Municipalidad - - - - - - - - - - Es bueno ser parte ? - - - - - - - Empresario Argentino pone plata ? - - - - - - - Medianas - - - - - - - Grandes - - - - - - - Chicas - - - - - - - Tama??o - - - - - - - Precio Razonable - - - - - - - Tipo - - - - - - - Target - - - - - - - Mercado - - - - - - Dudas? - - - - - - - - Pagina Web - - - - - - - SETI ? - - - - - - - Mail - - - - - - - Networking - - - - - - - Infraestructura - - - - - - - Innovacion - - - - - - - Balance de Sueldo - - - - - - - Sueldo - - - - - - - Contaduria - - - - - - - Servicios - - - - - - - Sistemas - - - - - - Servicios - - - - - - - - Acesoramiento de Internet - - - - - - - Es tan fuerte ? - - - - - - - - - - Web Lista (Gratuita) - - - - - - - - - - Municipalidad - - - - - - - Ezeiza - - - diff --git a/wise-webapp/src/test/resources/data/svg/map1.pdf b/wise-webapp/src/test/resources/data/svg/map1.pdf deleted file mode 100644 index eda5f656..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map1.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map1.png b/wise-webapp/src/test/resources/data/svg/map1.png deleted file mode 100644 index c1f675d0..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map1.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map1.svg b/wise-webapp/src/test/resources/data/svg/map1.svg deleted file mode 100644 index a57bd095..00000000 --- a/wise-webapp/src/test/resources/data/svg/map1.svg +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Aval de la Municipalidad - - - - - - - - - - Es bueno ser parte ? - - - - - - - Empresario Argentino pone plata ? - - - - - - - Medianas - - - - - - - Grandes - - - - - - - Chicas - - - - - - - Tama??o - - - - - - - Precio Razonable - - - - - - - Tipo - - - - - - - Target - - - - - - - Mercado - - - - - - Dudas? - - - - - - - - Pagina Web - - - - - - - SETI ? - - - - - - - Mail - - - - - - - Networking - - - - - - - Infraestructura - - - - - - - Innovacion - - - - - - - Balance de Sueldo - - - - - - - Sueldo - - - - - - - Contaduria - - - - - - - Servicios - - - - - - - Sistemas - - - - - - Servicios - - - - - - - - Acesoramiento de Internet - - - - - - - Es tan fuerte ? - - - - - - - - - - Web Lista (Gratuita) - - - - - - - - - - Municipalidad - - - - - - - Ezeiza - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/map2-exp.svg b/wise-webapp/src/test/resources/data/svg/map2-exp.svg deleted file mode 100644 index bcd40a6b..00000000 --- a/wise-webapp/src/test/resources/data/svg/map2-exp.svg +++ /dev/null @@ -1,1590 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - International market - protected Modelo from unstable peso - - - - - - - Can they sustain that trend - - - - - - - in 12 years - - - - - - - Fifth largest distributor in - world - - - - - - - One of top 10 breweries in - world - - - - - - Modelo in world - - - - - - - - working there since 13 - - - - - - - 29 years old - - - - - - - CEO Since 1997 - - - - - - - experienced local - distributors - - - - - - - Growing international demand - - - - - - - Capitalize on NAFTA - - - - - - - International Business model - - - - - - - 7.8 % sales growth compounded - over ten years - - - - - - - 12.3 % exports - - - - - - - 4% increase domestically - - - - - - - export sales 30% - - - - - - - 2005 - - - - - - - worlds fourth best selling - beer - - - - - - - 56% shar of domestic market - - - - - - - outsold competitor by 50% - - - - - - - Since 1997 #1 import in US - - - - - - - Corona Extra - - - - - - - top 10 beer producers in - world - - - - - - - vision: top five brewers - - - - - - - renovate facility in - Zacatecas - - - - - - - 300 million investment - - - - - - - Expanding production - - - - - - Carloz Fernandez CEO - - - - - - - - 2nd largest nest to China - - - - - - - Consumption six times higher - per cap - - - - - - - Groth expectations reduced - - - - - - - 75% of industry profits - - - - - - - AB - - - - - - - adolf coors - - - - - - - Miller - - - - - - - 80% of market - - - - - - - dense network of regional - craft brewing - - - - - - - volume main driver - - - - - - US Beer Market - - - - - - - - Pablo Diez Fernandez, Braulio - Irare, Marin Oyamburr - - - - - - - Iriarte died in 1932 - - - - - - - Diez sole owner 1936 - - - - - - - Fernandez Family Sole owner - since 1936 - - - - - - - formed in 1922 - - - - - - - focus on Mexico City - - - - - - - Modelo 1st Brand - - - - - - - Clear Glass Customers - preference - - - - - - - Corona 2nd Brand - - - - - - - concentrate domesti¬cally - - - - - - - distribution: direct with - profit sharing - - - - - - - improve distribution methods - and produc¬tion facilities - - - - - - - 1940s period of strong growth - - - - - - - 1935 - - - - - - - country's oldest brand of - beer - - - - - - - bought the brands and assets - of the Toluca y Mexico Brewery - - - - - - - History to 1970 - - - - - - - Mexican Stock exchange in - 1994 - - - - - - - The 50.2 % represented 43.9% - voting - - - - - - - Anheuser-Busch 17.7 % of the - equity - - - - - - - 1971, Antonino Fernandez was - appointed CEO - - - - - - - corona 56% share - - - - - - - Largest Beer producer and - distrubutor in Mexico - - - - - - Modelo in Mexico - - - - - - - - 1979 - - - - - - - later renamed Barton Beers - Ltd. - - - - - - - Amalgamated Distillery - Products Inc. ( - - - - - - - gained popularity in southern - states - - - - - - - second most popular imported - beer - - - - - - - rapid growth 1980s - - - - - - - sales decrease of 15 percent - - - - - - - distributor absorb the tax 92 - - - - - - - doubling of federal excise - tax on beer - - - - - - - distributors took the loss - - - - - - - 1991 - - - - - - - History - - - - - - - 3 of top 8 beers in US - - - - - - - Main Import Comptitor - - - - - - - Heineken - - - - - - - 131 million cases - - - - - - - 2007 5 beers to us - - - - - - - surfing mythology - - - - - - - not selling premium quality - - - - - - - not testosterone driven - - - - - - - found new following - - - - - - - beer for non beer drinkers - - - - - - - dependable second choise - - - - - - - Barton Beer's idea - - - - - - - escape - - - - - - - relaxation - - - - - - - Fun in the sun - - - - - - - Corona 5.1 mil - - - - - - - Heiniken 15 mil - - - - - - - an bsch 192 mil - - - - - - - 1996ad budget - - - - - - - Marketing - - - - - - - Local Companies - - - - - - - Autonomous - - - - - - - competitive relationship - - - - - - - transportation - - - - - - - insurance - - - - - - - pricing - - - - - - - customs - - - - - - - advertixing - - - - - - - importer/distributors - - - - - - - Modelo us subsidiary - - - - - - - Support - - - - - - - Supervise - - - - - - - Coordinate - - - - - - - procermex inc - - - - - - - Modelo had final say on brand - image - - - - - - - production in Mexico - - - - - - - largest importer in 25 - western states - - - - - - - Chicago based Barton Beers - 1st - - - - - - - 1986 - - - - - - - eastern dist - - - - - - - Gambrinus - - - - - - - Us dist contracts - - - - - - - Modelo in US - - - - - - - traditionally a clustered - market - - - - - - - many local breweries - - - - - - - no means of transport - - - - - - - colsolition happened in 1800s - - - - - - - different countries had - different tastes - - - - - - - 90s national leaders expanded - abroad - - - - - - - industry supported - conectration - - - - - - - startup costs high - - - - - - - Belgian - - - - - - - aquired breweries in 20 - countries - - - - - - - sales in 110 countries - - - - - - - local managers controlling - brands - - - - - - - flagship brand: Stella Artois - - - - - - - Interbrew - - - - - - - #1 Interbrew - - - - - - - #5 Am Bev - Brazil - - - - - - - worth 12.8 billion - - - - - - - largest merge - - - - - - - 2004 merger - - - - - - - inbev - - - - - - - SAP Miller - - - - - - - marketing - - - - - - - import taxes passed on to - consumer - - - - - - - importing - - - - - - - distribution - - - - - - - parent of local distributors - - - - - - - produces beer domestically - - - - - - - premium brand - - - - - - - no mythology - - - - - - - superior taste - - - - - - - Heineken Premium Light - - - - - - - 2006 aggressive marketing - campaign - - - - - - - marketing - - - - - - - reputation of top selling - beer in world - - - - - - - Dutch - - - - - - - Heineken - - - - - - - produces in foreign markets - - - - - - - Anh Bush - - - - - - - 2007 - - - - - - - "People drink marketing" - - - - - - - Beer Marketing - - - - - - - domestic and foreign threats - - - - - - - other merger talks - - - - - - - Two biggest companies will - create huge company - - - - - - - Inbev in talks with Anh Bush - - - - - - - Sales were decreasing due to - competitive media budgets - - - - - - - Future - - - - - - - The Beer market - - - - - - corona - - - - - - - has most trade agreements in - world - - - - - - - one of the largest domestic - beer markets - - - - - - - half were anh bcsh dist by - modelo - - - - - - - imported beer only 1% sales - - - - - - - NAFTA S.A. An Bucsh - - - - - - - 62.8% of market - - - - - - - modelo - - - - - - - 37% of domestic market - - - - - - - production and distribution - in Mexico: peso not a threat - - - - - - - CA largest chain of conv - stores - - - - - - - Owns Oxxo C - - - - - - - leads domestic premium beer - market - - - - - - - 997 to 2004 taking domestic - market share - - - - - - - Exclusive distributor - - - - - - - NAFTA SACoca cola - - - - - - - domestic market - - - - - - - Distribution in US - - - - - - - Partnership Heiniken - - - - - - - 90s entry to us market failed - - - - - - - 2005 18.7% growth - - - - - - - Recently partnered with - Heiniken for US market - - - - - - - foriegn market - - - - - - - FEMSA - - - - - - - Mexico Industry - - - - diff --git a/wise-webapp/src/test/resources/data/svg/map2.pdf b/wise-webapp/src/test/resources/data/svg/map2.pdf deleted file mode 100644 index 00bdc28e..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map2.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map2.png b/wise-webapp/src/test/resources/data/svg/map2.png deleted file mode 100644 index 0cfb3f15..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map2.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map2.svg b/wise-webapp/src/test/resources/data/svg/map2.svg deleted file mode 100644 index b77a981a..00000000 --- a/wise-webapp/src/test/resources/data/svg/map2.svg +++ /dev/null @@ -1,2737 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - International market - protected Modelo from unstable peso - - - - - - - Can they sustain that trend - - - - - - - in 12 years - - - - - - - Fifth largest distributor in - world - - - - - - - One of top 10 breweries in - world - - - - - - Modelo in world - - - - - - - - working there since 13 - - - - - - - 29 years old - - - - - - - CEO Since 1997 - - - - - - - experienced local - distributors - - - - - - - Growing international demand - - - - - - - Capitalize on NAFTA - - - - - - - International Business model - - - - - - - 7.8 % sales growth compounded - over ten years - - - - - - - 12.3 % exports - - - - - - - 4% increase domestically - - - - - - - export sales 30% - - - - - - - 2005 - - - - - - - worlds fourth best selling - beer - - - - - - - 56% shar of domestic market - - - - - - - outsold competitor by 50% - - - - - - - Since 1997 #1 import in US - - - - - - - Corona Extra - - - - - - - top 10 beer producers in - world - - - - - - - vision: top five brewers - - - - - - - renovate facility in - Zacatecas - - - - - - - 300 million investment - - - - - - - Expanding production - - - - - - Carloz Fernandez CEO - - - - - - - - 2nd largest nest to China - - - - - - - Consumption six times higher - per cap - - - - - - - Groth expectations reduced - - - - - - - 75% of industry profits - - - - - - - AB - - - - - - - adolf coors - - - - - - - Miller - - - - - - - 80% of market - - - - - - - dense network of regional - craft brewing - - - - - - - volume main driver - - - - - - US Beer Market - - - - - - - - Pablo Diez Fernandez, Braulio - Irare, Marin Oyamburr - - - - - - - Iriarte died in 1932 - - - - - - - Diez sole owner 1936 - - - - - - - Fernandez Family Sole owner - since 1936 - - - - - - - formed in 1922 - - - - - - - focus on Mexico City - - - - - - - Modelo 1st Brand - - - - - - - Clear Glass Customers - preference - - - - - - - Corona 2nd Brand - - - - - - - concentrate domesti¬cally - - - - - - - distribution: direct with - profit sharing - - - - - - - improve distribution methods - and produc¬tion facilities - - - - - - - 1940s period of strong growth - - - - - - - 1935 - - - - - - - country's oldest brand of - beer - - - - - - - bought the brands and assets - of the Toluca y Mexico Brewery - - - - - - - History to 1970 - - - - - - - Mexican Stock exchange in - 1994 - - - - - - - The 50.2 % represented 43.9% - voting - - - - - - - Anheuser-Busch 17.7 % of the - equity - - - - - - - 1971, Antonino Fernandez was - appointed CEO - - - - - - - corona 56% share - - - - - - - Largest Beer producer and - distrubutor in Mexico - - - - - - Modelo in Mexico - - - - - - - - 1979 - - - - - - - later renamed Barton Beers - Ltd. - - - - - - - Amalgamated Distillery - Products Inc. ( - - - - - - - gained popularity in southern - states - - - - - - - second most popular imported - beer - - - - - - - rapid growth 1980s - - - - - - - sales decrease of 15 percent - - - - - - - distributor absorb the tax 92 - - - - - - - doubling of federal excise - tax on beer - - - - - - - distributors took the loss - - - - - - - 1991 - - - - - - - History - - - - - - - 3 of top 8 beers in US - - - - - - - Main Import Comptitor - - - - - - - Heineken - - - - - - - 131 million cases - - - - - - - 2007 5 beers to us - - - - - - - surfing mythology - - - - - - - not selling premium quality - - - - - - - not testosterone driven - - - - - - - found new following - - - - - - - beer for non beer drinkers - - - - - - - dependable second choise - - - - - - - Barton Beer's idea - - - - - - - escape - - - - - - - relaxation - - - - - - - Fun in the sun - - - - - - - Corona 5.1 mil - - - - - - - Heiniken 15 mil - - - - - - - an bsch 192 mil - - - - - - - 1996ad budget - - - - - - - Marketing - - - - - - - Local Companies - - - - - - - Autonomous - - - - - - - competitive relationship - - - - - - - transportation - - - - - - - insurance - - - - - - - pricing - - - - - - - customs - - - - - - - advertixing - - - - - - - importer/distributors - - - - - - - Modelo us subsidiary - - - - - - - Support - - - - - - - Supervise - - - - - - - Coordinate - - - - - - - procermex inc - - - - - - - Modelo had final say on brand - image - - - - - - - production in Mexico - - - - - - - largest importer in 25 - western states - - - - - - - Chicago based Barton Beers - 1st - - - - - - - 1986 - - - - - - - eastern dist - - - - - - - Gambrinus - - - - - - - Us dist contracts - - - - - - - Modelo in US - - - - - - - traditionally a clustered - market - - - - - - - many local breweries - - - - - - - no means of transport - - - - - - - colsolition happened in 1800s - - - - - - - different countries had - different tastes - - - - - - - 90s national leaders expanded - abroad - - - - - - - industry supported - conectration - - - - - - - startup costs high - - - - - - - Belgian - - - - - - - aquired breweries in 20 - countries - - - - - - - sales in 110 countries - - - - - - - local managers controlling - brands - - - - - - - flagship brand: Stella Artois - - - - - - - Interbrew - - - - - - - #1 Interbrew - - - - - - - #5 Am Bev - Brazil - - - - - - - worth 12.8 billion - - - - - - - largest merge - - - - - - - 2004 merger - - - - - - - inbev - - - - - - - SAP Miller - - - - - - - marketing - - - - - - - import taxes passed on to - consumer - - - - - - - importing - - - - - - - distribution - - - - - - - parent of local distributors - - - - - - - produces beer domestically - - - - - - - premium brand - - - - - - - no mythology - - - - - - - superior taste - - - - - - - Heineken Premium Light - - - - - - - 2006 aggressive marketing - campaign - - - - - - - marketing - - - - - - - reputation of top selling - beer in world - - - - - - - Dutch - - - - - - - Heineken - - - - - - - produces in foreign markets - - - - - - - Anh Bush - - - - - - - 2007 - - - - - - - "People drink marketing" - - - - - - - Beer Marketing - - - - - - - domestic and foreign threats - - - - - - - other merger talks - - - - - - - Two biggest companies will - create huge company - - - - - - - Inbev in talks with Anh Bush - - - - - - - Sales were decreasing due to - competitive media budgets - - - - - - - Future - - - - - - - The Beer market - - - - - - corona - - - - - - - has most trade agreements in - world - - - - - - - one of the largest domestic - beer markets - - - - - - - half were anh bcsh dist by - modelo - - - - - - - imported beer only 1% sales - - - - - - - NAFTA S.A. An Bucsh - - - - - - - 62.8% of market - - - - - - - modelo - - - - - - - 37% of domestic market - - - - - - - production and distribution - in Mexico: peso not a threat - - - - - - - CA largest chain of conv - stores - - - - - - - Owns Oxxo C - - - - - - - leads domestic premium beer - market - - - - - - - 997 to 2004 taking domestic - market share - - - - - - - Exclusive distributor - - - - - - - NAFTA SACoca cola - - - - - - - domestic market - - - - - - - Distribution in US - - - - - - - Partnership Heiniken - - - - - - - 90s entry to us market failed - - - - - - - 2005 18.7% growth - - - - - - - Recently partnered with - Heiniken for US market - - - - - - - foriegn market - - - - - - - FEMSA - - - - - - - Mexico Industry - - - - diff --git a/wise-webapp/src/test/resources/data/svg/map3-exp.svg b/wise-webapp/src/test/resources/data/svg/map3-exp.svg deleted file mode 100644 index a9923f14..00000000 --- a/wise-webapp/src/test/resources/data/svg/map3-exp.svg +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Accesible desde todos lados - - - - - - - Mobile - - - - - - - widget - - - - - - - Posibilidad de acceso desde la - pagina insitucional - - - - - - - Pay per use - - - - - - - porque? - - - - - - web - - - - - - - - - - - Cobrar por calculo? - - - - - - - No lo usan por varios meses - - - - - - - costo mensual? - - - - - - - vender el servicio no el software - - - - - - - cobro por servicio? - - - - - - Plan de Negocio - - - - - - - - - - - ascTimeTable - - - - - - - - - - - lantiv - - - - - - - - - Competencia - - - - - - - - - - - embeddable widget - - - - - - - mobile - - - - - - - Very intuitive - - - - - - - ability to create custom rules - - - - - - - Distribuido - - - - - - - Algorithm - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - import - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - export - - - - - - Features - - - - - - - - - - timetable - - - diff --git a/wise-webapp/src/test/resources/data/svg/map3.pdf b/wise-webapp/src/test/resources/data/svg/map3.pdf deleted file mode 100644 index 4145c48f..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map3.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map3.png b/wise-webapp/src/test/resources/data/svg/map3.png deleted file mode 100644 index 9b833f7d..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map3.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map3.svg b/wise-webapp/src/test/resources/data/svg/map3.svg deleted file mode 100644 index d5619565..00000000 --- a/wise-webapp/src/test/resources/data/svg/map3.svg +++ /dev/null @@ -1,470 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Accesible desde todos lados - - - - - - - Mobile - - - - - - - widget - - - - - - - Posibilidad de acceso desde la - pagina insitucional - - - - - - - Pay per use - - - - - - - porque? - - - - - - web - - - - - - - - - - - Cobrar por calculo? - - - - - - - No lo usan por varios meses - - - - - - - costo mensual? - - - - - - - vender el servicio no el software - - - - - - - cobro por servicio? - - - - - - Plan de Negocio - - - - - - - - - - - ascTimeTable - - - - - - - - - - - lantiv - - - - - - - - - Competencia - - - - - - - - - - - embeddable widget - - - - - - - mobile - - - - - - - Very intuitive - - - - - - - ability to create custom rules - - - - - - - Distribuido - - - - - - - Algorithm - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - import - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - export - - - - - - Features - - - - - - - - - - timetable - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/map4-exp.svg b/wise-webapp/src/test/resources/data/svg/map4-exp.svg deleted file mode 100644 index 43905182..00000000 --- a/wise-webapp/src/test/resources/data/svg/map4-exp.svg +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Accesible desde todos lados - - - - - - - Mobile - - - - - - - widget - - - - - - - Posibilidad de acceso desde la - pagina insitucional - - - - - - - Pay per use - - - - - - - porque? - - - - - - web - - - - - - - - - - - Cobrar por calculo? - - - - - - - No lo usan por varios meses - - - - - - - costo mensual? - - - - - - - vender el servicio no el software - - - - - - - cobro por servicio? - - - - - - Plan de Negocio - - - - - - - - - - - ascTimeTable - - - - - - - - - - - lantiv - - - - - - - - - Competencia - - - - - - - - - - - embeddable widget - - - - - - - mobile - - - - - - - Very intuitive - - - - - - - ability to create custom rules - - - - - - - Distribuido - - - - - - - Algorithm - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - import - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - export - - - - - - Features - - - - - - - - - - timetable - - - diff --git a/wise-webapp/src/test/resources/data/svg/map4.pdf b/wise-webapp/src/test/resources/data/svg/map4.pdf deleted file mode 100644 index a8d08166..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map4.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map4.png b/wise-webapp/src/test/resources/data/svg/map4.png deleted file mode 100644 index 8ebf135e..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map4.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map4.svg b/wise-webapp/src/test/resources/data/svg/map4.svg deleted file mode 100644 index 236e065c..00000000 --- a/wise-webapp/src/test/resources/data/svg/map4.svg +++ /dev/null @@ -1,470 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Accesible desde todos lados - - - - - - - Mobile - - - - - - - widget - - - - - - - Posibilidad de acceso desde la - pagina insitucional - - - - - - - Pay per use - - - - - - - porque? - - - - - - web - - - - - - - - - - - Cobrar por calculo? - - - - - - - No lo usan por varios meses - - - - - - - costo mensual? - - - - - - - vender el servicio no el software - - - - - - - cobro por servicio? - - - - - - Plan de Negocio - - - - - - - - - - - ascTimeTable - - - - - - - - - - - lantiv - - - - - - - - - Competencia - - - - - - - - - - - embeddable widget - - - - - - - mobile - - - - - - - Very intuitive - - - - - - - ability to create custom rules - - - - - - - Distribuido - - - - - - - Algorithm - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - import - - - - - - - clipboard - - - - - - - excel - - - - - - - csv - - - - - - - export - - - - - - Features - - - - - - - - - - timetable - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/map5-exp.svg b/wise-webapp/src/test/resources/data/svg/map5-exp.svg deleted file mode 100644 index 9456291f..00000000 --- a/wise-webapp/src/test/resources/data/svg/map5-exp.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - t - - - - - - Main Topic - - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/map5.pdf b/wise-webapp/src/test/resources/data/svg/map5.pdf deleted file mode 100644 index 92f8741a..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map5.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map5.png b/wise-webapp/src/test/resources/data/svg/map5.png deleted file mode 100644 index 65148eda..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map5.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map5.svg b/wise-webapp/src/test/resources/data/svg/map5.svg deleted file mode 100644 index dcccd3e8..00000000 --- a/wise-webapp/src/test/resources/data/svg/map5.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - t - - - - - - Main Topic - - - - - - - \ No newline at end of file diff --git a/wise-webapp/src/test/resources/data/svg/map6-exp.svg b/wise-webapp/src/test/resources/data/svg/map6-exp.svg deleted file mode 100644 index dad6979d..00000000 --- a/wise-webapp/src/test/resources/data/svg/map6-exp.svg +++ /dev/null @@ -1,1723 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PPM Plan - - - - - - - - Community Outreach - - - - - - - - - Probono - - - - - - - - - Sub Topic - - - - - - - - - Backlog Management - - - - - - - - - - - Client Project Management - - - - - - - - - Human Resources - - - - - - - - - - - Freeform IT - - - - - - - - - Administration - - - - - - - - - Freeform IT Plan - - - - - - - - - Fragile - - - - - - - - - Tools - - - - - - - - - Learning Needs Plan - - - - - - - - - Governance & Executive - - - - - - - - - Sub Topic - - - - - - - - - Finance - - - - - - - - - Freeform Hosting - - - - - - - - - Business Development - - - - - - - - - R&D - - - - - - - - - Goals - - - - - - - - - Formulize - - - - - - - - - Strategy 2: Talent Development - - - - - - - - - - - Strategic Priority 2a: Personal Plans - - - - - - - - - - - Strategic Priority 2b: External learning matches organ. goals - - - - - - - - - - - Strategic Priority 2c: Learning Environment - - - - - - - - - - - So That... - - - - - - - - - - - - Strategy 1: Recruit & Retain - - - - - - - - - - - So that... - - - - - - - - - - - Strategic Priority 1a: Recruitment - - - - - - - - - - - Modify App Form - - - - - - - - - - - Strategy integrated with hiring plan - - - - - - - - - - - Strategic Priority 1b: Hiring - - - - - - - - - - - Strategic Priority 1c: Onboarding - - - - - - - - - - - 3 Month Onboarding Process - - - - - - - - - Tools & Guidelines - - - - - - - - - Mentoring - - - - - - - - - Strategic Priority 1d: Incentives - - - - - - - - - - - Raises - - - - - - - - - Benefits - - - - - - - - - Rewards Message - - - - - - - - - - - Strategic Priority 1e: Offboarding - - - - - - - - - - - Business Development Plan - - - - - - - - - Target - - - - - - - - - Goals - - - - - - - - - Increase new clients - - - - - - - - - Academic Research - - - - - - - - - Strategy 4: Inclusive, Positive Environment - - - - - - - - - - - Strategic Priority 4a:Feedback - - - - - - - - - - - Strategic Priority 4b: Anti Harassment - - - - - - - - - - - Strategic Priority 4c: Diversity - - - - - - - - - - - Sub Topic - - - - - - - - - So That... - - - - - - - - - - - - Sub Topic - - - - - - - - - Support New Products - - - - - - - - - Formulize - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Support CiviCRM - - - - - - - - - Identify Opportunites - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Hosting NG Plan - - - - - - - - - Project Teams - - - - - - - - - Projects 1-3 - - - - - - - - - Projects 4-6 - - - - - - - - - Projects 7 & 8 - - - - - - - - - General Work - - - - - - - - - Restructure - - - - - - - - - Client Centric Process - - - - - - - - - Freeform Project Process - - - - - - - - - Supportive Systems Plan - - - - - - - - - Board and C Planning - - - - - - - - - Mission Statements - - - - - - - - - - - Values - - - - - - - - - Bylaw Review - - - - - - - - - Policies - - - - - - - - - Business Plan - - - - - - - - - Strategy 3: Safety and Wellness - - - - - - - - - - - Strategic Priority 3a: H&S Policies & Practices - - - - - - - - - - - Sub Topic - - - - - - - - - Strategic Priority 3b: Health Promotion - - - - - - - - - - - Health and Wellness Committee - - - - - - - - - - - Work-life Balance Initiative - - - - - - - - - - - So that... - - - - - - - - - - - - Benefits - - - - - - - - - - - As Freeform Staff - - - - - - - - - - - Responsibility: HZ, JC - - - - - - - - - Release 3 - - - - - - - - - - - Have Heather create list benefits against Best Practice & cost - - - - - - - - - - - Have Jason review list - - - - - - - - - - - Have JC & HZ consult with staff - - - - - - - - - - - Have best benefits we can afford - - - - - - - - - - - So that... - - - - - - - - - - - - Community Outreach Plan - - - - - - - - - Goals - - - - - - - - - CSI - - - - - - - - - Drupal Community - - - - - - - - - CiviCRM - - - - - - - - - Other - - - - - - - - - Backlog Plan - - - - - - - - - - - Go To Backlog Plan - - - - - - - - - - - - Strategies Marketing - - - - - - - - - Isolated Topic - - - - - - - - - Exit Interviews - - - - - - - - - As Freeform - - - - - - - - - - - Responsiblity: HZ, KS - - - - - - - - - Release - - - - - - - - - - - Have Heather write procedures for exit interview process - - - - - - - - - So that - - - - - - - - - - - - 3 Month Onboarding Process - - - - - - - - - Human Resources Plan - - - - - - - - - Related Org Objectives - - - - - - - - - 1 - - - - - - - - - - - 2 - - - - - - - - - - - 3 - - - - - - - - - - - 4 - - - - - - - - - - - Related Documents - - - - - - - - - - - Goals - - - - - - - - - Goal:Staff=Optimal Bus. Growth - - - - - - - - - - - - So that... - - - - - - - - - - - Related Strategic Priorities: - - - - - - - - - KPI: HR Level equals Planned Growth - - - - - - - - - - - Methodology - - - - - - - - - - - Target - - - - - - - - - - - Goal: Increase Job Satisfaction - - - - - - - - - So That - - - - - - - - - - - - Related Strategic Priorities - - - - - - - - - Sub Topic - - - - - - - - - KPI: Employee Satisfaction - - - - - - - - - - - Sub Topic - - - - - - - - - Methodology - - - - - - - - - - - Target - - - - - - - - - - - Goal: Improve Performance - - - - - - - - - - - - So That - - - - - - - - - - - - Related Strategic Priorities - - - - - - - - - - - KPI: Employee Performance - - - - - - - - - - - Methodology - - - - - - - - - Target - - - - - - - - - Goal: Reduce Turnover - - - - - - - - - - - - So That - - - - - - - - - - - - Related Strategic Priorities - - - - - - - - - KPI: Retention Rate - - - - - - - - - - - Methodology - - - - - - - - - Risk & Compliance - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/wise-webapp/src/test/resources/data/svg/map6.pdf b/wise-webapp/src/test/resources/data/svg/map6.pdf deleted file mode 100644 index 3d90b6cb..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map6.pdf and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map6.png b/wise-webapp/src/test/resources/data/svg/map6.png deleted file mode 100644 index b63acdd5..00000000 Binary files a/wise-webapp/src/test/resources/data/svg/map6.png and /dev/null differ diff --git a/wise-webapp/src/test/resources/data/svg/map6.svg b/wise-webapp/src/test/resources/data/svg/map6.svg deleted file mode 100644 index 29656793..00000000 --- a/wise-webapp/src/test/resources/data/svg/map6.svg +++ /dev/null @@ -1,2843 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PPM Plan - - - - - - - - Community Outreach - - - - - - - - - Probono - - - - - - - - - Sub Topic - - - - - - - - - Backlog Management - - - - - - - - - - - Client Project Management - - - - - - - - - Human Resources - - - - - - - - - - - Freeform IT - - - - - - - - - Administration - - - - - - - - - Freeform IT Plan - - - - - - - - - Fragile - - - - - - - - - Tools - - - - - - - - - Learning Needs Plan - - - - - - - - - Governance & Executive - - - - - - - - - Sub Topic - - - - - - - - - Finance - - - - - - - - - Freeform Hosting - - - - - - - - - Business Development - - - - - - - - - R&D - - - - - - - - - Goals - - - - - - - - - Formulize - - - - - - - - - Strategy 2: Talent Development - - - - - - - - - - - Strategic Priority 2a: Personal Plans - - - - - - - - - - - Strategic Priority 2b: External learning matches organ. goals - - - - - - - - - - - Strategic Priority 2c: Learning Environment - - - - - - - - - - - So That... - - - - - - - - - - - - Strategy 1: Recruit & Retain - - - - - - - - - - - So that... - - - - - - - - - - - Strategic Priority 1a: Recruitment - - - - - - - - - - - Modify App Form - - - - - - - - - - - Strategy integrated with hiring plan - - - - - - - - - - - Strategic Priority 1b: Hiring - - - - - - - - - - - Strategic Priority 1c: Onboarding - - - - - - - - - - - 3 Month Onboarding Process - - - - - - - - - Tools & Guidelines - - - - - - - - - Mentoring - - - - - - - - - Strategic Priority 1d: Incentives - - - - - - - - - - - Raises - - - - - - - - - Benefits - - - - - - - - - Rewards Message - - - - - - - - - - - Strategic Priority 1e: Offboarding - - - - - - - - - - - Business Development Plan - - - - - - - - - Target - - - - - - - - - Goals - - - - - - - - - Increase new clients - - - - - - - - - Academic Research - - - - - - - - - Strategy 4: Inclusive, Positive Environment - - - - - - - - - - - Strategic Priority 4a:Feedback - - - - - - - - - - - Strategic Priority 4b: Anti Harassment - - - - - - - - - - - Strategic Priority 4c: Diversity - - - - - - - - - - - Sub Topic - - - - - - - - - So That... - - - - - - - - - - - - Sub Topic - - - - - - - - - Support New Products - - - - - - - - - Formulize - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Support CiviCRM - - - - - - - - - Identify Opportunites - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Sub Topic - - - - - - - - - Hosting NG Plan - - - - - - - - - Project Teams - - - - - - - - - Projects 1-3 - - - - - - - - - Projects 4-6 - - - - - - - - - Projects 7 & 8 - - - - - - - - - General Work - - - - - - - - - Restructure - - - - - - - - - Client Centric Process - - - - - - - - - Freeform Project Process - - - - - - - - - Supportive Systems Plan - - - - - - - - - Board and C Planning - - - - - - - - - Mission Statements - - - - - - - - - - - Values - - - - - - - - - Bylaw Review - - - - - - - - - Policies - - - - - - - - - Business Plan - - - - - - - - - Strategy 3: Safety and Wellness - - - - - - - - - - - Strategic Priority 3a: H&S Policies & Practices - - - - - - - - - - - Sub Topic - - - - - - - - - Strategic Priority 3b: Health Promotion - - - - - - - - - - - Health and Wellness Committee - - - - - - - - - - - Work-life Balance Initiative - - - - - - - - - - - So that... - - - - - - - - - - - - Benefits - - - - - - - - - - - As Freeform Staff - - - - - - - - - - - Responsibility: HZ, JC - - - - - - - - - Release 3 - - - - - - - - - - - Have Heather create list benefits against Best Practice & cost - - - - - - - - - - - Have Jason review list - - - - - - - - - - - Have JC & HZ consult with staff - - - - - - - - - - - Have best benefits we can afford - - - - - - - - - - - So that... - - - - - - - - - - - - Community Outreach Plan - - - - - - - - - Goals - - - - - - - - - CSI - - - - - - - - - Drupal Community - - - - - - - - - CiviCRM - - - - - - - - - Other - - - - - - - - - Backlog Plan - - - - - - - - - - - Go To Backlog Plan - - - - - - - - - - - - Strategies Marketing - - - - - - - - - Isolated Topic - - - - - - - - - Exit Interviews - - - - - - - - - As Freeform - - - - - - - - - - - Responsiblity: HZ, KS - - - - - - - - - Release - - - - - - - - - - - Have Heather write procedures for exit interview process - - - - - - - - - So that - - - - - - - - - - - - 3 Month Onboarding Process - - - - - - - - - Human Resources Plan - - - - - - - - - Related Org Objectives - - - - - - - - - 1 - - - - - - - - - - - 2 - - - - - - - - - - - 3 - - - - - - - - - - - 4 - - - - - - - - - - - Related Documents - - - - - - - - - - - Goals - - - - - - - - - Goal:Staff=Optimal Bus. Growth - - - - - - - - - - - - So that... - - - - - - - - - - - Related Strategic Priorities: - - - - - - - - - KPI: HR Level equals Planned Growth - - - - - - - - - - - Methodology - - - - - - - - - - - Target - - - - - - - - - - - Goal: Increase Job Satisfaction - - - - - - - - - So That - - - - - - - - - - - - Related Strategic Priorities - - - - - - - - - Sub Topic - - - - - - - - - KPI: Employee Satisfaction - - - - - - - - - - - Sub Topic - - - - - - - - - Methodology - - - - - - - - - - - Target - - - - - - - - - - - Goal: Improve Performance - - - - - - - - - - - - So That - - - - - - - - - - - - Related Strategic Priorities - - - - - - - - - - - KPI: Employee Performance - - - - - - - - - - - Methodology - - - - - - - - - Target - - - - - - - - - Goal: Reduce Turnover - - - - - - - - - - - - So That - - - - - - - - - - - - Related Strategic Priorities - - - - - - - - - KPI: Retention Rate - - - - - - - - - - - Methodology - - - - - - - - - Risk & Compliance - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file