Бизнес-робот
Бизнес
робот

Темы:

Архив:

Каталог рекламы и объявлений

Ящик для предложений: sales@blogslov.ru

WiX-devs Digest, Vol 13, Issue 25

Send WiX-devs mailing list submissions to


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


You can reach the person managing the list at


When replying, please edit your Subject line so it is more specific
than "Re: Contents of WiX-devs digest..."


Today's Topics:

1. Get 250 FREE Business Cards - On Us!
()
2. Re: questions on procedure for submitting changes (Kevin Fischer)
3. Re: Passing parameters to binary custom action (Adam Langley)
4. Re: Passing parameters to binary custom action (Bob Arnson)
5. Re: questions on procedure for submitting changes (Bob Arnson)
6. Re: Passing parameters to binary custom action (Adam Langley)


----------------------------------------------------------------------

Message: 1
Date: Tue, 26 Jun 2007 14:48:37 -0600
From:
Subject: [WiX-devs] Get 250 FREE Business Cards - On Us!
To:
Message-ID:
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...

------------------------------

Message: 2
Date: Tue, 26 Jun 2007 18:54:04 -0600
From: Kevin Fischer
Subject: Re: [WiX-devs] questions on procedure for submitting changes
To: Bob Arnson ,
Message-ID:
Content-Type: text/plain; charset="windows-1252"

Thanks for the info.

I'm already approved on the assignment agreement. I uploaded the code change via a tracker. The entry is at:
http://sourceforge.net/tracker/index.php?func=detail&aid=1743864&group_id=105970&atid=642717

Let me know if there's anything I can do to help it through the process.

Thanks,
Kevin


Date: Mon, 25 Jun 2007 20:43:41 -0700From: : : : Re: [WiX-devs] questions on procedure for submitting changes
Kevin Fischer wrote:


- This appears to be an older version. I've downloaded the sources separately for v3 (build 3015) and they don't seem to match up with what CVS pulled down. I tried browsing CVS via the web interface, and it matches what I got via WinCVS, but not the source download for 3015. Am I pointing to the wrong server/module or something?No, it looks like it hasn't gotten updated recently. Sorry for the earlier misdirect -- it looks like using the sources .zip is right approach.
- Once I resolve my version issues, how do I submit a set of files for code review? It appears that a Tracker is the preferred method. Is that correct? How do I package up my code changes to attach to a tracker?First step is to get an assignment agreement. Rob's MSDN blog is down but I believe the trick is to e-mail to start the process. Then open a bug or feature request and attach the changes. You can use a patch-making tool or just attach a .zip file of the changed files.--
sig://boB
http://joyofsetup.com/
_________________________________________________________________
Make every IM count. Download Windows Live Messenger and join the i?m Initiative now. It?s free.??
http://im.live.com/messenger/im/home/?source=TAGWL_June07
-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

Message: 3
Date: Wed, 27 Jun 2007 13:40:48 +1200
From: Adam Langley
Subject: Re: [WiX-devs] Passing parameters to binary custom action
To:
Message-ID:
Content-Type: text/plain; charset=us-ascii

Thanks Bob,

I'm well down that road now, I've written my
extension/compiler/decompiler/tables (all modelled on the SQL extension) Im
just stuck at how to generate my wixlib for my extension...
Can you send any help my way? I cant find any documentation on the
steps/files required and their purposes...

Thanks

- Adam Langley

-----Original Message-----
From: Bob Arnson [mailto:]
Sent: Tuesday, 26 June 2007 2:55 p.m.
To: Adam Langley
Cc:
Subject: Re: [WiX-devs] Passing parameters to binary custom action

Adam Langley wrote:
> Do you think it would be worthwhile trying to integrate it as an
'extension'
> so that I can get XML schema validation, and a custom XML declaration
> format?
>

Absolutely. That's the easiest way to get well-formed data into custom
tables.

--
sig://boB
http://joyofsetup.com/





------------------------------

Message: 4
Date: Tue, 26 Jun 2007 21:26:14 -0700
From: Bob Arnson
Subject: Re: [WiX-devs] Passing parameters to binary custom action
To: Adam Langley
Cc:
Message-ID:
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Adam Langley wrote:
> I'm well down that road now, I've written my
> extension/compiler/decompiler/tables (all modelled on the SQL extension) Im
> just stuck at how to generate my wixlib for my extension...
> Can you send any help my way? I cant find any documentation on the
> steps/files required and their purposes...
>

There's no doc to speak of, just the existing code. The WiX extensions
all have binary .wixlibs as embedded resources. Then you override
GetLibrary to return it. So the extension has to be built last: First
build any CA DLLs, then build the .wixlib that includes the DLL, then
embed it in the extension.

Does that help?

--
sig://boB
http://joyofsetup.com/





------------------------------

Message: 5
Date: Tue, 26 Jun 2007 21:31:50 -0700
From: Bob Arnson
Subject: Re: [WiX-devs] questions on procedure for submitting changes
To: Kevin Fischer
Cc:
Message-ID:
Content-Type: text/plain; charset="windows-1252"

Kevin Fischer wrote:
> I'm already approved on the assignment agreement. I uploaded the code
> change via a tracker. The entry is at:
> http://sourceforge.net/tracker/index.php?func=detail&aid=1743864&group_id=105970&atid=642717
>

Thanks -- I'll review the code on WiX night on Thursday.

--
sig://boB
http://joyofsetup.com/

-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

Message: 6
Date: Wed, 27 Jun 2007 16:41:05 +1200
From: Adam Langley
Subject: Re: [WiX-devs] Passing parameters to binary custom action
To:
Message-ID:
Content-Type: text/plain; charset=us-ascii

Thanks Bob,
I've managed to get it all packaged up and working, so that now all I have
to put in my wxs is something like this...








And it works fine... but I have to put my custom action DLL into my setup
directory before running light, I assume thats because I need to somehow
tell lit.exe to embed my CA dll into the wixlib?
How do I do that?

Thanks for all your help Bob

- Adam Langley
-----Original Message-----
From: Bob Arnson [mailto:]
Sent: Wednesday, 27 June 2007 4:26 p.m.
To: Adam Langley
Cc:
Subject: Re: [WiX-devs] Passing parameters to binary custom action

Adam Langley wrote:
> I'm well down that road now, I've written my
> extension/compiler/decompiler/tables (all modelled on the SQL extension)
Im
> just stuck at how to generate my wixlib for my extension...
> Can you send any help my way? I cant find any documentation on the
> steps/files required and their purposes...
>

There's no doc to speak of, just the existing code. The WiX extensions
all have binary .wixlibs as embedded resources. Then you override
GetLibrary to return it. So the extension has to be built last: First
build any CA DLLs, then build the .wixlib that includes the DLL, then
embed it in the extension.

Does that help?

--
sig://boB
http://joyofsetup.com/





------------------------------

-------------------------------------------------------------------------
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

https://lists.sourceforge.net/lists/listinfo/wix-devs


End of WiX-devs Digest, Vol 13, Issue 25
****************************************