Re: WebPage: geting string

2010-10-15 Thread elesi

hi,

can we know where the Utils.replaceAll, escapeHighEnd() and
WebPageConstants.SRC_URL_PATTERN came from?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/WebPage-geting-string-tp2993717p2996622.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting the html output of a wicket page

2010-10-15 Thread elesi

Thanks for the reply

I tried the code, but it seems that calling it from java's main() method
doesn't work.
i got this error:
org.apache.wicket.WicketRuntimeException: There is no application attached
to current thread main
Could i have some insights on why this happened?

I think i'll have to run it from a separate thread...

-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Getting-the-html-output-of-a-wicket-page-tp2994739p2996646.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Getting the html output of a wicket page

2010-10-13 Thread elesi

Hello guys,

I'm trying to send a email with a body that is HTML-formatted...and I would
to use wicket to write it out...

Is there a way that I could store the markup (with all the tags and stuff)
of a wicket-rendered web page into a string variable?

I thought the getMarkupResourceStream() would work, but i don't know where
it will be called...



-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Getting-the-html-output-of-a-wicket-page-tp2994739p2994739.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: alphabetical paging navigator

2010-10-01 Thread elesi

can you give an idea on how to do that?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/alphabetical-paging-navigator-tp2837010p2853331.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: how to get resource path of files in server to be used by wicket

2010-09-30 Thread elesi

do i have to use FileResourceStream for my mp3 file?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/how-to-get-resource-path-of-files-in-server-to-be-used-by-wicket-tp2717381p2720422.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



alphabetical paging navigator

2010-09-30 Thread elesi

is it possible to override the PagingNavigator and give it the letters A-Z as
links? and add filtering behavior so that it only shows ListView items that
starts with/matches the active letter link?

-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/alphabetical-paging-navigator-tp2837010p2837010.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: how to get resource path of files in server to be used by wicket

2010-09-29 Thread elesi

is that compatible with mp3s? and what does urlFor() do?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/how-to-get-resource-path-of-files-in-server-to-be-used-by-wicket-tp2717381p2718760.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Putting HTML files in src/main/webapp

2010-09-28 Thread elesi

Could i change html resource folder, even if my project don't have a maven
folder structure?
I mean no resources folder, etc.?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-Offline-Applications-tp1883788p2716953.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



how to get html resources in wicket

2010-09-28 Thread elesi

could anyone explain how wicket searches the context path for resources?
i mean is it different from the local drive path that i use for non-web
applications?
because im having a hard time tracing the url of wicket pages, and trying to
guess where my resources are...

thanks in advance

ciao,
-elesi 
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/how-to-get-html-resources-in-wicket-tp2717340p2717340.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



how to get resource path of files in server to be used by wicket

2010-09-28 Thread elesi

could anyone explain how wicket searches the context path for resources?
i mean is it different from the local drive path that i use for non-web
applications?
because im having a hard time tracing the url of wicket pages, and trying to
guess where my resources are...

thanks in advance

ciao,
-elesi 
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/how-to-get-resource-path-of-files-in-server-to-be-used-by-wicket-tp2717381p2717381.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: how to get resource path of files in server to be used by wicket

2010-09-28 Thread elesi

mp3 resources...

i would like to put mp3 source paths in the header contribution of my panel,
but im not sure what url will i feed to the script, i placed them together
with html and java files and used a relative path, like /file.mp3, but
like an absolute local path, my javascript still couldn't find it...

i've also tried the one done by drobson, but still doesn't work...
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/how-to-get-resource-path-of-files-in-server-to-be-used-by-wicket-tp2717381p2718216.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org