You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(142) |
Jun
(27) |
Jul
(122) |
Aug
(36) |
Sep
(59) |
Oct
(86) |
Nov
(140) |
Dec
(80) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(52) |
Feb
(153) |
Mar
(118) |
Apr
(143) |
May
(123) |
Jun
(64) |
Jul
(282) |
Aug
(469) |
Sep
(56) |
Oct
(201) |
Nov
(182) |
Dec
(31) |
| 2005 |
Jan
(229) |
Feb
(316) |
Mar
(187) |
Apr
(130) |
May
(190) |
Jun
(154) |
Jul
(148) |
Aug
(133) |
Sep
(209) |
Oct
(234) |
Nov
(100) |
Dec
(40) |
| 2006 |
Jan
(1) |
Feb
(87) |
Mar
(73) |
Apr
(126) |
May
(58) |
Jun
(8) |
Jul
(12) |
Aug
(14) |
Sep
(22) |
Oct
(33) |
Nov
(4) |
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
|
4
|
5
|
6
(2) |
7
(1) |
8
|
9
|
10
|
|
11
|
12
|
13
(1) |
14
|
15
|
16
(1) |
17
|
|
18
|
19
|
20
|
21
|
22
(1) |
23
|
24
|
|
25
|
26
|
27
|
28
|
29
|
30
(2) |
|
|
From: <hu...@us...> - 2006-06-30 22:38:53
|
Revision: 2475 Author: hunth Date: 2006-06-30 15:38:49 -0700 (Fri, 30 Jun 2006) ViewCVS: http://svn.sourceforge.net/ccnet/?rev=2475&view=rev Log Message: ----------- CCNET-711: Fixed build failure Modified Paths: -------------- trunk/project/UnitTests/Core/SourceControl/BitKeeper/BitKeeperHistoryParserTest.cs Modified: trunk/project/UnitTests/Core/SourceControl/BitKeeper/BitKeeperHistoryParserTest.cs =================================================================== --- trunk/project/UnitTests/Core/SourceControl/BitKeeper/BitKeeperHistoryParserTest.cs 2006-06-30 22:13:53 UTC (rev 2474) +++ trunk/project/UnitTests/Core/SourceControl/BitKeeper/BitKeeperHistoryParserTest.cs 2006-06-30 22:38:49 UTC (rev 2475) @@ -18,7 +18,7 @@ // Check specifics of the ChangeSet mod Assert.AreEqual("user@host.(none)", mods[0].UserName); - Assert.AreEqual("Remove file in subdir.", mods[0].Comment); + Assert.AreEqual(" Remove file in subdir.", mods[0].Comment); Assert.AreEqual("ChangeSet", mods[0].Type); Assert.AreEqual("ChangeSet", mods[0].FileName); Assert.AreEqual("", mods[0].FolderName); @@ -33,7 +33,7 @@ // Check specifics of the Renamed mod Assert.AreEqual("user@host.(none)", mods[1].UserName); - Assert.AreEqual("Rename: asubdir/baz.txt -> asubdir2/bazzz.txt", mods[1].Comment); + Assert.AreEqual(" Rename: asubdir/baz.txt -> asubdir2/bazzz.txt", mods[1].Comment); Assert.AreEqual("Renamed", mods[1].Type); Assert.AreEqual("bazzz.txt", mods[1].FileName); Assert.AreEqual("asubdir2", mods[1].FolderName); @@ -48,7 +48,7 @@ // Check specifics of the Deleted mod Assert.AreEqual("user@host.(none)", mods[1].UserName); - Assert.AreEqual("Delete: asubdir/baz.txt", mods[1].Comment); + Assert.AreEqual(" Delete: asubdir/baz.txt", mods[1].Comment); Assert.AreEqual("Deleted", mods[1].Type); Assert.AreEqual("baz.txt", mods[1].FileName); Assert.AreEqual("asubdir", mods[1].FolderName); @@ -63,7 +63,7 @@ // Check specifics of the Added mod Assert.AreEqual("user@host.(none)", mods[1].UserName); - Assert.AreEqual("BitKeeper file /var/lib/bk/demo/dev-1.0/asubdir/baz.txt", mods[1].Comment); + Assert.AreEqual(" BitKeeper file /var/lib/bk/demo/dev-1.0/asubdir/baz.txt", mods[1].Comment); Assert.AreEqual("Added", mods[1].Type); Assert.AreEqual("baz.txt", mods[1].FileName); Assert.AreEqual("asubdir", mods[1].FolderName); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
From: <hu...@us...> - 2006-06-30 22:13:57
|
Revision: 2474 Author: hunth Date: 2006-06-30 15:13:53 -0700 (Fri, 30 Jun 2006) ViewCVS: http://svn.sourceforge.net/ccnet/?rev=2474&view=rev Log Message: ----------- CCNET-711: Allows bitkeeper to handle blank lines in comments Modified Paths: -------------- trunk/project/core/sourcecontrol/BitKeeper/BitKeeperHistoryParser.cs Modified: trunk/project/core/sourcecontrol/BitKeeper/BitKeeperHistoryParser.cs =================================================================== --- trunk/project/core/sourcecontrol/BitKeeper/BitKeeperHistoryParser.cs 2006-06-30 21:20:19 UTC (rev 2473) +++ trunk/project/core/sourcecontrol/BitKeeper/BitKeeperHistoryParser.cs 2006-06-30 22:13:53 UTC (rev 2474) @@ -147,11 +147,16 @@ private string ParseComment(TextReader bkLog) { - // All the text from now to the next blank line constitues the comment + // All the text from now to the next blank line constitutes the comment string message = string.Empty; bool multiLine = false; - currentLine = bkLog.ReadLine().TrimStart(new char[1] {' '}); + // We don't trim the newly read line because blank comments lines + // start with two or three spaces, while a blank line between changes + // or changesets starts with no spaces. Thus, we can handle blank comment + // lines only if we treat the lines that start with spaces a "non-empty"; + // therefore, no trimming here! + currentLine = bkLog.ReadLine(); while (currentLine != null && currentLine.Length != 0) { if (multiLine) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
From: <hu...@us...> - 2006-06-13 23:31:48
|
Revision: 2467 Author: hunth Date: 2006-06-13 16:31:38 -0700 (Tue, 13 Jun 2006) ViewCVS: http://svn.sourceforge.net/ccnet/?rev=2467&view=rev Log Message: ----------- Modified Paths: -------------- trunk/project/UnitTests/Core/Publishers/EmailGatewayTest.cs trunk/project/UnitTests/Core/Publishers/EmailPublisherStub.cs trunk/project/UnitTests/Core/Publishers/EmailPublisherTest.cs trunk/project/UnitTests/Core/Publishers/MockEmailGateway.cs trunk/project/core/publishers/EmailGateway.cs trunk/project/core/publishers/EmailPublisher.cs Modified: trunk/project/UnitTests/Core/Publishers/EmailGatewayTest.cs =================================================================== --- trunk/project/UnitTests/Core/Publishers/EmailGatewayTest.cs 2006-06-11 19:36:18 UTC (rev 2466) +++ trunk/project/UnitTests/Core/Publishers/EmailGatewayTest.cs 2006-06-13 23:31:38 UTC (rev 2467) @@ -10,10 +10,11 @@ { MockEmailGateway mail = MockEmailGateway.Create(); mail.MailHost = "partagas.servidium.com"; - mail.Send("or...@th...", "ow...@ex...", "test message", "woo-hoo"); + mail.Send("or...@th...", "ow...@ex...", "sss...@st...", "test message", "woo-hoo"); Assert.AreEqual(1, mail.SentMessages.Count); Assert.AreEqual("or...@th...", ((MailMessage)mail.SentMessages[0]).From); Assert.AreEqual("ow...@ex...", ((MailMessage)mail.SentMessages[0]).To); + Assert.AreEqual("sss...@st...", ((MailMessage)mail.SentMessages[0]).Headers["Reply-To"]); Assert.AreEqual("test message", ((MailMessage)mail.SentMessages[0]).Subject); Assert.AreEqual("woo-hoo", ((MailMessage)mail.SentMessages[0]).Body); } Modified: trunk/project/UnitTests/Core/Publishers/EmailPublisherStub.cs =================================================================== --- trunk/project/UnitTests/Core/Publishers/EmailPublisherStub.cs 2006-06-11 19:36:18 UTC (rev 2466) +++ trunk/project/UnitTests/Core/Publishers/EmailPublisherStub.cs 2006-06-13 23:31:38 UTC (rev 2467) @@ -10,7 +10,7 @@ [ReflectorProperty("save", Required=false)] public bool SaveToFile = false; - public override void SendMessage(string from, string to, string subject, string message) + public override void SendMessage(string from, string to, string replyto, string subject, string message) { CruiseControl.Core.Util.Log.Debug("email message = " + message); if (SaveToFile) Modified: trunk/project/UnitTests/Core/Publishers/EmailPublisherTest.cs =================================================================== --- trunk/project/UnitTests/Core/Publishers/EmailPublisherTest.cs 2006-06-11 19:36:18 UTC (rev 2466) +++ trunk/project/UnitTests/Core/Publishers/EmailPublisherTest.cs 2006-06-13 23:31:38 UTC (rev 2467) @@ -27,12 +27,13 @@ [Test] public void SendMessage() { - publisher.SendMessage("fr...@fo...", "to...@ba...", "test subject", "test message"); + publisher.SendMessage("fr...@fo...", "to...@ba...", "re...@ba...", "test subject", "test message"); Assert.AreEqual(1, gateway.SentMessages.Count); MailMessage message = (MailMessage) gateway.SentMessages[0]; Assert.AreEqual("fr...@fo...", message.From); Assert.AreEqual("to...@ba...", message.To); + Assert.AreEqual("re...@ba...", message.Headers["Reply-To"]); Assert.AreEqual("test subject", message.Subject); Assert.AreEqual("test message", message.Body); } Modified: trunk/project/UnitTests/Core/Publishers/MockEmailGateway.cs =================================================================== --- trunk/project/UnitTests/Core/Publishers/MockEmailGateway.cs 2006-06-11 19:36:18 UTC (rev 2466) +++ trunk/project/UnitTests/Core/Publishers/MockEmailGateway.cs 2006-06-13 23:31:38 UTC (rev 2467) @@ -17,11 +17,12 @@ set { _mailhost = value; } } - public override void Send(string from, string to, string subject, string message) + public override void Send(string from, string to, string replyto, string subject, string message) { MailMessage email = new MailMessage(); email.From = from; email.To = to; + email.Headers["Reply-To"] = replyto; email.Subject = subject; email.Body = message; Modified: trunk/project/core/publishers/EmailGateway.cs =================================================================== --- trunk/project/core/publishers/EmailGateway.cs 2006-06-11 19:36:18 UTC (rev 2466) +++ trunk/project/core/publishers/EmailGateway.cs 2006-06-13 23:31:38 UTC (rev 2467) @@ -11,11 +11,12 @@ set { SmtpMail.SmtpServer = value; } } - public virtual void Send(string from, string to, string subject, string messageText) + public virtual void Send(string from, string to, string replyto, string subject, string messageText) { MailMessage mailMessage = new MailMessage(); mailMessage.From = from; mailMessage.To = to; + mailMessage.Headers.Add("Reply-To", replyto); mailMessage.Subject = subject; mailMessage.BodyFormat = MailFormat.Html; mailMessage.Body = messageText; Modified: trunk/project/core/publishers/EmailPublisher.cs =================================================================== --- trunk/project/core/publishers/EmailPublisher.cs 2006-06-11 19:36:18 UTC (rev 2466) +++ trunk/project/core/publishers/EmailPublisher.cs 2006-06-13 23:31:38 UTC (rev 2467) @@ -16,6 +16,7 @@ { private EmailGateway emailGateway = new EmailGateway(); private string fromAddress; + private string replytoAddress; private Hashtable users = new Hashtable(); private Hashtable groups = new Hashtable(); private IMessageBuilder messageBuilder; @@ -61,6 +62,13 @@ set { fromAddress = value; } } + [ReflectorProperty("replyto", Required = false)] + public string ReplyToAddress + { + get { return replytoAddress; } + set { replytoAddress = value; } + } + /// <summary> /// Set this property (in configuration) to enable HTML emails containing build details. /// This property is deprecated and should be removed. It should be replaced by the MessageBuilder property. @@ -106,24 +114,24 @@ EmailMessage emailMessage = new EmailMessage(result, this); string to = emailMessage.Recipients; - string subject = emailMessage.Subject; + string subject = emailMessage.Subject; string message = CreateMessage(result); if (IsRecipientSpecified(to)) { - SendMessage(fromAddress, to, subject, message); + SendMessage(fromAddress, to, replytoAddress, subject, message); } - } + } private bool IsRecipientSpecified(string to) { return to != null && to.Trim() != string.Empty; } - public virtual void SendMessage(string from, string to, string subject, string message) + public virtual void SendMessage(string from, string to, string replyto, string subject, string message) { try { - emailGateway.Send(from, to, subject, message); + emailGateway.Send(from, to, replyto, subject, message); } catch (Exception e) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
From: Henry C. <sqg...@ro...> - 2006-06-07 00:38:14
|
A B S Y is a high growth issue and should be purchased by stock traders and those that can afford to make quick money on these fast moving issues. This stock will explode. Do not wait until it is too late. Urgent watch alert for all members starting now. Date : 7 Jun 2006 Company : AbsoluteSKY Ticker : A B S Y Profits of 300-400 % EXPECTED Yes, it looks like the momentum has started up again. Today : $0.95 5month Target : $1 Recommendation : 100-300% |
|
From: Marcus M. <fvq...@ge...> - 2006-06-06 11:17:27
|
Trade Date: Tuesday, June 6th, 2006 Company: BioElectronics Corporation Symbol: BIEL Price: $0.025 IS MOMENTUM BUILDING FOR THIS STOCK? CAN YOU MAKE SOME FAST MONEY ON IT? RADAR BIEL FOR TUESDAY'S OPEN RIGHT NOW!! THE ALERT IS ON!!! RECENT NEWS HEADLINE: (GO READ ALL THE NEWS ON BIEL RIGHT NOW!) BioElectronics Corporation Announces New 510(k) Market Clearance Application Filed With FDA!! About BioElectronics Corporation (Source: News 5/18/2006) BioElectronics currently manufactures and sells ActiPatch(TM), a drug-free anti-inflammatory patch with an embedded battery operated microchip that delivers weeks of continuous pulsed therapy for less than a dollar a day. The unique ActiPatch delivery system, using patented technology, provides a cost-effective, patient friendly method to reduce soft tissue pain and swelling. GO READ ALL THE NEWS ON THIS ONE!! DO YOUR DUE DILIGENCE!! RADAR IT FOR TUESDAY'S OPEN NOW! ______________ Information within this report contains forward looking statements within the meaning of Section 27A of the Securities Act of 1933 and Section 21B of the SEC Act of 1934. Statements that involve discussions with respect to projections of future events are not statements of historical fact and may be forward looking statements. Don't rely on them to make a decision. Past performance is never indicative of future results. We received four hundred thousand free trading shares in the past for our services. All those shares have been sold. We have received an additional one million free trading shares now. We intend to sell all one million shares now, which could cause the stock to go down, resulting in losses for you. The four hundred thousand shares and one million shares were received from two different third parties, not officers, directors or affiliate shareholders. This company has: an accumulated deficit, a negative net worth, a reliance on loans from officers directors and affiliates to pay expenses, and a nominal cash position. These factors raise substantial doubt about its ability to continue as a going concern. The company and its president are a defendant in a lawsuit. The publicly available float of stock is currently increasing. URGENT: Read the company's SEC filing before you invest. This report shall not be construed as any kind of investment advice or solicitation. WARNING: You can lose all your money by investing in this stock. |
|
From: Isaac L. <aom...@ba...> - 2006-06-06 03:04:04
|
Breaking news alert issue - big news coming. GET IN NOW!!! You know the old saying, buy the rumor and sell on the news. The stocks we profile show a significant increase in stock price and sometimes in days, not months or years. Date : 05/06/06 Company Name : Wataire Industries Stock : W T A F Timing is everything! Profits of 200-400 % EXPECTED Opening Price : $0.60 12month Target : $1 - $3 Status : BUY We Love this company and at anytime they can put out major news and the price can triple. |