Re: [Wicket-user] tinyMCE + weblogic problems

2007-05-24 Thread Iulian Costan

please send the wrapped exception.

and also check if you have  commons-collections-3.1 in classpath.

/iulian


On 5/23/07, Apaar Trivedi [EMAIL PROTECTED] wrote:


 Hey guys, When we try to use tiny mce for wicket 1.3 w/ weblogic we get
this error in our startup:



javax.servlet.ServletException:
org/apache/commons/collections/set/ListOrderedSet

at weblogic.servlet.internal.ServletStubImpl.invokeServlet(
ServletStubImpl.java:532)

at weblogic.servlet.internal.TailFilter.doFilter(
TailFilter.java:32)

at weblogic.servlet.internal.FilterChainImpl.doFilter(
FilterChainImpl.java:27)

at com.dell.ren.servlet.RenAuthenticationFilter.doFilter(
RenAuthenticationFilter.java:161)

at weblogic.servlet.internal.FilterChainImpl.doFilter(
FilterChainImpl.java:27)

at
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run
(WebAppServletContext.java:7049)

at weblogic.security.acl.internal.AuthenticatedSubject.doAs(
AuthenticatedSubject.java:321)

at weblogic.security.service.SecurityManager.runAs(
SecurityManager.java:121)

at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(
WebAppServletContext.java:3732)

at weblogic.servlet.internal.ServletRequestImpl.execute(
ServletRequestImpl.java:2773)

at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java
:224)

at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)



And this prevents us from being able to use tinyMCE.  Any ideas?  Any help
is appreciated.  Thanks!





-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] tinyMCE + weblogic problems

2007-05-23 Thread Apaar Trivedi
Hey guys, When we try to use tiny mce for wicket 1.3 w/ weblogic we get
this error in our startup:

 

javax.servlet.ServletException:
org/apache/commons/collections/set/ListOrderedSet

at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.
java:532)

at
weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:32)

at
weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:
27)

at
com.dell.ren.servlet.RenAuthenticationFilter.doFilter(RenAuthenticationF
ilter.java:161)

at
weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:
27)

at
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.r
un(WebAppServletContext.java:7049)

at
weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSu
bject.java:321)

at
weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121
)

at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServl
etContext.java:3732)

at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.
java:2773)

at
weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)

at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

 

And this prevents us from being able to use tinyMCE.  Any ideas?  Any
help is appreciated.  Thanks!

 

 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE for wicket 1.3 not a panel???

2007-05-04 Thread Iulian Costan

yes, quite outdated, it references the old package structure, i'll take care
of it.

/syca

On 5/3/07, Apaar Trivedi [EMAIL PROTECTED] wrote:


 Hey all, I am trying to get a TinyMCEPanel jar for Wicket 1.3.  I've
gotten the tinymce contrib. from the wicketstuff trunk, and attempted to
compile and package it using the maven script.  It compiles just fine but
when I go to build the packages, I get this error in a few place:



c:\Eclipse_WS\wicketstuff\wicket-stuff_trunk\wicket-contrib-tinymce\src\test\wicket\contrib\tinymce\TinyMCEPanelTest.java:[63,39]
incompatible types

found   : wicket.contrib.tinymce.TinyMCEPanel

required: org.apache.wicket.markup.html.panel.Panel



and basically this is occurring everywhere the TinyMCEPanel object is
being returned.  This mcepanel is definitely a sub class of a wicket panel,
and I am confident the maven script is using wicket 1.3 incubator
snapshot.  When I remove the test classes I can build the package just
fine.  But when I attempt to use this mce jar in my wicket application, I
cannot add this TinyMCEPanel object to the markup container because it
thinks it is not a component.  Basically the same problem the test is
having.



Does anyone know what is going on with this, or is there a pre-built jar
against wicket 1.3 out there which works?



Any help is appreciated.  Thanks.



-Par



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] TinyMCE for wicket 1.3 not a panel???

2007-05-03 Thread Apaar Trivedi
Hey all, I am trying to get a TinyMCEPanel jar for Wicket 1.3.  I've
gotten the tinymce contrib. from the wicketstuff trunk, and attempted to
compile and package it using the maven script.  It compiles just fine
but when I go to build the packages, I get this error in a few place:

 

