-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49b2836
commit de83ed9
Showing
10 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,3 +56,5 @@ licencekey\.txt | |
Documentation/html/ | ||
|
||
Documentation/latex/ | ||
|
||
*.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <summary> | ||
/// The BusinessLogic package contains most of the algorithmic plumbing for the addin. | ||
/// </summary> | ||
namespace SuiteCRMAddIn.BusinessLogic | ||
{ | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <summary> | ||
/// The Dialogs package will eventually contain all the dialogs which are used by the addin. | ||
/// </summary> | ||
/// <remarks> | ||
/// <para> | ||
/// Older forms and dialogs are found in SuiteCRMAddIn with names prefixed **frm**. The intention is that they should gradually be migrated. | ||
/// </para> | ||
/// </remarks> | ||
namespace SuiteCRMAddIn.Dialogs | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <summary> | ||
/// The Exceptions package contains all custom exceptions used by the addin. | ||
/// </summary> | ||
namespace SuiteCRMAddIn.Exceptions | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <summary> | ||
/// ProtoItems are C# implementations of CRM classes, in order to make serialising to JSON easier. | ||
/// </summary> | ||
namespace SuiteCRMAddIn.ProtoItems | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <summary> | ||
/// SuiteCRMClient is a client library for the SuiteCRM JSON API. | ||
/// </summary> | ||
namespace SuiteCRMClient | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <summary> | ||
/// The Exceptions package contains all custom exceptions used by the client. | ||
/// </summary> | ||
/// <remarks> | ||
/// <para> | ||
/// In the older code there is a widespread practice of throwing raw instances of Exception. This is bad practice, and those raw exceptions should gradually be replaced by specialised exceptions. At the time of writing there are still 7 raw exceptions thrown. | ||
/// </para> | ||
/// </remarks> | ||
namespace SuiteCRMClient.Exceptions | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <summary> | ||
/// The RESTObjects package contains classes which may be deserialised from JSON messages sent by CRM. | ||
/// </summary> | ||
namespace SuiteCRMClient.RESTObjects | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters