Re: [xwiki-users] XWiki behind proxy

2016-08-29 Thread Dibyendu Das
Hi Vincent, thanks for pointing out the documentation. For the record I
used the following command to start jetty with proxy options:

java -jar start.jar -Dhttp.proxyHost=my.proxy.ip.addr
-Dhttp.proxyPort=proxy_port
-Dhttps.proxyHost=my.proxy.ip.addr -Dhttps.proxyPort=proxy_port --exec

Regards,
Dib

On Fri, Aug 26, 2016 at 3:10 PM, Vincent Massol  wrote:

> Hi,
>
> Have you checked http://platform.xwiki.org/xwiki/bin/view/AdminGuide/
> Installation#HRunningXWikibehindproxy-server ?
>
> Thanks
> -Vincent
>
> > On 26 Aug 2016, at 20:51, Dibyendu Das  wrote:
> >
> > Hi,
> >
> > I tried running XWiki on a Jetty server on a Windows box behind a proxy
> > server and get the following error. I have configured the environment
> > variables http_proxy and https_proxy correctly. Anyone knows why this
> error
> > is showing?
> >
> > 2016-08-26 14:41:43,973 [Core extension repository updater] ERROR
> > aultExtensionRepositoryManager - Unexpected error when trying to find
> > extension
> > [org.xwiki.platform:xwiki-platform-search-solr-server-plugin-8.2.1] in
> > repository [maven-xwiki:maven:http://nexus.xwiki.org/
> > nexus/content/groups/public]
> > org.xwiki.extension.ResolveException: Failed to resolve artifact
> > [org.xwiki.platform:xwiki-platform-search-solr-server-plugin:jar:8.2.1]
> > descriptor
> >at
> > org.xwiki.extension.repository.aether.internal.
> AetherExtensionRepository.resolveMaven(AetherExtensionRepository.java:398)
> >at
> > org.xwiki.extension.repository.aether.internal.
> AetherExtensionRepository.resolveMaven(AetherExtensionRepository.java:381)
> >at
> > org.xwiki.extension.repository.aether.internal.
> AetherExtensionRepository.resolveMaven(AetherExtensionRepository.java:375)
> >at
> > org.xwiki.extension.repository.aether.internal.
> AetherExtensionRepository.resolve(AetherExtensionRepository.java:192)
> >at
> > org.xwiki.extension.repository.internal.DefaultExtensionRepositoryMana
> ger.resolve(DefaultExtensionRepositoryManager.java:212)
> >at
> > org.xwiki.extension.repository.internal.core.
> DefaultCoreExtensionScanner.updateExtensions(DefaultCoreExtensionScanner.
> java:213)
> >at
> > org.xwiki.extension.repository.internal.core.
> DefaultCoreExtensionRepository$1.run(DefaultCoreExtensionRepository
> .java:136)
> >at java.lang.Thread.run(Unknown Source)
> > Caused by: org.eclipse.aether.resolution.ArtifactResolutionException:
> Could
> > not transfer artifact
> > org.xwiki.platform:xwiki-platform-search-solr-server-plugin:pom:8.2.1
> > from/to maven-xwiki (http://nexus.xwiki.org/nexus/content/groups/public
> ):
> > Connect to nexus.xwiki.org:8
> > 0 timed out
> >at
> > org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(
> DefaultArtifactResolver.java:444)
> >at
> > org.eclipse.aether.internal.impl.DefaultArtifactResolver.
> resolveArtifacts(DefaultArtifactResolver.java:246)
> >at
> > org.eclipse.aether.internal.impl.DefaultArtifactResolver.
> resolveArtifact(DefaultArtifactResolver.java:223)
> >at
> > org.xwiki.extension.repository.aether.internal.
> AetherExtensionRepository.loadPom(AetherExtensionRepository.java:509)
> >at
> > org.xwiki.extension.repository.aether.internal.
> AetherExtensionRepository.resolveMaven(AetherExtensionRepository.java:392)
> >... 7 common frames omitted
> > Caused by: org.eclipse.aether.transfer.ArtifactTransferException: Could
> not
> > transfer artifact
> > org.xwiki.platform:xwiki-platform-search-solr-server-plugin:pom:8.2.1
> > from/to maven-xwiki (http://nexus.xwiki.org/nexus/content/groups/public
> ):
> > Connect to nexus.xwiki.org:80 ti
> > med out
> >at
> > org.eclipse.aether.connector.basic.ArtifactTransportListener.
> transferFailed(ArtifactTransportListener.java:43)
> >at
> > org.eclipse.aether.connector.basic.BasicRepositoryConnector$
> TaskRunner.run(BasicRepositoryConnector.java:355)
> >at
> > org.eclipse.aether.util.concurrency.RunnableErrorForwarder$1.run(
> RunnableErrorForwarder.java:67)
> >at
> > org.eclipse.aether.connector.basic.BasicRepositoryConnector$
> DirectExecutor.execute(BasicRepositoryConnector.java:581)
> >at
> > org.eclipse.aether.connector.basic.BasicRepositoryConnector.get(
> BasicRepositoryConnector.java:249)
> >at
> > org.eclipse.aether.internal.impl.DefaultArtifactResolver.
> performDownloads(DefaultArtifactResolver.java:520)
> >at
> > org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(
> DefaultArtifactResolver.java:421)
> >... 11 common frames omitted
> > Caused by: org.apache.http.conn.ConnectTimeoutException: Connect to
> > nexus.xwiki.org:80 timed out
> >at
> > org.apache.http.conn.scheme.PlainSocketFactory.connectSocket(
> PlainSocketFactory.java:122)
> >at
> > org.apache.http.impl.conn.DefaultClientConnectionOperato
> r.openConnection(DefaultClientConnectionOperator.java:179)
> >at
> > org

