You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Alexandr Khlystov <al...@gmail.com> on 2008/11/23 17:00:08 UTC

guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET

guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET

I can't find the button :).

bug is about that wicket can't deal with packages which contains
underlinings e.g. org.ovservice.wicket_in_action.IndexPage

throwing:
org.apache.wicket.markup.MarkupNotFoundException: Markup not found.
Component class

-- 
________________________
Best regards,
Alexandr Khlystov



-- 
________________________
Best regards,
Alexandr Khlystov

Re: guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET

Posted by Alexandr Khlystov <al...@gmail.com>.
Hm.

wicket version: 1.3.5. Simple project. I run it on the Tomcat 6.0, Java 6.0,
build on maven2, based on wicket-quickstart archetype.

three files:
*1. CheesrApplication.java*
package org.ovservice.wicket_in_action.web;

public class *CheesrApplication* extends WebApplication {
...
    @Override
    public Class<? extends Page> getHomePage() {
        return *IndexPage*.class;
    }
...
}

2. *IndexPage.java*

package org.ovservice.wicket_in_action.web.pages;
...
public class *IndexPage *extends WebPage {
...
    public IndexPage(final PageParameters parameters) {
        add(new Label("message", MESSAGE_TEXT));
    }
}

3. IndexPage.html of course at the same folder as *IndexPage.java*
<html>
    <head>
        <title>Index Page</title>
    </head>
    <body>
        <strong>Wicket Quickstart Archetype Homepage</strong>
        <br/><br/>
        <span wicket:id="message">message will be here</span>
    </body>
</html>

After trying to run the application I've got the following exception:
...
org.apache.wicket.markup.MarkupNotFoundException: Markup not found.
...

Saying that Wicket was trying to find html file at  .../org/ovservice/
folder, but not at .../org/ovservice/wicket_in_action/web/pages/

After chaging wicket_in_action to wicketinaction All works fine.

And what scenario do you have?

Thanks.


On Sun, Nov 23, 2008 at 10:14 PM, Swinsburg, Stephen <
s.swinsburg@lancaster.ac.uk> wrote:

> You need to be logged in to Jira, or create an account if you don't have
> one. Then choose 'Create New Issue' in the top menu.
>
> But, I use underscores in my package names and have no problem. Perhaps you
> should discuss it here before you log it as an issue? What version Wicket
> etc?
>
> cheers.
>
>
> -----Original Message-----
> From: Alexandr Khlystov [mailto:allex.khlystov@gmail.com]
> Sent: Sun 11/23/2008 4:00 PM
> To: users@wicket.apache.org
> Subject: guys how to submit a bug to
> https://issues.apache.org/jira/browse/WICKET
>
> guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET
>
> I can't find the button :).
>
> bug is about that wicket can't deal with packages which contains
> underlinings e.g. org.ovservice.wicket_in_action.IndexPage
>
> throwing:
> org.apache.wicket.markup.MarkupNotFoundException: Markup not found.
> Component class
>
> --
> ________________________
> Best regards,
> Alexandr Khlystov
>
>
>
> --
> ________________________
> Best regards,
> Alexandr Khlystov
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>



-- 
________________________
Best regards,
Alexandr Khlystov

RE: guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET

Posted by "Swinsburg, Stephen" <s....@lancaster.ac.uk>.
You need to be logged in to Jira, or create an account if you don't have one. Then choose 'Create New Issue' in the top menu.

But, I use underscores in my package names and have no problem. Perhaps you should discuss it here before you log it as an issue? What version Wicket etc?

cheers.


-----Original Message-----
From: Alexandr Khlystov [mailto:allex.khlystov@gmail.com]
Sent: Sun 11/23/2008 4:00 PM
To: users@wicket.apache.org
Subject: guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET
 
guys how to submit a bug to https://issues.apache.org/jira/browse/WICKET

I can't find the button :).

bug is about that wicket can't deal with packages which contains
underlinings e.g. org.ovservice.wicket_in_action.IndexPage

throwing:
org.apache.wicket.markup.MarkupNotFoundException: Markup not found.
Component class

-- 
________________________
Best regards,
Alexandr Khlystov



-- 
________________________
Best regards,
Alexandr Khlystov