Skip to content

Commit c7362bb

Browse files
reinaldocoelho_cpreinaldocoelho_cp
authored andcommitted
Move all project to Trunk folder.
1 parent a1706a3 commit c7362bb

1,911 files changed

Lines changed: 102771 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Build/Help/..svnbridge/.svnbridge

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?><ItemProperties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Properties><Property><Name>svn:ignore</Name><Value>Working
2+
</Value></Property></Properties></ItemProperties>
File renamed without changes.

Build/Help/Documentation.chm

3.96 MB
Binary file not shown.

Build/Help/LastBuild.log

Lines changed: 6458 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Copyright 2001-2010 - Active Up SPRLU (http://www.agilecomponents.com)
2+
//
3+
// This file is part of MailSystem.NET.
4+
// MailSystem.NET is free software; you can redistribute it and/or modify
5+
// it under the terms of the GNU Lesser General Public License as published by
6+
// the Free Software Foundation; either version 2 of the License, or
7+
// (at your option) any later version.
8+
//
9+
// MailSystem.NET is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU Lesser General Public License for more details.
13+
14+
// You should have received a copy of the GNU Lesser General Public License
15+
// along with SharpMap; if not, write to the Free Software
16+
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17+
18+
namespace ActiveUp.Net.Mail
19+
{
20+
#region ContentDisposition Enumeration
21+
/// <summary>
22+
/// The possible Content-dispositions for MIME parts.
23+
/// </summary>
24+
[System.Serializable]
25+
public enum ContentDisposition
26+
{
27+
/// <summary>
28+
/// A bodypart should have an Inline ContentDisposition if it is intended to be displayed automatically upon display of the message.
29+
/// </summary>
30+
Inline,
31+
/// <summary>
32+
/// Bodyparts can have Attachment ContentDisposition to indicate that they are separate from the main body of the mail message, and that their display should not be automatic, but contingent upon some further action of the user.
33+
/// </summary>
34+
Attachment
35+
}
36+
#endregion
37+
}

Class Library/ActiveUp.Net.Common/Parserv1.cs

Lines changed: 975 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
5+
namespace ActiveUp.Net.Common.Utils
6+
{
7+
public static class ExtendString
8+
{
9+
public static IEnumerable<string> SplitAndKeepDelimiters(this string input, params char[] delimiters)
10+
{
11+
return SplitAndKeepDelimiters(input, StringSplitOptions.None, delimiters);
12+
}
13+
14+
public static IEnumerable<string> SplitAndKeepDelimiters(this string input, StringSplitOptions options, params char[] delimiters)
15+
{
16+
var previousDelimiterIndex = 0;
17+
for (var i = 0; i < input.Length; ++i)
18+
{
19+
if (delimiters.Contains(input[i]))
20+
{
21+
var token = input.Substring(previousDelimiterIndex, i - previousDelimiterIndex);
22+
if (options != StringSplitOptions.RemoveEmptyEntries || !string.IsNullOrEmpty(token))
23+
yield return token;
24+
yield return new string(input[i], 1);
25+
previousDelimiterIndex = i + 1;
26+
}
27+
}
28+
29+
var lastToken = input.Substring(previousDelimiterIndex, input.Length - previousDelimiterIndex);
30+
if (options != StringSplitOptions.RemoveEmptyEntries || !string.IsNullOrEmpty(lastToken))
31+
yield return lastToken;
32+
}
33+
}
34+
}

Class Library/ActiveUp.Net.Groupware/..svnbridge/ActiveUp.Net.PDI.snk renamed to Class Library/ActiveUp.Net.PDI/..svnbridge/ActiveUp.Net.PDI.snk

File renamed without changes.
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5+
<ProductVersion>8.0.50727</ProductVersion>
6+
<SchemaVersion>2.0</SchemaVersion>
7+
<ProjectGuid>{C646ED2B-50B7-4178-BEFA-657F1259251F}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>ActiveUp.Net.PDI</RootNamespace>
11+
<AssemblyName>ActiveUp.Net.PDI</AssemblyName>
12+
<SccProjectName>SAK</SccProjectName>
13+
<SccLocalPath>SAK</SccLocalPath>
14+
<SccAuxPath>SAK</SccAuxPath>
15+
<SccProvider>SAK</SccProvider>
16+
<SignAssembly>true</SignAssembly>
17+
<AssemblyOriginatorKeyFile>ActiveUp.Net.PDI.snk</AssemblyOriginatorKeyFile>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<Optimize>false</Optimize>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
<DocumentationFile>bin\Debug\ActiveUp.Net.PDI.XML</DocumentationFile>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<DebugType>pdbonly</DebugType>
31+
<Optimize>true</Optimize>
32+
<OutputPath>bin\Release\</OutputPath>
33+
<DefineConstants>TRACE</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
<DocumentationFile>bin\Release\ActiveUp.Net.PDI.XML</DocumentationFile>
37+
</PropertyGroup>
38+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Trial|AnyCPU' ">
39+
<OutputPath>bin\Trial\</OutputPath>
40+
<DefineConstants>TRACE</DefineConstants>
41+
<DocumentationFile>..\Obfuscation\Retail\ActiveUp.Net.PDI.XML</DocumentationFile>
42+
<Optimize>true</Optimize>
43+
<DebugType>pdbonly</DebugType>
44+
<PlatformTarget>AnyCPU</PlatformTarget>
45+
<ErrorReport>prompt</ErrorReport>
46+
</PropertyGroup>
47+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Retail|AnyCPU' ">
48+
<OutputPath>bin\Retail\</OutputPath>
49+
<DefineConstants>TRACE</DefineConstants>
50+
<DocumentationFile>../Obfuscation/Retail/ActiveUp.Net.PDI.XML</DocumentationFile>
51+
<Optimize>true</Optimize>
52+
<DebugType>pdbonly</DebugType>
53+
<PlatformTarget>AnyCPU</PlatformTarget>
54+
<ErrorReport>prompt</ErrorReport>
55+
</PropertyGroup>
56+
<ItemGroup>
57+
<Reference Include="System" />
58+
<Reference Include="System.Data" />
59+
<Reference Include="System.Xml" />
60+
</ItemGroup>
61+
<ItemGroup>
62+
<None Include="New\Encoding.cs" />
63+
<None Include="New\Exceptions.cs" />
64+
<None Include="New\IVal.cs" />
65+
<None Include="New\Properties.cs" />
66+
<None Include="New\PropertyParameters.cs" />
67+
<None Include="New\Values.cs" />
68+
<None Include="New\vObjects.cs" />
69+
<Compile Include="Properties\AssemblyInfo.cs" />
70+
<Compile Include="vCalendar.Address.cs" />
71+
<Compile Include="vCalendar.Attachment.cs" />
72+
<Compile Include="vCalendar.AttachmentCollection.cs" />
73+
<Compile Include="vCalendar.Attendee.cs" />
74+
<Compile Include="vCalendar.AttendeeCollection.cs" />
75+
<Compile Include="vCalendar.AudioReminder.cs" />
76+
<Compile Include="vCalendar.Classification.cs" />
77+
<Compile Include="vCalendar.DayLightSavings.cs" />
78+
<Compile Include="vCalendar.DisplayReminder.cs" />
79+
<Compile Include="vCalendar.Duration.cs" />
80+
<Compile Include="vCalendar.Entity.cs" />
81+
<Compile Include="vCalendar.EntityCollection.cs" />
82+
<Compile Include="vCalendar.Expectation.cs" />
83+
<Compile Include="vCalendar.GeographicalPosition.cs" />
84+
<Compile Include="vCalendar.MailReminder.cs" />
85+
<Compile Include="vCalendar.Parser.cs" />
86+
<Compile Include="vCalendar.ProcedureReminder.cs" />
87+
<Compile Include="vCalendar.Property.cs" />
88+
<Compile Include="vCalendar.RecurrenceType..cs" />
89+
<Compile Include="vCalendar.Reminder.cs" />
90+
<Compile Include="vCalendar.Role.cs" />
91+
<Compile Include="vCalendar.Status.cs" />
92+
<Compile Include="vCalendar.ValueType.cs" />
93+
<Compile Include="vCalendar.vCalendar.cs" />
94+
<Compile Include="vCalendar.vEvent.cs" />
95+
<Compile Include="vCalendar.vEventCollection.cs" />
96+
<Compile Include="vCalendar.vTodo.cs" />
97+
<Compile Include="vCalendar.vTodoCollection.cs" />
98+
<Compile Include="vCard.Address.cs" />
99+
<Compile Include="vCard.AddressCollection.cs" />
100+
<Compile Include="vCard.EmailAddress.cs" />
101+
<Compile Include="vCard.EmailAddressCollection.cs" />
102+
<Compile Include="vCard.GeographicalPosition.cs" />
103+
<Compile Include="vCard.Label.cs" />
104+
<Compile Include="vCard.LabelCollection.cs" />
105+
<Compile Include="vCard.Name.cs" />
106+
<Compile Include="vCard.Parser.cs" />
107+
<Compile Include="vCard.TelephoneNumber.cs" />
108+
<Compile Include="vCard.TelephoneNumberCollection.cs" />
109+
<Compile Include="vCard.vCard.cs" />
110+
</ItemGroup>
111+
<ItemGroup>
112+
<None Include="ActiveUp.Net.PDI.snk" />
113+
</ItemGroup>
114+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
115+
<PropertyGroup>
116+
<PreBuildEvent>
117+
</PreBuildEvent>
118+
<PostBuildEvent>copy "$(TargetPath)" "../../../../Samples/Lib/$(TargetFileName)"</PostBuildEvent>
119+
</PropertyGroup>
120+
</Project>

Class Library/ActiveUp.Net.Groupware/ActiveUp.Net.PDI.snk renamed to Class Library/ActiveUp.Net.PDI/ActiveUp.Net.PDI.snk

File renamed without changes.

0 commit comments

Comments
 (0)