Re: [xwiki-users] MySQL Error invalid use of group function in Statistics application

2008-02-18 Thread Marius Dumitru Florea
Hi Jeremie, Sorry for the inconvenience. Your tables' description seems fine. I attached the description of my tables so you can check it for yourself. I think it all resumes to the following SQL query: select xws_name, sum(xws_page_views) from xwikistatsdoc where xws_action='view' and xws_name

Re: [xwiki-users] MySQL Error invalid use of group function in Statistics application

2008-02-18 Thread Marius Dumitru Florea
me to create a JIRA issue for this ? Best Regards, Jeremie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marius Dumitru Florea Sent: lundi 18 février 2008 15:19 To: users@xwiki.org Subject: Re: [xwiki-users] MySQL Error invalid use of group

Re: [xwiki-users] MySQL Error invalid use of group function in Statistics application

2008-02-19 Thread Marius Dumitru Florea
JDBC directly - Doable, the SQL query being not too complicated, but with cross DB issues. * tweak the HQL query - How? Any other options Sergiu? Marius Marius Dumitru Florea wrote: Hi Jeremie, The sql query you suggested is cleaner and at least as efficient as the current one. It was my first

Re: [xwiki-users] Query a date field?

2008-02-22 Thread Marius Dumitru Florea
Hi, I don't know for sure but I suspect your problem has something to do with date format. At the time the page is rendered '${dtDateToCompare}' gets translated into a string (using toString if it's not already a string). The date format used (explicitly by you or implicitly by toString) may not

Re: [xwiki-users] name of default database

2008-03-14 Thread Marius Dumitru Florea
Hi, have you considered changing WEB-INF/hibernate.cfg.xml? I've changed xwiki with xwiki_dev in the following lines: property name=connection.urljdbc:mysql://localhost/xwiki?useServerPrepStmts=false/property property name=connection.usernamexwiki/property property

Re: [xwiki-users] XWiki date

2008-06-20 Thread Marius Dumitru Florea
This might be of help too: http://tinyurl.com/42cfqh More or less, yes; You can use $xwiki.formatDate(date here, here goes format)) where you replace date here with a real date, eg $xwiki.currentDate(see below for document date examples) here goes format with a time format, eg HH:mm:ss

Re: [xwiki-users] New XWIKI WYSIWYG editor

2008-06-24 Thread Marius Dumitru Florea
Hi Richard, Thank you for your interest in the new WYSIWYG editor. We're currently working on it and expecting to have a first version by the end of July. Thanks, Marius Hi, Does anyone know how the new WYSIWYG editor development going? I'd be happy to help test it out and help work out

Re: [xwiki-users] Changing a document object during a notification

2008-06-26 Thread Marius Dumitru Florea
Maybe this http://tinyurl.com/3hzmjd can help. It's the ActivityStream implementation for Curriki. It uses the Notification System. Take a look. On Thu, Jun 26, 2008 at 11:39 AM, Tiago Rinck Caveden [EMAIL PROTECTED] wrote: I have one more question... isn't the EVENT_UPDATE_OBJECT event code

Re: [xwiki-users] Changing a document object during a notification

2008-06-26 Thread Marius Dumitru Florea
See below, Hello! On Thu, Jun 26, 2008 at 2:29 PM, Marius Dumitru Florea [EMAIL PROTECTED] wrote: Maybe this http://tinyurl.com/3hzmjd can help. It's the ActivityStream implementation for Curriki. It uses the Notification System. Take a look. Thanks. I took a quick look, and I saw

Re: [xwiki-users] Tag edit as minor change

2008-08-08 Thread Marius Dumitru Florea
http://tinyurl.com/6na4vs Hope this helps, Marius Hi all, i made my own tag edit, which is based on ajax. Everything works perfect, but every change of tag will increment document version. (Like 1.1 to 2.1 and so on.) So how could I say to xwiki, that current edit is minor change not

Re: [xwiki-users] Popup Windows

2008-08-26 Thread Marius Dumitru Florea
You mean from JavaScript? See http://tinyurl.com/5zvhjk . Wrap the script tag inside {pre} and {/pre} in a XWiki page and you're done. Hope it will help, Marius Hi Is it possible to have a popup window in xwiki ? If yes please provide the sample code. I am using XE 1.5. Regards Syam --

Re: [xwiki-users] XWiki 1.6m2 Issues

2008-09-12 Thread Marius Dumitru Florea
Hi, hel-o wrote: Hi, im testing 1.6m2 and ran into some problems. LDAP-Authentication (Active Directory) seems not to work. It did with XWiki Enterprise 1.5.11446 using the same definitions in xwiki.cfg. Displaying Groups in XWikiPreferences seems not to work. I get the following

Re: [xwiki-users] XWiki 1.6m2 Issues

2008-09-17 Thread Marius Dumitru Florea
hel-o wrote: Hi, and thanks for your help. I still wonder if anyone tried the LDAP-Authentication and it worked. Still the same here. I get a Wrong Username massage when i try to login. The configuration is the same as in 1.5.11446 and there is nothing in the xwiki.log. Same thing for

Re: [xwiki-users] Moving a space in 1 xwiki to a different database on different server

