Open source Wicket blog

2009-10-14 Thread Daniel Frisk
Hi, we have developed a blog tool in Wicket for our website. I just wanted to see if there is any interest in having that as an open source project? The code would have to be adopted for general use and be untangled from some dependencies that we don't want to open source, so I just want

Re: Open source Wicket blog

2009-10-14 Thread Martin Makundi
It would be nice to bundle a wicket app with a blog site yes! The challenge is how to make it open such that it is easy (=lightweight) to attach to any particular conventions (authentication, memberships, etc.) of the main site. ** Martin 2009/10/14 Daniel Frisk dan...@jalbum.net: Hi, we have

Re: Open source Wicket blog

2009-10-14 Thread Thomas Singer
Hi Daniel, We are currently using Pebble which has the advantage of storing the blog content in plain text files. But its development seems to have stalled, so I'm searching an alternative. Using a blog tool which uses Wicket would be of much interest to me, because we use Wicket for our website

Re: Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-14 Thread Giovanni
The bank is Intesa San Paolo: http://www.group.intesasanpaolo.com This is the english link: http://group.intesasanpaolo.com/scriptIsir0/isInvestor/eng/home/eng_index.jsp Our wicket webapps are still in development. They will be released at the end of this year. The system is made of two

Re: Open source Wicket blog

2009-10-14 Thread sfussenegger
I'd really love to bundle a blog with some webapps (mainly to get same look-and-feel, authentication and reduce maintenance). However, it really should be feature-complete in order to be usable (feeds, comment moderation, spam protection, pings and trackbacks, nice admin interface, nice editor,

Re: Website 2.0

2009-10-14 Thread Daniel Frisk
This isn't offical or anything but I know how interesting technical details are. So here it goes, just for you (and the list of course :-) Hits are ~10 MPages / day with thousands of new users each day so it's steadily increasing. We run our own hosting and try to keep it cost efficent.

Announcement: Annotation-based Mounting of Resources

2009-10-14 Thread Stefan Fussenegger
Today, I’m happy to announce the availability of annotation-based mounting and merging of resources in wicketstuff-merged-resources (version 3.0-SNAPSHOT for Wicket 1.4, version 2.1-SNAPSHOT for Wicket 1.3). In order to mount resources, all that’s needed is adding annotations to component

Re: Right justify in DataTable

2009-10-14 Thread Swanthe Lindgren
Try this (cut and pasted from the inmethod-grid-examples app) new PropertyColumn(new ResourceModel(NumberCol), NumberCol, NumberCol) { private static final long serialVersionUID = 1L; @Override public String getCellCssClass(IModel rowModel, int rowNum) {

Re: Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-14 Thread david
JSP? Giovanni pino_o...@yahoo.com wrote .. The bank is Intesa San Paolo: http://www.group.intesasanpaolo.com This is the english link: http://group.intesasanpaolo.com/scriptIsir0/isInvestor/eng/home/eng_index.jsp Our wicket webapps are still in development. They will be released at the

Re: Open source Wicket blog

2009-10-14 Thread david
How are the blogs stored? Daniel Frisk dan...@jalbum.net wrote .. Hi, we have developed a blog tool in Wicket for our website. I just wanted to see if there is any interest in having that as an open source project? The code would have to be adopted for general use and be untangled

Re: Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-14 Thread Ernesto Reinaldo Barreiro
He mentioned new site is not yet finished;-). Otherwise what stops you from mounting a Wicket page on an URL ending on .jsp?:) Ernesto On Wed, Oct 14, 2009 at 10:17 AM, da...@davidwbrown.name wrote: JSP? Giovanni pino_o...@yahoo.com wrote .. The bank is Intesa San Paolo:

Re: Open source Wicket blog

2009-10-14 Thread Daniel Frisk
We store the blog posts in a database. If we decide to open source it I will of course add some interface for generic storage so you can use whatever you see fit. Might include a file storage facility as default so you can get it up and running easily. // Daniel jalbum.net On 2009-10-14,

Re: Open source Wicket blog

