Re: [xwiki-users] URL loop error

2014-10-15 Thread Clemens Klein-Robbenhaar
Hi Jason,

 which version of XWiki is this, actually?

I tries to reproduce it, assuming someone has created a login' space of the 
like, but so far no avail.

Do your users see the login form at all, or keeps the browser on redirecting?
Or does the problem only happen after the login?
Anything in the server log file, e.g. about cookies being messed up or the like?

Cheers
Clemens

 
 Hey All,
  
 I’m hoping someone can help me out.. My wiki installation has stopped 
 working.  I’m running it in Tomcat 8 from the ROOT folder “C:\Program Files 
 (x86)\Tomcat\webapps\ROOT” (the only app running on the server), nothing has 
 changed other than content in the wiki itself, but all of a sudden my users 
 can’t login and the URL has become really long. 
  
 If I navigate to localhost:8080/bin/Main I get the following response:
  
 localhost:8080/bin/Main/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/XWikiLogin?srid=YGlMoFBdxredirect=%2Fbin%2FMain%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2FXWikiLogin%3Fsrid%3DYGlMoFBd%26xredirect%3D%252Fbin%252FMain%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FX
 Wiki%252F
bin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252FXWikiLogin%253Fsrid%253DYGlMoFBd%2526xredirect%253D%25252Fbin%25252FMain%25252Fbin%25252Flogin%25252FXWiki%25252Fbin%25252Flogin%25252FXWiki
  
 except the URL actually goes on for much longer…   I used to get this every 
 now and again, but always restarting Tomcat would fix it, but now it doesn’t 
 and none of my users can login.  I found an article here  
 http://jira.xwiki.org/browse/XE-1401 which seems to point to a similar 
 issue, but the fix illustrated does not fix my issue. 
  
 Any help is greatly appreciated
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] How to insert name and date (signature, ~~~~)?

2014-10-15 Thread Clemens Klein-Robbenhaar
On 10/14/2014 08:02 PM, markus schnalke wrote:
 Hoi,
 
 in Mediawiki it's possible to insert one's name and the current
 date quite easily with four tilde characters: .
 
 Is it possible to do this in a convenient way in Xwiki, as well?
 And if so, how?
 
 
 I think it should be possible by creating a macro. However, I
 would appreciate if inserting the signature would be a simpler
 tag than: {{sign/}}.
 


A macro has the disadvantage that it is evaluated every time the page is 
rendered,
and it will not remember when it has been inserted.

What you want here is something that is evaluated when the page is saved,
remembering the author / current date when saving.

To me this looks more like a use case for an Event Listener, e.g.:

  http://platform.xwiki.org/xwiki/bin/view/DevGuide/WritingEventListenerTutorial

You will have to replace

 docSource.setContent(docSource.content + \n\nSome extra content...)

in the tutorial by something like:

 docSource.setContent(docSource.content.replaceAll('',xcontext.user  + ' ' 
+ docSource.date) )

(A nicer formatting is left as an excercise ...)

Btw, using  as signature marker causes the problems because the tilde is 
already used as the escape-character.
E.g. people using the wysiwyg-editor might get surprising results - e.g. typing 
in '~~'  will already result in '' in the wiki text
as the WYSIWYG editor will escape the tilde. Depending on how surprise 
resistant your users are, you might want to use some other magic placeholder.

Clemens


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] How to insert name and date (signature, ~~~~)?

2014-10-15 Thread vinc...@massol.net
Hi, Meillo,

Interesting need. Indeed it's easy to do with a macro such as {{sign 
user=username/}}. 

Now we also support the notion of transformations. They allow to modify what 
gets displayed. However the modified content is not persisted. This there are 2 
choices: 
1) use a syntax such as ~~~ username and have a transformation generate the 
correct content for it 
2) use a syntax such as  without the username and this means having to save 
the modified content and thus add support for persistent transformations which 
could be something useful in general 

See http://rendering.xwiki.org for more details on transformations. 

Thanks
-Vincent

PS: I’ve prepared this email offline and just saw that Clemens has also 
responded in the meantime so my answer doesn’t take into account what Clemens 
has said. 

On 14 Oct 2014 at 20:02:35, markus schnalke 
(mei...@marmaro.de(mailto:mei...@marmaro.de)) wrote:

 Hoi,

 in Mediawiki it's possible to insert one's name and the current
 date quite easily with four tilde characters: .

 Is it possible to do this in a convenient way in Xwiki, as well?
 And if so, how?


 I think it should be possible by creating a macro. However, I
 would appreciate if inserting the signature would be a simpler
 tag than: {{sign/}}.


 meillo

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] [ANN] XWiki 6.2.2 released