2008-10-28 Thread Marius Dumitru Florea
I would try to use the export feature to export the pages in that space as a xar archive and then import this archive in the other wiki. Hope this helps, Marius Samuel Lee wrote: I have a space in one of our databases on one of our xwiki servers. We would like to isolate this space and

Re: [xwiki-users] ApplicationResources file

2008-11-01 Thread Marius Dumitru Florea
http://tinyurl.com/5qyhln I hope this is what you're looking for, Marius Gerritjan Koekkoek wrote: Hi, I need a copy of the ApplicationResources.properties file used in Xwiki 1.6 I need to create several English languages; Canada, USA, Australian, etcetera... How can I get it?

Re: [xwiki-users] Attachments in a new window

2008-11-03 Thread Marius Dumitru Florea
If you really want to, then edit templates/attachmentsinline.vm, search for the line that contains download and add to the anchor target=_blank. Hope this helps, Marius Edward Laptop wrote: Dear All I want to set my xwiki so that when you press on an attachment it opens in a new window.

Re: [xwiki-users] tab characters in editor

2008-11-05 Thread Marius Dumitru Florea
Thomas Mortagne wrote: Hi, On Tue, Nov 4, 2008 at 7:33 PM, Regan Gill [EMAIL PROTECTED] wrote: Hi, I have set up xwiki for my company's wiki. One complaint I am getting a lot from users is that the tab key doesn't insert a tab when editing, instead it works like a form and moves the

Re: [xwiki-users] where is ApplicationResources

2008-11-05 Thread Marius Dumitru Florea
http://lists.xwiki.org/pipermail/users/2008-November/014118.html Edward Laptop wrote: Tried looking for ApplicationResources Where would I find it please PS sorry I emailed you Sergiu - was supposed to go ti xwikiUsers, not you! These are localizable resources, which are defined in

Re: [xwiki-users] Find all objects of a class (more than one object on a page)

2009-01-14 Thread Marius Dumitru Florea
Hi, See the javadoc for Document here http://tinyurl.com/9hxpot . Pay attention especially to getObject* methods. For each document retrieved with your HQL query you can call getObjects(Space.MyClass). Hope this helps, Marius Jean Couteau wrote: Dear all, I am a bit lost with hql

Re: [xwiki-users] Working with query results...

2009-01-15 Thread Marius Dumitru Florea
Hi Kevin, Kevin_C wrote: I have the following code in one of my pages and it does what I am expecting however I'd like to try and generalize it some. #set ($hql = , BaseObject as obj where obj.name = doc.fullName and obj.className = 'CPA_FAQs.FAQClass' and doc.space='MySpace')

Re: [xwiki-users] Working with query results...

2009-01-15 Thread Marius Dumitru Florea
Marius Dumitru Florea wrote: Hi Kevin, Kevin_C wrote: I have the following code in one of my pages and it does what I am expecting however I'd like to try and generalize it some. #set ($hql = , BaseObject as obj where obj.name = doc.fullName and obj.className = 'CPA_FAQs.FAQClass

Re: [xwiki-users] Lossing Data Changes in Version 1.7 - Why?

2009-01-15 Thread Marius Dumitru Florea
Sergiu Dumitriu wrote: Lee Chalupa wrote: Hello: I am relatively new to xwiki. I'm running version 1.7. Occassionally, I will make changes to a wiki page it seems to sort of flicker and all of a sudden I'm looking at a version of the page from many versions back. In other words I am

Re: [xwiki-users] Strangeness with numbers...

2009-01-16 Thread Marius Dumitru Florea
Vincent Massol wrote: Hi, On Jan 16, 2009, at 4:05 PM, Kevin_C wrote: Why can't I do something like: #set($tRule = ) #set($idx = $tRule.indexOf(',')) $idx ## Outputs -1 $idx+1 ## Outputs -1+1 Natural, remember velocity is a template language. #set($idx = $idx + 1) I've tried

Re: [xwiki-users] New WYSIWYG Bug

