After looking over it, would it
be possible to stream the flash byte[] through renderHead or
something like that?
Thanks
From: [EMAIL PROTECTED] [mailto:wicket-user-
[EMAIL PROTECTED] On Behalf Of Andrew Lombardi
Sent: Tuesday, May 08, 2007 4:00 PM
To: wicket-user@lists.sourceforge.net
Su
icket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
To our success!
Andrew Lombardi: Mystic Coders, LLC - Coding Magic
contact | [EMAIL PROTECTED] | mobile: 714-697-8046 | office/
fax: 714-948-2382 | aim: nlpjunke
This message is fo
s and con's of that? Can't one variant just work best
for all cases?
Eelco
On 2/22/07, Andrew Lombardi <[EMAIL PROTECTED]> wrote:
HeaderContributor.forCss currently renders CSS in the following
manner:
However it is sometimes advisable to use the @import command with
HeaderContributor.forCss currently renders CSS in the following manner:
However it is sometimes advisable to use the @import command within
CSS to pull in the document ala:
@import url("/this/is/my.css");
Maybe we can add HeaderContributor.forCss(ResourceReference css,
boo
On Sep 7, 2006, at 3:09 PM, Erik Brakkee wrote: Andrew Lombardi wrote: Erik, I had similar issues with the DatePicker for various reasons. After some help from Nick and Igor I built a 3 dropdown component for choosing date similar to what you describe below. Check out my blog entry for
ket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user To our success!Andrew Lombardi: Mystic Coders, LLC - Coding Magiccontact | [EMAIL PROTECTED] - 714-697-8046 | aim - nlpjunkeThis message is for the named person's use only. You must not, directly or
you do know that you have to prepend the url with the context (i.e.
usually the name of the war file), so for wicket-examples it would be
http://localhost/wicket-examples/guestbook
On Feb 24, 2006, at 4:41 AM, Singh, Varun wrote:
Hi Dipu,
BizCalendar is my application. But I've tried deplo
well, lsof for me was reporting fluctuation between 1000 file
handles, and 25000 file handles every minute or so ... its probably
that the file handles were on the way to closing, when another one
opened to check it out.
this is on on older version of linux, 7.3, which may have something
d let deployment mode be configured either from web.xml or a> system prop.>> and yes, turning off that thread solves andrew's problem. >> -Igor>>>>> On 2/18/06, *Eelco Hillenius* < [EMAIL PROTECTED] > [EMAIL PROTECTED]>> wrote:>> Still, does th
does the polling have that effect? On 2/18/06, Andrew Lombardi <[EMAIL PROTECTED]> wrote:> Yeah, I agree. I found the problem, in 1.2 versions, the servlet> variable has been changed to "configuration:deployment/development" > instead of "deployment:true/false".&
06, at 9:31 PM, Eelco Hillenius wrote:
That sounds pretty crazy. Did you turn off template reloading? That
would be the first thing to try, and actually wize in a production
environment anyway. /If/ that helps, we might have something that
should be done differently there.
Eelco
On 2/18/06, And
When deploying one of our wicket-developed applications to our
production linux server, we've been seeing something very odd, maybe
someone can shed some light. This morning I awoke to error messages
in our Resin app server logs about "Too many open files". Checking
the max value, it was
On Feb 16, 2006, at 5:33 PM, Eelco Hillenius wrote:
1. Give me the constructor change and the Java 5 functionality in one
pass (Wicket 2.0)
+1
---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?
On Feb 13, 2006, at 4:53 PM, Martijn Dashorst wrote:
All,
- constructor refactor
we have reached a limit to the support we want to provide
for Ajax and javascript. In order to provide the best support
+1 on the constructor refactor, just means I'll have to convert a few
thi
I've almost finished up with using IAuthorizationStrategy to
implement some page security in an application. The only thing that
I have a question on, is why one would return false from this method,
as it seems to bubble up and just show an exception. Talking with
Igor, he mentioned using
clarification below
On Dec 11, 2005, at 9:11 PM, Andrew Lombardi wrote:
Though I've not looked at WingS at all ... I am really enjoying
working with wicket because it feels less like mucking around with
tags (whether xml or xhtml), and more like actual bare-knuckles
programming.
Though I've not looked at WingS at all ... I am really enjoying
working with wicket because it feels less like mucking around with
tags (whether xml or xhtml), and more like actual bare-knuckles
programming.
That being said, I don't really get a warm fuzzy about having *all*
of my page re
Hey All,
I've been actively following the latest builds with Igor on IRC with
wicket-extensions, and the newest wicket HEAD releases with the
pretty url's, etc. And we've both expressed this, as you all
probably have..
sourceforge is pretty much unreliable at best.
anonymous CVS never wo
Martijn, grab the G4 optimized version of Firefox ... I've been a
staunch supporter of safari on my powerbook for over a year and a
half .. and this optimized version, called DeerPark i think ... rocks
On Dec 5, 2005, at 10:56 PM, Martijn Dashorst wrote:
Just for the record, Google's back
On Dec 4, 2005, at 12:22 PM, Igor Vaynberg wrote:On 12/4/05, Gili <[EMAIL PROTECTED]> wrote: Just being a little picky: can we redefine mountBookmarkablePage() soit is (sourceClass, targetURL) similar to the preexisting format ofputClassAlias()? I find it easier to read that way. personally
I have received this warning before, you can basically ignore it.
From what I recall, the reason is that you have template polling on,
so it is attempting to check for any change in all templates that you
are using in your hierarchy. So items that are in jars are not
available to be chang
Johan Compagner wrote:just an idea.The progress bar thread could be a SharedResource request.Those request are not synchonized.And you can give back the progress number everytime the Resource is requested.johan On 11/23/05, Andrew Lombardi <[EMAIL PROTECTED]> wrote: I've got a need to s
I've got a need to show an Upload progress bar in a Wicket app that
I've built. We're uploading some fairly large files and would like
to see some statuses. Figured out with Igor how to go about
injecting a CountingInputStream into the process for FileUpload, but
have run into a roadblock
I do believe, that Sitemesh is really not required when using
Wicket... since you can inherit page markup via Border, Panel's, and
the wicket:extend>.
Doesn't negate that Sitemesh isn't working correctly with your
environment though, but when using wicket, unless you have another
framewo
So, I see all this talk of using static factory methods to generate a
Page, but what would be wrong with just using
add(new Link("myLink") {
public void onClick() {
setResponsePage(new MyPage(param1, param2, param3));
}
};
this looks like it ensures that the pag
etListener.java:218) at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:300) at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:511) to our success! _______ andrew lombardi, president MYSTIC | coding magic ___ http://www.mysticc
ication in an
easy way, or do you have other reasons?
Eelco
On 9/29/05, Andrew Lombardi <[EMAIL PROTECTED]> wrote:
I have a sort of off-topic question. I have a sort of largish app
that I'm looking to convert pieces of and hoping to use Wicket to
make things quick and simple.
so,
I have a sort of off-topic question. I have a sort of largish app
that I'm looking to convert pieces of and hoping to use Wicket to
make things quick and simple.
so, e.g.: I have sections like support/ product/ marketing/
currently in webwork2. And using Spring for business layer,
Aye
On Sep 28, 2005, at 11:12 AM, Eelco Hillenius wrote:
I think autoenabled should default to false. Too many users are having
problems with this. Votes?
Eelco
On 9/28/05, Dipu <[EMAIL PROTECTED]> wrote:
try setting Link.setAutoEnable(false)
- Original Message -
From: "Dorel Vai
believe, the scriptaculous components have been
created by Ryan Sonnek.
Martijn
On 9/24/05, Andrew Lombardi <[EMAIL PROTECTED]> wrote:
I know that Wicket is looking to do a lot more things with AJAX, and
using DOJO from what I can gather. Are there any examples of easily
using Wicket and Dojo t
I know that Wicket is looking to do a lot more things with AJAX, and
using DOJO from what I can gather. Are there any examples of easily
using Wicket and Dojo to do something similar to Google Suggest?
Possibly by using a List element on Wicket side, and ajaxian stuff on
the other end?
I think this was definitely useful knowledge for me, so I added to wikiOn Sep 19, 2005, at 2:56 PM, Andrew Lombardi wrote:from the api, it looks like what we'd do is override getVariation() from Componentand then based on a param, or whatever we choose, we'd return a "_variation&qu
the cache isn't, might> be a problem for people wanting to provide their custom versions of> ResourceStreamLocator.>> Eelco>> > On 9/19/05, Alexandru Popescu <[EMAIL PROTECTED]> wrote:>> #: Eelco Hillenius changed the world a bit at a time by saying on 9/19/2005 6:15 PM :#
doh!thanks! to our success! ___ andrew lombardi, president MYSTIC | coding magic ___ http://www.mysticcoders.com 714 . 697 . 8046 = This message is for the named person'
ceive the following error:
cannot find symbol method urlFor
(java.lang.String,java.lang.Class,wicket.PageParam
eters)
But if I call this same method from BasePage, it will compile and run
fine. What might I be missing?
On Sep 19, 2005, at 8:00 AM, Andrew Lombardi wrote:
2 things:
1) D
pepone wrote:
setAutoenable(false)
On 9/19/05, Andrew Lombardi <[EMAIL PROTECTED]> wrote:
Is there any way to turn off the italic span surrounding a link when
you're on that page?
---
SF.Net email is sponsored by:
Tame your
multiple page definitions (though is that
really a problem, as using inheritance would factor out any
duplication?) you can have one page and apply the dynamic parts
well... dynamicly. E.g. by replacing panels.
Eelco
On 9/19/05, Andrew Lombardi <[EMAIL PROTECTED]> wrote:
It seems that
Is there any way to turn off the italic span surrounding a link when
you're on that page?
---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a
It seems that all pages in Wicket must have a different class backing
it, is this correct? What happens if you just have 4 - 5 html pages
that are static, and won't change, other than the navigation and
surrounding which is dynamic (handled by or the
border classes).
In WebWork 2 .. I
wrote:
See WebPage.urlFor(final String pageMapName, final Class
pageClass, final
PageParameters parameters)
-Igor
-Original Message-
From: [EMAIL PROTECTED] [mailto:wicket-user-
[EMAIL PROTECTED] On Behalf Of Andrew Lombardi
Sent: Sunday, September 18, 2005 8:58 PM
To: wicke
Is there any way to get a page's url? i.e. http://localhost/
application?bookmarkablePage=blah
---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to
Ok, I think we can make do with a url rewriting filter, I seem to
recall though, in the API being a Web(Response|Request)CrawlerSave,
which looks like it does something similar to what I'd like to see,
only when enabled, doesn't work throwing an
IllegalArgumentException. Will there be any
I've just been plowing through a simple application with Wicket, and
had a quick question.
It seems that for every application, the request URI is identical, so
when doing web reporting, using standard apache logs, etc, how do we
ensure that reporting is easily readable and doesn't look lik
43 matches
Mail list logo