
Ящик для предложений: sales@blogslov.ru
Send WiX-devs mailing list submissions to
wix-devs@lists.sourceforge.net
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/wix-devs
or, via email, send a message with subject or body 'help' to
wix-devs-request@lists.sourceforge.net
You can reach the person managing the list at
wix-devs-owner@lists.sourceforge.net
When replying, please edit your Subject line so it is more specific
than "Re: Contents of WiX-devs digest..."
Today's Topics:
1. [ wix-Feature Requests-1741229 ] Partial components
(SourceForge.net)
2. [ wix-Bugs-1739868 ] Pyro does not find .AllowRemoval
property (SourceForge.net)
3. [ wix-Bugs-1739194 ] XmlFile|Config doesn't preserve existing
XML format (SourceForge.net)
4. [ wix-Bugs-1731648 ] Problem referencing existing website to
create vDir (SourceForge.net)
5. [ wix-Bugs-1662218 ] WiX3 doesn't support COM+ (SourceForge.net)
6. [ wix-Bugs-1741663 ] WebAppPool Fails on IIS < 6.0
(SourceForge.net)
7. [ wix-Bugs-1741791 ] spelling mistake in WixUI_en-us.wxl for
"privileges" (SourceForge.net)
8. [ wix-Bugs-1741791 ] spelling mistake in WixUI_en-us.wxl for
"privileges" (SourceForge.net)
9. [ wix-Bugs-1741791 ] spelling mistake in WixUI_en-us.wxl for
"privileges" (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Thu, 21 Jun 2007 17:19:06 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Feature Requests-1741229 ] Partial
components
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Feature Requests item #1741229, was opened at 2007-06-22 03:19
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642717&aid=1741229&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: compiler
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: Shay Erlichmen (blackend)
Assigned to: Nobody/Anonymous (nobody)
Summary: Partial components
Initial Comment:
Hi,
This feature is important aspect of automatic setup building. Today we have Heat that can harvest info from files and translate them into Wix. The problem is that not all the data can be harvested, some data will always be written by the end user.
This forces to use Heat as a prestep when creating setups. You run heat, copy the generated file into Votive and modifiied it accroding to your needs. A Powerful feature will be if the file will be harvested during compile time and the user will not modify it. instead the wxs file will automatically be added to Votive and the user will write it's addition to a in a different file; the linker will combine all the partial s into a single one.
I think there is not need to say how impotent it is to prevent setup issues. Preventing from the user to recreate setup data that is already part of selfreg dll/exe/tlb by letting tools to-do all the grange work will make Wix more user finally and less error prune.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642717&aid=1741229&group_id=105970
------------------------------
Message: 2
Date: Thu, 21 Jun 2007 22:06:41 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1739868 ] Pyro does not find
.AllowRemoval property
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1739868, was opened at 2007-06-19 17:56
Message generated for change (Settings changed) made by barnson
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1739868&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v3.0
>Status: Pending
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Heath Stewart (heaths)
Assigned to: Nobody/Anonymous (nobody)
Summary: Pyro does not find .AllowRemoval property
Initial Comment:
msi.dll!Patch.BuildPairedTransform has a bug when trying to find the AllowRemoval property in the MsiPatchMetadata table. Even though it's defined in the MsiPatchMetadata table, it is not found and instead a property is always added to the patch transform where AllowRemoval is 0.
Note this is for pyro, but there is no category currently for this.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1739868&group_id=105970
------------------------------
Message: 3
Date: Fri, 22 Jun 2007 01:36:56 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1739194 ] XmlFile|Config doesn't
preserve existing XML format
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1739194, was opened at 2007-06-18 09:19
Message generated for change (Comment added) made by robmen
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1739194&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: extensions
Group: v3.0
>Status: Pending
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Adam Strzelecki (ono)
>Assigned to: Rob Mensching (robmen)
Summary: XmlFile|Config doesn't preserve existing XML format
Initial Comment:
Hi Devs,
XmlFile|XmlConfig actions when changing existing files are reformatting them using tab indention, causing the whole file content to differ.
Please use pixd->put_preserveWhiteSpace(VARIANT_TRUE) as in attached patch (see attachments) for every time you open file with IXMLDOMDocument.
Alternatively you can setup whitespace preservation as a parameter to XmlFile|XmlConfig, but I think if you at least respect actual XML file format this would be enough and make happy all WiX users.
Note: Even Microsoft and you don't use tabs for XML formatting of your files.. so forcing XML to be indented with tabs when doing XmlFile is IMHO a bug.
I'm jabberd2 (XMPP service daemon) Windows version maintainer. Currently I'm preparing advanced installer of jabberd2 using WiX. I'm using XmlFile to change some entries on XML config files on setup.
Jabberd config files are quite complicated and having lots of comments, lots of commented out sections, etc. And most important thing they're not using tab indention as it is by default in MSXML.
After XmlFile does the change, and because preserveWhiteSpace of XMLDOMDocument is off, it does reformat of all into the tabbed indention, ruining the whole outline of commented out sections, and making the file look different.
This is major showstopper for me, cause XML files are heart of jabberd2, so now I'm using my custom built WiX with the patch below.
I'd be glad if you update the WiX with proposed changes (or any close alternative), so anybody else that's building jabberd2 have the same MSI output file as me.
See attached patch,
Thanks for great WiX!
----------------------------------------------------------------------
>Comment By: Rob Mensching (robmen)
Date: 2007-06-22 01:36
Message:
Logged In: YES
user_id=991639
Originator: NO
Should be fixed in today's build.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1739194&group_id=105970
------------------------------
Message: 4
Date: Fri, 22 Jun 2007 01:38:16 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1731648 ] Problem referencing existing
website to create vDir
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1731648, was opened at 2007-06-05 12:51
Message generated for change (Comment added) made by robmen
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1731648&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: extensions
Group: v3.0
>Status: Closed
>Resolution: Invalid
Priority: 5
Private: No
Submitted By: AJ Shurts (ajshurts)
>Assigned to: Rob Mensching (robmen)
Summary: Problem referencing existing website to create vDir
Initial Comment:
Referencing an existing website to create a virtual directory does not work with the WixIisExtension. Example:
...
The virtual directory is always created under the default website rather than the referenced website.
See the original discussion on Nabble:
http://www.nabble.com/Creation-of-Virtual-Directory-within-existing-Website-tf3870058.html
----------------------------------------------------------------------
>Comment By: Rob Mensching (robmen)
Date: 2007-06-22 01:38
Message:
Logged In: YES
user_id=991639
Originator: NO
WebSites around found by their WebAddress, not description.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1731648&group_id=105970
------------------------------
Message: 5
Date: Fri, 22 Jun 2007 01:40:22 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1662218 ] WiX3 doesn't support COM+
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1662218, was opened at 2007-02-17 03:37
Message generated for change (Comment added) made by robmen
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1662218&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: extensions
Group: v3.0
>Status: Closed
>Resolution: Fixed
>Priority: 5
Private: No
Submitted By: Alexander Biryukov (alexbirk)
>Assigned to: Fredrik Grohn (fregro)
Summary: WiX3 doesn't support COM+
Initial Comment:
COM+ installation support (Pubca) described in the Wix 3.0 documentation, but it does not support.
I have last Wix version 3.0.2612.0.
----------------------------------------------------------------------
>Comment By: Rob Mensching (robmen)
Date: 2007-06-22 01:40
Message:
Logged In: YES
user_id=991639
Originator: NO
I believe this is fixed in the latest builds.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1662218&group_id=105970
------------------------------
Message: 6
Date: Fri, 22 Jun 2007 08:26:37 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1741663 ] WebAppPool Fails on IIS < 6.0
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1741663, was opened at 2007-06-22 10:26
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741663&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: extensions
Group: v3.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Matt Honeycutt (matt_inrad)
Assigned to: Scott Kurtzeborn (scotk)
Summary: WebAppPool Fails on IIS < 6.0
Initial Comment:
An installer that attempts to set the WebAppPool of a WebApplication will fail with a rollback under Windows XP, but it works fine under Windows Server 2003. I think the correct behavior is for the installer to just ignore the WebAppPool setting. I believe this is the same bug as has been fixed in WiX 2.0 under case number 1213273, as I can do the same thing without any problems under WiX 2.0.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741663&group_id=105970
------------------------------
Message: 7
Date: Fri, 22 Jun 2007 10:38:01 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1741791 ] spelling mistake in
WixUI_en-us.wxl for "privileges"
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1741791, was opened at 2007-06-22 17:38
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741791&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: wixui
Group: v3.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Bruno Sabin (bsabin)
Assigned to: Nobody/Anonymous (nobody)
Summary: spelling mistake in WixUI_en-us.wxl for "privileges"
Initial Comment:
The word "privileges" is misspelled in the file:
src/ext/UIExtension/wixlib/WixUI_en-us.wxl
Below are the two lines involved with the spelling mistake "priveleges".
src/ext/UIExtension/wixlib/WixUI_en-us.wxl:116: [ProductName] will be installed in a per-user folder and be available just for your user account. You do not need local Administrator priveleges.
src/ext/UIExtension/wixlib/WixUI_en-us.wxl:119: [ProductName] will be installed in a per-machine folder by default and be available for all users. You can change the default installation folder. You must have local Administrator priveleges.
Kind regards,
--
bruno
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741791&group_id=105970
------------------------------
Message: 8
Date: Fri, 22 Jun 2007 10:41:02 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1741791 ] spelling mistake in
WixUI_en-us.wxl for "privileges"
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1741791, was opened at 2007-06-22 17:38
Message generated for change (Comment added) made by bsabin
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741791&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: wixui
Group: v3.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Bruno Sabin (bsabin)
Assigned to: Nobody/Anonymous (nobody)
Summary: spelling mistake in WixUI_en-us.wxl for "privileges"
Initial Comment:
The word "privileges" is misspelled in the file:
src/ext/UIExtension/wixlib/WixUI_en-us.wxl
Below are the two lines involved with the spelling mistake "priveleges".
src/ext/UIExtension/wixlib/WixUI_en-us.wxl:116: [ProductName] will be installed in a per-user folder and be available just for your user account. You do not need local Administrator priveleges.
src/ext/UIExtension/wixlib/WixUI_en-us.wxl:119: [ProductName] will be installed in a per-machine folder by default and be available for all users. You can change the default installation folder. You must have local Administrator priveleges.
Kind regards,
--
bruno
----------------------------------------------------------------------
>Comment By: Bruno Sabin (bsabin)
Date: 2007-06-22 17:41
Message:
Logged In: YES
user_id=1380086
Originator: YES
I omitted this in the orignal report to mention that this is reported
against build 3.0.3015.0 of WiX
--
bruno
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741791&group_id=105970
------------------------------
Message: 9
Date: Fri, 22 Jun 2007 11:18:03 -0700
From: "SourceForge.net"
Subject: [WiX-devs] [ wix-Bugs-1741791 ] spelling mistake in
WixUI_en-us.wxl for "privileges"
To: noreply@sourceforge.net
Message-ID:
Content-Type: text/plain; charset="UTF-8"
Bugs item #1741791, was opened at 2007-06-22 10:38
Message generated for change (Settings changed) made by robmen
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741791&group_id=105970
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: wixui
Group: v3.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Bruno Sabin (bsabin)
>Assigned to: Bob Arnson (barnson)
Summary: spelling mistake in WixUI_en-us.wxl for "privileges"
Initial Comment:
The word "privileges" is misspelled in the file:
src/ext/UIExtension/wixlib/WixUI_en-us.wxl
Below are the two lines involved with the spelling mistake "priveleges".
src/ext/UIExtension/wixlib/WixUI_en-us.wxl:116: [ProductName] will be installed in a per-user folder and be available just for your user account. You do not need local Administrator priveleges.
src/ext/UIExtension/wixlib/WixUI_en-us.wxl:119: [ProductName] will be installed in a per-machine folder by default and be available for all users. You can change the default installation folder. You must have local Administrator priveleges.
Kind regards,
--
bruno
----------------------------------------------------------------------
Comment By: Bruno Sabin (bsabin)
Date: 2007-06-22 10:41
Message:
Logged In: YES
user_id=1380086
Originator: YES
I omitted this in the orignal report to mention that this is reported
against build 3.0.3015.0 of WiX
--
bruno
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1741791&group_id=105970
------------------------------
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
------------------------------
_______________________________________________
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs
End of WiX-devs Digest, Vol 13, Issue 20
****************************************
P.S. И не забудьте послать роботу вашу рекламу :)
Обработано объявлений: 11772
Стас Давыдов & Outcorp © 2007