2014-10-15 Thread vinc...@massol.net
The XWiki development team is proud to announce the availability of XWiki 6.2.2.

This is a bug fix release with lots of issues fixed to stabilize the recent 
Flamingo skin.

You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download

Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki622

Thanks
-The XWiki dev team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Upgrade xwiki

2014-10-15 Thread Saulo Bravim
Hello everybody!

I did the xwiki installation from the debian pack and I've having
problems to realize the uptade of it.
I tried using the command apt-get upgrade and I tried what is saying
in the link http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Upgrade
The installation via package installs the xwiki in some point and
creates links to others, how can I realize the update of it?

Thanks for the attention
Regards


-- 
Saulo S. Bravim

Email/MSN: saul...@gmail.com
Skype:saulosb
Celular:(48) 9647-2116
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Upgrade xwiki

2014-10-15 Thread Thomas Mortagne
apt-get upgrade is supposed to be enough. Then the only part that you
can look at if you want is
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Upgrade#HUpgradingwikidocuments
which mostly suggesting to follow the distribution wizard which is
upgrading the documents for you.

It's not very clear what issue you have exactly exactly. Did you get
an error during apt-get upgrade ?

On Wed, Oct 15, 2014 at 5:51 PM, Saulo Bravim saul...@gmail.com wrote:
 Hello everybody!

 I did the xwiki installation from the debian pack and I've having
 problems to realize the uptade of it.
 I tried using the command apt-get upgrade and I tried what is saying
 in the link http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Upgrade
 The installation via package installs the xwiki in some point and
 creates links to others, how can I realize the update of it?

 Thanks for the attention
 Regards


 --
 Saulo S. Bravim

 Email/MSN: saul...@gmail.com
 Skype:saulosb
 Celular:(48) 9647-2116
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



-- 
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] URL loop error

2014-10-15 Thread Jason Clemons
I think this had to do with failing LDAP credentials.. I changed 
xwiki.authentication.ldap=0 and the problem went away.  I had moved my 
installation file from one server to another for testing and the test server 
didn't have access to LDAP, thus the issue. 

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens 
Klein-Robbenhaar
Sent: Wednesday, October 15, 2014 12:51 AM
To: users@xwiki.org
Subject: Re: [xwiki-users] URL loop error

Hi Jason,

 which version of XWiki is this, actually?

I tries to reproduce it, assuming someone has created a login' space of the 
like, but so far no avail.

Do your users see the login form at all, or keeps the browser on redirecting?
Or does the problem only happen after the login?
Anything in the server log file, e.g. about cookies being messed up or the like?

Cheers
Clemens

 
 Hey All,
  
 I’m hoping someone can help me out.. My wiki installation has stopped 
 working.  I’m running it in Tomcat 8 from the ROOT folder “C:\Program Files 
 (x86)\Tomcat\webapps\ROOT” (the only app running on the server), nothing has 
 changed other than content in the wiki itself, but all of a sudden my users 
 can’t login and the URL has become really long. 
  
 If I navigate to localhost:8080/bin/Main I get the following response:
  
 localhost:8080/bin/Main/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/bin/login/XWiki/XWikiLogin?srid=YGlMoFBdxredirect=%2Fbin%2FMain%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2Fbin%2Flogin%2FXWiki%2FXWikiLogin%3Fsrid%3DYGlMoFBd%26xredirect%3D%252Fbin%252FMain%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252Fbin%252Flogin%252FX
 Wiki%252F
bin%252Flogin%252FXWiki%252Fbin%252Flogin%252FXWiki%252FXWikiLogin%253Fsrid%253DYGlMoFBd%2526xredirect%253D%25252Fbin%25252FMain%25252Fbin%25252Flogin%25252FXWiki%25252Fbin%25252Flogin%25252FXWiki
  
 except the URL actually goes on for much longer…   I used to get this every 
 now and again, but always restarting Tomcat would fix it, but now it doesn’t 
 and none of my users can login.  I found an article here  
 http://jira.xwiki.org/browse/XE-1401 which seems to point to a similar 
 issue, but the fix illustrated does not fix my issue. 
  
 Any help is greatly appreciated
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Report - 6.2.1

2014-10-15 Thread Andreea Popescu
Greetings,

During the last few days we have conducted smoke testing on Chrome 38 and a
full test on Firefox 32.

This link offers an overview of the issues and improvements reported by the
team on the 6.2.1 version:
http://jira.xwiki.org/issues/?jql=affectedVersion%20in%20%28%226.2.1%22%29

We shall continue testing for other issues and improvements.
Have a good day!

-- 
Andreea Zenovia Popescu
QA Engineer @XWiki SAS
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users