Re: [WiX-users] Burn standard UI .wxl

2012-09-20 Thread Peter Shirtcliffe
Perhaps we shouldn't use it then or at least we should be aware it may be
changed in non-backwards compatible ways. 
My own theme is never going to see the light of day so I won't be irate if a
future change breaks it.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com] 
Sent: 20 September 2012 16:20
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Burn standard UI .wxl

Note: Foundation UI was intended to be the "foundation" for the RTF and
Hyperlink UI. It was not intended to be used directly by others. Sounds like
Peter figured out how to make it usable. 

On Thu, Sep 20, 2012 at 2:45 AM, Peter Shirtcliffe
wrote:

> Maybe this will help. I have a foundation theme working and I've 
> provided the code below, which is based on the Wix installer's own, 
> although this is probably more than what is needed. What I suspect 
> happens is that the ThemeFile attribute becomes a Wix variable that is 
> referenced by the Wix-defined payloadgroup so that it's included in 
> the bundle. The error you're getting might be because the theme file 
> isn't being bundled up.
> Have a
> look in the Wix sources at its own bundle code too and it should help 
> you understand what's going on. Also have a look to see if your wxl is 
> being extracted at run time.
>
>  Id="WixStandardBootstrapperApplication.Foundation">
>  LicenseFile="$(sys.SOURCEFILEDIR)SDLTradosStudioEULA.rtf"
> LogoFile="$(sys.SOURCEFILEDIR)Trados_icon64.png"
> SuppressOptionsUI="yes"
> ThemeFile="BurntToastTheme.xml"
> LocalizationFile="BurntToastTheme.wxl" />
> 
> 
>
> 
>  SourceFile='!(wix.WixStdbaThemeXml=BurntToastTheme.xml)' />
>  SourceFile='!(wix.WixStdbaThemeWxl=BurntToastTheme.wxl)' />
>  SourceFile='!(wix.WixStdbaLogo=Trados_icon64.png)' />
> 
>
SourceFile='!(wix.WixStdbaLicenseRtf=$(sys.SOURCEFILEDIR)SDLTradosStudioEULA.
> rtf)' />
>  SourceFile='BurntToast.png' />
> 
>
> 
> 
> licence
> 
> 
>
> -Original Message-
> From: Nick Ramirez [mailto:nickra...@hotmail.com]
> Sent: 20 September 2012 00:34
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Burn standard UI .wxl
>
> I've got the following markup in my bootstrapper:
>
>  Id="WixStandardBootstrapperApplication.Foundation">
>ThemeFile="custom.thm"
> LicenseFile="CustomLicense.rtf"
> LocalizationFile="thm.wxl" /> 
> 
>
> And I am getting the following error when I run it:
>
> Error 0x80070002: Failed to probe for loc file: thm.wxl in path:
>
> C:\Users\Win7\AppData\Local\Temp\{489e3324-6d8d-4ff5-953f-dad01c33c9a4
> }\.ba1\ Error 0x80070002: Failed to initialize data in bootstrapper 
> application.
>
> Am I missing something? I've got a file that I've called "thm.wxl" in 
> the project with this markup:
>
>   Culture="en-us"
> xmlns="http://schemas.microsoft.com/wix/2006/localization";>
> My caption 
>
>
>
> --
> View this message in context:
>
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-sta
> ndard-U 
> I-wxl-tp7580680.html<http://windows-installer-xml-wix-toolset.687559.n
> 2.nabble.com/Burn-standard-UI-wxl-tp7580680.html>
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> ---
> -
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. 
> Discussions will include endpoint security, mobile security and the 
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> SDL PLC confidential, all rights reserved.
> If you are not the intended recipient of this mail SDL requests and 
> requires that you delete it without acting upon or copying any of its 
> contents, and we further request that you advise us.
> SDL PLC is a public limited company registered in England and Wales.
>  Registered number: 02675207.
> Registere

Re: [WiX-users] Burn standard UI .wxl

2012-09-20 Thread Rob Mensching
Note: Foundation UI was intended to be the "foundation" for the RTF and
Hyperlink UI. It was not intended to be used directly by others. Sounds
like Peter figured out how to make it usable. 

On Thu, Sep 20, 2012 at 2:45 AM, Peter Shirtcliffe wrote:

