Hi,
I have been looking into the Solr search to identify which wiki links ([>>doc:] in TEXTAREA’s within Objects on a page) are being used for a certain document. I want to use this from my Java packages. I have not been able to identify an (easy?) way of incorporating Solr search into this. If I’m not mistaken, it even discouraged to use. It works like a charm in velocity but that’s not where I want to use it.
Now, I’m not an expert in Java so maybe I do not have the right knowledge to understand how this works but can you please enlighten me a bit on this topic?
With kind regards,
Peter
All,
After I completed an `apt-get upgrade` on my Ubuntu 14.04 server and then
restarted I noticed that tomcat would not load XWiki up anymore (as in it
wouldn't even try to load it, catalina.out didn't show any attempts to
load). After scratching my head for a little bit I decided to do a
reinstall of the tomcat portion by running the following:
sudo apt-get install --reinstall xwiki-enterprise-tomcat7-common
After running this command I was able to access XWiki and perform the rest
of the upgrade process. I hope this helps someone else that may run into
this issue.
--
*Josh Patten*
*IT Manager*
*Westpark Communications, L.P*.
20475 State Highway 249, Suite 100
Houston, TX 77070
http://www.westparkcom.net
Hi everybody,
The pages get their language when created. It is the default language of the
wiki specified in the configuration.
I need to change this. The wiki language has been set to the desired value
after a lot of pages where already created. Those pages are not easily found
when searching the wiki.
How can I fix this fpr many pages at once?
Thanks in advance...
--
View this message in context: http://xwiki.475771.n2.nabble.com/How-to-change-language-of-page-tp7595520.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi Eduard,
Thanks. I figured that one out. Fortunately, I have been able to use the recursion in the DeleteListener to my advantage without having to set any kind of context variable. It works like a charm!
Thanks again for the effort.
With kind regards,
Peter
Hi,
I am looking for a solution to “automatically” delete children for a XWiki page using the DeleteEvent listener. Is there a way to prevent recursion when deleting such a child XWiki page from a Java lib?
Thanks for your feedback,
Peter
The XWiki development team is proud to announce the availability of XWiki 7.2 Milestone 2.
The focus of this release was on fixing issues introduced in 7.2 Milestone 1 with the new Nested Document/Nested Spaces features and to continue adding support for this feature in various existing features (using a tree for the Import UI instead of a list, new DB table to have performant Space queries, start of Nested Spaces support in the XWiki JS APIs, etc). Another major feature added was the new Script permission to allow forbidding Script execution to specific Users or Groups.
You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download
Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki7.2M2
The following people have contributed code to this release:
Thomas Mortagne
Vincent Massol
Caleb James DeLisle
Eduard Moraru
Guillaume Delhumeau
Marius Dumitru Florea
Sergiu Dumitriu
Thanks for your support
-The XWiki dev team
Hi,
I am looking for a way to create a document reference without the “hassle” of worrying about the WikiName. In a listener, I get a document name which I use for input in a query. The result is a list of documentNames in the format [space.docname]. I need to transform this into a DocumentReference. I can do this without using the wiki, but this gives me “wiki” as the default Wiki. I gate get the wiki from (e.g.) the context, but this means I have to do - as far as I know - one of the two following creations:
1 - documentReferenceResolver ( wikiName + “:” + docFullName)
Where docFullName is in the format [space.docname]
2 - new DocumentReference ( wikiName, spaceName, docName)
In this case, I will have to split the fullName string in order to get access to the spaceName and the docName. If I use a query that delivers me only the pageName, I have the problem of not being able to resolve the spaceName.
I am fairly sure I miss something essential here. Could someone help me out? I’m also fine with any answer that gives me a XWikiDocument :-)
With kind regards,
Peter
Hello everyone,
I am running into issues with getting any information from my instance of
Xwiki using the rest API. I'm curling to the site as per this
documentation:
http://platform.xwiki.org/xwiki/bin/view/Features/XWikiRESTfulAPI#HXWikiRES…
Our instance of XWiki responds with a 200 for GET and POST calls (I'm aware
of the known issue with PUT) but doesn't actually give us relevant
information. The returned data is html for a page with the message:
<div class="panel-body">
<p class="xwikimessage">A problem occurred while trying to process
your request. Please contact the webmaster if this happens a
gain.</p>
</div>
I have four questions concerning this situation:
1. Is the documentation up to date? have there been changes with the
REST api in XWiki 7 that aren't reflected there?
2. Are there config settings that need to be set before being able to
use the REST api?
3. Should I be concerned that I am getting a simple html instead of the
XML the documentation suggests?
4. This is probably the most crucial question: How can I best debug such
an issue? all our logs are set to debug, yet I am not seeing any error
message related to this.
Thanks in advance,
Mehdi