Search:  Couldn't find package xwiki-enterprise-common

Last modified by s203917 on 2025/09/16 14:43

      

Results 1 - 10 of 10,430 next page » Page 1 2 3 4 5 6 7 8 9 ... 1043

Excel Plugin

Located in
Last modified by Thomas Mortagne on 2024/07/05 14:35
Objects
source : url:https://github.com/xwiki-contrib/plugin-excel
repositoryId : maven-xwiki
download : extension:org.xwiki.contrib%3Axwiki-plugin-excel/1.0?rid=maven-xwiki
Attachment content
META-INF/MANIFEST.MF Manifest-Version: 1.0 com/xpn/xwiki/plugin/charts/source/ExcelDataSourceFactory.class package com.xpn.xwiki.plugin.charts.source; public synchronized class ExcelDataSourceFactory implements DataSourceFactory { private static DataSourceFactory uniqueInstance; static void <clinit>(); private void ExcelDataSourceFactory(); public static DataSourceFactory getInstance(); public DataSource create(java.util.Map, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.plugin.charts.exceptions.DataSourceException; } com/xpn/xwiki/plugin/charts/source/ExcelDataSourceFactory.java com/xpn/xwiki/plugin/charts/source/ExcelDataSourceFactory.java /*  * See the NOTICE file distributed with this work for additional  * information regarding copyright ownership
excelplugin/pom.xml 4.0.0 com.xpn.xwiki.platform.plugins xwiki-plugins 4-SNAPSHOT xwiki-plugin-excel 1.0-SNAPSHOT XWiki Platform - Plugins - Excel jar XWiki Platform - Plugins - Excel com.xpn.xwiki.platform xwiki-core 1.2-SNAPSHOT commons-logging commons-logging 1.1 net.sourceforge.jexcelapi jxl 2.6.3 excelplugin/src/main/java/com/xpn/xwiki/plugin/charts/source/ExcelDataSource.java excelplugin/src/main/java/com/xpn/xwiki/plugin/charts/source/ExcelDataSource.java package com.xpn.xwiki.plugin.charts.source; import com.xpn.xwiki.XWikiContext; import com.xpn.xwiki.XWikiException; import com.xpn.xwiki.doc.XWikiAttachment; import com.xpn.xwiki.objects.BaseObject; import com.xpn.xwiki.plugin.charts.exceptions.DataSourceException; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Map; import java.util.StringTokenizer; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import jxl.Sheet; import jxl.Workbook; import jxl.read.biff.BiffException; /**  *   * @author Yasser Ganjisaffar <yganjisa at uci.edu>  *  */ public class ExcelDataSource extends DefaultDataSource implements DataSource {     public static final String FILENAME = "file";     public static final String SHEET = "sheet";     public static final String RANGE = "range";     public static final String HAS_HEADER_COLUMN = "has_header_column";     public static final boolean DEFAULT_HAS_HEADER_COLUMN = true;          private static final Log LOG = LogFactory.getLog(ExcelDataSource.class);     public ExcelDataSource() {     }     public ExcelDataSource(BaseObject defObject, XWikiContext context)             throws DataSourceException {         init(defObject.getStringValue(FILENAME), defObject                 .getStringValue(SHEET), defObject.getStringValue(RANGE),                 defObject.getIntValue(HAS_HEADER_COLUMN) == 1, context);     }     public ExcelDataSource(Map params, XWikiContext context)             throws DataSourceException {         String fileName = (String) params.get(FILENAME);         String sheetName = (String) params.get(SHEET);         if (sheetName == null) {             sheetName = "1";         }         String range = (String) params.get(RANGE);         String hhc = (String) params.get(HAS_HEADER_COLUMN);         boolean hasHeaderColumn;         if (hhc !
Character.isDigit(chars[i]) && (ch < 1776 || ch > 1785)) {                 return false;             }         }         return true;     } } excelplugin/src/main/java/com/xpn/xwiki/plugin/charts/source/ExcelDataSourceFactory.java excelplugin/src/main/java/com/xpn/xwiki/plugin/charts/source/ExcelDataSourceFactory.java /*  * See the NOTICE file distributed with this work for additional  * information regarding copyright ownership

Writing GWT applications in XWiki

Located in
Last modified by freeleons on 2010/01/17 21:32
Rendered document content
Step 2: src/main/resources/com/xpn/xwiki/wysiwyg/public/Wysiwyg.html Make sure you include the right JavaScript file in the module's HTML file.
Ideally, this deployment descriptor should contain only the servlet mapping for the GWT services, but unfortunately I couldn't find a maven plugin to merge this descriptor with the one from my web application, during the integration stage.
Step 5: target/xwiki-web-wysiwyg-0.1-SNAPSHOT.war In the end you must install the war file in the local repository.
Title
Writing GWT applications in XWiki
Attachment content
4.0.0 com.xpn.xwiki.products xwiki-enterprise 1.5-SNAPSHOT xwiki-web-wysiwyg-demo pom 0.1-SNAPSHOT XWiki Wysiwyg - Demo com.xpn.xwiki.products xwiki-enterprise-web ${pom.parent.version} war com.xpn.xwiki.platform xwiki-web-wysiwyg ${pom.version} war org.apache.maven.plugins maven-remote-resources-plugin xwiki-configuration-resources process-resources process com.xpn.xwiki.platform.tools:xwiki-configuration-resources:${platform.tool.configuration.version} jdbc:mysql://localhost/xwiki_dev?
/bin/bash APP_DIR=`dirname $0`/webapps/xwiki; JAVA32_HOME=/usr/lib/jvm/ia32-java-1.5.0-sun-1.5.0.13/bin; GWT_HOME=/home/marius/apps/gwt-linux-1.4.62; $JAVA32_HOME/java \ -Xmx1024m \ -cp $APP_DIR/WEB-INF/classes:\ $APP_DIR/WEB-INF/sources:\ $APP_DIR/WEB-INF/lib/xwiki-web-gwt-1.5-SNAPSHOT-sources.jar:\ $GWT_HOME/gwt-dev-linux.jar:\ $GWT_HOME/gwt-user.jar \ com.google.gwt.dev.GWTShell \ -logLevel WARN \ -style DETAILED \ -noserver \ -port 8080 \ -out $APP_DIR/com.xpn.xwiki.wysiwyg.Wysiwyg \ xwiki/com.xpn.xwiki.wysiwyg.Wysiwyg/Wysiwyg.html
/bin/bash APP_DIR=`dirname $0`/webapps/xwiki; JAVA32_HOME=/usr/lib/jvm/ia32-java-1.5.0-sun-1.5.0.13/bin; GWT_HOME=/home/marius/apps/gwt-linux-1.4.62; $JAVA32_HOME/java \ -Xmx1024m \ -Xdebug \ -Xnoagent \ -Djava.compiler=NONE \ -Xrunjdwp:transport=dt_socket,server=y,address=5006,suspend=y \ -cp $APP_DIR/WEB-INF/classes:\ $APP_DIR/WEB-INF/sources:\ $APP_DIR/WEB-INF/lib/xwiki-web-gwt-1.5-SNAPSHOT-sources.jar:\ $GWT_HOME/gwt-dev-linux.jar:\ $GWT_HOME/gwt-user.jar \ com.google.gwt.dev.GWTShell \ -logLevel WARN \ -style DETAILED \ -noserver \ -port 8080 \ -out $APP_DIR/com.xpn.xwiki.wysiwyg.Wysiwyg \ xwiki/com.xpn.xwiki.wysiwyg.Wysiwyg/Wysiwyg.html
Raw document content
Ideally, this deployment descriptor should contain only the servlet mapping for the GWT services, but unfortunately I couldn't find a maven plugin to merge this descriptor with the one from my web application, during the integration stage.
{code:xml} <project> ... <packaging>war</packaging> ... <properties> <gwtVersion>1.4.62</gwtVersion> <!
{code:xml} <project> ... <packaging>pom</packaging> ... <dependencies> <dependency> <groupId>com.xpn.xwiki.platform</groupId> <artifactId>xwiki-web-wysiwyg</artifactId> <version>${pom.version}</version> <type>war</type> </dependency> ...

IRC Archive for channel #xwiki on 07 May 2012

Located in
Last modified by Vincent Massol on 2012/10/18 19:22
Rendered document content
00:16 <abusenius> has quit 00:48 <jvelo> has joined #xwiki 03:43 <mmercer> has quit 04:30 <jvelo> has quit 07:02 <Denis> has joined #xwiki 07:04 <Denis1> has quit 07:38 <rrodriguez> has quit 07:57 <Guest34964> has quit 08:14 <mflorea> has joined #xwiki 08:31 <cjd> has joined #xwiki 09:17 <jvipa5g> has joined #xwiki 09:18 <jvipa5g> The, file: [ ] xwiki-enterprise-installer-generic-4.0-standard.jar 02-May-2012 13:14 54M is CORRUPT!
09:19 <jvipa5g> thanks 09:34 <tmortagne> has joined #xwiki 10:14 <rrodriguez> has joined #xwiki 10:18 <gdelhumeau> has joined #xwiki 10:38 <Enygma`> has joined #xwiki 10:38 <evalica> has joined #xwiki 11:06 <polx> has joined #xwiki 11:19 <jvelo> has joined #xwiki 11:24 <jvelociter> has joined #xwiki 11:28 <jvelo> has quit 11:34 <jvipa5g> where I can download the. jar version 4.0, which is not corrupt. 11:40 <@cjd> try this http://nexus.xwiki.org/nexus/service/local/repositories/releases/content/org/xwiki/enterprise/xwiki-enterprise-installer-generic/4.0/xwiki-enterprise-installer-generic-4.0-standard.jar 11:40 <@cjd> working on replacing the copy in ow2, thanks for letting us know 11:47 <sburjan> i tested it, it worked 11:47 <sburjan> 143M 11:51 <rrodriguez> has quit 11:51 <jvipa5g> You're welcome. ;-) 12:10 <jvelociter> has quit 12:39 <mflorea> has quit 13:17 <polx> has quit 13:26 <mflorea> has joined #xwiki 13:49 <gdelhumeau> has quit 13:54 <gdelhumeau> has joined #xwiki 13:54 <omidp> has joined #xwiki 13:58 <omidp> has quit 14:03 <gdelhumeau> has quit 14:38 <cjd> has quit 14:38 <cjd> has joined #xwiki 14:43 <sdumitriu> has quit 15:34 <jvipa5g> has quit 15:57 <jcater> has joined #xwiki 16:02 <polx> has joined #xwiki 16:06 <LoneRanger> has left #xwiki 16:08 <jcater> Are there known migration issues with the prepackaged .deb's at "deb http://maven.xwiki.org stable/" ? 16:08 <jcater> I have a pretty vanilla install of 3.5 that was upgraded to 4.0: 16:08 <jcater> ii xwiki-enterprise-common 4.0 XWiki enterprise common package 16:08 <jcater> ii xwiki-enterprise-pgsql-common 4.0 XWiki enterprise Tomcat common package 16:08 <jcater> ii xwiki-enterprise-tomcat-common 4.0 XWiki enterprise Tomcat common package 16:08 <jcater> ii xwiki-enterprise-tomcat6-pgsql 4.0 XWiki enterprise Tomcat/PostgreSQL 16:08 <jcater> It is run against a postgresql 9.1 database. 16:08 <jcater> The migration fails with "com.xpn.xwiki.store.migration.DataMigrationException: Unable to update schema of database xwiki". 16:08 <jcater> (A more complete traceback is at http://pastebin.com/R4PEZCMj). 16:08 <jcater> I saw that there was a migration issue against PostgreSQL databases (http://jira.xwiki.org/browse/XWIKI-7771), but that fix appears to be in the version I'm running. 16:09 <jcater> and/or, is there a way to increase the logging so I can see what SQL statements are actually failing?
Title
IRC Archive for channel #xwiki on 07 May 2012
Objects
channel : xwiki
Raw document content
00:16 <abusenius> has quit 00:48 <jvelo> has joined #xwiki 03:43 <mmercer> has quit 04:30 <jvelo> has quit 07:02 <Denis> has joined #xwiki 07:04 <Denis1> has quit 07:38 <rrodriguez> has quit 07:57 <Guest34964> has quit 08:14 <mflorea> has joined #xwiki 08:31 <cjd> has joined #xwiki 09:17 <jvipa5g> has joined #xwiki 09:18 <jvipa5g> The, file: [ ] xwiki-enterprise-installer-generic-4.0-standard.jar 02-May-2012 13:14 54M is CORRUPT!
09:19 <jvipa5g> thanks 09:34 <tmortagne> has joined #xwiki 10:14 <rrodriguez> has joined #xwiki 10:18 <gdelhumeau> has joined #xwiki 10:38 <Enygma`> has joined #xwiki 10:38 <evalica> has joined #xwiki 11:06 <polx> has joined #xwiki 11:19 <jvelo> has joined #xwiki 11:24 <jvelociter> has joined #xwiki 11:28 <jvelo> has quit 11:34 <jvipa5g> where I can download the. jar version 4.0, which is not corrupt. 11:40 <@cjd> try this http://nexus.xwiki.org/nexus/service/local/repositories/releases/content/org/xwiki/enterprise/xwiki-enterprise-installer-generic/4.0/xwiki-enterprise-installer-generic-4.0-standard.jar 11:40 <@cjd> working on replacing the copy in ow2, thanks for letting us know 11:47 <sburjan> i tested it, it worked 11:47 <sburjan> 143M 11:51 <rrodriguez> has quit 11:51 <jvipa5g> You're welcome. ;-) 12:10 <jvelociter> has quit 12:39 <mflorea> has quit 13:17 <polx> has quit 13:26 <mflorea> has joined #xwiki 13:49 <gdelhumeau> has quit 13:54 <gdelhumeau> has joined #xwiki 13:54 <omidp> has joined #xwiki 13:58 <omidp> has quit 14:03 <gdelhumeau> has quit 14:38 <cjd> has quit 14:38 <cjd> has joined #xwiki 14:43 <sdumitriu> has quit 15:34 <jvipa5g> has quit 15:57 <jcater> has joined #xwiki 16:02 <polx> has joined #xwiki 16:06 <LoneRanger> has left #xwiki 16:08 <jcater> Are there known migration issues with the prepackaged .deb's at "deb http://maven.xwiki.org stable/" ? 16:08 <jcater> I have a pretty vanilla install of 3.5 that was upgraded to 4.0: 16:08 <jcater> ii xwiki-enterprise-common 4.0 XWiki enterprise common package 16:08 <jcater> ii xwiki-enterprise-pgsql-common 4.0 XWiki enterprise Tomcat common package 16:08 <jcater> ii xwiki-enterprise-tomcat-common 4.0 XWiki enterprise Tomcat common package 16:08 <jcater> ii xwiki-enterprise-tomcat6-pgsql 4.0 XWiki enterprise Tomcat/PostgreSQL 16:08 <jcater> It is run against a postgresql 9.1 database. 16:08 <jcater> The migration fails with "com.xpn.xwiki.store.migration.DataMigrationException: Unable to update schema of database xwiki". 16:08 <jcater> (A more complete traceback is at http://pastebin.com/R4PEZCMj). 16:08 <jcater> I saw that there was a migration issue against PostgreSQL databases (http://jira.xwiki.org/browse/XWIKI-7771), but that fix appears to be in the version I'm running. 16:09 <jcater> and/or, is there a way to increase the logging so I can see what SQL statements are actually failing?

[Deprecated] Realtime Collaborative Form Editor

Located in
Last modified by Marius Dumitru Florea on 2024/10/10 10:59
Objects
description : {{warning}} This extension is using the old / deprecated realtime API, and thus it won't work with recent versions of XWiki that have the new realtime API bundled. {{/warning}} [[image:https://raw.githubusercontent.com/xwiki-labs/xwiki-labs-logo/master/projects/xwikilabs/xwikilabsproject.png>>url:https://labs.xwiki.com/xwiki/bin/view/Projects/XWikiLabsProject]] RtForm is a [[Realtime Collaborative Form Editor>>http://en.wikipedia.org/wiki/Collaborative_real-time_editor]] which extends the [[XWiki form and XWiki objects>>xwiki:Documentation.Features.PageEditing]] editors
{{image reference="locked_join_rtform.png"/}} Since objects in XWiki are shared between all the translations of a page but they can also contain the "content" of the document, **RtForm is only available while editing the default language of the page**.
source : https://github.com/xwiki-labs/realtime-form
Attachment content
package.xml Realtime Form Editor Collaboratively edit your XWiki forms with others XWiki.Admin org.xwiki.contrib:xwiki-contrib-rtwiki 1.0 true RTForm.WebHome RTForm/WebHome.xml RTForm WebHome 0 xwiki:XWiki.WebHome xwiki:XWiki.Admin xwiki:XWiki.Admin xwiki:XWiki.Admin 1357694025000 1357696926000 1357696926000 1.1 Realtime Forms Editor false xwiki/2.1 true {{info}}This document contains the internal code which makes the realtime wiki work.

Dynamic Ordered List

Located in
Last modified by Thomas Mortagne on 2025/06/04 08:08
Objects
{{code language="velocity"}} #macro(renderObject $doc $obj $displayMode) $doc.display('name', $displayMode, $obj) (% class="DynamicList_OrderControl" %)((( $doc.display('order', $displayMode, $obj) ))) #end {{/code}} Create a sheet document for the list: {{code language="xwiki/2.0"}} {{include document="Code.DynamicListMacro" /}} = My favourite animals = {{velocity}} #dynamicList('Sandbox.AnimalClass', 'Sandbox.AnimalSheet', 'order') {{/velocity}} {{/code}} A default sheet can be used by passing ##false## instead of a document name for the sheet parameter.
Now use it by simply including the sheet document on a page: {{code language="xwiki/2.0"}} {{include document="Sandbox.FavouritAnimalList" /}} {{/code}} When editing the document in inline mode, an "Add" button should appear.
xwikiFlavor : XWiki Enterprise
Attachment content
= null && name.match(new RegExp('^' + properties.get('ClassName') + '_' + '.*_' + properties.get('Order') + '$'))) { return input[i]; } } throw "Couldn't find the order input, matched on '" + '^' + properties.get('ClassName') + '_' + '.*_' + properties.get('Order') + '$' +"'"; }, getOrderNr : function(element, properties) { return this.getOrderInput(element, properties).getValue(); }, setOrderNr : function(element, value, properties) { var i = this.getOrderInput(element, properties); if (i.getValue() !
= null && name.match(new RegExp('^' + properties.get('ClassName') + '_' + '.*_' + properties.get('Order') + '$'))) { return input[i]; } } throw "Couldn't find the order input, matched on '" + '^' + properties.get('ClassName') + '_' + '.*_' + properties.get('Order') + '$' +"'"; }, getOrderNr : function(element, properties) { return this.getOrderInput(element, properties).getValue(); }, setOrderNr : function(element, value, properties) { var i = this.getOrderInput(element, properties); if (i.getValue() !
#end #end{{/velocity}} Code/OrderMacros.xml Code OrderMacros sv 0 XWiki.AndreasProgrammer XWiki.Admin XWiki.Admin 1290072130000 1416990223000 1416990223000 2.2 true xwiki/2.1 true {{velocity}} #macro(getObjectMap $objectMap $doc $className $orderField) #set($objList = $doc.getObjects($className)) #foreach($obj in $objList) #set($orderProp = $obj.getProperty($orderField)) #if ($orderProp !

IRC Archive for channel #xwiki on 08 December 2012

Located in
Last modified by Vincent Massol on 2012/12/08 23:55
Rendered document content
<vmassol> has joined #xwiki 00:19 <vmassol> has quit 00:40 <abusenius> has joined #xwiki 00:54 <abusenius> has quit 01:16 <vmassol> has joined #xwiki 01:21 <vmassol> has quit 02:01 <jvelo> has quit 02:13 <jvelo> has joined #xwiki 02:17 <vmassol> has joined #xwiki 02:22 <vmassol> has quit 02:37 <jvelo> has quit 03:19 <vmassol> has joined #xwiki 03:21 <tekzilla> has quit 03:23 <vmassol> has quit 03:25 <tekzilla> has joined #xwiki 04:19 <vmassol> has joined #xwiki 04:23 <vmassol> has quit 04:30 <Denis> has joined #xwiki 05:20 <vmassol> has joined #xwiki 05:24 <vmassol> has quit 06:04 <Denis> has quit 06:20 <vmassol> has joined #xwiki 06:25 <vmassol> has quit 07:21 <vmassol> has joined #xwiki 07:25 <vmassol> has quit 07:55 <Inge-> is now known as <inge> 07:55 <inge> is now known as <Inge-> 08:07 <vmassol> has joined #xwiki 09:39 <abusenius> has joined #xwiki 09:42 <abusenius_> has joined #xwiki 09:45 <abusenius> has quit 11:08 <cjd> has quit 11:09 <cjd> has joined #xwiki 11:12 <cjd> has quit 11:14 <cjd> has joined #xwiki 11:20 <cjd> has quit 11:36 <cjd> has joined #xwiki 12:29 <abusenius_> has quit 13:18 <jvelo> has joined #xwiki 13:55 <jvelo> Hello friends 13:55 <jvelo> Does anyone knows a way to skip building installers when building XE ? 14:02 <vmassol> jvelo: I think I need to add again the profile for that…. 14:02 <vmassol> I had removed it after a discussion with thomas 14:03 <vmassol> right now what you can do is just list the projects to build 14:03 <vmassol> *modules 14:03 <jvelo> yes the debian installer takes quite some time. 14:03 <vmassol> mvn -pl 14:03 <vmassol> or better 14:03 <vmassol> pick the module you want to build 14:03 <vmassol> and use mvn -amd 14:04 <vmassol> for example if you want to build hsqldb/jetty 14:05 <vmassol> it's -am actually 14:06 <vmassol> mvn -am -pl xwiki-enterprise-distribution/xwiki-enterprise-jetty/xwiki-enterprise-jetty-hsqldb/ 14:06 <vmassol> or 14:06 <jvelo> nice 14:07 <vmassol> mvn -am -pl org.xwiki.enterprise:xwiki-enterprise-jetty-hsqldb 14:07 <vmassol> the two will do the same thing 14:07 <jvelo> pl = project list ? 14:14 <sdumitriu> From myxwiki logs: Couldn't find mysql binary 14:14 <vmassol> jvelo: yep 14:15 <vmassol> sdumitriu: are you subscribed to the infra list?
Title
IRC Archive for channel #xwiki on 08 December 2012
Objects
channel : xwiki
Raw document content
<vmassol> has joined #xwiki 00:19 <vmassol> has quit 00:40 <abusenius> has joined #xwiki 00:54 <abusenius> has quit 01:16 <vmassol> has joined #xwiki 01:21 <vmassol> has quit 02:01 <jvelo> has quit 02:13 <jvelo> has joined #xwiki 02:17 <vmassol> has joined #xwiki 02:22 <vmassol> has quit 02:37 <jvelo> has quit 03:19 <vmassol> has joined #xwiki 03:21 <tekzilla> has quit 03:23 <vmassol> has quit 03:25 <tekzilla> has joined #xwiki 04:19 <vmassol> has joined #xwiki 04:23 <vmassol> has quit 04:30 <Denis> has joined #xwiki 05:20 <vmassol> has joined #xwiki 05:24 <vmassol> has quit 06:04 <Denis> has quit 06:20 <vmassol> has joined #xwiki 06:25 <vmassol> has quit 07:21 <vmassol> has joined #xwiki 07:25 <vmassol> has quit 07:55 <Inge-> is now known as <inge> 07:55 <inge> is now known as <Inge-> 08:07 <vmassol> has joined #xwiki 09:39 <abusenius> has joined #xwiki 09:42 <abusenius_> has joined #xwiki 09:45 <abusenius> has quit 11:08 <cjd> has quit 11:09 <cjd> has joined #xwiki 11:12 <cjd> has quit 11:14 <cjd> has joined #xwiki 11:20 <cjd> has quit 11:36 <cjd> has joined #xwiki 12:29 <abusenius_> has quit 13:18 <jvelo> has joined #xwiki 13:55 <jvelo> Hello friends 13:55 <jvelo> Does anyone knows a way to skip building installers when building XE ? 14:02 <vmassol> jvelo: I think I need to add again the profile for that…. 14:02 <vmassol> I had removed it after a discussion with thomas 14:03 <vmassol> right now what you can do is just list the projects to build 14:03 <vmassol> *modules 14:03 <jvelo> yes the debian installer takes quite some time. 14:03 <vmassol> mvn -pl 14:03 <vmassol> or better 14:03 <vmassol> pick the module you want to build 14:03 <vmassol> and use mvn -amd 14:04 <vmassol> for example if you want to build hsqldb/jetty 14:05 <vmassol> it's -am actually 14:06 <vmassol> mvn -am -pl xwiki-enterprise-distribution/xwiki-enterprise-jetty/xwiki-enterprise-jetty-hsqldb/ 14:06 <vmassol> or 14:06 <jvelo> nice 14:07 <vmassol> mvn -am -pl org.xwiki.enterprise:xwiki-enterprise-jetty-hsqldb 14:07 <vmassol> the two will do the same thing 14:07 <jvelo> pl = project list ? 14:14 <sdumitriu> From myxwiki logs: Couldn't find mysql binary 14:14 <vmassol> jvelo: yep 14:15 <vmassol> sdumitriu: are you subscribed to the infra list?

[Deprecated] Visual Realtime Collaborative Editor

Located in
Last modified by Marius Dumitru Florea on 2024/10/14 00:14
Objects
description : {{warning}} This extension is superseded by the [[Realtime WYSIWYG Editor>>Extension.Realtime WYSIWYG Editor.WebHome]] since XWiki 13.9. {{/warning}} [[image:https://raw.githubusercontent.com/xwiki-labs/xwiki-labs-logo/master/projects/xwikilabs/xwikilabsproject.png>>url:https://labs.xwiki.com/xwiki/bin/view/Projects/XWikiLabsProject]] RtWysiwyg is a visual [[Realtime Collaborative Editor>>http://en.wikipedia.org/wiki/Collaborative_real-time_editor]] which extends the [[XWiki WYSIWYG>>platformxwiki:Documentation.Features.WysiwygEditor]] editor.
source : https://github.com/xwiki-contrib/realtime-wysiwyg
notes : This new version brings compatibility with XWiki 11.2+'s new features for conflict and merge.
Attachment content
RTWysiwyg/Demo.xml RTWysiwyg Demo 0 xwiki:XWiki.WebHome xwiki:XWiki.Admin xwiki:XWiki.Admin xwiki:XWiki.Admin 1357694025000 1357696926000 1357696926000 1.1 false xwiki/2.1 false {{velocity output="none"}} $xwiki.jsx.use("RTWysiwyg.WebHome", {"demoMode":true}) #if("$!
== name) { continue; } elem.appendChild(elems[name]); var con = elem.getElementsByClassName('wysiwygContent')[0]; if (con) { con.value = wysiwygContent; } var data = elem.getElementsByClassName('internalData')[0]; if (data) { data.value = internalData; } return; } elem.textContent = "error of unknown type ["+type+"]"; }}); }; return module.exports; }); onDemand 1 long RTWysiwyg/WebHome.xml RTWysiwyg WebHome 0 xwiki:XWiki.WebHome xwiki:XWiki.Admin xwiki:XWiki.Admin xwiki:XWiki.Admin 1357694025000 1357696926000 1357696926000 1.1 Realtime WYSIWYG Extension false xwiki/2.1 false {{info}}This document contains the Realtime WYSIWYG XWiki Extension code.
window.XWiki) { console.log("WARNING: XWiki js object not defined."); return; } // Not in edit mode?

Task executor

Located in
Last modified by Thomas Mortagne on 2025/06/04 08:04
Objects
source : https://github.com/xwiki-contrib/xwiki-task-executor
xwikiFlavor : XWiki Enterprise
download : http://extensions.xwiki.org/xwiki/bin/download/Extension/Task+executor/xwiki-task-executor-1.0.xar
Attachment content
= null) { /* Compatibility with older versions of XWiki */ def fw = new FileWriterWithEncoding(logFile, "UTF-8", true) fw.write("[${new Date()}] - ${message}\n") fw.close() /* If your installation has recent commons-io use this instead */ //FileUtils.write(logFile, "[${new Date()}] - ${message}\n", true); } } } /*********************************************************************************************************************** * Helper functions ******************************************************************************************************************** */ def getTaskExecutor(logger, task) { def taskExecutorName = task.getObject(TASK_CLASS)?.
Log file is located in the XWiki temporary directory. */ def logToFile = configurationObject?.
= null) { break } } catch (e) { logger.error("Error while creating task for document ${task} : ${e}") } } /* If we couldn't find any task that can be executed, return. */ if (taskExecutor == null) { logger.warn("There are READY tasks but no one of them can be executed.

IRC Archive for channel #xwiki

Located in
Last modified by Vincent Massol on 2012/10/18 19:21
Rendered document content
00:22 <evalica> has quit 00:26 <JuanDaugherty> has quit 01:30 <+sburjan`> seems that the bot doesn't get always the user modifying a page 01:30 <vmassol> yes I've reported a jira issue already for this 01:32 <vmassol> http://jira.xwiki.org/jira/browse/XWIKI-7041 01:32 <+sburjan`> I see 01:40 <vmassol> has quit 01:41 <abusenius> has quit 08:57 <vmassol> has joined #xwiki 09:06 <vmassol> has quit 10:44 <evalica> has joined #xwiki 11:13 <evalica> has quit 11:50 <abusenius> has joined #xwiki 12:17 <vmassol> has joined #xwiki 13:04 <lpereira> has joined #xwiki 14:16 <vmassol> has quit 14:27 <vmassol> has joined #xwiki 15:13 <DrLou> has joined #xwiki 15:26 <vmassol> has quit 15:28 <vmassol> has joined #xwiki 16:49 <vmassol> sdumitriu: do you know if the following will also find committers on branches: git log since="1 year ago" pretty=format:"%an" | sort -u 16:49 <vmassol> (hi) 16:49 <vmassol> or rather, is there a way to find all committers on all branches 16:49 <vmassol> ? 16:52 <vmassol> ah maybe all 16:53 <@sdumitriu> Yes, with all 16:54 <vmassol> ok thanks 16:55 <vmassol> a pity that there seems to be no way to query github to find active committers 16:55 <vmassol> (i checked the full REST API and couldn't find anything) 16:55 <vmassol> well we can get the full list of commits but parsing them one by one is not really a good idea.... 16:56 <@sdumitriu> We could with a local git clone and direct git access 16:56 <vmassol> yes I know 16:56 <vmassol> but that makes it more compex to write a script directly in the wiki 16:57 <vmassol> (it's still possible but makes it dependent on the environment ie local file system) 16:58 <vmassol> sdumitriu: did you see http://dev.xwiki.org/xwiki/bin/view/Drafts/Committers btw? 16:59 <@sdumitriu> Yes 17:00 <@sdumitriu> The list of repos is kind of useless 17:00 <@sdumitriu> Since it's the same for everybody 17:00 <vmassol> yes depends on how we use them 17:00 <vmassol> it's not going to be the same 17:00 <@sdumitriu> It just lists who can commit on a repo, not who did 17:00 <vmassol> for example I don't think that Jun should be committer on commons, rendering, platform, etc 17:00 <vmassol> only for xeclipse 17:01 <vmassol> yes I know it's about permissions 17:01 <vmassol> it's for the hall of fame page 17:01 <vmassol> which is different from what I'm doing now which is to get active committers 17:01 <vmassol> two different topics 17:54 <mflorea> has joined #xwiki 17:59 <abusenius> has quit 17:59 <abusenius> has joined #xwiki 19:49 <vmassol> has quit 20:37 <vmassol> has joined #xwiki 21:02 <vmassol> has quit 21:03 <vmassol> has joined #xwiki 21:04 <vmassol> has quit 21:05 <mflorea> has quit 21:59 <lpereira> has quit 23:23 <evalica> has joined #xwiki
Title
IRC Archive for channel #xwiki
Objects
channel : xwiki
Raw document content
00:22 <evalica> has quit 00:26 <JuanDaugherty> has quit 01:30 <+sburjan`> seems that the bot doesn't get always the user modifying a page 01:30 <vmassol> yes I've reported a jira issue already for this 01:32 <vmassol> http://jira.xwiki.org/jira/browse/XWIKI-7041 01:32 <+sburjan`> I see 01:40 <vmassol> has quit 01:41 <abusenius> has quit 08:57 <vmassol> has joined #xwiki 09:06 <vmassol> has quit 10:44 <evalica> has joined #xwiki 11:13 <evalica> has quit 11:50 <abusenius> has joined #xwiki 12:17 <vmassol> has joined #xwiki 13:04 <lpereira> has joined #xwiki 14:16 <vmassol> has quit 14:27 <vmassol> has joined #xwiki 15:13 <DrLou> has joined #xwiki 15:26 <vmassol> has quit 15:28 <vmassol> has joined #xwiki 16:49 <vmassol> sdumitriu: do you know if the following will also find committers on branches: git log --since="1 year ago" --pretty=format:"%an" | sort -u 16:49 <vmassol> (hi) 16:49 <vmassol> or rather, is there a way to find all committers on all branches 16:49 <vmassol> ? 16:52 <vmassol> ah maybe --all 16:53 <@sdumitriu> Yes, with --all 16:54 <vmassol> ok thanks 16:55 <vmassol> a pity that there seems to be no way to query github to find active committers 16:55 <vmassol> (i checked the full REST API and couldn't find anything) 16:55 <vmassol> well we can get the full list of commits but parsing them one by one is not really a good idea.... 16:56 <@sdumitriu> We could with a local git clone and direct git access 16:56 <vmassol> yes I know 16:56 <vmassol> but that makes it more compex to write a script directly in the wiki 16:57 <vmassol> (it's still possible but makes it dependent on the environment ie local file system) 16:58 <vmassol> sdumitriu: did you see http://dev.xwiki.org/xwiki/bin/view/Drafts/Committers btw? 16:59 <@sdumitriu> Yes 17:00 <@sdumitriu> The list of repos is kind of useless 17:00 <@sdumitriu> Since it's the same for everybody 17:00 <vmassol> yes depends on how we use them 17:00 <vmassol> it's not going to be the same 17:00 <@sdumitriu> It just lists who can commit on a repo, not who did 17:00 <vmassol> for example I don't think that Jun should be committer on commons, rendering, platform, etc 17:00 <vmassol> only for xeclipse 17:01 <vmassol> yes I know it's about permissions 17:01 <vmassol> it's for the hall of fame page 17:01 <vmassol> which is different from what I'm doing now which is to get active committers 17:01 <vmassol> two different topics 17:54 <mflorea> has joined #xwiki 17:59 <abusenius> has quit 17:59 <abusenius> has joined #xwiki 19:49 <vmassol> has quit 20:37 <vmassol> has joined #xwiki 21:02 <vmassol> has quit 21:03 <vmassol> has joined #xwiki 21:04 <vmassol> has quit 21:05 <mflorea> has quit 21:59 <lpereira> has quit 23:23 <evalica> has joined #xwiki

IRC Archive for channel #xwiki on 06 March 2015

Located in
Last modified by Vincent Massol on 2015/03/06 23:56
Rendered document content
<xwikibot> has joined #xwiki 06:00 <Denis> has quit 06:00 <Denis1> has joined #xwiki 07:06 <mflorea> has joined #xwiki 07:16 <msmeria> has joined #xwiki 07:19 <msmeria1> has joined #xwiki 07:21 <msmeria> has quit 07:52 <mflorea> has quit 08:40 <lynxt> has quit 08:40 <lynxt_> has joined #xwiki 08:40 <lynxt_> is now known as <lynxt> 09:03 <KermitTheFragger> has joined #xwiki 09:06 <woshilapin> has joined #xwiki 09:10 <vmassol> has joined #xwiki 09:11 <msmeria> has joined #xwiki 09:11 <msmeria1> has quit 09:19 <Trefex> has joined #xwiki 09:20 <cjd> has joined #xwiki 09:44 <mflorea> has joined #xwiki 09:59 <tmortagne> has joined #xwiki 10:05 <lucaa> has joined #xwiki 10:23 <evalica> has joined #xwiki 10:23 <Slashman> has joined #xwiki 10:32 <evalica> has quit 10:33 <evalica> has joined #xwiki 11:03 <Enygma`> has joined #xwiki 12:07 <lucaa> has quit 12:10 <lucaa> has joined #xwiki 12:44 <lucaa> has quit 13:35 <Denis1> is now known as <Denis> 13:44 <vmassol> tmortagne, mflorea: ok for WebRss in activitystream-ui (cf last mail I sent)? I'm almost ready to commit 13:44 <vmassol> it makes sense to me but I'd like to have at least one other agreing :) 13:45 <vmassol> (forgot Enygma` :) 13:45 <vmassol> ) 13:45 <vmassol> who's not sure… 13:45 <vmassol> reading 13:47 <vmassol> Enygma`: just replied 14:03 <lucaa> has joined #xwiki 14:25 <vmassol> brainstorming offline with Enygma` on the topic 14:25 <vmassol> (fyi) 14:29 <Trefex> has quit 14:56 <msmeria> has quit 14:58 <gsmeria> has joined #xwiki 16:08 <vmassol> fixing platform build, seems some tests started faiing after my commit: http://ci.xwiki.org/job/xwiki-platform/996/#showFailuresLink 16:14 <Trefex> has joined #xwiki 16:18 <Bugen_do> has joined #xwiki 17:07 <Trefex> has quit 17:15 <Denis> has quit 17:29 <gsmeria> has quit 17:39 <vmassol> this tests seems to flicker a lot: http://ci.xwiki.org/job/xwiki-platform/org.xwiki.platform$xwiki-platform-panels-test-tests/1006/testReport/junit/org.xwiki.panels.test.ui/PanelTest/limitPanelViewRight/ 17:47 <vmassol> hmm I couldn't find any documentation for the share page feature on xwiki.org.... 17:47 <vmassol> if someone knows of any please let me know 17:54 <xwikibot> has joined #xwiki 17:55 <KermitTheFragger> has quit 18:00 <vmassol> found it! 18:00 <vmassol> http://platform.xwiki.org/xwiki/bin/view/Features/DocumentLifecycle#HSharePagebyEmail 18:02 <mflorea> has quit 18:47 <woshilapin> has quit 19:41 <tmortagne> has quit 19:46 <tmortagne> has joined #xwiki 20:32 <lucaa> has quit 20:35 <cjd> has quit 20:48 <Slashman> has quit 20:51 <tmortagne> has quit 21:16 <evalica> has quit 23:13 <woshilapin> has joined #xwiki 23:51 <Enygma`> has quit 23:56 <mflorea> has joined #xwiki
Title
IRC Archive for channel #xwiki on 06 March 2015
Objects
channel : xwiki
Raw document content
<xwikibot> has joined #xwiki 06:00 <Denis> has quit 06:00 <Denis1> has joined #xwiki 07:06 <mflorea> has joined #xwiki 07:16 <msmeria> has joined #xwiki 07:19 <msmeria1> has joined #xwiki 07:21 <msmeria> has quit 07:52 <mflorea> has quit 08:40 <lynxt> has quit 08:40 <lynxt_> has joined #xwiki 08:40 <lynxt_> is now known as <lynxt> 09:03 <KermitTheFragger> has joined #xwiki 09:06 <woshilapin> has joined #xwiki 09:10 <vmassol> has joined #xwiki 09:11 <msmeria> has joined #xwiki 09:11 <msmeria1> has quit 09:19 <Trefex> has joined #xwiki 09:20 <cjd> has joined #xwiki 09:44 <mflorea> has joined #xwiki 09:59 <tmortagne> has joined #xwiki 10:05 <lucaa> has joined #xwiki 10:23 <evalica> has joined #xwiki 10:23 <Slashman> has joined #xwiki 10:32 <evalica> has quit 10:33 <evalica> has joined #xwiki 11:03 <Enygma`> has joined #xwiki 12:07 <lucaa> has quit 12:10 <lucaa> has joined #xwiki 12:44 <lucaa> has quit 13:35 <Denis1> is now known as <Denis> 13:44 <vmassol> tmortagne, mflorea: ok for WebRss in activitystream-ui (cf last mail I sent)? I'm almost ready to commit 13:44 <vmassol> it makes sense to me but I'd like to have at least one other agreing :) 13:45 <vmassol> (forgot Enygma` :) 13:45 <vmassol> ) 13:45 <vmassol> who's not sure… 13:45 <vmassol> reading 13:47 <vmassol> Enygma`: just replied 14:03 <lucaa> has joined #xwiki 14:25 <vmassol> brainstorming offline with Enygma` on the topic 14:25 <vmassol> (fyi) 14:29 <Trefex> has quit 14:56 <msmeria> has quit 14:58 <gsmeria> has joined #xwiki 16:08 <vmassol> fixing platform build, seems some tests started faiing after my commit: http://ci.xwiki.org/job/xwiki-platform/996/#showFailuresLink 16:14 <Trefex> has joined #xwiki 16:18 <Bugen_do> has joined #xwiki 17:07 <Trefex> has quit 17:15 <Denis> has quit 17:29 <gsmeria> has quit 17:39 <vmassol> this tests seems to flicker a lot: http://ci.xwiki.org/job/xwiki-platform/org.xwiki.platform$xwiki-platform-panels-test-tests/1006/testReport/junit/org.xwiki.panels.test.ui/PanelTest/limitPanelViewRight/ 17:47 <vmassol> hmm I couldn't find any documentation for the share page feature on xwiki.org.... 17:47 <vmassol> if someone knows of any please let me know 17:54 <xwikibot> has joined #xwiki 17:55 <KermitTheFragger> has quit 18:00 <vmassol> found it! 18:00 <vmassol> http://platform.xwiki.org/xwiki/bin/view/Features/DocumentLifecycle#HSharePagebyEmail 18:02 <mflorea> has quit 18:47 <woshilapin> has quit 19:41 <tmortagne> has quit 19:46 <tmortagne> has joined #xwiki 20:32 <lucaa> has quit 20:35 <cjd> has quit 20:48 <Slashman> has quit 20:51 <tmortagne> has quit 21:16 <evalica> has quit 23:13 <woshilapin> has joined #xwiki 23:51 <Enygma`> has quit 23:56 <mflorea> has joined #xwiki
next page » Page 1 2 3 4 5 6 7 8 9 ... 1043
RSS feed for search on [ Couldn't find package xwiki-enterprise-common]

Get Connected