http://markmail.org/message/3jvgaobtocbqaz6a

On Wed, Jan 28, 2015 at 6:28 PM, Kyndel Openheart <[email protected]> wrote:
> Hello,
>
> I just wanted to check in on my request for a wiki "growinghome" on the
> community farm.  I submitted my request 8 days ago on the 20th.  When can I
> expect this process to be complete?  I haven't heard one way or the other
> if the request was granted.
>
> Thanks very much.
> -Kyndel
>
> On Wed, Jan 28, 2015 at 4:00 AM, <[email protected]> wrote:
>
>> Send users mailing list submissions to
>>         [email protected]
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>>         http://lists.xwiki.org/mailman/listinfo/users
>> or, via email, send a message with subject or body 'help' to
>>         [email protected]
>>
>> You can reach the person managing the list at
>>         [email protected]
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of users digest..."
>>
>>
>> Today's Topics:
>>
>>    1. Re: Refreshing a LiveTable (Clemens Klein-Robbenhaar)
>>    2. Re: Manage rights for author (Guillaume Lerouge)
>>    3. Re: Error: The Context Component Manager should only be used
>>       for read access. (Bryn Jeffries)
>>    4. Re: Error: The Context Component Manager should only be used
>>       for read access. (=?utf-8?Q?vincent=40massol.net?=)
>>    5. some issues upgrading to 6.4
>>       ([email protected])
>>    6. Re: some issues upgrading to 6.4 (Thomas Mortagne)
>>
>>
>> ----------------------------------------------------------------------
>>
>> Message: 1
>> Date: Tue, 27 Jan 2015 13:54:18 +0100
>> From: Clemens Klein-Robbenhaar <[email protected]>
>> To: [email protected]
>> Subject: Re: [xwiki-users] Refreshing a LiveTable
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset=windows-1252
>>
>> On 01/27/2015 02:52 AM, Bryn Jeffries wrote:
>> > Is there a "right" way to make a LiveTable refresh?
>> >
>>
>> I do not know of a "right way", but one that currently works is to fetch
>> the livetable by its name, and refetch the current rows via some not-so
>> obvious code,
>> like:
>>
>>  var livetable = window['livetable_'+ id_of_livetable_here ] ;
>>  var end = livetable.limit;
>>  var start = Math.max(livetable.lastOffset, 1);
>>  livetable.clearCache();
>>  livetable.getRows(start, end, start, end);
>>
>>
>> That works in some little extension I wrote:
>>
>>
>> https://github.com/xwiki-contrib/application-reviewpages/blob/master/application-reviewpages-ui/src/main/resources/ReviewPages/Script.xml#L176
>>
>> I think I even "borrowed" it from some other xwiki-contrib code, but
>> cannot remember from where.
>> Certainly this is not "using any API" and it is expected to break without
>> notice in any new XWiki version, but for now it does the job (for me at
>> least).
>>
>> Sure there is a better way, to do this, (or at least it should ;)) but I
>> do not know about it.
>>
>> > I have a page that includes a LiveTable to show the results of a query
>> on an external database, and a form triggers an AJAX call to modify the
>> database (e.g., insert a new row). I'd like the AJAX call to include an
>> action within OnSuccess to make the LiveTable refresh to show these
>> modifications.
>> >
>> >
>> http://xwiki.475771.n2.nabble.com/Proposal-Hightlight-applied-filters-in-livetable-tp4936097p4942165.html
>> > and
>> > http://jira.xwiki.org/browse/XWIKI-5100
>> > appear to discuss something of this kind, but I couldn't find any
>> instructions. The closest thing was a line in livetable.js
>> >
>> https://github.com/xwiki/xwiki-platform/blob/4f92c9fc4dc9d4bb7b42a54f3e289f42e833d986/xwiki-platform-core/xwiki-platform-web/src/main/webapp/resources/js/xwiki/table/livetable.js#L963
>> > where it looks like a refresh is triggered on event
>> "xwiki:livetable:mylivetable:filtersChanged". I have tried calling
>> > document.fire('xwiki:livetable:mylivetable:filtersChanged');
>> > from within a javascript function, but this did not appear to make the
>> "mylivetable" LiveTable update. Could anyone direct me further?
>> >
>> > Thanks,
>> >
>> > Bryn
>> > _______________________________________________
>> > users mailing list
>> > [email protected]
>> > http://lists.xwiki.org/mailman/listinfo/users
>> >
>>
>>
>>
>> ------------------------------
>>
>> Message: 2
>> Date: Tue, 27 Jan 2015 18:37:55 +0100
>> From: Guillaume Lerouge <[email protected]>
>> To: XWiki Users <[email protected]>
>> Subject: Re: [xwiki-users] Manage rights for author
>> Message-ID:
>>         <CALC6keWLgRX-uiWdBfqEEd-ByXoC_o1VhWsrK=
>> [email protected]>
>> Content-Type: text/plain; charset=UTF-8
>>
>> Hi Marc,
>>
>> by default, the creator of a page has edit rights on that page. If that
>> users switches to "advanced mode" on their user profile, then go back to
>> their page, they will be able to see an "Access rights" option in the
>> "Edit" button.
>>
>> Thanks,
>>
>> Guillaume
>>
>> On Tue, Jan 27, 2015 at 9:31 AM, Marc AUDEFROY <[email protected]>
>> wrote:
>>
>> > Hi all!
>> >
>> > How could an author manage the rights on the pages he created? How put
>> > this default behavior?
>> >
>> > Thanks!
>> >
>> > Marc
>> > _______________________________________________
>> > users mailing list
>> > [email protected]
>> > http://lists.xwiki.org/mailman/listinfo/users
>>
>>
>> ------------------------------
>>
>> Message: 3
>> Date: Tue, 27 Jan 2015 18:33:51 +0000
>> From: Bryn Jeffries <[email protected]>
>> To: "[email protected]" <[email protected]>, XWiki Users
>>         <[email protected]>
>> Subject: Re: [xwiki-users] Error: The Context Component Manager should
>>         only be used for read access.
>> Message-ID: <7DAF466372B27747B8EA808BE5651FA57AD73440@ex-mbx-pro-01>
>> Content-Type: text/plain; charset="Windows-1252"
>>
>> Vincent said:
>> >> Using Utils.getRootComponentManager() worked for me, so many thanks.
>> >> Even using a deprecated method lets me progress with the task.
>> >
>> > The recommended way is the one I?ve now documented at
>> >
>> http://extensions.xwiki.org/xwiki/bin/view/Extension/Component+Module#HAccessfromScripts
>>
>> Thanks very much. Using services.component.getComponentManager(null) worked
>> fine. FWIW I see that the the related problem I observed on your website
>> http://platform.xwiki.org/xwiki/bin/view/SRD/  was down to
>> Utils.getComponentManager() being called from
>> AppWithinMinutes.DynamicMessageTool, which has since been updated in XWiki
>> 6.3. It might be worth backporting a fix so that we can access the
>> mentioned page.
>>
>> Again, many thanks for the prompt help and responses.
>>
>> Bryn
>>
>>
>> ------------------------------
>>
>> Message: 4
>> Date: Wed, 28 Jan 2015 09:11:50 +0100
>> From: "=?utf-8?Q?vincent=40massol.net?=" <[email protected]>
>> To: Bryn Jeffries <[email protected]>, XWiki Users
>>         <[email protected]>
>> Subject: Re: [xwiki-users] Error: The Context Component Manager should
>>         only be used for read access.
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset="utf-8"
>>
>> Hi Bryn,
>>
>> On 27 Jan 2015 at 19:34:14, Bryn Jeffries ([email protected]
>> (mailto:[email protected])) wrote:
>>
>> > Vincent said:
>> > >> Using Utils.getRootComponentManager() worked for me, so many thanks.
>> > >> Even using a deprecated method lets me progress with the task.
>> > >
>> > > The recommended way is the one I?ve now documented at
>> > >
>> http://extensions.xwiki.org/xwiki/bin/view/Extension/Component+Module#HAccessfromScripts
>> >
>> > Thanks very much. Using services.component.getComponentManager(null)
>> worked
>> > fine. FWIW I see that the the related problem I observed on your website
>> > http://platform.xwiki.org/xwiki/bin/view/SRD/ was down to
>> > Utils.getComponentManager() being called from
>> > AppWithinMinutes.DynamicMessageTool, which has since been updated in
>> XWiki
>> > 6.3. It might be worth backporting a fix so that we can access the
>> > mentioned page.
>>
>> Fixed, thanks
>> -Vincent
>>
>> > Again, many thanks for the prompt help and responses.
>> >
>> > Bryn
>>
>>
>>
>> ------------------------------
>>
>> Message: 5
>> Date: Wed, 28 Jan 2015 11:11:41 +0000
>> From: <[email protected]>
>> To: <[email protected]>
>> Subject: [xwiki-users] some issues upgrading to 6.4
>> Message-ID:
>>         <[email protected]>
>> Content-Type: text/plain; charset="iso-8859-1"
>>
>> Good morning!
>>
>> I've just updated a 6.3 installation to 6.4 and it seems to me that
>> something went wrong... I think I followed the same steps I successfully
>> did in previous upgrades of the 6.x series, but this time it doesn't work.
>> The process is outlined in the first comment of this page...
>>
>> http://atriumkm.idisantiago.es/bin/ICT/XWikiUpgrade
>>
>> This time, the last line was not true...
>>
>> "The upgrade of the interface will be launched once an administrator log
>> in."
>>
>> Nothing happened once I've restarted the server. Thus, I've tried to
>> import the 6.4 xar file. After a number of "bad gateway errors", I managed
>> to import all new files selecting only some pages in a series of import
>> actions. Then, change default Admin password, remove login right to Guest
>> and config again All and Admin groups.
>>
>> Almost all seems OK now, but there are at least a couple of issues here...
>>
>> 1) The installation keeps telling that it is a 6.3 release. This means
>> that $xwiki.getVersion() is not aware of the update, or that the update has
>> not succeed! You can check it here...
>>
>> http://portal.idisantiago.es
>> http://portal.idisantiago.es/xwiki/bin/view/ICT/GetVersion
>>
>> 2) All top level links at
>> http://portal.idisantiago.es/xwiki/bin/admin/XWiki/XWikiPreferences
>> (Configuration, Email, Look & Feel, ), led to this error...
>>
>>
>> http://portal.idisantiago.es/xwiki/bin/download/ICT/Error/UpgradeTo6.4.Release.png
>>
>> Please, could you help me with this issues?
>>
>> Thanks!
>>
>> Ricardo
>>
>> --
>> Ricardo Rodr?guez
>> Research Management and Promotion Technician
>> Technical Secretariat
>> Health Research Institute of Santiago de Compostela (IDIS)
>> http://www.idisantiago.es
>>
>> ________________________________
>>
>> Nota: A informaci?n contida nesta mensaxe e os seus posibles documentos
>> adxuntos ? privada e confidencial e est? dirixida ?nicamente ? seu
>> destinatario/a. Se vostede non ? o/a destinatario/a orixinal desta mensaxe,
>> por favor elim?nea. A distribuci?n ou copia desta mensaxe non est?
>> autorizada.
>>
>> Nota: La informaci?n contenida en este mensaje y sus posibles documentos
>> adjuntos es privada y confidencial y est? dirigida ?nicamente a su
>> destinatario/a. Si usted no es el/la destinatario/a original de este
>> mensaje, por favor elim?nelo. La distribuci?n o copia de este mensaje no
>> est? autorizada.
>>
>> See more languages: http://www.sergas.es/aviso_confidencialidad.htm
>>
>>
>> ------------------------------
>>
>> Message: 6
>> Date: Wed, 28 Jan 2015 12:34:52 +0100
>> From: Thomas Mortagne <[email protected]>
>> To: XWiki Users <[email protected]>
>> Subject: Re: [xwiki-users] some issues upgrading to 6.4
>> Message-ID:
>>         <
>> capnknlfc9igssu_bet-yyw4-rtqbxurtkoabvbwgzkytmdw...@mail.gmail.com>
>> Content-Type: text/plain; charset=UTF-8
>>
>> Did you removed solr index as suggested in the release note at
>> http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki64 ?
>>
>> ""
>> In this release, we're now providing an easy way to install SOLR as an
>> external server. When doing this change, we moved a plugin inside the
>> SOLR index directory. Thus, if you're using XWiki with SOLR in
>> embedded mode (the default), when you upgrade, this plugin will not be
>> present in your SOLR directory and XWiki will fail to start. To work
>> around this problem, you'll need to remove the <permanent
>> directory>/solr/ directory (which will trigger a new reindexing when
>> you next start XWiki). This will be fixed in XWiki 6.4.1.
>> ""
>>
>> On Wed, Jan 28, 2015 at 12:11 PM,
>> <[email protected]> wrote:
>> > Good morning!
>> >
>> > I've just updated a 6.3 installation to 6.4 and it seems to me that
>> something went wrong... I think I followed the same steps I successfully
>> did in previous upgrades of the 6.x series, but this time it doesn't work.
>> The process is outlined in the first comment of this page...
>> >
>> > http://atriumkm.idisantiago.es/bin/ICT/XWikiUpgrade
>> >
>> > This time, the last line was not true...
>> >
>> > "The upgrade of the interface will be launched once an administrator log
>> in."
>> >
>> > Nothing happened once I've restarted the server. Thus, I've tried to
>> import the 6.4 xar file. After a number of "bad gateway errors", I managed
>> to import all new files selecting only some pages in a series of import
>> actions. Then, change default Admin password, remove login right to Guest
>> and config again All and Admin groups.
>> >
>> > Almost all seems OK now, but there are at least a couple of issues
>> here...
>> >
>> > 1) The installation keeps telling that it is a 6.3 release. This means
>> that $xwiki.getVersion() is not aware of the update, or that the update has
>> not succeed! You can check it here...
>> >
>> > http://portal.idisantiago.es
>> > http://portal.idisantiago.es/xwiki/bin/view/ICT/GetVersion
>> >
>> > 2) All top level links at
>> http://portal.idisantiago.es/xwiki/bin/admin/XWiki/XWikiPreferences
>> (Configuration, Email, Look & Feel, ), led to this error...
>> >
>> >
>> http://portal.idisantiago.es/xwiki/bin/download/ICT/Error/UpgradeTo6.4.Release.png
>> >
>> > Please, could you help me with this issues?
>> >
>> > Thanks!
>> >
>> > Ricardo
>> >
>> > --
>> > Ricardo Rodr?guez
>> > Research Management and Promotion Technician
>> > Technical Secretariat
>> > Health Research Institute of Santiago de Compostela (IDIS)
>> > http://www.idisantiago.es
>> >
>> > ________________________________
>> >
>> > Nota: A informaci?n contida nesta mensaxe e os seus posibles documentos
>> adxuntos ? privada e confidencial e est? dirixida ?nicamente ? seu
>> destinatario/a. Se vostede non ? o/a destinatario/a orixinal desta mensaxe,
>> por favor elim?nea. A distribuci?n ou copia desta mensaxe non est?
>> autorizada.
>> >
>> > Nota: La informaci?n contenida en este mensaje y sus posibles documentos
>> adjuntos es privada y confidencial y est? dirigida ?nicamente a su
>> destinatario/a. Si usted no es el/la destinatario/a original de este
>> mensaje, por favor elim?nelo. La distribuci?n o copia de este mensaje no
>> est? autorizada.
>> >
>> > See more languages: http://www.sergas.es/aviso_confidencialidad.htm
>> > _______________________________________________
>> > users mailing list
>> > [email protected]
>> > http://lists.xwiki.org/mailman/listinfo/users
>>
>>
>>
>> --
>> Thomas Mortagne
>>
>>
>> ------------------------------
>>
>> Subject: Digest Footer
>>
>> _______________________________________________
>> users mailing list
>> [email protected]
>> http://lists.xwiki.org/mailman/listinfo/users
>>
>>
>> ------------------------------
>>
>> End of users Digest, Vol 90, Issue 36
>> *************************************
>>
> _______________________________________________
> users mailing list
> [email protected]
> http://lists.xwiki.org/mailman/listinfo/users



-- 
Thomas Mortagne
_______________________________________________
users mailing list
[email protected]
http://lists.xwiki.org/mailman/listinfo/users

Reply via email to