c:\Eclipse_WS\wicketstuff\wicket-stuff_trunk\wicket-contrib-tinymce\src\
test\wicket\contrib\tinymce\TinyMCEPanelTest.java:[63,39] incompatible
types

found   : wicket.contrib.tinymce.TinyMCEPanel

required: org.apache.wicket.markup.html.panel.Panel

 

and basically this is occurring everywhere the TinyMCEPanel object is
being returned.  This mcepanel is definitely a sub class of a wicket
panel, and I am confident the maven script is using wicket 1.3 incubator
snapshot.  When I remove the test classes I can build the package just
fine.  But when I attempt to use this mce jar in my wicket application,
I cannot add this TinyMCEPanel object to the markup container because it
thinks it is not a component.  Basically the same problem the test is
having.  

 

Does anyone know what is going on with this, or is there a pre-built jar
against wicket 1.3 out there which works?

 

Any help is appreciated.  Thanks.

 

-Par

 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-25 Thread Ted Roeloffzen
Ok, thanksOn 9/22/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
IANAL, but this is really only a problem in the sense that we'll notmoving the component to Apache. But the wicket-stuff project is meantto stay at sourceforge anyway.I don't think it's a problem for end-users.
EelcoOn 9/22/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: Ok that is good news, but we still have the problem that the licenses of TinyMCE and Wicket might be incompatible.
-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share youropinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-25 Thread Martijn Dashorst
Just for those that want to sell the whole package. And only if you
change the javascript file iirc.

If you make it a plugin, and keep that a separate download, it can
have lgpl, gpl or any other license, provided that you may distribute
the incompatible file(s).

Martijn

On 9/22/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
 IANAL, but this is really only a problem in the sense that we'll not
 moving the component to Apache. But the wicket-stuff project is meant
 to stay at sourceforge anyway.

 I don't think it's a problem for end-users.

 Eelco

 On 9/22/06, Ted Roeloffzen [EMAIL PROTECTED] wrote:
  Ok that is good news, but we still have the problem that the licenses of
  TinyMCE and Wicket might be incompatible.

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and ModalWindow
-- http://wicketframework.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-22 Thread Ted Roeloffzen
Ok that is good news, but we still have the problem that the licenses of TinyMCE and Wicket might be incompatible.On 9/22/06, Eelco Hillenius 
[EMAIL PROTECTED] wrote:Checked it now, and the current release of tinymce does not work well.
However, this issuehttp://sourceforge.net/tracker/index.php?func=detailaid=1440124group_id=103281atid=635682
suggests the problem I'm experiencing will be gone with the nextrelease.EelcoOn 9/21/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
 I also have an open bug report for the system that I'm working on that tinymce doesn't work well with the latest Safari. I haven't checked that yet though... maybe other people have experience with that?
 Eelco On 9/21/06, Martijn Dashorst [EMAIL PROTECTED] wrote:  Just one caveat: tinymce is LGPL last time I checked... not sure how
  this works out, but you can't guarantee that the CMS is then Apache  licensed (if that is what you're aiming for).   Martijn   On 9/21/06, Janne Hietamäki 
[EMAIL PROTECTED] wrote: On Sep 21, 2006, at 10:31 AM, Ted Roeloffzen wrote:  Some of you may know that we are trying to create a CMS or a least
CMS-components with Wicket. When i looked at the Wicket-stuff sitea saw that there is a project to integrate TinyMCE into Wicket. Iwas wondering if anyone knows how far along this project is. It
could be a fine addition to the CMS-components.  wicket-contrib-tinymce works greatfor me, just give it a try.  
   Janne -   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to share your   opinions on IT  business topics through brief surveys -- and earn cash   
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV   ___   Wicket-user mailing list   
Wicket-user@lists.sourceforge.net   https://lists.sourceforge.net/lists/listinfo/wicket-user
  --  Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and ModalWindow  -- http://wicketframework.org   -
  Take Surveys. Earn Cash. Influence the Future of IT  Join SourceForge.net's Techsay panel and you'll get the chance to share your  opinions on IT  business topics through brief surveys -- and earn cash
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV  ___
  Wicket-user mailing list  Wicket-user@lists.sourceforge.net  
https://lists.sourceforge.net/lists/listinfo/wicket-user -Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share youropinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-22 Thread Eelco Hillenius
IANAL, but this is really only a problem in the sense that we'll not
moving the component to Apache. But the wicket-stuff project is meant
to stay at sourceforge anyway.