> Maybe this will help. I have a foundation theme working and I've provided
> the
> code below, which is based on the Wix installer's own, although this is
> probably more than what is needed. What I suspect happens is that the
> ThemeFile attribute becomes a Wix variable that is referenced by the
> Wix-defined payloadgroup so that it's included in the bundle. The error
> you're getting might be because the theme file isn't being bundled up.
> Have a
> look in the Wix sources at its own bundle code too and it should help you
> understand what's going on. Also have a look to see if your wxl is being
> extracted at run time.
>
>  Id="WixStandardBootstrapperApplication.Foundation">
>  LicenseFile="$(sys.SOURCEFILEDIR)SDLTradosStudioEULA.rtf"
> LogoFile="$(sys.SOURCEFILEDIR)Trados_icon64.png"
> SuppressOptionsUI="yes"
> ThemeFile="BurntToastTheme.xml"
> LocalizationFile="BurntToastTheme.wxl" />
> 
> 
>
> 
>  SourceFile='!(wix.WixStdbaThemeXml=BurntToastTheme.xml)' />
>  SourceFile='!(wix.WixStdbaThemeWxl=BurntToastTheme.wxl)' />
>  SourceFile='!(wix.WixStdbaLogo=Trados_icon64.png)' />
> 
> SourceFile='!(wix.WixStdbaLicenseRtf=$(sys.SOURCEFILEDIR)SDLTradosStudioEULA.
> rtf)' />
>  SourceFile='BurntToast.png' />
> 
>
> 
> 
> licence
> 
> 
>
> -Original Message-
> From: Nick Ramirez [mailto:nickra...@hotmail.com]
> Sent: 20 September 2012 00:34
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Burn standard UI .wxl
>
> I've got the following markup in my bootstrapper:
>
>  Id="WixStandardBootstrapperApplication.Foundation">
>ThemeFile="custom.thm"
> LicenseFile="CustomLicense.rtf"
> LocalizationFile="thm.wxl" /> 
>
> And I am getting the following error when I run it:
>
> Error 0x80070002: Failed to probe for loc file: thm.wxl in path:
>
> C:\Users\Win7\AppData\Local\Temp\{489e3324-6d8d-4ff5-953f-dad01c33c9a4}\.ba1\
> Error 0x80070002: Failed to initialize data in bootstrapper application.
>
> Am I missing something? I've got a file that I've called "thm.wxl" in the
> project with this markup:
>
> 
>  xmlns="http://schemas.microsoft.com/wix/2006/localization";>
> My caption 
>
>
>
> --
> View this message in context:
>
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-standard-U
> I-wxl-tp7580680.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> -
> -
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and threat
> landscape has changed and how IT managers can respond. Discussions will
> include endpoint security, mobile security and the latest in malware
> threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> SDL PLC confidential, all rights reserved.
> If you are not the intended recipient of this mail SDL requests and
> requires that you delete it without acting upon or copying any of its
> contents, and we further request that you advise us.
> SDL PLC is a public limited company registered in England and Wales.
>  Registered number: 02675207.
> Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6
> 7DY, UK.
>
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://ad.doubleclick.net/clk;258768047;13503038;j?
> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>



-- 
virtually,

   Rob Mensching
   http://RobMensching.com LLC
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
http

Re: [WiX-users] Burn standard UI .wxl

2012-09-20 Thread Peter Shirtcliffe
Maybe this will help. I have a foundation theme working and I've provided the
code below, which is based on the Wix installer's own, although this is
probably more than what is needed. What I suspect happens is that the
ThemeFile attribute becomes a Wix variable that is referenced by the
Wix-defined payloadgroup so that it's included in the bundle. The error
you're getting might be because the theme file isn't being bundled up. Have a
look in the Wix sources at its own bundle code too and it should help you
understand what's going on. Also have a look to see if your wxl is being
extracted at run time.
















licence

 

-Original Message-
From: Nick Ramirez [mailto:nickra...@hotmail.com] 
Sent: 20 September 2012 00:34
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Burn standard UI .wxl

I've got the following markup in my bootstrapper:


   

And I am getting the following error when I run it:

Error 0x80070002: Failed to probe for loc file: thm.wxl in path:
C:\Users\Win7\AppData\Local\Temp\{489e3324-6d8d-4ff5-953f-dad01c33c9a4}\.ba1\
Error 0x80070002: Failed to initialize data in bootstrapper application.

Am I missing something? I've got a file that I've called "thm.wxl" in the
project with this markup:


http://schemas.microsoft.com/wix/2006/localization";>
My caption 



--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-standard-U
I-wxl-tp7580680.html
Sent from the wix-users mailing list archive at Nabble.com.

-
-
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat
landscape has changed and how IT managers can respond. Discussions will
include endpoint security, mobile security and the latest in malware threats.
http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and requires 
that you delete it without acting upon or copying any of its contents, and we 
further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.  
Registered number: 02675207.
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire SL6 7DY, 
UK.


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Burn standard UI .wxl

2012-09-19 Thread Nick Ramirez
The RtfLicense standard UI works. Are there any known issues with the
"Foundation" UI?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-standard-UI-wxl-tp7580680p7580681.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users