The XWiki development team is pleased to announce the release of XWiki
Enterprise 1.6 Milestone 1.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
First milestone of the XWiki Enterprise 1.6 version.
Main changes:
* New experimental support for other syntaxes (Confluence, JSPWiki,
Creole, MediaWiki, TWiki and XHTML), including a new XWiki Syntax v2.0
(work in progress, see XWiki Syntax 2.0 Draft). More information about
this in the release notes.
* New experimental WYSIWYG editor (Work In Progress). More
information about this in the release notes.
* Improved page footer displaying : comments, attachments, history,
various informationpagebottom.png
* New "Password Renewal and Forgot Username" feature
* Default account validation & confirmation emails provided in the
wiki preferences
* Added .xml extensions to all exported wiki pages (XAR)
* The generated HTML for wiki titles now start at h1 instead of h2
* New or improved translations: german, french, czech, norwegian, ukrainian
* The name of the main database in virtual wiki mode is not hardcoded
to 'xwiki' anymore, and in virtual mode all database names can be
prefixed with a configurable value
Important bug fixes:
* Use of "." in LDAP logins fixed
* Various fixes in the watchlist:
** Watchlist now works with platform 1.5 and 1.6
** Fixed rights checks in multiwiki mode
** Fixed RSS feed generation in multiwiki
Note that general goals for XWiki Enterprise 1.6 are:
* Beta versions of new rendering + new WYSIWYG editor
* Revamped Blog UI + features
* Security issues already in JIRA (marked as high priority)
* Bug fixes
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise16M1
Thanks,
The XWiki dev team
Greetings
My objective is to list every document with some tag (e.g. "MainTag"), and next, select all tags of these
documents without repeating any of them (including "MainTag").
I tried to merge the next two queries but without sucess.
This query selects every document that have the tag "KB-4D":
#set($sql = ", BaseObject as obj, DBStringListProperty as prop where obj.name=doc.fullName and
obj.className='XWiki.TagClass' and obj.id=prop.id.id and prop.id.name='tags' and 'KB-4D' in
elements(prop.list) order by doc.name asc")
#set ($list = $xwiki.searchDocuments($sql))
This query selects every tags present in the documents listed by the previous query:
#set($sql = "select distinct elements(prop.list) from BaseObject as obj, DBStringListProperty as prop where
obj.className='XWiki.TagClass' and obj.id=prop.id.id and prop.id.name='tags' and obj.name='$item'")
#set ($tags = $xwiki.search($sql))
Can anyone help me with this?
Thanks in advance
Bruno Neves
PS: How can I put snippet code on code.xwiki.org? I need to login but I am not registered.
I'm crossposting to dev because it's interesting for xwiki developers
We thought already of this for attached files. But indeed it would be
good for scripts.
So we could have an export option where the attached file, the wiki page
content is separated from the XML to make it editable.
To be able to do that for script files, we first need to have this meta
field that tell us it's a script (and also that requires programmers
rights for example).
Ludovic
David Ward wrote:
> Paul,
>
> On Fri, Aug 29, 2008 at 3:19 PM, Paul Libbrecht <paul(a)activemath.org> wrote:
>
>> Here's a tiny idea:
>> currently all the files that need programming rights are velocity or groovy
>> files.
>> Well... let them be considered as such!
>> - the archive or the file-sync-storage should call them .vm or .gvy
>> - they should not be in XML format but in raw source format
>> - say, for CreateResources/SimpleWikiResource, that would be a file called
>> SimpleWikiResource.vm in CreateResources directory
>> - of course, such pages would be loaded with programming rights so
>> give-prog-rights should not exist anymore
>>
>> Because they are raw files, we're loosing abilities such as attachments and
>> a few other things that the XML format can represent (e.g. parent file).
>>
>
> Unfortunately they would lose quite a few things:
> - parent page (as you mentioned, which is used for the bread crumbs)
> - page title (also used for the bread crumbs, as well as other places)
> - rights (** quite important for restricting access, allowing access
> for some, etc.)
> - attachments (which sometimes hold images for that page)
> - objects (which sometimes hold various things)
>
>
>> But we're gaining:
>> - IDE friendliness (huge to my taste)
>> - auto-programming-rights
>>
>
> Yes, the IDE friendlyness (plus MUCH better version control
> possibilities) is a big item on my list.
>
>
>> One could even add a file-type .xwk for wiki source files (no programming
>> rights).
>> Oh, and one should agree on an encoding here... guess what I propose utf-8.
>>
>
> Yes, UTF-8 is probably the best encoding.
>
>
> You can see the thoughts I put down a while ago at
> http://dev.xwiki.org/xwiki/bin/view/Design/AlternativePageStore
>
>
> David
> --
> _______________________________________________
> curriki-devs mailing list
> curriki-devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/curriki-devs
>
>
--
Ludovic Dubost
Blog: http://blog.ludovic.org/
XWiki: http://www.xwiki.com
Skype: ldubost GTalk: ldubost
Hi,
Since the XE 1.6 release is planned for the 22nd of September, I think
it would be good that we plan the 1.7 release for Javapolis 2008
(around the 10th of December). That leaves a bit more than 2 months so
we could have:
- 1.7M1: 20th of October (that's more than 3 weeks after the 1.6
release)
- 1.7M2: 10th of November (3 weeks after 1.7M1)
- 1.7RC1: 17 Nov (one week after)
- 1.7RC2 or final: 24 Nov (one week after)
- 1.7 final (if needed): 1st of December
We could have the following for it already:
1) fully operational new WYSIWYG + new rendering
2) working JCR implementation + Query Manager
3) office import/export integrated into XE and in the new WYSIWYG
4) finished full revamping of the blog application
And more... (Please Add below)
The most important feature will be the new WYSIWYG that we will be
able to showcase at Javapolis.
WDYT?
Thanks
-Vincent
hai ,
i need to export image as a pdf , but that image in other document.how can i
export that one?
ex:
i have attached a imege in page1 (document name),
and i have added the content <img src=
http://localhost:8088/xwiki/bin/download/page1f/firsthome.jpg> in page2
(document name)
i need to export PDF in page2 with image
regards
sekar..