I don't think it's a problem for end-users.

Eelco

On 9/22/06, Ted Roeloffzen [EMAIL PROTECTED] wrote:
 Ok that is good news, but we still have the problem that the licenses of
 TinyMCE and Wicket might be incompatible.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-21 Thread Martijn Dashorst
Just one caveat: tinymce is LGPL last time I checked... not sure how
this works out, but you can't guarantee that the CMS is then Apache
licensed (if that is what you're aiming for).

Martijn

On 9/21/06, Janne Hietamäki [EMAIL PROTECTED] wrote:

 On Sep 21, 2006, at 10:31 AM, Ted Roeloffzen wrote:

  Some of you may know that we are trying to create a CMS or a least
  CMS-components with Wicket. When i looked at the Wicket-stuff site
  a saw that there is a project to integrate TinyMCE into Wicket. I
  was wondering if anyone knows how far along this project is. It
  could be a fine addition to the CMS-components.
 


 wicket-contrib-tinymce works great  for me, just give it a try.

 Janne



 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and ModalWindow
-- http://wicketframework.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-21 Thread Eelco Hillenius
I also have an open bug report for the system that I'm working on that
tinymce doesn't work well with the latest Safari. I haven't checked
that yet though... maybe other people have experience with that?

Eelco


On 9/21/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 Just one caveat: tinymce is LGPL last time I checked... not sure how
 this works out, but you can't guarantee that the CMS is then Apache
 licensed (if that is what you're aiming for).

 Martijn

 On 9/21/06, Janne Hietamäki [EMAIL PROTECTED] wrote:
 
  On Sep 21, 2006, at 10:31 AM, Ted Roeloffzen wrote:
 
   Some of you may know that we are trying to create a CMS or a least
   CMS-components with Wicket. When i looked at the Wicket-stuff site
   a saw that there is a project to integrate TinyMCE into Wicket. I
   was wondering if anyone knows how far along this project is. It
   could be a fine addition to the CMS-components.
  
 
 
  wicket-contrib-tinymce works great  for me, just give it a try.
 
  Janne
 
 
 
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to share your
  opinions on IT  business topics through brief surveys -- and earn cash
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 


 --
 Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and 
 ModalWindow
 -- http://wicketframework.org

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] TinyMCE integration

2006-09-21 Thread Ted Roeloffzen
Some of you may know that we are trying to create a CMS or a least CMS-components with Wicket. When i looked at the Wicket-stuff site a saw that there is a project to integrate TinyMCE into Wicket. I was wondering if anyone knows how far along this project is. It could be a fine addition to the CMS-components.
Greets,Ted
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-21 Thread Janne Hietamäki

On Sep 21, 2006, at 10:31 AM, Ted Roeloffzen wrote:

 Some of you may know that we are trying to create a CMS or a least  
 CMS-components with Wicket. When i looked at the Wicket-stuff site  
 a saw that there is a project to integrate TinyMCE into Wicket. I  
 was wondering if anyone knows how far along this project is. It  
 could be a fine addition to the CMS-components.



wicket-contrib-tinymce works great  for me, just give it a try.

Janne



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE integration

2006-09-21 Thread Eelco Hillenius
Checked it now, and the current release of tinymce does not work well.
However, this issue
http://sourceforge.net/tracker/index.php?func=detailaid=1440124group_id=103281atid=635682
suggests the problem I'm experiencing will be gone with the next
release.

Eelco

On 9/21/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
 I also have an open bug report for the system that I'm working on that
 tinymce doesn't work well with the latest Safari. I haven't checked
 that yet though... maybe other people have experience with that?

 Eelco


 On 9/21/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
  Just one caveat: tinymce is LGPL last time I checked... not sure how
  this works out, but you can't guarantee that the CMS is then Apache
  licensed (if that is what you're aiming for).
 
  Martijn
 
  On 9/21/06, Janne Hietamäki [EMAIL PROTECTED] wrote:
  
   On Sep 21, 2006, at 10:31 AM, Ted Roeloffzen wrote:
  
Some of you may know that we are trying to create a CMS or a least
CMS-components with Wicket. When i looked at the Wicket-stuff site
a saw that there is a project to integrate TinyMCE into Wicket. I
was wondering if anyone knows how far along this project is. It
could be a fine addition to the CMS-components.
   
  
  
   wicket-contrib-tinymce works great  for me, just give it a try.
  
   Janne
  
  
  
   -
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to share 
   your
   opinions on IT  business topics through brief surveys -- and earn cash
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
  --
  Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and 
  ModalWindow
  -- http://wicketframework.org
 
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to share your
  opinions on IT  business topics through brief surveys -- and earn cash
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] TinyMCE issues with resources

2006-08-15 Thread Robert McClay
I'm using wicket 1.2 jar and wicket-contrib-tinymce-1.0-SNAPSHOT.jar 
(built in maven from checking out 1.2 branch of wicket-stuff)

I've added TinyMCEPanel to my page via add(new TinyMCEPanel(tinyMCE));

When I click on the page (I'm using Fire Fox 1.5.0.6 under OS X), the 
following javascript errors are reported in the console:

Error: this.contentWindow has no properties
Source File: 
http://localhost:9092/car/loads/resources/wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/tiny_mce_src.js
Line: 

2395

Error: editorTemplate has no properties
Source File: 
http://localhost:9092/car/loads/resources/wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/tiny_mce_src.js
Line: 

3372

When I look at the java console, the following is reported:

15 Aug 2006 10:18:26,317 ERROR resource.SharedResourceRequestTarget - 
shared resource 
wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/themes/simple/editor_template_src.js
 
not found
15 Aug 2006 10:18:26,331 ERROR resource.SharedResourceRequestTarget - 
shared resource 
wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/langs/en.js not found
15 Aug 2006 10:18:26,351 ERROR resource.SharedResourceRequestTarget - 
shared resource 
wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/themes/simple/css/editor_ui.css 
not found

So it appears not to have issues requesting 
http://localhost:9092/car/loads/resources/wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/tiny_mce_src.js,
 
but the other resources are failing.

Any ideas? Thanks.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] tinymce spellchecker

2006-06-02 Thread Iulian Costan
hi,i just want to let you know about new tinymce spellchecking feature. in order to use it you have to download a href="" href="http://sourceforge.net/projects/jazzy">http://sourceforge.net/projects/jazzy
Jazzy Spell Check/a API and install it into mvn local repo (mvn install:install-file -DgroupId=jazzyplugin -DartifactId=jazzyplugin -Dversion=0.2.1 -Dpackaging=jar -Dfile=/path/to/jar/file)to get it running do: 
cd wicket-contrib-tinymce  mvn installcd ../wicket-contrib-tinymce-examples  mvn jetty6:run point you browser to http://localhost:8080/wicket-contrib-tinymce-examples
 go to full featured example page and enjoy./iulian


Re: [Wicket-user] tinymce spellchecker

2006-06-02 Thread Eelco Hillenius
Nice, thanks a lot!

Eelco

On 6/2/06, Iulian Costan [EMAIL PROTECTED] wrote:
 hi,

 i just want to let you know about new tinymce spellchecking feature. in
 order to use it you have to download a
 href=http://sourceforge.net/projects/jazzy Jazzy Spell
 Check/a API and install it into mvn local repo (mvn install:install-file
 -DgroupId=jazzyplugin -DartifactId=jazzyplugin -Dversion=0.2.1
 -Dpackaging=jar -Dfile=/path/to/jar/file)

 to get it running do:
 cd wicket-contrib-tinymce  mvn install
 cd ../wicket-contrib-tinymce-examples  mvn jetty6:run
 point you browser to
 http://localhost:8080/wicket-contrib-tinymce-examples
 go to full featured example page and enjoy.

 /iulian



___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE

2006-05-08 Thread Alexander Lohse

The Pattern seems to be wrong/not working.

After quite some testing I found the following working:

PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile 
(.*\\.js), true);
PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile 
(.*\\.html), true);
PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile 
(.*\\.htm), true);
PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile 
(.*\\.css), true);
PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile 
(.*\\.gif), true);