2009-10-14 Thread Anton Veretennikov
I'm interested. This will be definitely something desirable for many website builders. I want to assist in developing because I need such functionality in several sites. -- Tony On Wed, Oct 14, 2009 at 2:30 PM, Daniel Frisk dan...@jalbum.net wrote: Hi, we have developed a blog tool in Wicket

Re: FileUpload and events

2009-10-14 Thread Thorsten Scherler
On Tue, 2009-10-13 at 08:14 -0700, Ian Marshall wrote: I am coding for just this event, to try and work around my own FileUploadField problem. My AJAX works using code very similar to yours (thanks for the example)! You are welcome. Need to catch up on your posts around this issue (this list

Re: FileUpload and events

2009-10-14 Thread Thorsten Scherler
On Tue, 2009-10-13 at 06:23 -0700, Ian Marshall wrote: Thorsten Scherler-3 wrote: Nobody any tips or infos? salu2 In the source code for the org.apache.wicket.markup.html.form.upload.FileUploadField class there is the class-level comment FILE UPLOADS ARE NOT SUPPORTED BY AJAX.

inmethod grid acts strange on reorder

2009-10-14 Thread Swanthe Lindgren
Hi all My IDataSource delivers LDM models that uses the ReuseIfModelsEqualStrategy to my data grid and does it well when I enter the page containing the grid or when switching between pages in my grid. It also does a good job if I edit one of the rows in the grid, by only updating that

Re: Transaction filters and redirection problem

2009-10-14 Thread Iain Reddick
For anyone in this situation (having to use a transaction filter), here is a solution that uses a response wrapper to delay the redirect until after the transaction has completed: private class DelayedRedirectWrapper extends HttpServletResponseWrapper { private String redirectLocation;

Nullable resource link

2009-10-14 Thread Iain Reddick
Hi, I need to display a resource link conditionally, based on whether a resource exists, or is null. The resource itself is bytes in a database and should not be anchored to a component. How should I handle this, with regard to the resource being nullable? Thanks. iainr

Re: FileUpload and events

2009-10-14 Thread Ian Marshall
Thorsten Scherler-3 wrote: You say yours is working? What are you doing different? ... Good catch. Thanks for the heads up. Please let me know if your problem persists (my code should be essentially the same as yours now). Ian -- View this message in context:

Re: FileUploadField blocks component submission when an empty file is selected

2009-10-14 Thread Ian Marshall
igor.vaynberg wrote: sure, you can create a quickstart that reproduces this and attach it to a jira issue. Thanks. I have not done a quickstart. (Is this a Maven thing? I am still an Ant person!) I have created the JIRA issue, which can be found at

Re: Nullable resource link

2009-10-14 Thread Luca Provenzani
i don't understand the problem can't you check the resource before link is rendered? You can create a new resource object empty in the case of null bytesand setVisible(false) or extend link to do this automatically on empty resource... Luca 2009/10/14 Iain Reddick

Re: Nullable resource link

2009-10-14 Thread Iain Reddick
I'm fishing for best practice in this type of situation - do I use the solution you outlined, or do I add a simple invisible dummy link instead of the the resource link, or is there a better solution that I'm missing? Luca Provenzani wrote: i don't understand the problem can't you check

Re: Open source Wicket blog

2009-10-14 Thread danisevsky
It would be nice, I am very interested. BTW there is another great open-source blogging system - http://code.google.com/p/elephas/ 2009/10/14 Anton Veretennikov anton.veretenni...@gmail.com I'm interested. This will be definitely something desirable for many website builders. I want to

Re: Open source Wicket blog

2009-10-14 Thread ralf . eichinger
added elephas blogging system to Wiki: http://cwiki.apache.org/confluence/display/WICKET/Products+based+on+Wicket Quoting danisevsky danisev...@gmail.com: It would be nice, I am very interested. BTW there is another great open-source blogging system - http://code.google.com/p/elephas/

Re: [WIKI] Websites based on Wicket page presentation

2009-10-14 Thread Erik Post
I think it's great the wiki is being given some love; I'm going to look at what's going on and contribute where I can, because I think it's really really (really) important, especially for prospective/new users. Thanks Ralf! Cheers, Erik On Tue, Oct 13, 2009 at 10:29 PM, jWeekend

Re: [WIKI] Websites based on Wicket page presentation

2009-10-14 Thread ralf . eichinger
Hi guys, this is Ralf (being the reason for starting this discussion) ;-). Yes, I started to work on the Wiki, not only on the products page, but also adding how to start setting up a development environment. As Cemal said, there is a discussion about sort order in the list. I am ok with

Re: Transaction filters and redirection problem

2009-10-14 Thread James Carman
That's the problem with transaction-per-request. Why not put your transaction around your service/domain methods rather than around the entire request cycle? On Wed, Oct 14, 2009 at 5:19 AM, Iain Reddick iain.redd...@beatsystems.com wrote: For anyone in this situation (having to use a

Re: Open source Wicket blog

2009-10-14 Thread Maarten Bosteels
I got some really cool ideas from the elephas code, but it seems the project has stalled a bit ? The last commit was 18 dec 2008 Maarten On Wed, Oct 14, 2009 at 2:30 PM, ralf.eichin...@pixotec.de wrote: added elephas blogging system to Wiki:

Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread Carlo Camerino
Hi, I was wondering what are the most efficient ways to separate different applications into one application? We have this use case in which we need to integrate two different wicket applications and make them appear as if they are running in one platform only. I tried using portlets but it

Re: Nullable resource link

2009-10-14 Thread Iain Reddick
I think my best solution is to use a lightweight container like this: public class NullableContainer extends WebMarkupContainer { public NullableContainer(String id) { super(id); } public NullableContainer(String id, IModel model) { super(id, model); }

Re: Nullable resource link

2009-10-14 Thread Luca Provenzani
why not something more directly like: *public class ProvaLink extends ResourceLink { ResourceReference resourceReference; @Override public boolean isVisible() { if(resourceReference==null)return false; else return true; } } *hope to help... Luca

Re: Announcement: Annotation-based Mounting of Resources

2009-10-14 Thread Robin Sander
Hi Stefan. this sounds really interesting! As I see that you don't use Spring to parse your annoations, are there any plans to combine parts of your work with wicketstuff-annotation? Because I would like to use @MountPath from wicketstuff-annotation as well but not for the price of adding

Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread ralf . eichinger
perhaps have a look on www.devproof.org. it is a portal like wicket application, which hosts different modules (JARs). Quoting Carlo Camerino carlo.camer...@gmail.com: Hi, I was wondering what are the most efficient ways to separate different applications into one application? We have this

Re: Announcement: Annotation-based Mounting of Resources

2009-10-14 Thread sfussenegger
Actually, wicketstuff-annotation (and spring-core) is a dependency of wicketstuff-merged-resources. I know, it doesn't feel quite right to include spring-core if you don't need it. As an idea, you could just package the required classes into a small jar file and exclude spring-core. You may

Re: Announcement: Annotation-based Mounting of Resources

2009-10-14 Thread sfussenegger
Actually, it's even easier, just do ResourceMount m = new ResourceMount().setMerged(false); ResourceMount.mountAnnotatedPackageResources(/files, com.example.components, this, mount); sfussenegger wrote: Actually, wicketstuff-annotation (and spring-core) is a dependency of

Re: Open source Wicket blog

2009-10-14 Thread Fernando Wermus
+1 very interested. I ve done a simple log for an app, which could be enhanced with your work On Wed, Oct 14, 2009 at 9:37 AM, Maarten Bosteels mbosteels@gmail.comwrote: I got some really cool ideas from the elephas code, but it seems the project has stalled a bit ? The last commit was

Re: Open source Wicket blog

2009-10-14 Thread Fernando Wermus
Very interesting. How about integrating pebble with a wicket front end? On Wed, Oct 14, 2009 at 4:01 AM, Thomas Singer wic...@regnis.de wrote: Hi Daniel, We are currently using Pebble which has the advantage of storing the blog content in plain text files. But its development seems to have

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread Bernhard Grünewaldt
Hello, It is very interesting to have a wicket blog, but for me even more interesting would be a cms based on wicket that integrates very smoothly into an existing wicket webapp. At the moment we use typo3 together with our java webapp. Would be nice to have a solution where everything is java

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread Jeremy Thomerson
http://code.google.com/p/brix-cms/ -- Jeremy Thomerson http://www.wickettraining.com On Wed, Oct 14, 2009 at 9:54 AM, Bernhard Grünewaldt bernh...@gruenewaldt.net wrote: Hello, It is very interesting to have a wicket blog, but for me even more interesting would be a cms based on wicket

Re: Nullable resource link

2009-10-14 Thread Iain Reddick
I don't want to keep a reference to to the resources byte array in the link - I'd rather it was retrieved dynamically when requested. I also don't really like constructing a bunch of stuff that's never going to be used (and to be null - which is often a headache). If I use the container

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread Bernhard Grünewaldt
Found it myself. Anyone have experience with brix? http://code.google.com/p/brix-cms/ Bernhard Grünewaldt schrieb: Hello, It is very interesting to have a wicket blog, but for me even more interesting would be a cms based on wicket that integrates very smoothly into an existing wicket

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread dtoffe
Have you seen Brix ?? http://code.google.com/p/brix-cms/ Daniel Bernhard Grünewaldt wrote: Hello, It is very interesting to have a wicket blog, but for me even more interesting would be a cms based on wicket that integrates very smoothly into an existing wicket webapp. At the

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread Erik Post
I added this and a couple of other projects to the wiki, since it seems to come up all the time... http://cwiki.apache.org/confluence/display/WICKET/Related+Projects+and+Tools On Wed, Oct 14, 2009 at 5:01 PM, Jeremy Thomerson jer...@wickettraining.com wrote: http://code.google.com/p/brix-cms/

Reporting Framework Wicket

2009-10-14 Thread Douglas Ferguson
Hey, I'm starting to look into reporting frameworks and was curious if anybody had successfully integrated with wicket? Are there any off the shelf integrations or will I have to roll my own? D/ - To unsubscribe, e-mail:

Re: Transaction filters and redirection problem

2009-10-14 Thread Iain Reddick
I'm considering it :) There are a lot of benefits to doing transactions at service call level (truthful user feedback for one, not having to deal with requests for resources hitting the transaction filter being another). Spring's AOP support actually makes doing this as simple and

Re: Transaction filters and redirection problem

2009-10-14 Thread James Carman
I think you'd be happier if you went with @Transactional annotations on your services. It works out much better, IMHO. On Wed, Oct 14, 2009 at 12:23 PM, Iain Reddick iain.redd...@beatsystems.com wrote: I'm considering it :) There are a lot of benefits to doing transactions at service call

Re: Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-14 Thread Randy S.
Thanks for the info, Giovanni. Please let us know of any Wicket apps released, especially if there is something we can check out without having accounts. (I don't live in Italy.) On Wed, Oct 14, 2009 at 2:32 AM, Giovanni pino_o...@yahoo.com wrote: The bank is Intesa San Paolo:

Ongoing Erractic Form Submit Issue

2009-10-14 Thread Dane Laverty
I've built several Wicket apps for the college where I work. 95% of the time they work great, but I get frequent complaints about form submits not functioning correctly. In those cases the form processing code in onSubmit doesn't appear to be running. I can't reproduce the error, but the reports

onComponentTagBody Behavior

2009-10-14 Thread Steve Lowery
We have a component that extends Label we've written to replace the body of the component with N/A, unknown, or whatever resource we give it when its model object is null (by overriding onComponentTagBody). I'd like to pull this out into a behavior, but can't seem to do it by overriding

Re: Ongoing Erractic Form Submit Issue

2009-10-14 Thread Pedro Santos
Did you implement the onError method too? Maybe you has an form without an feedback panel, and some form component don't pass by validations. On that case the onSubmit method don't get called, for example. On Wed, Oct 14, 2009 at 3:34 PM, Dane Laverty danelave...@gmail.com wrote: I've built

Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread Carlo Camerino
thanks, will take a look... however, have you encountered instances in which you want to have distributed web applications and still be able to shared httpsession? The distributed web application however are different applications and are not of the same kind unlike that of clustering one

Wicket Bench Selenium Tests

2009-10-14 Thread Douglas Ferguson
I'm getting the following error when I try to run a wicket bench selenium test. Exception in thread main java.lang.NoClassDefFoundError: org/mortbay/ http/HttpHandler at wicketbench.runner.Main.main(Main.java:14) Caused by: java.lang.ClassNotFoundException: org.mortbay.http.HttpHandler

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread ralf . eichinger
Hi Erik, this was already on this list: http://cwiki.apache.org/confluence/display/WICKET/Products+based+on+Wicket As it is a product and not a tool... it is a project, but not one that is a extension to wicket... ok, I understand that everyone thinks different about the lists Quoting

Re: Wicket Bench Selenium Tests

2009-10-14 Thread Douglas Ferguson
For that matter, I'm not totally married to WicketBench, is anybody else successfully doing functional testing with wicket? D/ On Oct 14, 2009, at 2:54 PM, Douglas Ferguson wrote: I'm getting the following error when I try to run a wicket bench selenium test. Exception in thread main

Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread ralf . eichinger
in my former company I implemented a framework that integrates different webapplications into one. I made a integration-application which takes a template with placeholders for the foreign parts, gets the contents from the different servers, parses all content (within 100 ms), changes every

Re: onComponentTagBody Behavior

2009-10-14 Thread James Carman
Use a wrapping model? On Wed, Oct 14, 2009 at 2:38 PM, Steve Lowery slow...@gatessolutions.com wrote: We have a component that extends Label we've written to replace the body of the component with N/A, unknown, or whatever resource we give it when its model object is null (by overriding

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread Erik Post
Hi Ralph, Right, I'd glossed over that. I have to say though that the disctinction between the two lists seems a bit arbitrary to me. For instance, the 'Vocus student information system' and 'Finan' (which are not available to the public) are on the 'products' list along with Brix CMS, even

Re: Transaction filters and redirection problem

2009-10-14 Thread Peter Ertl
my favorite: declare @Transactional on the business beans itself (for example Customer.findOrders()) and let salve inject the dependencies and the transaction management logic. http://code.google.com/p/salve :-) Am 14.10.2009 um 20:10 schrieb James Carman: I think you'd be happier if

Re: Open source Wicket blog - Open Source CMS with Wicket

2009-10-14 Thread dtoffe
I fully agree with you. Daniel Erik Post-5 wrote: Hi Ralph, Right, I'd glossed over that. I have to say though that the disctinction between the two lists seems a bit arbitrary to me. For . immediately evident, but I would peronally prefer a list of sites/apps that showcase

Re: FileUploadField blocks component submission when an empty file is selected

2009-10-14 Thread Igor Vaynberg
1.4-RC1??? you know that 1.4.2 is out... -igor On Wed, Oct 14, 2009 at 3:08 AM, Ian Marshall general.ianmarshall...@gmail.com wrote: igor.vaynberg wrote: sure, you can create a quickstart that reproduces this and attach it to a jira issue. Thanks. I have not done a quickstart. (Is this

Hippo's patch for wicket ids

2009-10-14 Thread Douglas Ferguson
Has anybody seen this: http://www.onehippo.org/cms7/integration_testing.html Seems like a nice alternative vs. having to set markupIds on all components. Thoughts? They have a patch for wicket: Index: jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Re: Ongoing Erractic Form Submit Issue

2009-10-14 Thread Dane Laverty
I hadn't implemented onError. Thanks for pointing that out. Now that I added onError, I discovered that ModalWindow doesn't automatically scroll to the top to display messages on an error. I also discovered that placing a FeedbackPanel into the ModalWindow directly won't display messages --

test

2009-10-14 Thread wicketmonkey

Re: test

2009-10-14 Thread Jeremy Thomerson
Test test? -- Jeremy Thomerson http://www.wickettraining.com On Wed, Oct 14, 2009 at 11:03 PM, wicketmon...@comcast.net wrote: