The XWiki development team is pleased to announce the release of
XWiki Enterprise 1.2 Milestone 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Main changes from 1.1.1:
* Document history is now kept in a separate table in the
database which means that Document load time is now improved and
independent on the number of revisions
* Better Interoperability with Confluence. Also use swizzle-
confluence through a facade
* Refactoring and Cleanup of XML-RPC implementation, proper
exception handling for XML-RPC code and improved support for
attachments via XML-RPC
* Recycle bin for deleted documents (which can be recovered)
* Ability to alter the document history
* Minor edit of document
* Main.Dashboard page now display major edits by default with
the option of listing minor edits
+ bug fixes and other improvements
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise12M1
Thanks
-The XWiki dev team
Thank you Jean-Vincent,
I'll try the code out once I've figured it out.
It would be useful to have someone who 'knows' to document/write one or more
tutorials on how to extract information from the XWiki database. It would
help XWiki users/developers to develop XWiki for all sort of applications:
* Task/process generation and tracking
* Work flow form based applications
* Issue tracking
* Help desk request/issue tracking
* Objective setting and planning
etc
Regards,
Richard
-----Original Message-----
From: devs-bounces(a)xwiki.org [mailto:devs-bounces@xwiki.org]On Behalf Of
Jean-Vincent Drean
Sent: 03 October 2007 14:38
To: XWiki Developers
Subject: Re: [xwiki-devs] Ref: Displaying lists of wiki pages given a
set of criteria
Hi,
It's a recurrent need but AFAIK we don't have any generic solution.
I've made a 5' snippet, hope it will be useful.
This snippet requires programming rights ($xwiki.xWiki.search) so
you'll have to make sure that simple users can't edit this page.
-----------------------------------------------8<---------------------------
----------------------------------------
#macro(paginedSearch $query $currentPage $resultsPerPage)
#set ($start = $resultsPerPage * $currentPage)
#set ($resultsnb = $xwiki.xWiki.search("select count(doc) from
XWikiDocument doc ${query}", $context.context).get(0))
#if ($resultsnb > $resultsPerPage)
#set ($pagesnb = $resultsnb / $resultsPerPage)
#foreach ($pagenb in [0..$pagesnb])
[$pagenb>$doc.fullName?page=$pagenb]
#end
#end
#set ($list = $xwiki.searchDocuments($query, $resultsPerPage, $start))
#foreach ($item in $list)
* $item
#end
#end
#if ($request.page)
#set ($desiredStart = $xwiki.parseInt($request.page))
#else
#set ($desiredStart = 0)
#end
#paginedSearch("where 1=1" $desiredStart 5)
-----------------------------------------------8<---------------------------
----------------------------------------
2007/10/3, goldring, richard <richard.goldring(a)uk.thalesgroup.com>:
> Anyone?
>
>
> Hi all,
>
> Does anyone know how to generate a list of links to wiki pages that meet a
> set of defined features i.e. filter and sort (features defined on the
> objects or tags on those pages)? Perhaps like the Google search, list the
> first 20 or 30 pages and have a next/previous, 1, 2, 3, etc buttons to
list
> the next selections of page links (to cope with the display of large
numbers
> of page links).
>
> If anyones got any code snipits to get me started then that would be
really
> useful - thanks.
>
> The idea is perhaps to explore how to use XWiki to semi automatically
> generate pages to record tasks or issues, and then to list those pages
> (tasks/issues) according to say the status or owners of those
tasks/issues.
> For tasks I'm thinking XWiki might be used to help guide users through
> business processes and semi-automatically document they have followed
those
> processes (for CMMI) so they can be simply audited. Documents generated
> through users following the tasks/processes can then be generated from
> templates and stored within the wiki. If anyone else has any ideas/code
that
> could help perhaps realise this then let me know!
>
> Regards,
>
> Richard Goldring
>
> TAO
> Wookey Hole Road
> Wells, Somerset
> BA5 1AA
>
> Direct Line: 01749 682694
> Switchboard: 01749 672081
> richard.goldring(a)uk.thalesgroup.com
>
>
>
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
> is confidential. It may also be legally privileged. It is intended only
for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose, copy,
> circulate or in any other way use or rely on the information contained in
> this e-mail. Such unauthorised use may be unlawful. We may monitor all
> e-mail communications through our networks. If you have received this
e-mail
> in error, please inform us immediately on +44 (0) 1749 672081 and delete
it
> and all copies from your system. We accept no responsibility for changes
to
> any e-mail which occur after it has been sent. Attachments to this e-mail
> may contain software viruses which could damage your system. We therefore
> recommend you virus-check all attachments before opening. A business of
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
> 868273
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
>
_______________________________________________
devs mailing list
devs(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/devs
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Anyone?
Hi all,
Does anyone know how to generate a list of links to wiki pages that meet a
set of defined features i.e. filter and sort (features defined on the
objects or tags on those pages)? Perhaps like the Google search, list the
first 20 or 30 pages and have a next/previous, 1, 2, 3, etc buttons to list
the next selections of page links (to cope with the display of large numbers
of page links).
If anyones got any code snipits to get me started then that would be really
useful - thanks.
The idea is perhaps to explore how to use XWiki to semi automatically
generate pages to record tasks or issues, and then to list those pages
(tasks/issues) according to say the status or owners of those tasks/issues.
For tasks I'm thinking XWiki might be used to help guide users through
business processes and semi-automatically document they have followed those
processes (for CMMI) so they can be simply audited. Documents generated
through users following the tasks/processes can then be generated from
templates and stored within the wiki. If anyone else has any ideas/code that
could help perhaps realise this then let me know!
Regards,
Richard Goldring
TAO
Wookey Hole Road
Wells, Somerset
BA5 1AA
Direct Line: 01749 682694
Switchboard: 01749 672081
richard.goldring(a)uk.thalesgroup.com
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Hi All,
When we register with XWiki, if there is a invalid input in any field, entire form is reset.
For example,
1) if we have typed in the Login Id field with special character
2) if password in Password (repeat) field does not match the one in Password field
ANUJ SHARMA.
---------------------------------
Get the freedom to save as many mails as you wish. Click here to know how.
Hi all,
Can anybody please tell me from where to get the whole source code for XWiki.
Also what can i do if i want to use xwiki for saving pages according to projects such as :
projects->project 1->page 1,page 2......
project2->page 1,page 2......
.........
thanks,
Anuj
ANUJ SHARMA.
---------------------------------
Travelling to a new city? Search for ATMs in that city. Click here.
Hi everyone,
Just a note to say that I currently have problems comitting. The
commit seems to work but then the svn rev is increased but nothing is
committed. It works fine for Raffaello and it used to work for me too
in revs up to 5203 included but since 5204 I can't commit anything.
So it's possible you'll get some issues too.
Raffaello and I are looking into this and trying to understand what
happens but we're a bit puzzled right now...
Thanks
-Vincent
Hi all,
Does anyone know how to generate a list of links to wiki pages that meet a
set of defined features i.e. filter and sort (features defined on the
objects or tags on those pages)? Perhaps like the Google search, list the
first 20 or 30 pages and have a next/previous, 1, 2, 3, etc buttons to list
the next selections of page links (to cope with the display of large numbers
of page links).
If anyones got any code snipits to get me started then that would be really
useful - thanks.
The idea is perhaps to explore how to use XWiki to semi automatically
generate pages to record tasks or issues, and then to list those pages
(tasks/issues) according to say the status or owners of those tasks/issues.
For tasks I'm thinking XWiki might be used to help guide users through
business processes and semi-automatically document they have followed those
processes (for CMMI) so they can be simply audited. Documents generated
through users following the tasks/processes can then be generated from
templates and stored within the wiki. If anyone else has any ideas/code that
could help perhaps realise this then let me know!
Regards,
Richard Goldring
TAO
Wookey Hole Road
Wells, Somerset
BA5 1AA
Direct Line: 01749 682694
Switchboard: 01749 672081
richard.goldring(a)uk.thalesgroup.com
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
As planned and advertised last week, today is SVN migration day.
At 12:00 AM GMT+1 I'll remove SVN access to everyone on the ObjectWeb
SVN so that nobody can commit.
One the migration is over, I'll add again SVN accesses to the new
repo. The new repo uses a different authentication mechanism.
Everyone with SVN commit access need to have an account on xwiki.org
and I'll have to add him/her to a special group on xwiki.org. One
this is done you'll be able to commit with your credentials from
xwiki.org.
Please send me your user id on xwiki.org so that I can add you.
As usual if you have any issue with this please let me know quickly.
Thanks
-Vincent
Hi all,
Today was planned to be the XEM 1.0M2 release but the main (almost all
features) of this release is the new rights/users/groups management
interface. We thinks it will be ready for next week so I propose to :
- move 1.0M2 from today to October 8
- move 1.0M3 from October 8 to October 15
Regards,
--
Thomas Mortagne
Hi,
Yes it would certainly encourage my users to edit - at the moment its not
obvious that a page can be edited, so they don't even try and just think its
a normal uneditable website.
On another wiki the right hand menu bar only appears when you move your
pointer to the right hand side of the screen, so you effectively have more
room for viewing the wiki content and only have a menu bar when you need it
- thought that might be a cool feature for xwiki but how to do it I'm not
sure.
Regards,
Richard
-----Original Message-----
From: devs-bounces(a)xwiki.org [mailto:devs-bounces@xwiki.org]On Behalf Of
Vincent Massol
Sent: 01 October 2007 21:21
To: XWiki Developers
Subject: [xwiki-devs] Display the edit button even when not logged in?
Hi,
I was looking at a wiki tonight and I noticed there was an edit
button even though I wasn't logged in. So I clicked on it, and then I
was told that if I wanted to edit the page I had to register/log in.
I found that this was very nice since:
* Users are tempted to click on the edit button and contribute
* It clearly shows to users who don't know wikis that they can
contribute content
I think we should have this feature in XWiki. I would even go as far
as proposing that it be on by default.
WDYT?
Thanks
-Vincent
_______________________________________________
devs mailing list
devs(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/devs
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent. Attachments to this e-mail
may contain software viruses which could damage your system. We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273