Re: [xwiki-users] Multiwiki - servlet action identifier for url path

2016-08-29 Thread Vincent Massol
Hi,

> On 29 Aug 2016, at 13:11, Eugen Colesnicov  wrote:
> 
> Hello,
> 
> I want to exclude servlet action identifier for url path using in multiwiki.
> 
> For example, now my path looks like:
> http://localhost/wiki/test/view/Main/
> (were "test" - name of my wiki)
> 
> I want:
> http://localhost/test/view/Main/
> 
> In a xwki.cfg exists option xwiki.virtual.usepath.servletpath=wiki
> I tried this parameter is set empty
> 
> Also, described, that need to change web.xml
> What (and how) exactly I should change in web.xml? I tried different
> variants (in web.xml exists servlet-mapping for action "wiki"), but without
> correctly result.

What you can change is described here:
http://platform.xwiki.org/xwiki/bin/view/Main/ShortURLs

AFAIK you can’t remove the wiki identifier part. Note that if it were allowed 
you wouldn’t be able to name a subwiki after a URL type (bin, rest, webjar, 
etc). Since it’s possible to plug new URL types that would lead to collisions.

You could use a domain-base approach, though.

Thanks
-Vincent

> Thanks beforehand!
> Eugen.
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/Multiwiki-servlet-action-identifier-for-url-path-tp7600954.html

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


[xwiki-users] Multiwiki - servlet action identifier for url path

2016-08-29 Thread Eugen Colesnicov
Hello,

I want to exclude servlet action identifier for url path using in multiwiki.

For example, now my path looks like:
http://localhost/wiki/test/view/Main/
(were "test" - name of my wiki)

I want:
http://localhost/test/view/Main/

In a xwki.cfg exists option xwiki.virtual.usepath.servletpath=wiki
I tried this parameter is set empty

Also, described, that need to change web.xml
What (and how) exactly I should change in web.xml? I tried different
variants (in web.xml exists servlet-mapping for action "wiki"), but without
correctly result.

--
Thanks beforehand!
Eugen.



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Multiwiki-servlet-action-identifier-for-url-path-tp7600954.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Advice needed for new XWiki Enterprise 7.4.4 Setup

2016-08-29 Thread Thomas Mortagne
On Fri, Aug 26, 2016 at 8:56 PM, Polydectus84  wrote:
> Hello Everyone,
>
> I have managed to install XWiki Enterprise v.7.4.4 and have a few questions
> before really getting started.  There are a few things that are unclear to
> me.  Here is an overview for what it will be used for:
>
> We have several teams: Computer Support, Sales, Warehouse, QA,
> Ops/Development, Office Administration.  XWiki will be used as a
> knowledge-base for known issues, procedures and file hosting.
>
> We want to have everyone be able to search for and create new pages/articles
> in any wiki except for Office Administration and perhaps 1 other.  Also, for
> example, you are in the "Support" wiki and perform a search - we want search
> results from content in the "Warehouse" wiki to be included in the results.
>
> 1.  Would you recommend that I create a "Wiki" for each department?
> 2.  When creating the user accounts, should I create them while in the
> "Home" wiki (which is called Home by default installation), or am I doing
> that incorrectly?  I am logged in as the Admin user and going to Administer
> Wiki > Users and Groups > Users > Add New User.
> 3.  When installing extensions/applications - should I "Install" or "Install
> on farm"?  I'm not quite sure what the "farm" is.  Is it the Sandbox?
>
> I ask because I tried to create a "new Wiki" and it is like I have to start
> from scratch again and create those user accounts in that wiki as well and
> adjust any cosmetic changes, changes to the skin, applications/extensions.

Should should probably take a look at
http://platform.xwiki.org/xwiki/bin/view/Features/ContentOrganization
but here is a short summary related to you questions.

When you install XWiki what you end up with is a "wiki" which happen
to also be the main wiki of what we call a "farm" (a farm being
nothing more than a container of wikis with no real visual existence,
it's just a synonym of a XWiki software instance in practice).

So to answer your first question here are the main differences for you
between a wiki and a space:
* applications are installed at wiki level so if you don't want your
team to share the same applications data you should probably have
different wikis
* each wikis has it's own user and they can also use the users of the main wikis
* each wikis can have it's own domain name (but you could also make
each space have it's own domain name with some URL rewriting in front
of XWiki with Apache for example)

