Hello,
In the user profile page the functionnality of "Automatic document watching" field seem not working like documentation indicate?
Documentation http://extensions.xwiki.org/xwiki/bin/view/Extension/Watchlist+Application indicate:
"Each time a user create a document it's automatically added it the user watchlist"
But if I activate mail and "Automatic document watching: Major modifications" I receive mail if someone modify (major modif) a page who is already in my watchlist list.
This watchlist functionnality was modified?
Thxs for any help
Pascal BASTIEN
Hi,
I've got a few wiki pages that contain large tables (more columns than will fit across the page and more rows than will fit down the page), after being imported from a spreadsheet. I'd like to restrict the view of such tables to what can be shown in the visible area, with sliders to move around. Is there already a facility to do this, or a simple styling parameter?
Thanks,
Bryn
Our new manufacturing engineer is documenting all of the procedures in our
company. He has done this for several other companies and has work
instruction templates he uses (mostly Excel with a few Word documents). I am
to add these instructions to xWiki. I have tried several ways of importing
them into the wiki pages so they would look just like the original
documentation. All of my attempts have failed. The formatting just doesn't
seem to import correctly. There are two boxes that can be checked or
unchecked when importing the documents (Filter Styles and Use The Office
Document Viewer). I have tried every combination and none of them worked
correctly. I have included some screen shots of the documentation I am
trying to import. The idea is to only need to edit one document when future
changes arise rather than the document for the floor as well as the wiki
(with the exception of uploading the new file to the wiki).
Thanks for your help!
Capture_01.PNG
<http://xwiki.475771.n2.nabble.com/file/n7593308/Capture_01.PNG>
Capture_02.PNG
<http://xwiki.475771.n2.nabble.com/file/n7593308/Capture_02.PNG>
Capture_03.PNG
<http://xwiki.475771.n2.nabble.com/file/n7593308/Capture_03.PNG>
--
View this message in context: http://xwiki.475771.n2.nabble.com/Problem-using-Office-Document-Import-tp75…
Sent from the XWiki- Users mailing list archive at Nabble.com.
In order to debug your issue you should:
* open the browser's developer tools
* select the Network tab
* reload the page
* type something in the search input
* check the last requests send; they should target the
XWiki.SuggestSolrService page
* check the response output for each of these requests
The response output should be something like:
<?xml version="1.0" encoding="UTF-8"?>
<results>
... results here ...
</results>
Let me know what you have instead (simple user versus admin user).
On Sat, Nov 29, 2014 at 7:02 PM, Prasad Kamath
<prasad.kamath(a)accolite.com> wrote:
> Hi Marius ,
> Can you please provide me more inputs ? I am not able to fix
> the issue based on the link you have provided.
>
> Please see the screenshot of the issue I am referring to.
>
> Regards,
> Prasad
>
> On Wed, Nov 26, 2014 at 7:54 PM, Marius Dumitru Florea
> <mariusdumitru.florea(a)xwiki.com> wrote:
>>
>> I think you hit http://jira.xwiki.org/browse/XWIKI-9386 . Check who is
>> the last user that edited the search pages (Main.Search,
>> Main.SolrSearch). You can probably fix the problem by saving the
>> search pages with an user that has programming rights. But the
>> question remains: why were they saved by an user that doesn't have PR?
>>
>> Hope this helps,
>> Marius
>>
>> On Wed, Nov 26, 2014 at 9:59 AM, Prasad Kamath
>> <prasad.kamath(a)accolite.com> wrote:
>> > Hello , I am currently trying to setup Xwiki in my local machine and I
>> > am
>> > seeing that when I turn off admin role for un-registered and any other
>> > users that have been created , those users are unable to perform any
>> > search
>> > . Search works only when admin role is enabled for any user .
>> >
>> > Below are the details of my xwiki : xwiki-enterprise for windows Version
>> > :
>> > 6.3 .
>> >
>> > Can anyone tell me if this is an issue or if I am missing anything ?
>> > _______________________________________________
>> > users mailing list
>> > users(a)xwiki.org
>> > http://lists.xwiki.org/mailman/listinfo/users
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>
>
Having been put off writing Java components a number of times I've decided to really tackle the problem head on. I would greatly appreciate any help in this.
I've been following the advice in http://platform.xwiki.org/xwiki/bin/view/DevGuide/WritingComponents and I have compiled a Jar identical to the Hello World example except that the class and method names differ, hopefully consistently. I've placed the jar in XE_WAR_HOME/WEB-INF/lib and written a page, which consists only of
{{velocity}}
$services.mycomponent.greet()
{{/velocity}}
The output when viewed is simple "$services.alertdb.greet()", so nothing seems to have happened. However, if I restart Tomcat (and then wait a minute or so for XWiki to restart) the output is "Hello", as desired.
So is a restart of Tomcat always required? This wasn't mentioned in the guide. And since extensions can be added via the extension manager without a restart, is there a sneaky trick to doing the same with my own components.
Also, is a restart necessary when I update the Jar, either with fixed methods or modified interface?