Skip to content

Commit ee185f7

Browse files
committed
Update documentation link for RuntimeModules
1 parent 38867c0 commit ee185f7

28 files changed

Lines changed: 61 additions & 61 deletions

src/XTMF2/RuntimeModules/BasicEvent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License
2323

2424
namespace XTMF2.RuntimeModules
2525
{
26-
[Module(Name = "Basic Event", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
26+
[Module(Name = "Basic Event", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/BasicEvent.html",
2727
Description = "Provides the ability for modules to invoke a set of other modules that are waiting for something to occur.")]
2828
public sealed class BasicEvent : BaseEvent
2929
{
@@ -52,7 +52,7 @@ public override void Register(Action module)
5252
}
5353
}
5454

55-
[Module(Name = "Basic Event", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
55+
[Module(Name = "Basic Event", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/BasicEvent.html",
5656
Description = "Provides the ability for modules to invoke a set of other modules that are waiting for something to occur.")]
5757
public sealed class BasicEvent<Context> : BaseEvent<Context>
5858
{

src/XTMF2/RuntimeModules/BasicParameter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License
2222

2323
namespace XTMF2.RuntimeModules
2424
{
25-
[Module(Name = "Basic Parameter", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
25+
[Module(Name = "Basic Parameter", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/BasicParameter.html",
2626
Description = "Provides the ability to have a value in a model system.")]
2727
public class BasicParameter<T> : BaseFunction<T>
2828
{

src/XTMF2/RuntimeModules/Cache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License
2323

2424
namespace XTMF2.RuntimeModules
2525
{
26-
[Module(Name = "Cache", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
26+
[Module(Name = "Cache", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Cache.html",
2727
Description = "Provides a way to keep the result of a function unless unloaded by an event.")]
2828
public sealed class Cache<T> : BaseFunction<T>, IDisposable
2929
{

src/XTMF2/RuntimeModules/CombineContext.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License
2222

2323
namespace XTMF2.RuntimeModules
2424
{
25-
[Module(Name = "Combine Context From No Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
25+
[Module(Name = "Combine Context From No Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/CombineContextFromNoContext.html",
2626
Description = "Combines the contexts as derived from First and Second and invokes To Invoke with the combined context.")]
2727
public sealed class CombineContextAFromNoContext<Context1, Context2> : BaseAction
2828
{
@@ -41,7 +41,7 @@ public override void Invoke()
4141
}
4242
}
4343

44-
[Module(Name = "Combine Context From No Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
44+
[Module(Name = "Combine Context From No Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/CombineContextFromNoContext.html",
4545
Description = "Combines the contexts as derived from First and Second and invokes To Invoke with the combined context.")]
4646
public sealed class CombineContextA<Context1, Context2> : BaseAction<Context1>
4747
{
@@ -56,7 +56,7 @@ public override void Invoke(Context1 context)
5656
}
5757
}
5858

59-
[Module(Name = "Combine Context From No Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
59+
[Module(Name = "Combine Context From No Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/CombineContextFromNoContext.html",
6060
Description = "Combines the contexts as derived from First and Second and invokes To Invoke with the combined context.")]
6161
public sealed class CombineContextAFromContext<Context1, Context2> : BaseAction<Context1>
6262
{
@@ -71,7 +71,7 @@ public override void Invoke(Context1 context)
7171
}
7272
}
7373

74-
[Module(Name = "Combine Context From No Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
74+
[Module(Name = "Combine Context From No Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/CombineContextFromNoContext.html",
7575
Description = "Combines the contexts as derived from First and Second and invokes To Invoke with the combined context.")]
7676
public sealed class CombineContextFFromNoContext<Context1, Context2, Return> : BaseFunction<Return>
7777
{
@@ -90,7 +90,7 @@ public override Return Invoke()
9090
}
9191
}
9292

93-
[Module(Name = "Combine Context From No Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
93+
[Module(Name = "Combine Context From No Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/CombineContextFromNoContext.html",
9494
Description = "Combines the contexts as derived from First and Second and invokes To Invoke with the combined context.")]
9595
public sealed class CombineContexF<Context1, Context2, Return> : BaseFunction<Context1, Return>
9696
{
@@ -105,7 +105,7 @@ public override Return Invoke(Context1 context)
105105
}
106106
}
107107

108-
[Module(Name = "Combine Context From No Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
108+
[Module(Name = "Combine Context From No Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/CombineContextFromNoContext.html",
109109
Description = "Combines the contexts as derived from First and Second and invokes To Invoke with the combined context.")]
110110
public sealed class CombineContextFFromContext<Context1, Context2, Return> : BaseFunction<Context1, Return>
111111
{

src/XTMF2/RuntimeModules/DirectoryPath.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License
2222

2323
namespace XTMF2.RuntimeModules
2424
{
25-
[Module(Name = "Directory Path", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
25+
[Module(Name = "Directory Path", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/DirectoryPath.html",
2626
Description = "Provides the ability to specify a directory path recursively.")]
2727
public sealed class DirectoryPath : BaseFunction<string>
2828
{

src/XTMF2/RuntimeModules/Execute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License
2323

2424
namespace XTMF2.RuntimeModules
2525
{
26-
[Module(Name = "Execute", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
26+
[Module(Name = "Execute", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Execute.html",
2727
Description = "Provides a way to execute a series of actions in order, optionally in parallel or with multiple iterations.")]
2828
public class Execute : BaseAction
2929
{
@@ -68,7 +68,7 @@ public override void Invoke()
6868
}
6969
}
7070

71-
[Module(Name = "Execute", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
71+
[Module(Name = "Execute", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Execute.html",
7272
Description = "Provides a way to execute a series of actions in order, optionally in parallel or with multiple iterations.")]
7373
public class Execute<Context> : BaseAction<Context>
7474
{

src/XTMF2/RuntimeModules/ExecuteActionsThenFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License
2323

2424
namespace XTMF2.RuntimeModules
2525
{
26-
[Module(Name = "Execute Actions Then Function", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
26+
[Module(Name = "Execute Actions Then Function", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/ExecuteActionsThenFunction.html",
2727
Description = "Allows you to execute actions before calling a function. This allows you to ")]
2828
public class ExecuteActionsThenFunction<Return> : BaseFunction<Return>
2929
{

src/XTMF2/RuntimeModules/ExecuteWithContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License
1919

2020
namespace XTMF2.RuntimeModules;
2121

22-
[Module(Name = "Execute With Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
22+
[Module(Name = "Execute With Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/ExecuteWithContext.html",
2323
Description = "Provides a way to execute a series of actions with a context loaded from the provided context.")]
2424
public sealed class ExecuteWithContext<Context> : BaseAction
2525
{
@@ -39,7 +39,7 @@ override public void Invoke()
3939
}
4040
}
4141

42-
[Module(Name = "Execute With Forwarded Context", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
42+
[Module(Name = "Execute With Forwarded Context", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/ExecuteWithForwardedContext.html",
4343
Description = "Provides a way to execute a series of actions using a context provided to it.")]
4444
public sealed class ExecuteWithForwardedContext<Context> : BaseAction<Context>
4545
{

src/XTMF2/RuntimeModules/Fail.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License
2323
namespace XTMF2.RuntimeModules
2424
{
2525
[Module(Name = "Fail", Description = "Crash the model run with a message.",
26-
DocumentationLink = "http://tmg.utoronto.ca/doc/2.0/")]
26+
DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Fail.html")]
2727
public sealed class FailA : BaseAction
2828
{
2929
[Parameter(Name = "Message", Index = 0, Description = "The message to fail with.", DefaultValue = "Invalid state!")]
@@ -36,7 +36,7 @@ public override void Invoke()
3636
}
3737

3838
[Module(Name = "Fail", Description = "Crash the model run with a message.",
39-
DocumentationLink = "http://tmg.utoronto.ca/doc/2.0/")]
39+
DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Fail.html")]
4040
public sealed class FailA<Context> : BaseAction<Context>
4141
{
4242
[Parameter(Name = "Message", Index = 0, Description = "The message to fail with.", DefaultValue = "Invalid state!")]
@@ -49,7 +49,7 @@ public override void Invoke(Context context)
4949
}
5050

5151
[Module(Name = "Fail", Description = "Crash the model run with a message.",
52-
DocumentationLink = "http://tmg.utoronto.ca/doc/2.0/")]
52+
DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Fail.html")]
5353
public sealed class FailWithContextA<Context> : BaseAction<Context>
5454
{
5555
[Parameter(Name = "Message", Index = 0, Description = "The message to fail with.", DefaultValue = "Invalid state!")]
@@ -62,7 +62,7 @@ public override void Invoke(Context context)
6262
}
6363

6464
[Module(Name = "Fail", Description = "Crash the model run with a message.",
65-
DocumentationLink = "http://tmg.utoronto.ca/doc/2.0/")]
65+
DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Fail.html")]
6666
public sealed class FailF<Return> : BaseFunction<Return>
6767
{
6868
[Parameter(Name = "Message", Index = 0, Description = "The message to fail with.", DefaultValue = "Invalid state!")]
@@ -75,7 +75,7 @@ public override Return Invoke()
7575
}
7676

7777
[Module(Name = "Fail", Description = "Crash the model run with a message.",
78-
DocumentationLink = "http://tmg.utoronto.ca/doc/2.0/")]
78+
DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Fail.html")]
7979
public sealed class FailF<Context, Return> : BaseFunction<Context, Return>
8080
{
8181
[Parameter(Name = "Message", Index = 0, Description = "The message to fail with.", DefaultValue = "Invalid state!")]
@@ -88,7 +88,7 @@ public override Return Invoke(Context context)
8888
}
8989

9090
[Module(Name = "Fail", Description = "Crash the model run with a message.",
91-
DocumentationLink = "http://tmg.utoronto.ca/doc/2.0/")]
91+
DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/Fail.html")]
9292
public sealed class FailWithContextF<Context, Return> : BaseFunction<Context, Return>
9393
{
9494
[Parameter(Name = "Message", Index = 0, Description = "The message to fail with.", DefaultValue = "Invalid state!")]

src/XTMF2/RuntimeModules/If.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License
2222

2323
namespace XTMF2.RuntimeModules
2424
{
25-
[Module(Name = "If", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
25+
[Module(Name = "If", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/If.html",
2626
Description = "Provides a way to conditionally execute. If the condition is true or false different functions will be invoked.")]
2727
public sealed class IfF<Return> : BaseFunction<Return>
2828
{
@@ -49,7 +49,7 @@ public override Return Invoke()
4949
}
5050
}
5151

52-
[Module(Name = "If", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
52+
[Module(Name = "If", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/If.html",
5353
Description = "Provides a way to conditionally execute. If the condition is true or false different functions will be invoked.")]
5454
public sealed class IfF<Context,Return> : BaseFunction<Context,Return>
5555
{
@@ -76,7 +76,7 @@ public override Return Invoke(Context context)
7676
}
7777
}
7878

79-
[Module(Name = "If", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
79+
[Module(Name = "If", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/If.html",
8080
Description = "Provides a way to conditionally execute. If the condition is true or false different functions will be invoked.")]
8181
public sealed class IfWithContextF<Context, Return> : BaseFunction<Context, Return>
8282
{
@@ -103,7 +103,7 @@ public override Return Invoke(Context context)
103103
}
104104
}
105105

106-
[Module(Name = "If", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
106+
[Module(Name = "If", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/If.html",
107107
Description = "Provides a way to conditionally execute. If the condition is true or false different functions will be invoked.")]
108108
public sealed class IfA : BaseAction
109109
{
@@ -130,7 +130,7 @@ public override void Invoke()
130130
}
131131
}
132132

133-
[Module(Name = "If", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
133+
[Module(Name = "If", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/If.html",
134134
Description = "Provides a way to conditionally execute. If the condition is true or false different functions will be invoked.")]
135135
public sealed class IfA<Context> : BaseAction<Context>
136136
{
@@ -157,7 +157,7 @@ public override void Invoke(Context context)
157157
}
158158
}
159159

160-
[Module(Name = "If", DocumentationLink = "http://tmg.utoronto.ca/doc/2.0",
160+
[Module(Name = "If", DocumentationLink = "https://tmg.utoronto.ca/doc/2.0/xtmf2/modules/XTMF2/RuntimeModules/If.html",
161161
Description = "Provides a way to conditionally execute. If the condition is true or false different functions will be invoked.")]
162162
public sealed class IfWithContextA<Context> : BaseAction<Context>
163163
{

0 commit comments

Comments
 (0)