Jim,


> I am getting this in a build, not a script.

Good to know.

> Can't reproduce the issue outside my app, mostly because I'm sure that the
> issue is due to a setting I might have changed in a config file, but not
> sure which file or what setting.

Do you maintain multiple config files for your app?

> For the most part, I do not mess with any
> of the config files. My builds are pretty stock, or so I thought.

>From looking at your config I would confirm that.

>
> Here is my config.json file located in my application folder:

Your config file is hopelessly outdated [1]. As it reflect pre-0.8.1
syntax, most of its entries are essentially without effect. Here is a
migrated version:



  {
   "name"    : "swep",

   "include" :
   [
     {
       "path" : "../../tool/data/config/application.json"
     }
   ],

   "let" :
   {
     "APPLICATION"  : "swep",
     "QOOXDOO_PATH" : "c:\\qooxdoo",
     "QXTHEME"      : "qx.theme.Modern",
     "API_EXCLUDE"  : ["qx.legacy.*"],
     "LOCALES"      : [ "en" ],
     "ROOT"         : ".",
     "OPTIMIZE"       : []
   },

   "jobs":
   {
     "build-script" :
     {
       "variants" :
       {
         "qx.debug" : ["off"]
       },
       "compile-dist" :
       {
         "paths":
         {
           "file" : "${BUILD_PATH}/script/${APPLICATION}.js"
         },
         "uris" :
         {
           "script"  : "script"
         },
         "code" :
         {
           "format" : true,
           "locales" : "${LOCALES}",
           "=optimize" : "${OPTIMIZE}"
         }
       }
     }
   }
  }

Actually, your config is so standard (apart from the let macros), you
could use an empty "jobs" section here and it should work.

If the image issue still persists, please do a "generate.py build -v" and
post the output (at least the expanded job definition for the
BUIL::BUILD-SCRIPT step).

HTH,
T.

[1] http://qooxdoo.org/documentation/0.8/generator_config_ref#compile-dist


>
> {
>  "name"    : "swep",
>
>  "include" :
>  [
>    {
>
>      "path" : "../../tool/data/config/application.json",
>      "as"   : "appconf"
>    }
>
>  ],
>
>  "let" :
>  {
>    "APPLICATION"  : "swep",
>    "QOOXDOO_PATH" : "c:\\qooxdoo",
>    "QOOXDOO_URI"  : "../${QOOXDOO_PATH}",
>    "QXTHEME"      : "qx.theme.Modern",
>    "API_EXCLUDE"  : ["qx.legacy.*"],
>    "LOCALES"      : [ "en" ],
>    "ROOT"         : ".",
>    "OPTIMIZE"       : []
>  },
>
>  "jobs":
>  {
>    "build-script" :
>    {
>      "extend" : ["appconf::build-script"],
>
>      "variants" :
>      {
>        "qx.debug" : ["off"]
>      },
>      "compile-dist" :
>      {
>        "target" : "${BUILD_PATH}",
>        "file" : "${BUILD_PATH}/script/${APPLICATION}.js",
>        "uri"  : "script/${APPLICATION}.js",
>        "root" : "${BUILD_PATH}",
>        "format" : "on",
>        "locales" : "${LOCALES}",
>        "optimize" : []
>      }
>    },
>
>
>    "build-files" :
>    {
>      "extend" : ["appconf::build-files"],
>
>      "copy-files" :
>      {
>        "files" :
>        [
>          "index.html"
>        ],
>
>        "target" : "${BUILD_PATH}"
>      }
>    },
>
>
>    "build-resources":
>    {
>      "extend" : ["appconf::build-resources"],
>
>      "copy-resources" :
>      {
>        "target"          : "${BUILD_PATH}",
>        "resource-filter" : true
>      }
>    },
>
>
>    "build" :
>    {
>      "run" :
>      [
>        "build-resources",
>        "build-script",
>        "build-files"
>      ]
>    }
>  }
> }
>
>
> Thanks,
> Jim
>
> On Tue, Feb 2, 2010 at 9:07 AM, thron7
> <thomas.herchenroe...@1und1.de>wrote:
>
>>
>>
>> On 02/02/2010 04:24 PM, Jim Hunter wrote:
>> > Yes, they are all framework classes that are calling for the images. I
>> > suppose we are going to need a full list of the images that aren't
>> being
>> > resolved correctly for the bug report.
>>
>> Jim, I think we should try to narrow in on the issue a bit more, before
>> adding long lists of failed images to a bug. Can you try to reproduce
>> the issue in a minimal example?
>>
>> It is strange that this bug - which looks pretty fundamental - has never
>> showed up before, with 0.8.3 being out for more than 4 months now. E.g
>> the toolbar-handle-knob.gif is used in Feedreader, too, which uses it
>> successfully as you can see online
>> (http://demo.qooxdoo.org/0.8.x/feedreader/).
>>
>> More questions:
>> - Does it show in the source or build version of your app, or both?
>> - Have you tweaked URI settings in your config, e.g. the 'uri' setting
>> of the qooxdoo "library" key element, or the 'compile-dist/uris/*'
>> settings in your compile job(s)?
>>
>> T.
>>
>>
>>
> ------------------------------------------------------------------------------
> The Planet: dedicated and managed hosting, cloud storage, colocation
> Stay online with enterprise data centers and the best network in the
> business
> Choose flexible plans and management services without long-term contracts
> Personal 24x7 support from experience hosting pros just a phone call away.
> http://p.sf.net/sfu/theplanet-com_______________________________________________
> qooxdoo-devel mailing list
> qooxdoo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>



------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to