When I use a code like this:

PackageResource.bind(getApplication(), MyPage.class, Pattern.compile 
(^images.*(.jpg|.gif|.png)$), true);


is the resource still referenced as images/toolbar-bg-orange.png or  
just toolbar-bg-orange.png?


In my code the above does not work.  But manually loading works:

PackageResource.bind(getApplication(), MyPage.class, images/toolbar- 
bg-orange.png);


Thanks for any idea,

Alex

Am 02.05.2006 um 09:45 schrieb Johan Compagner:


what goes wrong exactly at youre end?
doesn't it match specific resources?

johan


On 5/2/06, Alexander Lohse  [EMAIL PROTECTED] wrote:I found a  
problem that is related to loading shared resources.


The following code taken from the examples does not work:

PackageResource.bind(getApplication(), MyPage.class, Pattern.compile
(^images.*(.jpg|.gif|.png)$), true);

Is there a bug in 1.2 RC3/RC1? Or is there something wrong with the
pattern?

Thanks for any help,

Alex

Am 01.05.2006 um 18:06 schrieb Alexander Lohse:

 Hi,

 I have problems using the tinymce integration. Javascript keeps
 complaining about a missing template function.
 Any idea what I might have done wrong?

 Regards,

 Alex
 –––
 Alexander Lohse
 (Entwicklungsleitung  Projektmanagement)

 Human Touch Medienproduktion GmbH
 Am See 1
 17440 Klein Jasedow
 Deutschland

 Tel: +49 38374 752 11
 Fax: +49 38374 752 23
 e-mail: [EMAIL PROTECTED]
 Internet: http://www.webjazz.de
 –––




 ---
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make your
 job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

