I found that when I rollback a page with Chinese name. It caused some
exceptions, and the rollback action fails. This problem only takes place in
IE6, in IE7, firefox, it's ok.
I believed it's encoding proble. Without clicked the rollback button on the
history page, I copied the rollback URL into IE6 adress field directly, and
go. It's OK. The difference is that when I clicked the rollback, xwiki use
pop-up window to confirm whether to rollback. But when I put the link in
adress field, xwiki confirm with me by normal page with yes and no button.
So I think the problem is the pop-up window. I go to historyinlin.vm and
find <pre><td class="xwikibuttonlink"> $tdoc.getURL(
$msg.get("core.versions.delete.single") </td></pre> I changed it to <pre><td
class="xwikibuttonlink"> $tdoc.getURL( $msg.get("rollback")</pre>
then it can rollback.
--
View this message in context: http://www.nabble.com/rollback-problem-wiht-Chinese-page-and-how-I-solved-i…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi everyone,
Yesterday was our second DocHour day day. The following bugs were
fixed: http://jira.xwiki.org/jira/secure/IssueNavigator.jspa?reset=true&&customfie…
- Jerome Velociter
XWIKI-1351 Write a tutorial for newcomers on how to create Java selenium tests.
- Artem Melentev
XWIKI-1211 Document the comment on page save feature
- Thomas Mortagne
XAWM-80 Improve wiki descriptor editor documentation
- Vincent Massol
XWIKI-2488 Improve Macro display in the Code Zone by removing the
Bundled With Skin attribute
XWIKI-1483 Document the {pre} macro
So that's a total of 5 distinct tasks around documentation
improvement. This is not much but not everyone had time with the 1.5M2
release very soon and bugfixing day to finish.
You can still do your doc hour and add it to this conversation.
Thanks everyone
--
Thomas Mortagne
Hi all,
i've a problem with pages present in more than one language.
Let's explain:
1. Main.WebHome was imported in with XAR import (english).
2. XWiki preferences parameters were modified (Multi Lingual: yes)(Languages: de,en)(Default Language: de)
3. Main.WebHome was called for edit. Panel "Document translations" offered to "translate this document in: de" - which one was choosen.
4. The english text was rewritten to german and saved.
Effect:
- $doc.translationList of global.vm template still says that there is no translationList. Only the default language can be choosen on wiki page.
- using http://localhost/xwiki/bin/view/Main/?language=de [http://localhost/xwiki/bin/view/Main/?language=de] german translations are seen until someone swich back to english with the language link in the page header.
Has someone a hint what we are doing wrong?
By now we have modified global.vm to be able to switch between the languages - allways displaying both possibilities. But we have also a problem with XAR export - it only exports the english pages (maybe allways the defaultLanguage pages).
Thanks for help in advance.
Regards,
Rudi
Jeden Monat 1 hochkarätiger maxdome-Blockbuster GRATIS!
Exklusiv für alle WEB.DE Nutzer. *http://www.blockbuster.web.de* [http://www.blockbuster.web.de]
This might be of help too: http://tinyurl.com/42cfqh
> More or less, yes;
>
> You can use $xwiki.formatDate(<date here>, "<here goes format>")) where
> you replace <date here> with a real date, eg $xwiki.currentDate(see below
> for document date examples) <here goes format> with a time format, eg
> HH:mm:ss dd-MM-yyyy
>
> $doc.date for last modified date
> $doc.creationDate for creation date of document.
>
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
> Of Mihails Agafonovs
> Sent: 20 June 2008 09:58
> To: users(a)xwiki.org
> Subject: [xwiki-users] XWiki date
>
> Hi!
>
> Is it possible to get document creation/modification date, month, year,
> time explicitly?
> Ar cieòu, Mihails
> _______________________________________________
> 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
>
Erm.. what does this supposed to mean?
---
on save I got this (page has no objects other than rights):
com.xpn.xwiki.XWikiException: Error number 3201 in 3: Exception while
saving document StageGate.WebHome
Wrapped Exception: Error number 13012 in 3: Exception while saving links
Wrapped Exception: Row was updated or deleted by another transaction
(or unsaved-value mapping was incorrect):
[com.xpn.xwiki.objects.LargeStringProperty#
XWiki.Admin,
---
and now getting:
Error number 4001 in 4: Error while parsing velocity page BookIn.WebHome
Wrapped Exception: Failed to evaluate content with id WebHome
---
The XWiki development team is pleased to announce the release of XWiki
Workspaces 1.1 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
New features have been implemented in this release, amongst them :
* Global roles: the administrator can now delegate responsibilities to
groups of administrators and power users
* Public registration: It is now possible to enable public registration
for visitors that do not own an account
* Invitation management: You can invite via email people who are not
registered yet on the XWiki Workspaces instance to come and work in
existing workspaces.
You can read the full release notes, including screenshots of the
aforementioned features, here :
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesWorkspaces11Milestone2
To get started with XWiki Workspaces, point your browser at
http://workspaces.xwiki.org
Thanks
-The XWiki dev team
up please don't know how to do :)
thx
> Message du 18/06/08 14:20
> De : "ced.dall"
> A : users(a)xwiki.org
> Copie à :
> Objet : [xwiki-users] xwiki and xmlrpc
>
> Hi, all I need to get content from a xwiki page, this i make in java with xml rpc but the problem is that i can't specify in which language i want the page. My code : stringBuffer.append("
" + localize(KEY_INSTRUCTIONS, locale) + "
"); final String token = (String) client.execute("confluence1.login", new Object[] { "cda", "cda" }); final Map page = (Map) client.execute("confluence1.getPage", new Object[] { token, "Main", "Incendie" }); final String pageId = (String) page.get("id"); final String content = (String) page.get("content"); stringBuffer.append((String) client.execute("confluence1.renderContent", new Object[] { token,"Main", pageId, content })); I tried final Map page = (Map) client.execute("confluence1.getPage", new Object[] { token, "Main", "Incendie?language=fr" }); but doesn't work Hope you can help me thx DALL'AGNOLA Cédric Créez votre adresse électronique prénom.nom(a)laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus intégrés. _______________________________________________ users mailing list users(a)xwiki.org http://lists.xwiki.org/mailman/listinfo/users
Créez votre adresse électronique prénom.nom(a)laposte.net
1 Go d'espace de stockage, anti-spam et anti-virus intégrés.
Hi community !
The second XWiki DocHour is planned on Thursday 19th of June.
So what is this DocHour thing ?
Here is the rules:
* 1 hour
* You choose at what time you want to work on the documentation.
* On xwiki.org
* You choose to document what you want. Ideas of missing documentation:
- In JIRA: http://tinyurl.com/3xtn8t
- Improve existing documentation
- XWiki Watch documentation on http://watch.xwiki.org
- XEM Documentation on http://manager.xwiki.org
- XWiki Workspaces Documentation http://workspaces.xwiki.org
* Make sure you create a jira issue for the work you're doing and
assign to yourself. The issue should be created in the XWiki Core
project, with a "documentation" component. Don't forget to tag it as
"dochour20080619" to be listed in the result of this event.
* If you can't do it on the the planned date, then you can still do it
on another day, as close as possible to the the 19th of June ;)
* The idea is to repeat this event every month or every 2 months.
You can look at the result of previous DocHour at
http://markmail.org/message/dm3kclit4g4s472v
Thanks everyones and hope we will soon have to allocate more space to
xwiki.org database ;)
--
Thomas Mortagne