hai ,
i need to export image as a pdf , but that image in other document.how can i
export that one?
ex:
i have attached a imege in page1 (document name),
and i have added the content <img src=
http://localhost:8088/xwiki/bin/download/page1f/firsthome.jpg> in page2
(document name)
i need to export PDF in page2 with image
regards
sekar..
Hi David and Ludovic,
I have finished implementing the second method proposed to achieve the
distributed search of XWiki.
In method I, the master node search the individual indexes each XWiki
Installation.
In method II, the master node maintains a global index of all the other
XWiki Installations and searches on it.
the code has been committed here
https://svn.xwiki.org/svnroot/xwiki/sandbox/plugins/distributedSearchMethod2
Implementation details of both method I and II are presented in detail @
http://dev.xwiki.org/xwiki/bin/view/Design/DistributedXWikiSearchEngine
---
Sai Krishna
Hi Sergiu,
This test that you wrote has failed on Hudson:
public void testTimeComplexity()
{
ArrayList<String> tests = new ArrayList<String>();
ArrayList<String> expects = new ArrayList<String>();
// Something like this should be (negatively) matched in
linear time, thus it should take no
// time. If the build takes a lot, then the regular
expression is not in linear time, thus
// wrong.
String text = "*";
for (int i = 0; i < 1000; ++i) {
text += "abc *";
}
tests.add(text);
expects.add(text);
long startTime = System.currentTimeMillis();
test(tests, expects);
// Even on very slow systems this should not take more than
one second. Putting 10 seconds,
// just to be sure we don't get false test errors.
assertTrue(System.currentTimeMillis() - startTime < 10000);
}
Result here:
http://hudson.xwiki.org/job/xwiki-platform-core-trunk/com.xpn.xwiki.platfor…
So it seems it took more than 10 seconds.
Does it mean the code is not working?
What should we do?
Thanks
-Vincent
Hi Marius,
Is this still needed? Can we remove it now?
Thanks
-Vincent
On Aug 22, 2008, at 4:56 PM, mflorea (SVN) wrote:
> Author: mflorea
> Date: 2008-08-22 16:56:13 +0200 (Fri, 22 Aug 2008)
> New Revision: 11972
>
> Modified:
> platform/xwiki-tools/trunk/xwiki-configuration-resources/src/main/
> resources/xwiki.cfg.vm
> Log:
> XWIKI-2497: I added the xwiki.wysiwygnew parameter in order to
> enable/disable the new WYSIWYG editor.
>
> Modified: platform/xwiki-tools/trunk/xwiki-configuration-resources/
> src/main/resources/xwiki.cfg.vm
> ===================================================================
> --- platform/xwiki-tools/trunk/xwiki-configuration-resources/src/
> main/resources/xwiki.cfg.vm 2008-08-22 14:44:31 UTC (rev 11971)
> +++ platform/xwiki-tools/trunk/xwiki-configuration-resources/src/
> main/resources/xwiki.cfg.vm 2008-08-22 14:56:13 UTC (rev 11972)
> @@ -236,4 +236,9 @@
> #-# Add a prefix to all databases names of the wikis in virtual mode
> and to the wiki name in non virtual mode
> # xwiki.db.prefix=
>
> +#-# [SINCE 1.6M1]
> +#-# Enable the new, experimental, GWT-based WYSIWYG editor.
> +#-# It will be accessible by having 'editor=wysiwygnew' in the
> query string of the edit URL.
> +xwiki.wysiwygnew=1
> +
> $!xwikiCfgAdditionalProperties