–––
Alexander Lohse
(Entwicklungsleitung  Projektmanagement)

Human Touch Medienproduktion GmbH
Am See 1
17440 Klein Jasedow
Deutschland

Tel: +49 38374 752 11
Fax: +49 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
Using Tomcat but need to do more? Need to support web services,  
security?
Get stuff done quickly with pre-integrated technology to make your  
job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache  
Geronimo

http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user







---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE

2006-05-08 Thread Johan Compagner
Don't know wy you have to specify them once for a extentions.About that recursive thing:We do this: if (recurse){ addResources(scope, pattern, resources, new StringBuffer(relativePath
   .toString()).append(file.getName()).append('/'), file, recurse);}And i guess that is wrong. We append the relativePath. And the relativie path should not change
Because the file is already relative for that path..Can you debug it a bit?On 5/8/06, Alexander Lohse [EMAIL PROTECTED]
 wrote:The Pattern seems to be wrong/not working.After quite some testing I found the following working:
PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.js), true);PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.html), true);
PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.htm), true);PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.css), true);PackageResource.bind
(application, TinyMCEPanel.class, Pattern.compile(.*\\.gif), true);When I use a code like this:PackageResource.bind(getApplication(), MyPage.class, Pattern.compile(^images.*(.jpg|.gif|.png)$), true);
is the resource still referenced as images/toolbar-bg-orange.png orjust toolbar-bg-orange.png?In my code the above does not work.But manually loading works:PackageResource.bind
(getApplication(), MyPage.class, images/toolbar-bg-orange.png);Thanks for any idea,AlexAm 02.05.2006 um 09:45 schrieb Johan Compagner: what goes wrong exactly at youre end?
 doesn't it match specific resources? johan On 5/2/06, Alexander Lohse  [EMAIL PROTECTED] wrote:I found a problem that is related to loading shared resources.
 The following code taken from the examples does not work: PackageResource.bind(getApplication(), MyPage.class, Pattern.compile (^images.*(.jpg|.gif|.png)$), true);
 Is there a bug in 1.2 RC3/RC1? Or is there something wrong with the pattern? Thanks for any help, Alex Am 01.05.2006 um 18:06 schrieb Alexander Lohse:
  Hi,   I have problems using the tinymce integration. _javascript_ keeps  complaining about a missing template function.  Any idea what I might have done wrong?
   Regards,   Alex  –––  Alexander Lohse  (Entwicklungsleitung  Projektmanagement)   Human Touch Medienproduktion GmbH
  Am See 1  17440 Klein Jasedow  Deutschland   Tel: +49 38374 752 11  Fax: +49 38374 752 23  e-mail: [EMAIL PROTECTED]
  Internet: http://www.webjazz.de  –––  ---
  Using Tomcat but need to do more? Need to support web services,  security?  Get stuff done quickly with pre-integrated technology to make your  job easier  Download IBM WebSphere Application Server 
v.1.0.1 based on Apache  Geronimo  http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
  ___  Wicket-user mailing list  Wicket-user@lists.sourceforge.net  
