Hi,
i have a problem with the tooltip macro.
Using XWIKI ENTERPRISE 4.5.3 I installed Tooltip Macro V. 1.2.3 and the page
Tooltip appears.
But moving the cursor over the question mark the cursor form changes to an
arrow and nothing else happens.
Over the "Vanilla" the cursor shows an additional question mark but nothoing
else happens, even when I click.
I also tried to implement an {{tooltip}} - section on another page, nothing
happens there too.
Whats wrong about my implementation?
Thanks for help.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Tooltip-macro-tp7585125.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
Using Rest, I'd like to be able to retrieve the version summary a user
provides when he edits a page.
I wasn't able to find a way to do so : for example executing a GET on an URL
like "pages/PageName/history/xxx" does not allow me to see the version
summary text.
Is there a way to do this ?
Thanks by advance,
Stephane.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Rest-Retrieve-the-version-summary-for-a-p…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I logged in using Admin as the account provide by XWiki 5.0.1 installation.
I created a panel has the following XWQL:
#set ($hql = "select doc.fullName, todoObj.Description from Document as doc, doc.object(XWiki.TodoClass) as todoObj where todoObj.Status <> 'Finished' order by doc.date desc")
#set($results = $services.query.xwql($hql).setLimit(5).execute())
It works well in the panel's view mode. It list what I searched for.
Then I drag and drop it to the right of the Panel Wizard page using Panel Wizard and click SAVE THE NEW LAYOUT, my panel still displayed the search result on the right.
Now I go to the XWiki home (http://localhost:8080/xwiki/bin/view/Main/), I got an error display on the right of the home page: Full form statements requires programming right. Query statement = [select doc.fullName, todoObj.Description from Document as doc, doc.object(XWiki.TodoClass) as todoObj where todoObj.Status <> 'Finished' order by doc.date desc]
I still logged in as Admin and checked that XWikiAdminGroup, which Admin belongs to, has the Program right. Even if I explicitly give Admin user the Program right on the Right page, this issue still cannot be fixed. Note that my panel works when I worked with the Administration App.
What happened to the home page and How to solve it?
Thanks for your help!
Guofeng
Hi,
I follow the Todo tutorial (http://www.theserverside.com/news/1363830/XWiki-A-Platform-for-Collaborativ…) on XWiki 5.0.1. By making a little changes and using XWiki Sytanx 2.0. The Todo application runs well on my XWiki instance. But I stuck at My Todo Panel.
Listing 7 in the tutorial shows the following code to list all Todo documents on My Todo Panel assigned to the current logged in user and that are not finished:
#set ($hql = ", BaseObject as obj, StringProperty as prop1,
StringProperty as prop2 where obj.name=doc.fullName and obj.className='XWiki.TodoClass'
and obj.name<>'XWiki.TodoClassTemplate' and obj.id=prop1.id.id and prop1.id.name='Status'
and prop1.value <> 'Finished' and obj.id=prop2.id.id and prop2.id.name='Assignee'
and prop2.value='$context.user' order by doc.date desc")
#foreach ($todo in $xwiki.searchDocuments($hql, 5, 0))
......
It has the following description about the above code:
"The hard part in creating this My Todo Panel is in finding out the correct HQL query to write. You have to know that Static List Class properties and User Class properties are stored internally using a StringProperty Object."
For me on XWiki 5.0.1, no document returned by the above code and I do not know where to start from to fix it.
I know tutorial is old (on 1 Dec, 2007), so maybe the object store has been changed late.
Could you give me instructions how to make the above code work?
It is appreciated if you could give some fix to the above code and I like to test the fix.
Thanks for your help.
Guofeng
Hi,
I updated last week my pg-tomcat-xwiki installation on ubuntu.
the whole thing is broken. The tomcat server is installed, pgsql too. The
database is created and Ive added a xwiki schema because the previous
version (453) had a problem on this.
the whole installation finished I connect to port 8080/xwiki and end up with
a context not found error.
After completely cleaning up several times, it ended up installing the
mysql bundled and found it broken also. The update wizard is infinite
Looking at the problems it seems it has some install path broken on the
enterprise wiki UI package.
Sincerely,
Bertrand Léger
Project Manager chez Agri-Esprit
tel : +33. 6. 74. 76. 10. 65
skype: leger_bertrand
bertrand.leger(a)agri-esprit.com
www.agri-esprit.com
4 rue Boussingault
67000 Strasbourg
France
Dear xwiki community,
I've started using the Ideas application [1], and have some issues with it
(version 1.1.2, XE version 4.5.2) :
- on IE8, only 1 idea is listed (out of 6 we created). It used to display
all of them, but not anymore, for a reason I still did not find.
- on Firefox/Chrome, all ideas are displayed, but when not logged in,
"noavatar.png" pictures are displayed as 160x160 px (that somewhat breaks
the display)
- on Firefox/Chrome, when logged in, all is ok
BR,
Jeremie
[1] - http://extensions.xwiki.org/xwiki/bin/view/Extension/Ideas
Hi,
I am new to XWiki. I use XWiki 5.0.1.
I following FAQ tutorial to create my first app. Finally I make it work but there is some little difference comparing with what described in the tutorial(http://platform.xwiki.org/xwiki/bin/view/DevGuide/FAQTutorialManua…
After clicked "CREATE THE DOCUMENT SHEET", the tutorial said I should add XWiki.SheetClass object to my sheet page. Then it told me Click on the "CREATE THE DOCUMENT TEMPLATE" button and add in wiki mode the following code:
{{include document="FAQ.FAQClassSheet"/}}
But after finished these steps, the app not works.
Instead I did the following:
(a) after click CREATE THE DOCUMENT SHEET, I clicked Bind the sheet to the class.
(b) after click CREATE THE DOCUMENT TEMPLATE, I clicked Add a FAQ class to the template.
I find that after (a), the document sheet contain the similar code listed on the tutorial . But after (b), the document template does not contain any explicit code like {{include document= "FAQ.FAQ...."}}.
My Questions:
1. is what I did right? That is, XWiki 5.0.1 make our life easier.
2. am I luck that my app works, I mean, will add {{include....}} is a mandatory for the document template?
If I needed to add {{include...}} in the document template, should the document name be "FAQ.FAQClassSheet" or "FAQ.FAQSheet" ( the name on my page is "FAQ.FAQSheet")?
Thanks for your help!
Guofeng
Is it way to get whole Custom object content to be send it in the mail?
I do it in Groovy as it is described in
http://platform.xwiki.org/xwiki/bin/view/DevGuide/GroovyNotificationTutorial
I know it could be done by redoing the same formatting as in the class
sheet, but, as I need to notify about different objects, it is too
cumbersome and error prone.
I tried unsuccessfully:
1. xwiki.getURLContent("url","user","password") failed because user and
password seems not working,
2. doc.getRenderedContent() shows only doc.content part, ignoring custom
object properties.
Thanks!
Valdis
I am able to login with my windows(active directory credentials) but issue
is ldap user does not have any rights on xwiki space.
My question is : Is there a way i can give some rights(say view rights) on
specific space(say Welcome Space) to all my ldap(active directory) users.
I created the welcome space and navigated to administer Space, then to
rights, but do not see any way to give rights to all my active directory
user.
This issue is regarding my second try to integrate xwiki with my company
active directory,but no success.I am getting the below issue
com.xpn.xwiki.plugin.ldap.XWikiLDAPException: Error number 0 in 5: LDAP
bind failed with LDAPException.
Wrapped Exception: Invalid Credentials
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:172)
~[xwiki-platform-legacy-oldcore-3.5.jar:na]
at
com.xpn.xwiki.plugin.ldap.XWikiLDAPConnection.open(XWikiLDAPConnection.java:101)
~[xwiki-platform-legacy-oldcore-3.5.jar:na]
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticateInContext(XWikiLDAPAuthServiceImpl.java:305)
[xwiki-platform-legacy-oldcore-3.5.jar:na]
at
com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl.ldapAuthenticate(XWikiLDAPAuthServiceImpl.java:182)
[xwiki-platform-legacy-oldcore-3.5.jar:na]
I contacted my company ActiveDirectory Administrator and provided me the
deatils required in xwiki.cfg file
Here is my my configuration in xwiki.cfg file
xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl
xwiki.authentication.ldap=1
xwiki.authentication.ldap.server=int.myCompany.net
xwiki.authentication.ldap.port=389
xwiki.authentication.ldap.UID_attr=sAMAccountName
xwiki.authentication.ldap.fields_mapping=sAMAccountName,last_name=sn,first_name=givenName,fullname=displayName,email=mail,ldap_dn=dn
xwiki.authentication.ldap.update_user=1
xwiki.authentication.ldap.base_DN=dc=int,dc=myCompany,dc=net
for below below attribute, i was told "New account will be created". Though
i am ot sure what does it mean. So i tried both the
options i.e keeping them default and also commented them out, but no help
xwiki.authentication.ldap.bind_DN=cn={0},department=USER,department=INFORMATIK,department=1230,o=MP
xwiki.authentication.ldap.bind_pass={1}