2009-01-24 Thread Marius Dumitru Florea
Hi, I just created a new page, edited in wiki mode, typed the following content: * [[http://blog.semantic-web.at/]] This is the corporate blog of the Semantic Web Company, Vienna. * [[http://planet.kiwi-project.eu/]] Blog des Kiwi-Projekts then clicked saveview. The result was similar to what

Re: [xwiki-users] New WYSIWYG Bug

2009-01-24 Thread Marius Dumitru Florea
Anca Paula Luca wrote: hel-o wrote: Hi, my scenario ist thisone * [[http://blog.semantic-web.at/http://blog.semantic-web.at/||target=_blank]]\\This is the corporate blog of the [[Semantic Web Companyhttp://www.semantic-web.at/||target=_blank]], Vienna. *

Re: [xwiki-users] New WYSIWYG Bug

2009-01-24 Thread Marius Dumitru Florea
Done. http://jira.xwiki.org/jira/browse/XWIKI-3149 Thanks, Marius ___ users mailing list users@xwiki.org http://lists.xwiki.org/mailman/listinfo/users

Re: [xwiki-users] table border color - XE 1.8M1

2009-01-28 Thread Marius Dumitru Florea
Hi Sebastian, Which syntax are you using? XWiki 1.0 or XWiki 2.0? Thanks, Marius Sebastian Kannengiesser wrote: Hi guys, changing border color for tables (i.e setting 00 for making them black) has no effect on the table, when saving the document. (using eysiwyg editor) Cheers,

Re: [xwiki-users] using links in section heading makes the section-editing function inaccessable - XE 1.8M1

2009-01-28 Thread Marius Dumitru Florea
Sebastian Kannengiesser wrote: I was using wysiwyg editor and syntax was set to 1.0 That's the old WYSIWYG, enabled for XWiki 1.0 syntax. It has been deprecated. You can try the new one by switching to XWiki 2.0 syntax. Thanks, Marius On Wed, Jan 28, 2009 at 10:29 AM, Marius Dumitru

Re: [xwiki-users] table border color - XE 1.8M1

2009-01-28 Thread Marius Dumitru Florea
Sebastian Kannengiesser wrote: Hi guys, thanx for your quick replies. I was using wysiwyg and syntax 1.0. Wiki Code generated is: 1: {table} 2: 2 \\ |2 \\ 3: 2|2\\ 4: {table} @Vincent: How can I find out, if the editor I'm using is the new or old one? As I said, I'm using

Re: [xwiki-users] using links in section heading makes the section-editing function inaccessable - XE 1.8M1

2009-01-28 Thread Marius Dumitru Florea
) and the popup that asks you about the conversion should appear as you change the syntax from the combo. Maybe it's a browser issue. What browser are you using? Cheers, Sebastian On Wed, Jan 28, 2009 at 10:52 AM, Marius Dumitru Florea mariusdumitru.flo...@xwiki.com wrote: Sebastian

Re: [xwiki-users] table border color - XE 1.8M1

2009-01-28 Thread Marius Dumitru Florea
, Marius Many thanx. Cheers, Sebastian On Wed, Jan 28, 2009 at 10:54 AM, Marius Dumitru Florea mariusdumitru.flo...@xwiki.com wrote: Sebastian Kannengiesser wrote: Hi guys, thanx for your quick replies. I was using wysiwyg and syntax 1.0. Wiki Code generated is: 1: {table} 2: 2 \\ |2

Re: [xwiki-users] using links in section heading makes the section-editing function inaccessable - XE 1.8M1

2009-01-28 Thread Marius Dumitru Florea
Hi Sebastian, Sebastian Kannengiesser wrote: Hi Marius, I'm using Firefox 3.0.5 and just tested it with IE6. It is not working in either browser, both with any popup blockers disabled. Could it be I'm missing something in xwiki.cfg. BTW, XWiki/1.0 syntax appears twice in my syntax

Re: [xwiki-users] table border color - XE 1.8M1

2009-01-29 Thread Marius Dumitru Florea
Of Marius Dumitru Florea Sent: 28 January 2009 16:59 To: XWiki Users Subject: Re: [xwiki-users] table border color - XE 1.8M1 Sebastian Kannengiesser wrote: Thanx guys for your responses, despite the problem that automatic switching between syntax 1.0 and syntax 2.0 does not work here

Re: [xwiki-users] How to set page break?

2009-01-31 Thread Marius Dumitru Florea
Hi, Using XWiki 2.0 syntax you can write: 8 First paragraph (% style=page-break-before:always %) Second paragraph 8 See also http://www.w3schools.com/CSS/css_ref_print.asp Hope this helps, Marius wahono wrote: I am

Re: [xwiki-users] How to set page break?

2009-02-02 Thread Marius Dumitru Florea
Hi, There's no shortcut key or tool bar entry for page break as far as I know and the reason I can think of is that this feature is not that often used. Thanks, Marius wahono wrote: From: Marius Dumitru Florea mariusdumitru.flo...@xwiki.com Hi, Using XWiki 2.0 syntax you can write

Re: [xwiki-users] Things left to be translated into spanish

2009-02-04 Thread Marius Dumitru Florea
Hernández Cuchí wrote: Hello everybody, Changing the language to Spanish translates almost everything, and I say everything because three important things for us weren't translated: -The WYIWYG editor: I am considering to do it directly into the code If

Re: [xwiki-users] Things left to be translated into spanish

2009-02-05 Thread Marius Dumitru Florea
in release XWiki Enterprise 1.7.14685 I think that that's compiled into the GWT code, isn't it? Is it possible to change it in my local installation? thanks -Mensaje original- De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Marius Dumitru Florea

Re: [xwiki-users] Things left to be translated into spanish

2009-02-05 Thread Marius Dumitru Florea
it (the Spanish version) when finished, /F -Mensaje original- De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Marius Dumitru Florea Enviado el: miércoles, 04 de febrero de 2009 14:48 Para: XWiki Users Asunto: Re: [xwiki-users] Things left to be translated

Re: [xwiki-users] XEM and WYSIWYG

2009-02-08 Thread Marius Dumitru Florea
requests fail. Marius Dumitru Florea wrote: Hi Helmut, hel-o wrote: I solved my http://n2.nabble.com/Convert-XE-to-XEM-td2169510.html#a2169510 XE - XEM Problems (I hope) changing the wrong properties in the database. Bit i still got the problem with the new WYSIWYG-Editor link function

Re: [xwiki-users] XEM and WYSIWYG

2009-02-08 Thread Marius Dumitru Florea
Hi Helmut, hel-o wrote: Hi Marius, Marius Dumitru Florea wrote: It looks like the list boxes are not filled because the AJAX request fails. From your server log I see that XWikiServiceImpl is missing. Please make sure you have xwiki-web-gwt-*.jar in WEB-INF/lib directory

Re: [xwiki-users] XEM and WYSIWYG

2009-02-08 Thread Marius Dumitru Florea
.. Marius hel-o wrote: Yes, i must have missed that one. hel. Marius Dumitru Florea wrote: Hi Helmut, hel-o wrote: Hi Marius, Marius Dumitru Florea wrote: It looks like the list boxes are not filled because the AJAX request fails. From your server log I see that XWikiServiceImpl

Re: [xwiki-users] Changing XWiki to Read-only

2009-03-04 Thread Marius Dumitru Florea
Samuel Lee wrote: A stupid question, how do I restart the container? I think Sergiu was referring to your web server. See: http://en.wikipedia.org/wiki/Web_container http://en.wikipedia.org/wiki/Servlet_container#Servlet_containers Hope this helps, Marius Sam On Mar 4, 2009, at 10:18 AM,

Re: [xwiki-users] Export (Pictures, 1.8RC2)

2009-03-10 Thread Marius Dumitru Florea
hel-o wrote: Hi, Sergiu Dumitriu-2 wrote: hel-o wrote: Did you manually add the display property, or was it added by the WYSIWYG editor? Added it with the new WYSIWYG. (Alignment: Horizontal: Centered) See http://www.w3.org/Style/Examples/007/center#block IMO FOP has an issue if

Re: [xwiki-users] New WYSIWYG Editor Error 1.8 final

2009-03-24 Thread Marius Dumitru Florea
DarthOps wrote: Hi, When I hit save using the new WYSIWYG editor I'm getting the following Status Code 500 error: HTTP ERROR: 500 Failed to load component [com.xpn.xwiki.wysiwyg.server.filter.MutableServletRequestFactory] for hint [HTTP/1.0] See

Re: [xwiki-users] New WYSIWYG Editor Error 1.8 final

2009-03-24 Thread Marius Dumitru Florea
Marius Dumitru Florea wrote: DarthOps wrote: Hi, When I hit save using the new WYSIWYG editor I'm getting the following Status Code 500 error: HTTP ERROR: 500 Failed to load component [com.xpn.xwiki.wysiwyg.server.filter.MutableServletRequestFactory] for hint [HTTP/1.0] See

Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-03-25 Thread Marius Dumitru Florea
hel-o wrote: Hi, one more question, created an table, after filling the table i wanted to add text after the table and found no way to leave the table or create a paragraph after the table. http://jira.xwiki.org/jira/browse/XWIKI-3090 http://jira.xwiki.org/jira/browse/XWIKI-3089 Try

Re: [xwiki-users] strange behaviour of editors

2009-03-28 Thread Marius Dumitru Florea
Hi Jens, Schacht, Jens wrote: Hi, I started testing XWiki Enterprise 1.7.2.16857 and have decided to only use the xwiki/2.0 syntax. Therefore I changed the appropriate entry in xwiki.cfg: xwiki.rendering.syntax = xwiki/2.0 AFAIK there's no xwiki.rendering.syntax parameter, but:

Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-04-01 Thread Marius Dumitru Florea
Hi, hel-o wrote: Hi, some more things i found in Lists: 1. when you have a line brake after a list item with text following you cant undo the list formating. When you click the bullet list icon another bullet is added - - item1 text, text, text, text, text, text, text, text,

Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-04-01 Thread Marius Dumitru Florea
Hi Christophe, PERINAUD Christophe wrote: Hi, Also there is a missing space (may be it's wanted but i don't think so) in numbered list with more than 9 elements. The '.' is displayed over the first character. I did not try 100 elements but i guess that there will be a problem too I

Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-04-01 Thread Marius Dumitru Florea
hel-o wrote: Hi, To remove the list formatting you can either use the outdent button from the tool bar or place the caret before item1 and press Shift+Tab. The behavior you describe can be reproduced also in the default editor ( http://www.mozilla.org/editor/midasdemo/ ) and I think

Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-04-02 Thread Marius Dumitru Florea
Vincent Massol wrote: On Apr 2, 2009, at 1:22 AM, Marius Dumitru Florea wrote: hel-o wrote: Hi, To remove the list formatting you can either use the outdent button from the tool bar or place the caret before item1 and press Shift+Tab. The behavior you describe can be reproduced also

Re: [xwiki-users] Xwiki Syntax 2.0 by default in 1.8?

2009-04-02 Thread Marius Dumitru Florea
Hi Remi, Remi wrote: Hi all, I just installed the 1.8 stable new version in hope to solve editors problem. It said the new Wysiwyg editor is by default in this version, and i note in near pasts topic that objective was to have XWiki Syntax 2.0 by default for new documents starting in

Re: [xwiki-users] Xwiki Syntax 2.0 by default in 1.8?

2009-04-03 Thread Marius Dumitru Florea
Ryszard Łach wrote: 2009/4/2 Marius Dumitru Florea mariusdumitru.flo...@xwiki.com Yes, this is normal, but you can change the default syntax for newly created pages. See http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Configuration#HConfiguringWikiSyntaxesanddefaultSyntax I have

Re: [xwiki-users] GWT-WYSIWYG Parent Page

2009-04-03 Thread Marius Dumitru Florea
hel-o wrote: Hi, changed default syntax to xwiki/2.0 now what i'm missing is that the parent is automatically set to the page the new page is created from. Is that still missing? I found this http://jira.xwiki.org/jira/browse/XWIKI-3418 . The rendering team will handle it as soon as

Re: [xwiki-users] Code Box Content Changes in WYSIWYG Editor

2009-04-12 Thread Marius Dumitru Florea
Hi, I can see you're using the XWiki 1.0 syntax and thus the old WYSIWYG editor which is no longer maintained. What you describe could be a bug in the old editor. I tried your example in the new editor using the {{code}} macro and it works fine. Maybe you can switch to XWiki 2.0 syntax and

Re: [xwiki-users] Code Box Content Changes in WYSIWYG Editor

2009-04-12 Thread Marius Dumitru Florea
Help site for 2.0 and I did not want to go without. Any ideas where I can find that? Thanks Andreas Schaefer CEO of Madplanet.com Inc. andreas.schae...@madplanet.com schaef...@me.com On Apr 12, 2009, at 6:09 AM, Marius Dumitru Florea (via Nabble) wrote: Hi, I can see you're

[xwiki-users] [Fwd: Re: XWiki 1.8.1 Editor problem, lost line breaks and escaped wiki syntax]

2009-04-17 Thread Marius Dumitru Florea
Forgot to click reply all. ___ users mailing list users@xwiki.org http://lists.xwiki.org/mailman/listinfo/users

Re: [xwiki-users] XWiki 1.8.1 Editor problem, lost line breaks and escaped wiki syntax

2009-04-17 Thread Marius Dumitru Florea
Jonas Almfeldt wrote: Hi, On Fri, Apr 17, 2009 at 1:58 PM, Marius Dumitru Florea mariusdumitru.flo...@xwiki.com mailto:mariusdumitru.flo...@xwiki.com wrote: Hi Jonas Jonas Almfeldt wrote: [snip] Where can I find those templates? in the .war file

Re: [xwiki-users] XWiki 1.8.1 Editor problem, lost line breaks and escaped wiki syntax

2009-04-17 Thread Marius Dumitru Florea
Hi Jonas, Marius Dumitru Florea wrote: Jonas Almfeldt wrote: Hi, On Fri, Apr 17, 2009 at 1:58 PM, Marius Dumitru Florea mariusdumitru.flo...@xwiki.com mailto:mariusdumitru.flo...@xwiki.com wrote: Hi Jonas Jonas Almfeldt wrote: [snip] Where can I find those

Re: [xwiki-users] XWiki 1.8.1 Editor problem, lost line breaks and escaped wiki syntax

2009-04-17 Thread Marius Dumitru Florea
Hi Jonas, Jonas Almfeldt wrote: On Fri, Apr 17, 2009 at 4:05 PM, Marius Dumitru Florea mariusdumitru.flo...@xwiki.com wrote: Jonas Almfeldt wrote: [snip] Then something wrong happens in wysiwyginput.vm template. This is what I have http://pastebin.com/m118b997b . Can try

Re: [xwiki-users] XWiki 1.8.1 Editor problem, lost line breaks and escaped wiki syntax

2009-04-17 Thread Marius Dumitru Florea
: On Fri, Apr 17, 2009 at 4:05 PM, Marius Dumitru Florea mariusdumitru.flo...@xwiki.com wrote: Jonas Almfeldt wrote: [snip] Then something wrong happens in wysiwyginput.vm template. This is what I have http://pastebin.com/m118b997b . Can try the following: (1) Replace line 16 with #set

Re: [xwiki-users] Merge Cells in WYSIWYG 2.0

2009-04-24 Thread Marius Dumitru Florea
Hi Hesediel, Hesediel wrote: Hi everyone, I've noticed one thing about WYSIWYG 2.0 (the editor used when the page syntax is xwiki2.0) : we don't have the option to merge the cells. In WYSIWYG 1.0, we had the possibility to do this. Is this functionnality abandonned ? Of course not:

[xwiki-users] [VOTE] Creating complex lists with the new WYSIWYG editor

2009-05-14 Thread Marius Dumitru Florea
Hi there, Right now the new WYSIWYG editor allows us to create simple lists like the following: --8-- * plants * animals ** invertebrates ** vertebrates --8-- By pressing just Enter when the caret is inside a list item we create a new list item. This is the

Re: [xwiki-users] [xwiki-devs] [VOTE] Creating complex lists with the new WYSIWYG editor

2009-05-14 Thread Marius Dumitru Florea
You can follow a discussion on this topic between be and Guillaume here http://jira.xwiki.org/jira/browse/XWIKI-3773 Thanks, Marius Marius Dumitru Florea wrote: Hi there, Right now the new WYSIWYG editor allows us to create simple lists like the following: --8

Re: [xwiki-users] [xwiki-devs] [VOTE] Creating complex lists with the new WYSIWYG editor

2009-05-14 Thread Marius Dumitru Florea
Hi Vincent, Vincent Massol wrote: On May 14, 2009, at 11:01 AM, Marius Dumitru Florea wrote: Hi there, Right now the new WYSIWYG editor allows us to create simple lists like the following: --8-- * plants * animals ** invertebrates ** vertebrates --8

Re: [xwiki-users] [xwiki-devs] [VOTE] Creating complex lists with the new WYSIWYG editor

2009-05-14 Thread Marius Dumitru Florea
Guillaume Lerouge wrote: Hi, On Thu, May 14, 2009 at 1:12 PM, Vincent Massol vinc...@massol.net wrote: On May 14, 2009, at 12:47 PM, Marius Dumitru Florea wrote: Hi Vincent, Vincent Massol wrote: On May 14, 2009, at 11:01 AM, Marius Dumitru Florea wrote: Hi there, Right now the new

Re: [xwiki-users] Tomcat-Xwiki

2009-05-21 Thread Marius Dumitru Florea
Hi Gerritjan, Maybe changing max_allowed_packet as stated on the MySQL install instructions will help. I'm just guessing. http://platform.xwiki.org/xwiki/bin/view/AdminGuide/InstallationMySQL Hope this helps, Marius Gerritjan Koekkoek wrote: My Configuration MAC OS X 10.5.7 Tomcat 5.5

Re: [xwiki-users] [xwiki-devs] [Proposal] XWiki Enterprise 2.0 Roadmap

2009-06-15 Thread Marius Dumitru Florea
Guillaume Lerouge wrote: Hi XWiki Devs Users, here's the current proposal for the XWiki Enterprise 2.0 roadmap. Please give us your feedback about it and tell us whether you think we missed anything important. Please note that this roadmap covers the next 3 months of development work.

Re: [xwiki-users] [xwiki-devs] [Proposal] XWiki Enterprise 2.0 Roadmap

2009-06-16 Thread Marius Dumitru Florea
Guillaume Lerouge wrote: Hi XWikiers, thanks for the feedback :-) Here's the updated tasklist (I've probably added too much stuff, we might need to remove some parts in the course of the roadmap): *Tasks with people already planned to work on:* - Rendering (Thomas) - Fix

Re: [xwiki-users] Section edit overwrites whole document

2009-06-29 Thread Marius Dumitru Florea
See http://lists.xwiki.org/pipermail/notifications/2009-June/053994.html if you can't wait for 1.9.1 Thanks, Marius mjdenham wrote: I found a bug has already been raised regarding this: http://jira.xwiki.org/jira/browse/XWIKI-4033 ___ users mailing

Re: [xwiki-users] Editor doesn't display saved text + Re: Editing from the Choose editor panel

2009-06-30 Thread Marius Dumitru Florea
: v6.0.20 MySql: v5.1.34 Mac OS X: v10.4.11 Regards, Vittorio -- Forwarded message -- From: Marius Dumitru Florea mariusdumitru.flo...@xwiki.com To: XWiki Users users@xwiki.org Date: Sat, 27 Jun 2009 22:19:53 +0300 Subject: Re: [xwiki-users] Editor

Re: [xwiki-users] Statistics

2009-06-30 Thread Marius Dumitru Florea
See http://platform.xwiki.org/xwiki/bin/view/Features/IntegratedStatistics and http://code.xwiki.org/xwiki/bin/view/Applications/StatisticsApplication Hope this helps, Marius CASTRO roney wrote: Hello there, I was looking forward to have a more specific statistics website on my xwiki.

Re: [xwiki-users] Problem with one machine using WYSIWYG editor

2009-07-07 Thread Marius Dumitru Florea
Hi Ashley, Ashley Moran wrote: Hi I recently installed XWiki 1.9 for myself. I am freelance and offered to let one of my clients have a space to save another installation. But when she tries to edit a page, it takes ages to load the WYSIWYG What's the syntax of that page? Is it

Re: [xwiki-users] After uploading a picture or a file in wysiwyg editor, an error occurs

2009-07-09 Thread Marius Dumitru Florea
ArielWang wrote: I am using WYSIWYG editor 2.0, when I use Insert picture or Link/Insert attachement, an error occurs if the picture is large. But the picture seems to be uploaded anyway. What exactly do you mean by large? How large is the image you're trying to upload? Do you see any useful

Re: [xwiki-users] Button Plugin in WYSIWYG editor

2009-07-09 Thread Marius Dumitru Florea
Hi again, See below, Marius Dumitru Florea wrote: Hi, ArielWang wrote: I want to add three buttons to the toolbar in WYSIWYG V2. Now I have XWIKI 1.8 and WYSIWYG V2 with Syntax 2.0. The problem is: When I use WYSIWYG V1, the message #error(“some messages”)can be parsed as error message

Re: [xwiki-users] Button Plugin in WYSIWYG editor

2009-07-09 Thread Marius Dumitru Florea
Marius Dumitru Florea wrote: Hi again, See below, Marius Dumitru Florea wrote: Hi, ArielWang wrote: I want to add three buttons to the toolbar in WYSIWYG V2. Now I have XWIKI 1.8 and WYSIWYG V2 with Syntax 2.0. The problem is: When I use WYSIWYG V1, the message #error(“some messages

Re: [xwiki-users] After uploading a picture or a file in wysiwyg editor, an error occurs

2009-07-09 Thread Marius Dumitru Florea
ArielWang wrote: Thank you so much for your reply. I tried the image larger than 1M and it fails... I am using MySQL. See the note at the end of Installation Steps section of http://tinyurl.com/lhfhtu . Maybe increasing the maximum allowed packed size will help. The attachment has the

Re: [xwiki-users] [Proposal] XWiki 2.0 Skin Name

2009-08-14 Thread Marius Dumitru Florea
Random proposal http://en.wikipedia.org/wiki/Turaco (also check http://en.wikipedia.org/wiki/Great_Blue_Turaco ) Marius Ecaterina Valica wrote: Hi, The new XWiki 2.0 Skin must have a name, more specific a bird name (

Re: [xwiki-users] viewer=code

2009-08-26 Thread Marius Dumitru Florea
Hi Ajdin, Ajdin Brandic wrote: Is there an option (settings) to disable this (viewer=code) on a site? I don't know if there is a way to disable the viewer=code from the UI but I know you can prevent it by editing templates/view.vm around this line: #template(${viewer}.vm) or by renaming

Re: [xwiki-users] viewer=code

2009-08-26 Thread Marius Dumitru Florea
any user with view access is able to see the code of the page. Marius Ajdin -Original Message- From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of Marius Dumitru Florea Sent: 26 August 2009 16:07 To: XWiki Users Subject: Re: [xwiki-users] viewer=code Hi

Re: [xwiki-users] the links I see don't look like the links I posted

2009-08-31 Thread Marius Dumitru Florea
Hi, clay wrote: I'm using 1.9.3.22597 Syntax 2.0, When I paste text like this: In which editor did you paste? Wiki or WYSIWYG? http://forum.doityourself.com/general-chats-discussions/273144-painting-hou se-numbers-curb.html done by the city.They leave a Are the

Re: [xwiki-users] [UX] Edit Buttons Order

2009-09-04 Thread Marius Dumitru Florea
Ecaterina Valica wrote: Hi, Because we want to make a standard from vertical-aligned form, this means the buttons should be left-ordered with the most important action first. This should be changed also in Toucan and Albatross skin, not only just in Colibri. Right now the Edit Actions

Re: [xwiki-users] Unable to indent table under numbering

2009-09-15 Thread Marius Dumitru Florea
Hi Vincent, Vincent Gerris wrote: Dear all, I have been struggling with lining out a table onder a numbering. For example, I have numbers 1-5 (in the referred to as 1.). When I create a table in the WYSIWYG editor, under lets say 2, at first sometimes this goes right, and the table is

Re: [xwiki-users] Unable to indent table under numbering

2009-09-15 Thread Marius Dumitru Florea
Vincent Gerris wrote: Hi Marius, On Tue, 2009-09-15 at 11:15 +0300, Marius Dumitru Florea wrote: Hi Vincent, Vincent Gerris wrote: Dear all, I have been struggling with lining out a table onder a numbering. For example, I have numbers 1-5 (in the referred to as 1.). When I create

Re: [xwiki-users] Unable to indent table under numbering

2009-09-15 Thread Marius Dumitru Florea
Hi Vincent, Vincent Gerris wrote: Hi Marius, On Tue, 2009-09-15 at 12:03 +0300, Marius Dumitru Florea wrote: Vincent Gerris wrote: Hi Marius, On Tue, 2009-09-15 at 11:15 +0300, Marius Dumitru Florea wrote: Hi Vincent, Vincent Gerris wrote: Dear all, I have been struggling

Re: [xwiki-users] Unable to indent table under numbering

2009-09-15 Thread Marius Dumitru Florea
Hi Vincent, Vincent Gerris wrote: Hi Guillaume, On Tue, 2009-09-15 at 12:16 +0200, Guillaume Lerouge wrote: Hi Vincent, On Tue, Sep 15, 2009 at 12:08 PM, Vincent Gerris v.j.ger...@hhs.nl wrote: Hi Marius, On Tue, 2009-09-15 at 12:03 +0300, Marius Dumitru Florea wrote: Vincent Gerris

Re: [xwiki-users] [XWIKI-4375] xwiki paper cuts

2009-09-20 Thread Marius Dumitru Florea
Hi Roman, Roman Friesen wrote: Hello, I have just created the jira task XWIKI-4375: http://jira.xwiki.org/jira/browse/XWIKI-4375 description As you probably know the Ubuntu team has starter the project One Hundred Paper Cuts: https://launchpad.net/hundredpapercuts They define

Re: [xwiki-users] Continuing XWiki experiments ... Was: The missing quality of xwiki?

2009-09-25 Thread Marius Dumitru Florea
Hi Carsten Heyl wrote: Hi XWiki Users! First a big thanks to Jerome and Vincent who encouraged me to keep on trying with xwiki! I downloaded the 2.0rc2 and tested some more stuff. 1. A small bug in the blog area I added a blog on my own and got a page containing

Re: [xwiki-users] [xwiki-devs] Who can design nice and unique color themes for xwiki.org

2009-09-30 Thread Marius Dumitru Florea
Hi, Ecaterina Valica wrote: Hi, 2 new proposals with color in header done by me and Marta: [Proposal 6] done by Marta XWATCH - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/PlainBlue/XWATCH6.png XWATCHbis -

Re: [xwiki-users] [xwiki-devs] Anyone using XWiki with an open source Java runtime?

2009-09-30 Thread Marius Dumitru Florea
Vincent Massol wrote: Hi, I'm interested to know if XWiki works with an open source JDK. Anyone using one for XWiki? I'm building and testing XE using OpenJDK. java -version java version 1.6.0_0 OpenJDK Runtime Environment (IcedTea6 1.4.1) (6b14-1.4.1-0ubuntu11) OpenJDK 64-Bit Server VM

Re: [xwiki-users] Browse button in a macro

2009-10-01 Thread Marius Dumitru Florea
Hi Joshua, Rieken, Joshua wrote: Greetings, I would like to add a Browse... button to a macro like the one in the Image dialogue that lets the users choose a directory. Is there a way to do this using macros in wiki pages, or do I need to write Java? Where would you like this Browse...

Re: [xwiki-users] Macro parameters

2009-10-06 Thread Marius Dumitru Florea
Hi Lewis, Lewis Denizen wrote: Hi xwiki-users, One small quirck with the 2.0 release - when I try something like this: {{box title={{info}}test{{/infothis is a test{{/box}} the output becomes a bit screwey... Parts of the {{info}} tag gets added to the content of the box instead

Re: [xwiki-users] Macro parameters

2009-10-06 Thread Marius Dumitru Florea
Thomas Mortagne wrote: 2009/10/6 Vincent Massol vinc...@massol.net: On Oct 6, 2009, at 5:15 PM, Marius Dumitru Florea wrote: Hi Lewis, Lewis Denizen wrote: Hi xwiki-users, One small quirck with the 2.0 release - when I try something like this: {{box title={{info}}test{{/info

Re: [xwiki-users] Installing components

2009-10-13 Thread Marius Dumitru Florea
Hi David, breeden wrote: Hi, I'm new to XWiki (and Maven, for that matter) and would like to write a component. I've gone through the Writing XWiki Components tutorial and the Building XWiki from sources page and also found this helpful post:

Re: [xwiki-users] Component with 3rd-party dependency

2009-10-13 Thread Marius Dumitru Florea
Hi David, breeden wrote: Hi, I'm writing a component with a dependency on a 3rd-party JAR. I've installed the JAR in my local repository and added the dependency in the component's POM, and everything builds fine. However, when I add the component to my XWiki install (on the same

Re: [xwiki-users] XWiki 2 WYSIWYG Editor

2009-10-15 Thread Marius Dumitru Florea
Guillaume Lerouge wrote: Hi Brian, On Thu, Oct 15, 2009 at 2:36 PM, Sprott, Brian bri...@ilcasco.com wrote: I recently upgraded to XWiki 2.0 and I am trying to add the fontsize, fontname, and backround color to the options available to users within the WYSIWYG editor. Within Macros.vm,

Re: [xwiki-users] Javascript files not included after upgrade to 1.9.4

2009-10-16 Thread Marius Dumitru Florea
Hi Robert, Vincent Massol wrote: On Oct 16, 2009, at 11:14 AM, Robert Munteanu wrote: Hi, We've upgraded our XWiki install from 1.8.4 to 1.9.4. Have you imported the XAR too? Also, make sure you clear the browser cache and if you have a custom skin make sure it doesn't overwrite

Re: [xwiki-users] ToDo Macro

2009-10-19 Thread Marius Dumitru Florea
Hi Michael, Michael Beetz wrote: Hi Ludovic, I've imported the ToDo macro into one of my wikis, part of a path based wiki farm. It fails: Unknown macro: todo / The todo macro is not in the list of registered macros. Verify the spelling or contact your administrator. Are there any

Re: [xwiki-users] newbie question: How change 'Welcome to your Wiki' text?

2009-10-23 Thread Marius Dumitru Florea
Hi Mark, mark_marzi...@bcbsil.com wrote: Hi, Like to change 'Welcome to your Wiki' on WebHome to something else. Sorry, just can't see how to do it. Editing the page doesn't bring up anything obvious. Poked around in header.vm and other templates. Not seeing it. In edit mode there is

Re: [xwiki-users] Problem editing pages

2009-11-02 Thread Marius Dumitru Florea
Hi Mike, Mike Ruocco wrote: Hello, We are having a problem with Xwiki 2.0.2. Everything was working for a few days but now when people go to edit their pages they do not get a drop down for the Edit button. You can only click edit and it brings you to the Wysiwyg editor. If there are

  1   2   3   4   5   6   7   8   9   10   >