Hi!
Because of making a lot of settings in the user rights (my company
departments are xwiki.spaces and the user have only rights for their spaces)
I have two questions about the general configuration:
“Subscribe this Space” and “Send this Page by Email to a XWiki user” doesn`t
work. Do I have to open some rights? “Send mail to an extern email” works.
Where can I edit the topmenu? The WIKI Item on top top leads to Main/WebHome
and I like to disable it. The PROFIL Item should be disabled to, because of
everything is managed by the ActiveDirectory.
Thanks very much!
Marc
--
View this message in context: http://xwiki.475771.n2.nabble.com/Edit-top-menu-tp7575047.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
When I tried to track down xwiki 4.1's failure to upgrade the 3.5.1 (Oracle)
database, I discovered that xwiki is trying to use the package SDO_GEOR_DEF.
However, in a normal Oracle database, this package is owned by user/schema
MDSYS and no synonym exists for it. Since xwiki is addressing the package
only as SDO_GEOR_DEF and not MDSYS.SDO_GEOR_DEF, in order to make the call
work, a synonym SDO_GEOR_DEF needs to be defined pointing to
MDSYS.SDO_GEOR_DEF. I can not find this anywhere in the documentation, so I
suggest an update to the documentation or a code change in xwiki.
It should be pointed out, however, that a fix to this did not solve the
original problem.
/Lars
--
View this message in context: http://xwiki.475771.n2.nabble.com/xwiki-on-Oracle-calls-package-SDO-GEOR-DE…
Sent from the XWiki- Users mailing list archive at Nabble.com.
I have made some minor changes to the WYSIWYG editor thru the Adminstration
section (loggedin as the administrator), but now I am missing sections!
I can see the "MENU BAR" with the description, but the actual field to "add"
a new menu bar (and the list where you can delete or change the order) are
missing.
The same applies to the "FONT NAMES" section. I used to see the list of
fonts which are available to the WYSIWYG editor, but now that section is
gone too!
I have no clue on how I can get this back, so any help is appreciated!
--
View this message in context: http://xwiki.475771.n2.nabble.com/WYSISYG-Administration-sections-missing-t…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi, all,
I have a problem to add more tools onto the toolbar with xwiki 3.5 I am
using, I like to add Text Alignment, Fonts, TextSize, colors, but I checked
this link:http://platform.xwiki.org/xwiki/bin/view/Features/WysiwygEditor,
it is for 2.0, where is the toolbar configuration information about the 3.5
version? I could not find from the admin guide.
Also from the WYSIWYG editor configuration class,
https://sipa.mol.fi/xwiki/bin/view/XWiki/WysiwygEditorConfigClass, it does
not define all the tool bar items.
Would you please point me to the right direction to look at?
Thanks very much!!
Dave
Could it be the auto-watch feature?
http://extensions.xwiki.org/xwiki/bin/view/Extension/Watchlist+Application#…
Thanks,
Caty
On Wed, May 23, 2012 at 12:42 PM, Moritz Hesse (EA GmbH) <
moritz.hesse(a)ea-gmbh.de> wrote:
> Hi,
>
> > maybe its because of commaas in titles of Documents?
> > I created this Jira-Issue some time ago:
> > http://jira.xwiki.org/browse/XE-1149
>
> no, there are no commas in the doctitles. This problem (watch activated)
> occurs on -every- page.
>
> Bests,
> Moritz
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
Hi,
there is something wrong in the state of Denmark...: On each page I visit in
our XWiki the watch feature is already activated (yellow star). And if I
manually deactivate it and reactivate then it does not appear in my
watchlist. So I am not at all able to add pages or spaces into my watchlist.
Is this a common bug, or a misconfiguration? I would really appreciate your
help as I urgently need this feature.
Thanks and bests,
Moritz
Hi,
I can't find any information on the relevance scoring/weighting in XWiki's
Lucene Search. Haven't I looked close enough? From what I understand about
Lucene and XWiki, each page and attachment is indexed with several fields,
such as page title, page name, contents, tags, parent, not creator..
The relevance scoring doesn't show how it's computed. I figure the
percentage of hits per field is multiplied with a weight per field (eg: a
hit in the title is scored higher than a hit in the content, and if the
title 100% matches it scores higher than a longer title where the query
only occurs in one of 10 words).
When title or pagename match the search query, the relevance always seems
100%.
Are my assumptions correct?
What fields are taken into account and by what weight?
Between results that have 100% relevance, how is sorting done?
Thanks for explaining!
Joris
Hi,
In XWiki 1.7 the following code was created; it creates a html table with
links generated by #pagedViewLinks()
It now displays the #pagedViewLinks() but no longer the links
What is the current way of doing this (migrated to XWiki 3.5.1)?
<table id="cdlsTable"
class="grid sortable filterable doOddEven"
cellpadding="0"
cellspacing="0"
border="0">
<tr class="sortHeader">
<th>$msg.get('Subject')</th>
<th>$msg.get('lst_modified')</th>
</tr>
#foreach ($faq in $faqlist)
<tr>
#set ($faqdoc = $xwiki.getDocument($faq))
#set ($faqobjs =
$faqdoc.getObjects("CdlsatdCode.CdLS_ATD_PublicFAQClass"))
#foreach ($faqobj in $faqobjs)
#if($faqobj.language == $lang)
<td>[[$faqobj.subject>>$faq]]</td>
<td>$xwiki.formatDate($faqdoc.ContentUpdateDate, "dd/MM/yyyy")</td>
#end
#end
</tr>
#end
</table>
#pagedViewLinks($itemsPerPage $totalPages $crtPageNumber)