Seems that Alexander is absolutely right with the wrong resolvement of alias. I looked at the Media content of the displayed page and the following comes out (I picked one icon for example)
Under Firefox with or without SSL: https://qxsrv.b-s-g.de/reform/resource/qx/icon/Nuvola/16/actions/view-pane-tree.png (correct path) Under IE without SSL: http://qxsrv.b-s-g.de/reform/resource/qx/icon/Nuvola/16/actions/view-pane-tree.png (correct path) Under IE with SSL: https://qxsrv.b-s-g.de/reform/icon/16/actions/view-pane-tree.png (absolutely wrong) Greetings, Andreas -----Ursprüngliche Nachricht----- Von: Fink, Andreas [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. Oktober 2008 13:12 An: [EMAIL PROTECTED]; qooxdoo Development Betreff: Re: [qooxdoo-devel] Problem with icons in IE with SSL Hi Alexander, thanks for your help. I only have one alias for my resource setting, called "custom" (See application code below). In the build version, over SSL, every icon (the qooxdoo icons too) and the included stylesheet is missing. I've attached two screenshots one with Firefox where everything looks fine and one with IE. One strange thing is that my images seems to be not shown or invisible. The "Excel"- or "Diagramm"-icon for example (see screenshot) and the qooxdoo-icons (in the tree for example) are not found. Really curios. Greetings, Andreas /* ************************************************************************ #resource(reform.image:image) #resource(reform.css:css) // List all static resources that should be copied into the build version, // if the resource filter option is enabled (default: disabled) #embed(reform.image/*) #embed(reform.css/*) ************************************************************************ */ qx.Class.define("reform.Application", { extend : qx.application.Gui, members : { main : function() { this.base(arguments); // Define alias for custom resource path qx.io.Alias.getInstance().add("custom", qx.core.Setting.get("reform.resourceUri")); // Include CSS files qx.html.StyleSheet.includeFile(qx.io.Alias.getInstance().resolve("custom/css/style.css")); // Initialize the viewer this.viewer = reform.Viewer.getInstance(); this.viewer.addToDocument(); }, close : function() { this.base(arguments); // return "Nicht gespeicherte Daten gehen verloren!"; }, terminate : function() { this.base(arguments); } }, settings : { "reform.resourceUri" : "./resource", "reform.maxWindows" : 6, "reform.maxXlsRows" : 25000, "reform.maxPdfRows" : 8000, "reform.maxPdfCols" : 12 }, destruct : function() { this._disposeObjects("viewer"); } }); -----Ursprüngliche Nachricht----- Von: Alexander Back [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. Oktober 2008 11:18 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Problem with icons in IE with SSL Hi Andreas, Fink, Andreas wrote: > Hi, > > maybe someone can help me. I'm using 0.7.4-pre (actual checkout) and > if I open my application with SSL under IE 7 all icons are missing > (see attached screenshot). > It works perfect without SSL and under Firefox (with or without SSL). > > My certificate is not trusted but I've added it and also added the > site under trusted sites with very low security level. I'm not sure if > this is a qooxdoo bug or another feature of IE ;) I'm afraid it's qooxdoo bug :( There was an issue already with IE and SSL concerning a incorrect resolvement of the alias in qooxdoo. -> http://bugzilla.qooxdoo.org/show_bug.cgi?id=1045 I thought I fixed this issue, but maybe you are affected by this nasty bug. To help me tracking down this bug you can answer me some questions: * Do you have any special settings for your alias? * Are all images affected or only some with a special alias? Just to make sure we are talking about the same thing: -> http://qooxdoo.org/documentation/0.7/configuring_custom_resources This page explains the alias stuff right at the begining of the page. cheers, Alex ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