https://lists.sourceforge.net/lists/listinfo/wicket-user ––– Alexander Lohse (Entwicklungsleitung  Projektmanagement) Human Touch Medienproduktion GmbH
 Am See 1 17440 Klein Jasedow Deutschland Tel: +49 38374 752 11 Fax: +49 38374 752 23 e-mail: [EMAIL PROTECTED] Internet: 
http://www.webjazz.de ––– --- Using Tomcat but need to do more? Need to support web services,
 security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] TinyMCE

2006-05-08 Thread Iulian Costan
it was fixed two days back, now everything should be fine. i updated to tinymce 2.0.6.1 version as well and applied Frank's patch. please do and update and let me know if it works for you. 
iulianOn 5/8/06, Alexander Lohse [EMAIL PROTECTED] wrote:
The Pattern seems to be wrong/not working.After quite some testing I found the following working:PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.js), true);PackageResource.bind
(application, TinyMCEPanel.class, Pattern.compile(.*\\.html), true);PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.htm), true);PackageResource.bind(application, 
TinyMCEPanel.class, Pattern.compile(.*\\.css), true);PackageResource.bind(application, TinyMCEPanel.class, Pattern.compile(.*\\.gif), true);When I use a code like this:PackageResource.bind
(getApplication(), MyPage.class, Pattern.compile(^images.*(.jpg|.gif|.png)$), true);is the resource still referenced as images/toolbar-bg-orange.png orjust toolbar-bg-orange.png
?In my code the above does not work.But manually loading works:PackageResource.bind(getApplication(), MyPage.class, images/toolbar-bg-orange.png);Thanks for any idea,
AlexAm 02.05.2006 um 09:45 schrieb Johan Compagner: what goes wrong exactly at youre end? doesn't it match specific resources? johan On 5/2/06, Alexander Lohse  
[EMAIL PROTECTED] wrote:I found a problem that is related to loading shared resources. The following code taken from the examples does not work:
 PackageResource.bind(getApplication(), MyPage.class, Pattern.compile (^images.*(.jpg|.gif|.png)$), true); Is there a bug in 1.2 RC3/RC1? Or is there something wrong with the pattern?
 Thanks for any help, Alex Am 01.05.2006 um 18:06 schrieb Alexander Lohse:  Hi,   I have problems using the tinymce integration. _javascript_ keeps
  complaining about a missing template function.  Any idea what I might have done wrong?   Regards,   Alex  –––
  Alexander Lohse  (Entwicklungsleitung  Projektmanagement)   Human Touch Medienproduktion GmbH  Am See 1  17440 Klein Jasedow  Deutschland
   Tel: +49 38374 752 11  Fax: +49 38374 752 23  e-mail: [EMAIL PROTECTED]  Internet: http://www.webjazz.de
  –––  ---  Using Tomcat but need to do more? Need to support web services,
  security?  Get stuff done quickly with pre-integrated technology to make your  job easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache  Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642  ___
  Wicket-user mailing list  Wicket-user@lists.sourceforge.net  
https://lists.sourceforge.net/lists/listinfo/wicket-user ––– Alexander Lohse (Entwicklungsleitung  Projektmanagement) Human Touch Medienproduktion GmbH
 Am See 1 17440 Klein Jasedow Deutschland Tel: +49 38374 752 11 Fax: +49 38374 752 23 e-mail: [EMAIL PROTECTED] Internet: 
http://www.webjazz.de ––– --- Using Tomcat but need to do more? Need to support web services,
 security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] TinyMCE

2006-05-02 Thread Johan Compagner
what goes wrong exactly at youre end?doesn't it match specific resources?johanOn 5/2/06, Alexander Lohse 
[EMAIL PROTECTED] wrote:I found a problem that is related to loading shared resources.
The following code taken from the examples does not work:PackageResource.bind(getApplication(), MyPage.class, Pattern.compile(^images.*(.jpg|.gif|.png)$), true);Is there a bug in 1.2
 RC3/RC1? Or is there something wrong with thepattern?Thanks for any help,AlexAm 01.05.2006 um 18:06 schrieb Alexander Lohse: Hi, I have problems using the tinymce integration. _javascript_ keeps
 complaining about a missing template function. Any idea what I might have done wrong? Regards, Alex ––– Alexander Lohse
 (Entwicklungsleitung  Projektmanagement) Human Touch Medienproduktion GmbH Am See 1 17440 Klein Jasedow Deutschland Tel: +49 38374 752 11 Fax: +49 38374 752 23
 e-mail: [EMAIL PROTECTED] Internet: http://www.webjazz.de –––
 --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your
 job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user–––Alexander Lohse(Entwicklungsleitung  Projektmanagement)Human Touch Medienproduktion GmbHAm See 1
