Hi Bruno,

I'm with you. Please take a look at issue 1448195 in the wicket tracker (http://sourceforge.net/tracker/index.php?func=detail&aid=1448195&group_id=119783&atid=684978).

--
Best regards,
Thomas Singer


Bruno Borges schrieb:
In the case of static resources, the problem is that, as you show, if my web designer opens the Index.html he'll not see the images in his WYSIWYG editor.

Thanks.

    From: "Martijn Dashorst" <[EMAIL PROTECTED]
    <mailto:[EMAIL PROTECTED]>>
    To: [email protected]
    <mailto:[email protected]>
    Subject: Re: [Wicket-user] Images, Flashs, Javascripts, CSSs and
    other resources
    Reply-To: [email protected]
    <mailto:[email protected]>

    There are several possibilities here.

    Dynamic approach
    Needed in the following cases:
     - resource needs to be generated
     - resource comes from external, non-web system (database, etc)
     - resource must be filtered (component id's subsitution, etc)
     - resource must be packaged with your component

    Static approach
    Needed in the following cases:
     - absolute performance requirements -> static resources served by
    webserver, not servlet
     - static files, no special requirement for dynamic content
     - ?

    In the dynamic approach the resources need either to be registered
    at load
    time (this will change I think), or generated on the fly as needed.
    Resourc=
    e
    source files should be available on the classpath, but need not be
    (provide
    your own resolver).

    In the static approach, you put the files in the webroot and thus
    have them
    available to link from your pages.

    com.foo.Index.html
    <html>
    <head>
    <style src=3D"style/style.css" type=3D"text/css"></style>
    <script src=3D"prototype/prototype.js"
    type=3D"text/javascript"></script>
    </head>
    <body>
    </body>
    </html>

    and directories:

    src/webapp/style/style.css
    src/webapp/prototype/prototype.js
    src/webapp/WEB-INF/web.xml
    src/main/java/com/foo/Index.html
    src/main/java/com/foo/Index.java

    Not complete, but a start.

    Martijn

    On 3/17/06, Bruno Borges <[EMAIL PROTECTED]
    <mailto:[EMAIL PROTECTED]>> wrote:
     >
     > I've seen some threads in the mailing-list archive, and for I
    understand,
     > there's no common way to deal with resources like those in the
    subject.
     >
     > Could you guys please list what's the best approaches to deal
    with images=
    ,
     > so programmers and designers can work together without any
    problem? I wan=
    na
     > see developers coding the html files, and designers specifying
    images in
     > these pages, so the images can be displayed in the same way at
    developmen=
    t
     > time (WYSIWYG HTML Editors) and at runtime.
     >
     > The same question for javascript files (.js) and stylesheet files
    (.css).
     >
     > And after that, we could put all information together and submit
    to the
     > Wiki.
     >
     > Thank you!
     >
     > --
     > Bruno Borges - SCJP 1.4
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to