[nant-dev] [ nant-Bugs-901202 ] mono 0.30.1

2004-02-20 Thread SourceForge.net
Bugs item #901202, was opened at 2004-02-20 17:55
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=901202group_id=31650

Category: None
Group: 0.8.4.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Matthijs ter Woord (meddochat)
Assigned to: Nobody/Anonymous (nobody)
Summary: mono 0.30.1

Initial Comment:
Hi 

i'm running Mono 0.30.1 and was trying to build nant 
0.84 on Fedora Core 1.

first i had to remove the NAnt.Win32Tasks directory of 
the source distribution. then i had to remove the 
NAnt.Win32Tasks.dll file from the bin directory. then i 
edited the NAnt.Console.exe.config file. i removed the 
Win32 section out of it

then i saw that NAnt was thinking it was running on 
windows ?! so it couldn't find framework mono.

Matthijs ter Woord

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=901202group_id=31650


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] Addition documentation (+/-)?

2004-02-20 Thread Scott Hernandez
Also, the Wiki is a great place for this type of info; it can be updated by
users directly. :)

http://nant.sf.net/wiki

- Original Message - 
From: Gert Driesen [EMAIL PROTECTED]
 Perhaps first post it to the list for review, is that ok for you ?
 - Original Message - 
 From: Mitch Denny [EMAIL PROTECTED]
 Gert suggested that we start to add references to third party
 tasks/resources. I've got some doco to commit which is a start. Can I
 get a green light to commit that (+/-)?



---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] [ nant-Bugs-742587 ] NullReferenceException on entity ref or process instruction

2004-02-20 Thread SourceForge.net
Bugs item #742587, was opened at 2003-05-23 13:35
Message generated for change (Comment added) made by skot
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=742587group_id=31650

Category: Core
Group: 0.8.2.0
Status: Open
Resolution: None
Priority: 2
Submitted By: Curt Arnold (carnold)
Assigned to: Scott Hernandez (skot)
Summary: NullReferenceException on entity ref or process instruction

Initial Comment:
When using an external entity to contain task 
definitions, NAnt 0.8.2 will generate the following stack 
trace:


INTERNAL ERROR
System.NullReferenceException: Object reference not 
set to an instance of an obj
ect.
   at 
SourceForge.NAnt.LocationMap.GetXPathFromNode
(XmlNode node)
   at SourceForge.NAnt.LocationMap.GetLocation
(XmlNode node)
   at SourceForge.NAnt.TaskFactory.CreateTask
(XmlNode taskNode, Project proj)
   at 
SourceForge.NAnt.Project.InitializeProjectDocument
(XmlDocument doc)
   at SourceForge.NAnt.Project.Execute()
   at SourceForge.NAnt.Project.Run()


This is due to a flaw in 
Project.InitializeProjectDocument which will pass an 
EntityReference node to CreateTask which will 
eventually fail to create an XPath reference.

Attached file contains a build file that will fail on 0.8.2 
and a diff file that will fix the problem.  The expected 
result of the build file is to display Hello, World.

--

Comment By: Scott Hernandez (skot)
Date: 2004-02-20 10:52

Message:
Logged In: YES 
user_id=4117

As a first step I have removed the error generated by 
entities. The next step is to include the entity, and evaluate 
it correctly. 

For now, Entities are simply ignored.

--

Comment By: Scott Hernandez (skot)
Date: 2004-02-20 09:59

Message:
Logged In: YES 
user_id=4117

As a first step I have removed the error generated by 
entities. The next step is to include the entity, and evaluate 
it correctly. 

For now, Entities are simply ignored.

--

Comment By: Gert Driesen (drieseng)
Date: 2003-11-27 00:12

Message:
Logged In: YES 
user_id=707851

Scott, made any progress on this ?

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=742587group_id=31650


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] [ nant-Bugs-742587 ] NullReferenceException on entity ref or process instruction

2004-02-20 Thread SourceForge.net
Bugs item #742587, was opened at 2003-05-23 13:35
Message generated for change (Comment added) made by skot
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=742587group_id=31650

Category: Core
Group: 0.8.2.0
Status: Open
Resolution: None
Priority: 2
Submitted By: Curt Arnold (carnold)
Assigned to: Scott Hernandez (skot)
Summary: NullReferenceException on entity ref or process instruction

Initial Comment:
When using an external entity to contain task 
definitions, NAnt 0.8.2 will generate the following stack 
trace:


INTERNAL ERROR
System.NullReferenceException: Object reference not 
set to an instance of an obj
ect.
   at 
SourceForge.NAnt.LocationMap.GetXPathFromNode
(XmlNode node)
   at SourceForge.NAnt.LocationMap.GetLocation
(XmlNode node)
   at SourceForge.NAnt.TaskFactory.CreateTask