17440 Klein JasedowDeutschlandTel: +49 38374 752 11Fax: +49 38374 752 23e-mail: [EMAIL PROTECTED]Internet: http://www.webjazz.de
–––---Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE

2006-05-02 Thread Iulian Costan
latest code from svn trunk seems to work fine, at least in my firefox on linux. i dont have IE around. are you able to see some pages or JS error shows up immediately?pls try tinymce-example module as well.
iulianOn 5/1/06, Alexander Lohse [EMAIL PROTECTED] wrote:
Hi,I have problems using the tinymce integration. _javascript_ keepscomplaining about a missing template function.Any idea what I might have done wrong?Regards,Alex–––
Alexander Lohse(Entwicklungsleitung  Projektmanagement)Human Touch Medienproduktion GmbHAm See 117440 Klein JasedowDeutschlandTel: +49 38374 752 11Fax: +49 38374 752 23e-mail: 
[EMAIL PROTECTED]Internet: http://www.webjazz.de–––---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



[Wicket-user] TinyMCE

2006-05-01 Thread Alexander Lohse

Hi,

I have problems using the tinymce integration. Javascript keeps  
complaining about a missing template function.

Any idea what I might have done wrong?

Regards,

Alex
–––
Alexander Lohse
(Entwicklungsleitung  Projektmanagement)

Human Touch Medienproduktion GmbH
Am See 1
17440 Klein Jasedow
Deutschland

Tel: +49 38374 752 11
Fax: +49 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE

2006-05-01 Thread Alexander Lohse

I found a problem that is related to loading shared resources.

The following code taken from the examples does not work:

PackageResource.bind(getApplication(), MyPage.class, Pattern.compile 
(^images.*(.jpg|.gif|.png)$), true);


Is there a bug in 1.2 RC3/RC1? Or is there something wrong with the  
pattern?


Thanks for any help,

Alex

Am 01.05.2006 um 18:06 schrieb Alexander Lohse:


Hi,

I have problems using the tinymce integration. Javascript keeps  
complaining about a missing template function.

Any idea what I might have done wrong?

Regards,

Alex
–––
Alexander Lohse
(Entwicklungsleitung  Projektmanagement)

Human Touch Medienproduktion GmbH
Am See 1
17440 Klein Jasedow
Deutschland

Tel: +49 38374 752 11
Fax: +49 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
Using Tomcat but need to do more? Need to support web services,  
security?
Get stuff done quickly with pre-integrated technology to make your  
job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache  
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


–––
Alexander Lohse
(Entwicklungsleitung  Projektmanagement)

Human Touch Medienproduktion GmbH
Am See 1
17440 Klein Jasedow
Deutschland

Tel: +49 38374 752 11
Fax: +49 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE component

2005-10-12 Thread Iulian-Corneliu COSTAN
I've refactored tinymce component and now it is jdk1.4 compatible. 

