Re: Display HTML in Label with validation

2011-09-16 Thread Clint Checketts
Add your own html header and footer tags when validating,
() but don't include them when outputting the
fragment.

On Fri, Sep 16, 2011 at 6:05 AM, manuelbarzi  wrote:

> sure, but you can try customizing it. inside it you can find
> interesting things like HtmlDocumentParser, which you can modify to
> accomplish your needs. it works with a raw html string document, as
> you may need.
> .
>
>
> On Fri, Sep 16, 2011 at 12:17 PM, Daniel Stoch 
> wrote:
> >
> > Thanks for your suggestion. But I need to validate a fragment of HTML,
> > but it seems that HtmlDocumentValidator validates only whole
> > documents.
> > From my point of view the following texts are valid HTML fragments:
> > - This is sample text
> > - This is sample paragraph
> >
> > --
> > Daniel
> >
> >
> > On Thu, Sep 15, 2011 at 5:31 PM, manuelbarzi 
> wrote:
> > > may HtmlDocumentValidator help you.
> > > .
> > >
> > >
> > >
> > > On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch 
> wrote:
> > >> Hi,
> > >>
> > >> How to display dynamic HTML content on page which can be invalid
> > >> (because this HTML is entered by a user). I can use
> > >> Label.setEscapeModelStrings(false), but with invalid HTML content the
> > >> page will not be rendered (because of HTML parsing error). So maybe I
> > >> can use some of standard Wicket mechanisms to parse this HTML first to
> > >> check if I can display it on page? There are some parsers within
> > >> framework...
> > >>
> > >> --
> > >> Daniel
> > >>
> > >> -
> > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > >> For additional commands, e-mail: users-h...@wicket.apache.org
> > >>
> > >>
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Display HTML in Label with validation

2011-09-16 Thread manuelbarzi
sure, but you can try customizing it. inside it you can find
interesting things like HtmlDocumentParser, which you can modify to
accomplish your needs. it works with a raw html string document, as
you may need.
.


On Fri, Sep 16, 2011 at 12:17 PM, Daniel Stoch  wrote:
>
> Thanks for your suggestion. But I need to validate a fragment of HTML,
> but it seems that HtmlDocumentValidator validates only whole
> documents.
> From my point of view the following texts are valid HTML fragments:
> - This is sample text
> - This is sample paragraph
>
> --
> Daniel
>
>
> On Thu, Sep 15, 2011 at 5:31 PM, manuelbarzi  wrote:
> > may HtmlDocumentValidator help you.
> > .
> >
> >
> >
> > On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch  
> > wrote:
> >> Hi,
> >>
> >> How to display dynamic HTML content on page which can be invalid
> >> (because this HTML is entered by a user). I can use
> >> Label.setEscapeModelStrings(false), but with invalid HTML content the
> >> page will not be rendered (because of HTML parsing error). So maybe I
> >> can use some of standard Wicket mechanisms to parse this HTML first to
> >> check if I can display it on page? There are some parsers within
> >> framework...
> >>
> >> --
> >> Daniel
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>

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



Re: Display HTML in Label with validation

2011-09-16 Thread Martin Grigorov
See whether 
org.apache.wicket.settings.IMarkupSettings.getMarkupFactory().newMarkupParser(IMarkupResourceStream)
will do the job for you.

On Fri, Sep 16, 2011 at 1:17 PM, Daniel Stoch  wrote:
> Thanks for your suggestion. But I need to validate a fragment of HTML,
> but it seems that HtmlDocumentValidator validates only whole
> documents.
> From my point of view the following texts are valid HTML fragments:
> - This is sample text
> - This is sample paragraph
>
> --
> Daniel
>
>
> On Thu, Sep 15, 2011 at 5:31 PM, manuelbarzi  wrote:
>> may HtmlDocumentValidator help you.
>> .
>>
>>
>>
>> On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch  wrote:
>>> Hi,
>>>
>>> How to display dynamic HTML content on page which can be invalid
>>> (because this HTML is entered by a user). I can use
>>> Label.setEscapeModelStrings(false), but with invalid HTML content the
>>> page will not be rendered (because of HTML parsing error). So maybe I
>>> can use some of standard Wicket mechanisms to parse this HTML first to
>>> check if I can display it on page? There are some parsers within
>>> framework...
>>>
>>> --
>>> Daniel
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

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



Re: Display HTML in Label with validation

2011-09-16 Thread Daniel Stoch
Thanks for your suggestion. But I need to validate a fragment of HTML,
but it seems that HtmlDocumentValidator validates only whole
documents.
>From my point of view the following texts are valid HTML fragments:
- This is sample text
- This is sample paragraph

--
Daniel


On Thu, Sep 15, 2011 at 5:31 PM, manuelbarzi  wrote:
> may HtmlDocumentValidator help you.
> .
>
>
>
> On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch  wrote:
>> Hi,
>>
>> How to display dynamic HTML content on page which can be invalid
>> (because this HTML is entered by a user). I can use
>> Label.setEscapeModelStrings(false), but with invalid HTML content the
>> page will not be rendered (because of HTML parsing error). So maybe I
>> can use some of standard Wicket mechanisms to parse this HTML first to
>> check if I can display it on page? There are some parsers within
>> framework...
>>
>> --
>> Daniel
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

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



Re: Display HTML in Label with validation

2011-09-15 Thread manuelbarzi
may HtmlDocumentValidator help you.
.



On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch  wrote:
> Hi,
>
> How to display dynamic HTML content on page which can be invalid
> (because this HTML is entered by a user). I can use
> Label.setEscapeModelStrings(false), but with invalid HTML content the
> page will not be rendered (because of HTML parsing error). So maybe I
> can use some of standard Wicket mechanisms to parse this HTML first to
> check if I can display it on page? There are some parsers within
> framework...
>
> --
> Daniel
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

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



Display HTML in Label with validation

2011-09-15 Thread Daniel Stoch
Hi,

How to display dynamic HTML content on page which can be invalid
(because this HTML is entered by a user). I can use
Label.setEscapeModelStrings(false), but with invalid HTML content the
page will not be rendered (because of HTML parsing error). So maybe I
can use some of standard Wicket mechanisms to parse this HTML first to
check if I can display it on page? There are some parsers within
framework...

--
Daniel

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