8000 Move to git · bufferoverflow/doap@4a0d0af · GitHub
[go: up one dir, main page]

Skip to 8000 content

Commit 4a0d0af

Browse files
committed
Move to git
0 parents  commit 4a0d0af

Some content is hidden

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

61 files changed

+3497
-0
lines changed

creators/doap-sharp/ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2004-07-24 Niel Bornstein <niel@bornstein.atlanta.ga.us>
2+
3+
* Initial commit of Doap library and DoapWriter utility
4+
5+
2004-07-24 Edd Dumbill <edd@usefulinc.com>
6+
7+
* Made repository for doap# tools.
8+
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
4+
using Doap.Attributes;
5+
6+
// Information about this assembly is defined by the following
7+
// attributes.
8+
//
9+
// change them to the information which is associated with the assembly
10+
// you compile.
11+
12+
[assembly: AssemblyTitle("Doap# Library")]
13+
[assembly: AssemblyDescription("The Doap# Library allows you to create and query DOAP attributes on a .NET assembly.")]
14+
[assembly: AssemblyConfiguration("")]
15+
[assembly: AssemblyCompany("")]
16+
[assembly: AssemblyProduct("Doap# Library")]
17+
[assembly: AssemblyCopyright("")]
18+
[assembly: AssemblyTrademark("")]
19+
[assembly: AssemblyCulture("")]
20+
21+
// The assembly version has following format :
22+
//
23+
// Major.Minor.Build.Revision
24+
//
25+
// You can specify all values by your own or you can build default build and revision
26+
// numbers with the '*' character (the default):
27+
28+
[assembly: AssemblyVersion("1.0.*")]
29+
30+
// The following attributes specify the key for the sign of your assembly. See the
31+
// .NET Framework documentation for more information about signing.
32+
// This is not required, if you don't want signing let these attributes like they're.
33+
[assembly: AssemblyDelaySign(false)]
34+
[assembly: AssemblyKeyFile("")]
35+
36+
// DOAP attributes
37+
[assembly: BugDatabaseAttribute("")]
38+
[assembly: CreatedAttribute("July 23, 2004")]
39+
[assembly: HomepageAttribute("http://bornstein.atlanta.ga.us/niel/doap")]
40+
[assembly: LicenseAttribute]
41+
[assembly: MailingListAttribute("http://lists.usefulinc.com/mailman/listinfo/doap-interest")]
42+
[assembly: MaintainerAttribute]
43+
[assembly: ReleaseAttribute("unstable", "2004-07-23", "0.1")]
44+
[assembly: ScreenshotsAttribute]
45+
[assembly: ShortDescriptionAttribute]
46+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class BugDatabaseAttribute : Attribute {
7+
private Resource bugDatabase;
8+
9+
public Resource BugDatabase {
10+
get {
11+
return bugDatabase;
12+
}
13+
}
14+
15+
public BugDatabaseAttribute(string bugDatabase) {
16+
this.bugDatabase = new Resource(bugDatabase);
17+
}
18+
}
19+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class CreatedAttribute : Attribute {
7+
private DateTime created;
8+
9+
public DateTime Created {
10+
get {
11+
return created;
12+
}
13+
}
14+
15+
public CreatedAttribute(string created) {
16+
if (created != null && created.Length > 0) {
17+
this.created = DateTime.Parse(created);
18+
}
19+
}
20+
}
21+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
3+
using Doap;
4+
5+
namespace Doap.Attributes {
6+
7+
[AttributeUsage(AttributeTargets.Assembly)]
8+
public class HomepageAttribute : Attribute {
9+
10+
private Resource homepage;
11+
12+
public Resource Homepage {
13+
get {
14+
return homepage;
15+
}
16+
}
17+
18+
public HomepageAttribute(string homepage) {
19+
this.homepage = new Resource(homepage);
20+
}
21+
}
22+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class LicenseAttribute : Attribute {
7+
}
8+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class MailingListAttribute : Attribute {
7+
private Resource mailingList;
8+
9+
public Resource MailingList {
10+
get {
11+
return mailingList;
12+
}
13+
}
14+
15+
public MailingListAttribute(string mailingList) {
16+
this.mailingList = new Resource(mailingList);
17+
}
18+
}
19+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class MaintainerAttribute : Attribute {
7+
}
8+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class ReleaseAttribute : Attribute {
7+
private Release release;
8+
9+
public Release Release {
10+
get {
11+
return release;
12+
}
13+
}
14+
15+
public ReleaseAttribute(string name, string created, string revision) {
16+
release = new Release();
17+
release.Version.Name = name;
18+
release.Version.Created = DateTime.Parse(created);
19+
release.Version.Revision = revision;
20+
}
21+
}
22+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace Doap.Attributes {
4+
5+
[AttributeUsage(AttributeTargets.Assembly)]
6+
public class ScreenshotsAttribute : Attribute {
7+
}
8+
}

0 commit comments

Comments
 (0)
0