If you don't have strong desire of isolating your teams you should
probably stay with a single wiki (which is easier to manage) and a
dedicated space for each of them where they can but their stuffs
specific stuff and make the rest of the wiki common to all teams.

>
> 4.  As easy as it seems, I am having a very difficult time with the Panels
> Wizard.
>
> I have several other questions, but feel I shouldn't ask them until the
> above are answered.
>
> Any help would be greatly appreciated.  Thank you.
>
>
>
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/Advice-needed-for-new-XWiki-Enterprise-7-4-4-Setup-tp7600916.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.
> ___
> 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] Livetable Excel Export issue

2016-08-29 Thread Alexandru Cotiuga
Hi,

I cannot promise I'll work on anything, but you can contact one of the
companies
sponsoring the development of XWiki and who have active committers on the
project. See
https://www.xwiki.org/xwiki/bin/view/Main/Support#HProfessionalSupport.
You can also contribute to XWiki product by voting, reporting and, why not,
fixing issues. See
http://dev.xwiki.org/xwiki/bin/view/Community/Contributing.

Thanks,
Alex

On Thu, Aug 25, 2016 at 2:39 PM, D R  wrote:

> Hi Alex,
>
> thanks, this seems to have solved the issue. I saw that you created a JIRA,
> this is good for reference. There are still some unassigned issues for the
> macro (I just voted for one from 2014 I faced today and added some info:
> XALTXLS-7). Will you work on those, too?
>
> Regards,
> Dennis
>
> 2016-08-25 11:04 GMT+02:00 Alexandru Cotiuga  >:
>
> > Hi,
> > The issue is that this macro does not handle properly the livetable names
> > that contain special chars (as white space in this case). I fixed it and
> > until a new release would be performed, you could apply this minor
> change:
> > https://github.com/xwiki-contrib/macro-livetable-excel-export/commit/
> > df7fd45956233e427d699e062b8e3d4108541893.
> >
> >
> > Hope this helps,
> > Alex
> >
> > On Thu, Aug 25, 2016 at 10:41 AM, D R  wrote:
> >
> > > Hi,
> > >
> > > I have an issue with the Livetable Excel Export Plugin:
> > >
> > > [
> > > http://extensions.xwiki.org/xwiki/bin/view/Extension/
> > > LiveTableExcelExport+Macro
> > > ]
> > >
> > >
> > > I installed it throuth extension manager on a local test install (Demo
> > ZIP
> > > Package) and on our production instance (CentOS 7.2/Java 8/Tomcat
> > > 8.0.33/MariaDB 5.5), both XWiki 7.4.4.
> > >
> > > Extension manager tells me the following:
> > > Excel Plugin 1.1 installed
> > > jxl 2.6.12 installed as dependency
> > > XWiki Livetable Excel Export Macro 1.8.2 installed
> > >
> > > Then I added the macro to the data page of an application livetable (ie
> > > Test App.Data).
> > >
> > > ```
> > > #livetable('test app' $columns $columnsProperties $options)
> > > {{addExcelExportToLivetable livetable="test app" /}}
> > > {{/velocity}}
> > >
> > > ```
> > > On the Demo instance I don't see the Excel export option at all, on the
> > > prod instance I see it but clicking it redirects me to a blank page
> with
> > > the text "Excel plugin is not installed".
> > >
> > > Any hints?
> > >
> > > Regards,
> > > Dennis
> > > ___
> > > 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
>
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] [ANN] Tour Application 1.0.3 Released

2016-08-29 Thread Guillaume Delhumeau
Hi Mario.

Indeed, since 8.2, the Tour Application is already bundled with XWiki
Enterprise, which means that the webjar of the dependency (bootstrap-tour)
is considered as a "core extension" which also means that it can only be
upgraded along with the whole XWiki Enterprise.

It's an issue that we know and we are currently looking for solutions:
http://markmail.org/message/mbut2lhatyeu6wzv

Thanks,

2016-08-26 9:34 GMT+02:00 Mario :

> I'm unable to update the Tour Application from 1.0.2 to 1.0.4:
>
>
>
> I'm running xwiki 8.2.1 (standalone sandbox on Windows).
>
> If i click on dependency [org.webjars:bootstrap-tour-0.11.0] it Displays
> "Version 0.10.2-1 is pre installed", but no option to update?
>
> Thank you
> Mario
>
>
>
> --
> View this message in context: http://xwiki.475771.n2.nabble.
> com/ANN-Tour-Application-1-0-3-Released-tp7600865p7600889.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



-- 
Guillaume Delhumeau (guillaume.delhum...@xwiki.com)
Research & Development Engineer at XWiki SAS
Committer on the XWiki.org project
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users