The XWiki development team is pleased to announce the release of XWiki
Office 1.1.1.
This is a bug fix release of version 1.1. All active XOffice instances
will be automatically updated.
Bugs fixed in version 1.1.1
- Styles not preserved after multiple edits
- Image upload and download on localized versions of Microsoft Office
- Image upload on pages containing white characters
- Grammar markup filtering when on non-English language default settings
- Refreshing published documents
Detailed release notes are available at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXOffice111
For more information about XOffice please visit: http://xoffice.xwiki.org
Thanks,
- The XWiki dev team
On Mon, May 10, 2010 at 09:34, Ludovic Dubost <ludovic(a)xwiki.org> wrote:
> I was also +1 on this..
>
> However it would be nice to provide a script to detect any data that might
> have been using the feature, and put it in the release notes
>
Things is that this feature was pretty much not usable anyway since not all
the places manipulating groups was using it, in fact it was only applied by
XWikiGroupServiceImpl#listMemberForGroup.
>
> Ludovic
>
> Le 09/05/10 12:44, Thomas Mortagne a écrit :
>
> 3 +1
>>
>> Committed in trunk
>>
>> On Fri, May 7, 2010 at 18:36, Thomas Mortagne<thomas.mortagne(a)xwiki.com
>> >wrote:
>>
>>
>>
>>> Hi devs,
>>>
>>> I recently created http://jira.xwiki.org/jira/browse/XWIKI-5149, this
>>> issue is due to the fact that XWikiGroupServiceImpl#listMemberForGroup
>>> is splitting the value of the "member" field based on white space and
>>> comma.
>>>
>>> That does not make sense IMO and makes impossible to have a user with
>>> a white space (and comma which is less common) in its name for a very
>>> bad reason. Also the name of the field is "member" and not "members".
>>> Last reason is that i think in all other places we don't take this
>>> value as a list.
>>>
>>> Note that this bug is mainly a pain for authenticators where you have
>>> to remember the real name of the user and have some collision handling
>>> to support use case users "somename" and "some name" coming for an
>>> external authentication server in which theses are two different
>>> users.
>>>
>>> WDYT ?
>>>
>>> Here is my +1.
>>>
>>> --
>>> Thomas Mortagne
>>>
>>>
>>>
>>
>>
>>
>>
>
>
> --
> Ludovic Dubost
> Blog: http://blog.ludovic.org/
> XWiki: http://www.xwiki.com
> Skype: ldubost GTalk: ldubost
>
>
--
Thomas Mortagne
3 +1
Committed in trunk
On Fri, May 7, 2010 at 18:36, Thomas Mortagne <thomas.mortagne(a)xwiki.com>wrote:
> Hi devs,
>
> I recently created http://jira.xwiki.org/jira/browse/XWIKI-5149, this
> issue is due to the fact that XWikiGroupServiceImpl#listMemberForGroup
> is splitting the value of the "member" field based on white space and
> comma.
>
> That does not make sense IMO and makes impossible to have a user with
> a white space (and comma which is less common) in its name for a very
> bad reason. Also the name of the field is "member" and not "members".
> Last reason is that i think in all other places we don't take this
> value as a list.
>
> Note that this bug is mainly a pain for authenticators where you have
> to remember the real name of the user and have some collision handling
> to support use case users "somename" and "some name" coming for an
> external authentication server in which theses are two different
> users.
>
> WDYT ?
>
> Here is my +1.
>
> --
> Thomas Mortagne
>
--
Thomas Mortagne
Hi devs,
I recently created http://jira.xwiki.org/jira/browse/XWIKI-5149, this
issue is due to the fact that XWikiGroupServiceImpl#listMemberForGroup
is splitting the value of the "member" field based on white space and
comma.
That does not make sense IMO and makes impossible to have a user with
a white space (and comma which is less common) in its name for a very
bad reason. Also the name of the field is "member" and not "members".
Last reason is that i think in all other places we don't take this
value as a list.
Note that this bug is mainly a pain for authenticators where you have
to remember the real name of the user and have some collision handling
to support use case users "somename" and "some name" coming for an
external authentication server in which theses are two different
users.
WDYT ?
Here is my +1.
--
Thomas Mortagne
I have a working prototype of the invitation mail sender and I would like to put it in the sandbox.
I need to know how that should be done and should this be a separate top level project on jira?
Some guidance here would be great.
Caleb
Hi,
Right now we check pages in our functional tests (xhtml validity, no error when executing the page, no failing macro).
I was wondering about the idea of having the checks done inside wiki pages so that we could provide a sanity check wiki page in the admin section for admins.
Then we would use that page from our junit test and people would also be able to run it too from inside their wiki.
Thus killing 2 birds with one stone
I think we're lacking such kind of tools for wiki admins and it could be interesting.
WDYT?
Thanks
-Vincent
----- "Denis Gervalle" <dgl(a)softec.lu> wrote:
> On Thu, May 6, 2010 at 15:43, Jerome Velociter <jerome(a)xwiki.com>
> wrote:
>
> > Hi Denis,
> >
> > It's pretty nice.
> >
> > I've added an annotation on the patch
> >
> >
> >
> http://incubator.myxwiki.org/xwiki/bin/view/Improvements/LivetablePageSizer…
> >
> > The annotation dropped the end of my selection, it actually concerns
> the
> > following lines :
> >
> > + #if($!hasPageSize)
> > + document.observe("xwiki:livetable:${divid}:loadingEntries",
> function()
> > { $('${divid}-pagesize').addClassName("hidden"); } );
> > + document.observe("xwiki:livetable:${divid}:loadingComplete",
> > function() { $('${divid}-pagesize').removeClassName("hidden"); } );
> > + #end
> >
> >
> Well, I do not follow. The JS is able to display one or more control,
> anywhere you want.
As well as it could be able to do the hiding on all such controls (LiveTablePageSizer has a references on all said domNodes)
Choosing to put only one, and in the same place
> then the
> loading bar is just a design choice, that is the responsability of the
> code
> that produce the markup (the macro here). And the behavior of hiding
> the
> control is related.
I don't see why placing it somewhere else (or having more) you would want a different behavior.
In my opinion the macro should just consume the livetable JS constructor. If you need more JS code, it's probably that you need new options in the constructor (options which possibly be callback functions, not necessarly just flags/values).
Finally, I think the proper behavior here would be to disable the control, instead of hidding its container.
WDYT?
Jerome.
This is why I choose to add a additional even to
> the
> table, and put the observe in the macro.
>
> Denis
>
>
> > Jerome.
> >
> > ----- Original Message -----
> > From: "Guillaume Lerouge" <guillaume(a)xwiki.com>
> > To: "XWiki Developers" <devs(a)xwiki.org>
> > Sent: Thursday, May 6, 2010 3:10:01 PM GMT +01:00 Amsterdam / Berlin
> / Bern
> > / Rome / Stockholm / Vienna
> > Subject: Re: [xwiki-devs] [Proposal] Support choosing pagination
> size in
> > livetable UI
> >
> > Hi,
> >
> > On Thu, May 6, 2010 at 15:05, Denis Gervalle <dgl(a)softec.lu> wrote:
> >
> > > On Thu, May 6, 2010 at 14:55, Guillaume Lerouge
> <guillaume(a)xwiki.com>
> > > wrote:
> > >
> > > > Hi,
> > > >
> > > > On Thu, May 6, 2010 at 14:33, Denis Gervalle <dgl(a)softec.lu>
> wrote:
> > > >
> > > > > Hi devs,
> > > > >
> > > > > Currently the number of rows displayed in a livetable is fixed
> at
> > > > creation
> > > > > time.
> > > > > I proposed to add UI controls (currently select) that allows
> to
> > change
> > > > the
> > > > > pagination size freely by the end user.
> > > > >
> > > > > This patch is be both a change in livetable.js to support
> these
> > > controls
> > > > > (one or more), and a change in the livetable macro to allow
> > displaying
> > > > > them.
> > > > > I have already a patch and some screenshots as well as bare
> > > > documentation,
> > > > > you can review them all at
> > > > >
> > > >
> > >
> >
> http://incubator.myxwiki.org/xwiki/bin/view/Improvements/LivetablePageSizer
> > > > >
> > > > > I am currently testing different browsers to ensure there is
> no
> > > > regression.
> > > > >
> > > > > WDYT ?
> > > > >
> > > >
> > > > Sounds very nice to me, I was asked about it in the past so I'm
> +1.
> > > >
> > > > Only question -> is the preference remembered for the user? I
> guess not
> > > and
> > > > that the default still is the number chose by the livetable
> creator,
> > but
> > > > thought I'd ask.
> > > >
> > >
> > > Well this is mainly a new functionality on the livetable, no
> change in XE
> > > in
> > > my patch currently. My feeling is that keeping the information for
> the
> > user
> > > should not be done by the livetable itself (JS), but by the caller
> (the
> > > macro, why not). It would not be so difficult to do with cookies,
> it
> > would
> > > be a little bit more work to store the information in the user
> profile.
> > > Anyway, this is a second step.
> > >
> > > By the way, I have not proposed to change the current pages of XE,
> but it
> > > could be a nice idea. Do not hesitate to propose page you want me
> to
> > > improve. The other way, we may also set this new feature as a
> default, so
> > > it
> > > will apear on all existing livetables using the macro, and allow
> > disabling
> > > it. WDYT ?
> > >
> >
> > Yes, I'd make this available by default to all livetables, with a
> > configuration parameter allowing to disable it on a case-by-case
> basis.
> >
> > Guillaume
> >
> >
> > > Denis
> > >
> > > --
> > > Denis Gervalle
> > > SOFTEC sa - CEO
> > > eGuilde sarl - CTO
> > > _______________________________________________
> > > devs mailing list
> > > devs(a)xwiki.org
> > > http://lists.xwiki.org/mailman/listinfo/devs
> > >
> >
> >
> >
> > --
> > Guillaume Lerouge
> > Product Manager - XWiki SAS
> > Skype: wikibc
> > Twitter: glerouge
> > http://guillaumelerouge.com/
> > _______________________________________________
> > 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
> >
>
>
>
> --
> Denis Gervalle
> SOFTEC sa - CEO
> eGuilde sarl - CTO
> _______________________________________________
> devs mailing list
> devs(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/devs
Hi devs,
Currently the number of rows displayed in a livetable is fixed at creation
time.
I proposed to add UI controls (currently select) that allows to change the
pagination size freely by the end user.
This patch is be both a change in livetable.js to support these controls
(one or more), and a change in the livetable macro to allow displaying them.
I have already a patch and some screenshots as well as bare documentation,
you can review them all at
http://incubator.myxwiki.org/xwiki/bin/view/Improvements/LivetablePageSizer
I am currently testing different browsers to ensure there is no regression.
WDYT ?
Denis
--
Denis Gervalle
SOFTEC sa - CEO
eGuilde sarl - CTO