Hi
I want to get instantly the html content of Wysiwyg in javascript , I am
using it that way
....
<textarea id="content" name="content" width="100%" height="300px" >
....
Wysiwyg.onModuleLoad(function() {
editor = new WysiwygEditor({
hookId: 'content',
syntax: 'xwiki/2.0'
});
});
I could not get HTML content of editor instantly
Thanks
Dear Friends,
I am working on a xwiki deployment and one particular feature has me
stumped.
The Link Checker module. So I have activated it as per instructions, I am
using xwiki4.2.1. The tab for broken links shows up on the Index application
I have also added a page that shows the Link Checker Index. While the index
count shows 283, no links appear on the broken links tab.
Any help on this would be greatly appreciated.
Thanks,
Kohinoor
Hi,
I'm writing a macro as described on 'Writing XWiki Rendering Macros in wiki pages'
I've create a object of class WikiMacroClass
I fail to understand what is meant by the two attributes: Macro Content Type; No Content, Optional or Mandatory
and Content Description. This is what's in the manual:
• Macro content type: Whether this macro should support a body or not
• Content description: A short description about the macro's content to be displayed on the WYSIWYG editor
What is a body, can somebody give a example? Maybe good to extend the manual also with such a example?
thxs
Gerritjan
Good Morning All,
I have a question about search and blacklisted space, I need the Allusers
group to be able to search a specific blacklisted space (if this isn't
possible I guess allowing the user to search all blacklisted spaces is a
necessary evil). When a user uses the top right dynamic search this seems to
search the entire wiki including blacklisted pages but as soon as you search
using the LuceneSearch page it won't search the blacklisted spaces.
Is there a way to change this?
I hope I am clear enough in explaining this
Thanks
--
View this message in context: http://xwiki.475771.n2.nabble.com/Searching-blacklisted-Spaces-tp7583246.ht…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
I would like to install the extension "Other Hierarchical Navigation Panel".
But how do i create the macro and how active i it?
I am completely new with Xwiki.
Thank you for any help
Stefan
--
View this message in context: http://xwiki.475771.n2.nabble.com/need-help-with-Extd-Other-Hierarchical-Na…
Sent from the XWiki- Users mailing list archive at Nabble.com.
I'd like to include <video> tags in my pages, but at the moment the
rendering engine seems to be scrubbing them out. I can understand how
this is a Good Thing, HTML5 doesn't technically exist yet and random
tags should be scrubbed out of my stuff. But is there some way to
configure xwiki to make this one teeny tiny exception for me?
Hi,
I am interested in trying out xwiki concerto but I am unable to download the
installer jar from its website at
http://concerto.xwiki.org/xwiki/bin/view/Main/DownloadAndInstall.
Does anybody know what is the current state of the xwiki concerto project?
I understand that xwiki concerto was a research project that ran until
sometime in 2008 and I am interested in knowing what progress there's been
on it since then (if any). i.e. does the main xwiki project now maybe
include support for replication of xwiki content in a distributed
environment?
Any insight on this would be much appreciated!
Regards,
PM.
Hello Everyone I have this situation:
I have a page with 3 attachment files:
I used the Filesystem Attachment Porter to "move" the attachment in the
database to the filesystem but it didn't worked, I get the message "File Not
Found" so I was triying to going back to database attachment just for
testing purposes, edited xwiki.cfg and restarted tomcat but it seems that
the files are lost and cant add or remove them from the page, I clicked the
attachment link on the page but nothing happen. Is there anything I can do
to get my files back?
Thanks in advance.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Database-Attachment-and-Filesystem-Attach…
Sent from the XWiki- Users mailing list archive at Nabble.com.
I am following the guide for creating a Macro by extending AbstractMacro: http://rendering.xwiki.org/xwiki/bin/view/Main/ExtendingMacro although I have implemented it in Groovy rather than core Java.
I have managed to get the example to successfully build with maven and for the resulting JAR file to work with my xwiki Enterprise 4.4 install.
I then changed the content of the execute method to:
List<Block> result = Arrays.<Block> asList(new WordBlock("|=one|=two"))
return result
And added a new .test file:
.runTransformations
.#-----------------------------------------------------
.input|xwiki/2.1
.# Test the macro in standalone mode
.#-----------------------------------------------------
{{releases artifactIds="test1,test2" server="test3"/}}
.#-----------------------------------------------------
.expect|xhtml/1.0
.#-----------------------------------------------------
|=one|=two
This test passed when running the maven build, but produced the text output "|=one|=two" when deployed to xwiki, rather than rendering a table. I then changed the execute method to:
List<Block> result = Arrays.<Block> asList(new RawBlock("|=one|=two",Syntax.XWIKI_2_0))
return result
with the same test as above. This time the test does not pass, and fails with the error:
releases1.test [xwiki/2.1, xhtml/1.0](org.xwiki.rendering.test.integration.RenderingTest): expected:<[|=one|=two]> but was:<[]>
When deployed to xwiki there is no output either. As such, I can't seem to get RawBlock to actually output my pre-formatted xwiki code.
Am I doing something wrong with my use of RawBlock?
How can I get xwiki syntax content (e.g. a table) to output from the execute method so that a) the tests pass and b) the content is rendered into a table?
________________________________________________________________________
This e-mail has been scanned for all known viruses by Star Internet. The
service is powered by MessageLabs. ________________________________________________________________________