In addition to selecting a xar and allowing a user to check to allow the
xar's content to blindly overwrite the previous entry; add a third option
"merge".
When "merge" is selected, for that selected document, the diffs between the
uploaded-xar and the current db are presented in a "mergediff-in-browser"
style, allowing selection of original content from the db versus xar.
clicking "ok" then collapses the diff and remembers the choices taken.
When the user has either selected the xar files they want to import
directly, or used the mergediff tool above to select the contents of the new
file, they click "import" and it's done. Note that the "mergediff" files,
create a new version, unlike the overwrite done by the current selected
checkboxes in the import tool.
Niels
http://nielsmayer.com
Hello all,
I'm trying out XWiki Office 1.0 Milestone 1 and I'm experiencing issues with
authentication. XWiki is on Tomcat, which is behind Apache HTTPD. SSO with
Kerberos is configured, with fallback to basic authentication - all this
doesn't seem to accept j_username and j_password XOffice plugin is sending
(can see login requests in apache access log). Since login isn't successful,
every next request from plugin results with "The remote server returned an
error: (401) Unauthorized.".
Has any similar setup/scenario been supported/tested, and if not, are there
any plans?
+1 for Office 2003 support
+1 for OpenOffice plugin
Regards,
Stevo.
Is there any way to backup the user/group permissions, set the entire
Xwiki to read only then revert to the original permissions at a later
date?
We are handing one of our XWiki to another team, and during the
transition, we don't want any changes made to the XWiki during this
transition process.
Sam
In the ActivityData page i put this code and now i'm able to have statistics.
I know it's temporary (poor database performances), but i hope it helps people having the same problem (sorry for the code quality, i'm sure it can be improved) :
#set($pattern='yyyy.MM.dd')
#set($step=86400000)
#set($scope=$xwiki.criteriaService.scopeFactory.ALL_PAGES)
#set($dtf = $xwiki.jodatime.getDateTimeFormatterForPattern($pattern))
#set($interval=$xwiki.criteriaService.rangeFactory.createAllRange())
1 Current week activity
#set($currentPeriod=$xwiki.criteriaService.periodFactory.currentWeek)
#set($periodStart=$xwiki.jodatime.getDateTime($currentPeriod.start))
#set($periodEnd=$xwiki.jodatime.getDateTime($currentPeriod.end))
#set($datejour=$periodStart.getMillis())
#set($nbElt = ($periodEnd.getMillis() - $periodStart.getMillis()) / $step)
{table}
Date | Views | Edit
#foreach($i in [1..7])
#set($datefinjour=$datejour + $step)
#set($period=$xwiki.criteriaService.periodFactory.createPeriod($datejour,$datefinjour))
#set($stats=$xwiki.statsService.getDocumentStatistics("view",$scope,$period,$interval))
#set($totalViews=0)
#if($stats.size() > 0)
#foreach($item in $stats)
#set($docStats = $xwiki.getDocument($item.name))
#if ($docStats)
#set($totalViews=$totalViews+$item.pageViews)
#end
#end
#end
#set($stats=$xwiki.statsService.getDocumentStatistics("save",$scope,$period,$interval))
#set($totalSave=0)
#if($stats.size() > 0)
#foreach($item in $stats)
#set($docStats = $xwiki.getDocument($item.name))
#if ($docStats)
#set($totalSave=$totalSave+$item.pageViews)
#end
#end
#end
$dtf.print($datejour) | $totalViews | $totalSave
#set($datejour=$datefinjour)
#end
{table}
-----Message d'origine-----
De : users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] De la part de Dilipkumar Jadhav
Envoyé : mardi 10 mars 2009 12:43
À : users(a)xwiki.org
Objet : Re: [xwiki-users] Stats module configuration
Hello friends,
I've tried placing the new xwiki-plugin-jodatime-1.3.jar. Restarted
tomcat and still no statistics.
The result set like another friend said is still : NULL
There is definitely valid data in the stats tables (when i query it
through Sqlyog).
Thank you....
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1
Hello all,
While trying to solve my stats problem, i checked the data in the table statsvisit and in the column unique_id i found that some records have a value set with the IP adress concat to the description of the browser :
xx.xx.xx.xxMozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Is it ok with that ? (Other values are something like : UADV0Y6H7VEWSLHVRVTSHMMSJYB9JDHX)
System :
Windows Server 2003 SP2 in a VMWare instance
Oracle 10g
Java 1.6.0_12
Xwiki 1.7.1 from the pack Jetty/HSQL
Christophe Périnaud
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1
Hi,
I'm a user of the dedicated xwiki farm for Java User Groups. I have a
noticed a very strange problem.
I have created a form linked to a class. With this form I create and save
some data. I have also told to users of our web site to create data (it is
something like a registration). When I come back to my pages few days later,
some of the data previously recorded are lost. Is there a problem of data
saving (problem with hibernate sessions, ...) ?
Zouheir CADI, Paris JUG Leader
Hi,
I'm using XE 1.6.2 / XEM 1.4.1 and when I click on the Panel Wizard it just
doesn't show up. I click on the link, but nothing happens.
Is there a way to skip the wizard and set up the panels layout manually like
the previous versions of XWiki ?
Thanks,
Antonio