iulian
On 10/9/05, Eelco Hillenius [EMAIL PROTECTED] wrote:
I haven't looked in detail at it, but I think that would be easy todo. Only if Lulian wants that of course.
EelcoOn 10/9/05, Johan Compagner [EMAIL PROTECTED] wrote: i would love to use it in but i see it is tied to java 5Is it possible to downgrade it ? Because currently we can't use java 5 in
 most of our projects. On 10/8/05, Iulian Costan  [EMAIL PROTECTED] wrote:   Hi,   The Wicket TinyMCE component (see also 
http://tinymce.moxiecode.com/) is available within wicket-stuff project.  Please co wicket-contrib-tinymce and wicket-contrib-tinymce-examples to see it in action.
   .iulian---This SF.Net email is sponsored by:Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE component

2005-10-10 Thread Eelco Hillenius
Though I haven't looked into details of this component yet, generally
what such 'rich' components can do for you is:
* Do the header contributions so you don't have to find out what
javascript and css to include and on what pages to put it.
* Take care of any configuration code. Besides including the
javascript and css dependencies you usually have to include one or
more configuration lines in javascript. When the component does that
for you, you don't have to know any TinyMCE internals at all.
* Create an abstraction on the common configuration options so that
the common configuration alternatives are easier to use/ switch.

Eelco

On 10/10/05, Nick Heudecker [EMAIL PROTECTED] wrote:
 I'm using TinyMCE in my Wicket project and didn't need to do anything
 special with Wicket to use it.  What does this contribution provide?


 On 10/9/05, Eelco Hillenius [EMAIL PROTECTED] wrote:
 
  I haven't looked in detail at it, but I think that would be easy to
  do. Only if Lulian wants that of course.
 
  Eelco
 
  On 10/9/05, Johan Compagner [EMAIL PROTECTED]  wrote:
   i would love to use it in but i see it is tied to java 5
Is it possible to downgrade it ? Because currently we can't use java 5
 in
   most of our projects.
  
  
   On 10/8/05, Iulian Costan  [EMAIL PROTECTED] wrote:
   
Hi,
   
The Wicket TinyMCE component (see also http://tinymce.moxiecode.com/ )
 is
   available within wicket-stuff project.
Please co wicket-contrib-tinymce and wicket-contrib-tinymce-examples
 to
   see it in action.
   
.iulian
  
  
 
 
  ---
  This SF.Net email is sponsored by:
  Power Architecture Resource Center: Free content, downloads, discussions,
  and more. http://solutions.newsforge.com/ibmarch.tmpl
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 




---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE component

2005-10-09 Thread Johan Compagner
i would love to use it in but i see it is tied to java 5
Is it possible to downgrade it ? Because currently we can't use java 5 in most of our projects.On 10/8/05, Iulian Costan 
[EMAIL PROTECTED] wrote:Hi,

The Wicket TinyMCE component (see also http://tinymce.moxiecode.com/) is available within wicket-stuff project.

Please co wicket-contrib-tinymce and wicket-contrib-tinymce-examples to see it in action.

.iulian




Re: [Wicket-user] TinyMCE component

2005-10-09 Thread Eelco Hillenius
I haven't looked in detail at it, but I think that would be easy to
do. Only if Lulian wants that of course.

Eelco

On 10/9/05, Johan Compagner [EMAIL PROTECTED] wrote:
 i would love to use it in but i see it is tied to java 5
  Is it possible to downgrade it ? Because currently we can't use java 5 in
 most of our projects.


 On 10/8/05, Iulian Costan  [EMAIL PROTECTED] wrote:
 
  Hi,
 
  The Wicket TinyMCE component (see also http://tinymce.moxiecode.com/) is
 available within wicket-stuff project.
  Please co wicket-contrib-tinymce and wicket-contrib-tinymce-examples to
 see it in action.
 
  .iulian




---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] TinyMCE component

2005-10-09 Thread Nick Heudecker
I'm using TinyMCE in my Wicket project and didn't need to do anything
special with Wicket to use it. What does this contribution
provide?On 10/9/05, Eelco Hillenius [EMAIL PROTECTED] wrote:
I haven't looked in detail at it, but I think that would be easy todo. Only if Lulian wants that of course.EelcoOn 10/9/05, Johan Compagner [EMAIL PROTECTED]
 wrote: i would love to use it in but i see it is tied to java 5Is it possible to downgrade it ? Because currently we can't use java 5 in most of our projects. On 10/8/05, Iulian Costan  
[EMAIL PROTECTED] wrote:   Hi,   The Wicket TinyMCE component (see also http://tinymce.moxiecode.com/
) is available within wicket-stuff project.  Please co wicket-contrib-tinymce and wicket-contrib-tinymce-examples to see it in action.   .iulian
---This SF.Net email is sponsored by:Power Architecture Resource Center: Free content, downloads, discussions,and more. 
http://solutions.newsforge.com/ibmarch.tmpl___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] TinyMCE component

2005-10-08 Thread Iulian Costan
Hi,

The Wicket TinyMCE component (see also http://tinymce.moxiecode.com/) is available within wicket-stuff project.
Please co wicket-contrib-tinymce and wicket-contrib-tinymce-examples to see it in action.

.iulian