Hello
I've translated WYSIWYG editor's Strings.properties file into my language.
Then I've putted it into place ( .../wysiwyg/client/editor) with name
Strings_sk.properties but editor is still in English.
What I am doing wrong?
--
View this message in context: http://n2.nabble.com/WYSIWYG-editor-language-in-user-interface-tp4440246p44…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
When importing office documents using the openoffice importer, I get
images as attachments, but the links in the page-source refer to
../output/output_html_xxxx
This makes that the images do not appear inline with the text, the
attachement itself is fine.
Version: XWiki 2.2.2, OpenOffice 3.2, OS OpenSuSE
Regards,
Wouter
Wouter Boasson (MSc)
Geo-IT Research and Coordination
RIVM - National Institute for Public Health and the Environment
Expertise Centre for Methodology and Information Services
Contact information
-----------------------
RIVM
VenZ/EMI, Pb 86
t.a.v. dhr. Drs. Wouter Boasson
Postbus 1
3720 BA Bilthoven
T +31(0)302748518
F +31(0)302744456
E wouter.boasson(a)rivm.nl
mo - th
Disclaimer RIVM
HI,
After importing a document using the office importer it showed up in the
changes list as:
<span lang="nl-NL">XWiki - Implementatie-issues</span>
which is clearly too much information!
XWiki version 2.2.2, OpenOffice 3.2, OS OpenSuSE
Regards,
Wouter
Wouter Boasson (MSc)
Geo-IT Research and Coordination
RIVM - National Institute for Public Health and the Environment
Expertise Centre for Methodology and Information Services
Contact information
-----------------------
RIVM
VenZ/EMI, Pb 86
t.a.v. dhr. Drs. Wouter Boasson
Postbus 1
3720 BA Bilthoven
T +31(0)302748518
F +31(0)302744456
E wouter.boasson(a)rivm.nl
mo - th
Disclaimer RIVM
Hi there, just a quick question:
When I browse through a space as a non-registered user, I always see
both the pages
- WebHome
- WebPreferences
besides the other pages the owner of the space has created.
Example:
- I've created a space called "Database"
- inside this space I've created a page "MySQL"
I gave everyone View-access to the space "Database"
However, to avoid puzzling some people, I'd like anybody *but* the
Space-owner *not* to see both the pages "WebHome" and
"WebPreferences".
Is there a solution for this request I've missed so far?
TIA
Gregor
--
just because you're paranoid, don't mean they're not after you...
gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2
gpgp-key available
@ http://pgpkeys.pca.dfn.de:11371
@ http://pgp.mit.edu:11371/
skype:rc46fi
Hi there,
again me:
I've deleted a page which I had tagged before. So far, so good.
However, within my tag-cloud the tag still shows up. When selecting
this tag, I get a overview "All Documents Tagged With "Tag"", but when
I click on that tag (which belongs to the previously deleted
document), I get (obviously) a message
Notice
The requested document could not be found.
Hm...
Any idea how I can remove orphaned tags?
TIA
Gregor
PS.: If there's something in the docs what I've missed, a hint to this
would also be great...
--
just because you're paranoid, don't mean they're not after you...
gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2
gpgp-key available
@ http://pgpkeys.pca.dfn.de:11371
@ http://pgp.mit.edu:11371/
skype:rc46fi
Hi,
I was wondering if it was possible to remove the comments, attachments, history and information tabs from certain pages. Perhaps just by inserting some css or javascript on the pages where I don't want these things to show.
Also, I was hoping to reduce the font size of the "Create New Post" text in the blog (I'm using the toucan skin if that helps). Which file would I look in do to this?
Any help here would be greatly appreciated.
Cheers,
Josh
_________________________________________________________________
Find out what’s new with your friends Download the new Windows Live Messenger
http://download.live.com/
Latest version of XWiki Enterprise
MS SQL 2005
JSQLConnect JDBC Driver
Tomcat 5.5.28
The initial database gets created but when I try to import the following xar file
xwiki-enterprise-wiki-2.2.1.xar I start to get the following error
Wrapped Exception:
com.jnetdirect.jsql.JSQLException: The data types varchar and ntext are incompatible in the equal to operator.
at com.jnetdirect.jsql.JSQLException.makeFromDatabaseError(JSQLException.java:85)
at com.jnetdirect.jsql.IOBuffer.processPackets(IOBuffer.java:547)
at com.jnetdirect.jsql.JSQLConnection.prePrepare(JSQLConnection.java:2620)
at com.jnetdirect.jsql.JSQLConnection.getPreparedStatementHandle(JSQLConnection.java:2553)
at com.jnetdirect.jsql.JSQLPreparedStatement.executeQuery(JSQLPreparedSt
atement.java:359)
Once this error has occurred, any interactions from then on essentially generate the same error.
Is there something that I am missing. I'm assuming that somehow the initial config
needs to be told how to create columns using ntext and not varchar
I can skip importing the xar file for now but I rather like to use some of the features
What I am really after is to disable registration and add the users manually
with appropriate rights.
Any help would be appreciated
Hello folks,
While at the topic of XMLRPC, I was trying to search for properties in
a particular object.
I have a customized property called "UID" to the "XWiki.XWikiUsers"
class. Naturally, each user in the wiki can chose to fill this field.
I have been trying to find the method in the XMLRPC api to search for
all the users who have property=xyz.
I checked that it is possible to search for property values using HQL
in the wiki page. Is there an equivalent method to search through
XMLRPC...
Any help would be greatly appreciated.
Hey,
The XWiki site offers a good tutorial on making an FAQ, but the FAQ on the XWiki.org site is a little different. I can't find it in the code snippets. Is it possible to see the velocity script for this FAQ or see how the "search FAQ" was implemented?
Thanks,
Felix
Hi Nithya,
As Jean Vincent pointed out, following would be the modified code:
XWikiObject xobj = new XWikiObject();
//Class Name is XWikiGroups
xobj.setClassName("XWiki.XWikiGroups");
//Host page to which we want to add the user is the Page
which contains the group
//In this case, XWikiAllGroup is the group to which we
want to add the user
//So, we would use XWiki.XWikiAllGroup Page in the wiki
xobj.setPageId("XWiki.XWikiAllGroup");
//Set member property as "XWiki.UserName"
xobj.setProperty("member", "XWiki.nithya");
rpc.storeObject(xobj);
And, for me the password update did work. For some reason, it was not
working in the first attempt. Thanks for your help :)