(XmlNode taskNode, Project proj)
   at 
SourceForge.NAnt.Project.InitializeProjectDocument
(XmlDocument doc)
   at SourceForge.NAnt.Project.Execute()
   at SourceForge.NAnt.Project.Run()


This is due to a flaw in 
Project.InitializeProjectDocument which will pass an 
EntityReference node to CreateTask which will 
eventually fail to create an XPath reference.

Attached file contains a build file that will fail on 0.8.2 
and a diff file that will fix the problem.  The expected 
result of the build file is to display Hello, World.

--

Comment By: Scott Hernandez (skot)
Date: 2004-02-20 09:59

Message:
Logged In: YES 
user_id=4117

As a first step I have removed the error generated by 
entities. The next step is to include the entity, and evaluate 
it correctly. 

For now, Entities are simply ignored.

--

Comment By: Gert Driesen (drieseng)
Date: 2003-11-27 00:12

Message:
Logged In: YES 
user_id=707851

Scott, made any progress on this ?

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=742587group_id=31650


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


[nant-dev] [ nant-Bugs-742587 ] NullReferenceException on entity ref or process instruction

2004-02-20 Thread SourceForge.net
Bugs item #742587, was opened at 2003-05-23 20:35
Message generated for change (Comment added) made by carnold
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=742587group_id=31650

Category: Core
Group: 0.8.2.0
Status: Open
Resolution: None
Priority: 2
Submitted By: Curt Arnold (carnold)
Assigned to: Scott Hernandez (skot)
Summary: NullReferenceException on entity ref or process instruction

Initial Comment:
When using an external entity to contain task 
definitions, NAnt 0.8.2 will generate the following stack 
trace:


INTERNAL ERROR
System.NullReferenceException: Object reference not 
set to an instance of an obj
ect.
   at 
SourceForge.NAnt.LocationMap.GetXPathFromNode
(XmlNode node)
   at SourceForge.NAnt.LocationMap.GetLocation
(XmlNode node)
   at SourceForge.NAnt.TaskFactory.CreateTask
(XmlNode taskNode, Project proj)
   at 
SourceForge.NAnt.Project.InitializeProjectDocument
(XmlDocument doc)
   at SourceForge.NAnt.Project.Execute()
   at SourceForge.NAnt.Project.Run()


This is due to a flaw in 
Project.InitializeProjectDocument which will pass an 
EntityReference node to CreateTask which will 
eventually fail to create an XPath reference.

Attached file contains a build file that will fail on 0.8.2 
and a diff file that will fix the problem.  The expected 
result of the build file is to display Hello, World.

--

Comment By: Curt Arnold (carnold)
Date: 2004-02-21 03:27

Message:
Logged In: YES 
user_id=27193

The attachment had a fix and tests that fixed the whole problem.  I don't 
know how much the underlying code changed, but I would think it would 
be simplier just to review the patch than to work through the problem 
piecemeal.

--

Comment By: Scott Hernandez (skot)
Date: 2004-02-20 18:52

Message:
Logged In: YES 
user_id=4117

As a first step I have removed the error generated by 
entities. The next step is to include the entity, and evaluate 
it correctly. 

For now, Entities are simply ignored.

--

Comment By: Scott Hernandez (skot)
Date: 2004-02-20 17:59

Message:
Logged In: YES 
user_id=4117

As a first step I have removed the error generated by 
entities. The next step is to include the entity, and evaluate 
it correctly. 

For now, Entities are simply ignored.

--

Comment By: Gert Driesen (drieseng)
Date: 2003-11-27 08:12

Message:
Logged In: YES 
user_id=707851

Scott, made any progress on this ?

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=402868aid=742587group_id=31650


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers


RE: [nant-dev] Addition documentation (+/-)?

2004-02-20 Thread Mitch Denny
Just through some of the stuff into the Wiki just now :)


- Mitch Denny
- [EMAIL PROTECTED]
- http://www.monash.net
- +61 (414) 610141
-  
 
-Original Message-
From: Scott Hernandez [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 21 February 2004 4:52 AM
To: Mitch Denny
Cc: [EMAIL PROTECTED]
Subject: Re: [nant-dev] Addition documentation (+/-)?

Also, the Wiki is a great place for this type of info; it can be updated
by users directly. :)

http://nant.sf.net/wiki

- Original Message -
From: Gert Driesen [EMAIL PROTECTED]
 Perhaps first post it to the list for review, is that ok for you ?
 - Original Message -
 From: Mitch Denny [EMAIL PROTECTED] Gert suggested that we 
 start to add references to third party tasks/resources. I've got some 
 doco to commit which is a start. Can I get a green light to commit 
 that (+/-)?





---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id56alloc_id438op=click
___
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers