@@ -8,7 +8,7 @@ package application
88// For Project : github.com/mt1976/ebEstimates/
99// ----------------------------------------------------------------
1010// Template Generator : Einsteinium [r5-23.01.23]
11- // Date & Time : 15 /02/2023 at 10:44:41
11+ // Date & Time : 16 /02/2023 at 12:41:49
1212// Who & Where : matttownsend (Matt Townsend) on silicon.local
1313// ----------------------------------------------------------------
1414
@@ -23,10 +23,10 @@ import (
2323)
2424
2525//Credentials_Publish annouces the endpoints available for this object
26- //Credentials_Publish - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
26+ //Credentials_Publish - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
2727func Credentials_Publish (mux http.ServeMux ) {
2828 // START
29- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
29+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
3030 //
3131 mux .HandleFunc (dm .Credentials_Path , Credentials_Handler )
3232 mux .HandleFunc (dm .Credentials_PathList , Credentials_HandlerList )
@@ -38,17 +38,17 @@ func Credentials_Publish(mux http.ServeMux) {
3838 logs .Publish ("Application" , dm .Credentials_Title )
3939 core .Catalog_Add (dm .Credentials_Title , dm .Credentials_Path , "" , dm .Credentials_QueryString , "Application" )
4040 //
41- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
41+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
4242 // END
4343}
4444
4545
4646//Credentials_HandlerList is the handler for the list page
4747//Allows Listing of Credentials records
48- //Credentials_HandlerList - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
48+ //Credentials_HandlerList - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
4949func Credentials_HandlerList (w http.ResponseWriter , r * http.Request ) {
5050 // START
51- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
51+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
5252 //
5353 // Mandatory Security Validation
5454 //
@@ -78,18 +78,18 @@ func Credentials_HandlerList(w http.ResponseWriter, r *http.Request) {
7878
7979 ExecuteTemplate (dm .Credentials_TemplateList , w , r , pageDetail )
8080 //
81- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
81+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
8282 // END
8383
8484}
8585
8686
8787//Credentials_HandlerView is the handler used to View a page
8888//Allows Viewing for an existing Credentials record
89- //Credentials_HandlerView - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
89+ //Credentials_HandlerView - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
9090func Credentials_HandlerView (w http.ResponseWriter , r * http.Request ) {
9191 // START
92- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
92+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
9393 //
9494 // Mandatory Security Validation
9595 //
@@ -118,17 +118,17 @@ func Credentials_HandlerView(w http.ResponseWriter, r *http.Request) {
118118
119119 ExecuteTemplate (dm .Credentials_TemplateView , w , r , pageDetail )
120120 //
121- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
121+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
122122 // END
123123}
124124
125125
126126//Credentials_HandlerEdit is the handler used generate the Edit page
127127//Allows Editing for an existing Credentials record and then allows the user to save the changes
128- //Credentials_HandlerEdit - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
128+ //Credentials_HandlerEdit - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
129129func Credentials_HandlerEdit (w http.ResponseWriter , r * http.Request ) {
130130 // START
131- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
131+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
132132 // END
133133 // Mandatory Security Validation
134134 //
@@ -165,17 +165,17 @@ func Credentials_HandlerEdit(w http.ResponseWriter, r *http.Request) {
165165
166166 ExecuteTemplate (dm .Credentials_TemplateEdit , w , r , pageDetail )
167167 //
168- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
168+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
169169 // END
170170}
171171
172172
173173//Credentials_HandlerSave is the handler used process the saving of an Credentials
174174//It is called from the Edit and New pages
175- //Credentials_HandlerSave - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
175+ //Credentials_HandlerSave - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
176176func Credentials_HandlerSave (w http.ResponseWriter , r * http.Request ) {
177177 // START
178- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
178+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
179179 //
180180 // Mandatory Security Validation
181181 //
@@ -200,17 +200,17 @@ func Credentials_HandlerSave(w http.ResponseWriter, r *http.Request) {
200200 ExecuteRedirect (r .Referer (), w , r ,dm .Credentials_QueryString ,itemID ,item )
201201 }
202202 //
203- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
203+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
204204 // END
205205}
206206
207207
208208//Credentials_HandlerNew is the handler used process the creation of an Credentials
209209//It will create a new Credentials and then redirect to the Edit page
210- //Credentials_HandlerNew - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
210+ //Credentials_HandlerNew - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
211211func Credentials_HandlerNew (w http.ResponseWriter , r * http.Request ) {
212212 // START
213- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
213+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
214214 //
215215 // Mandatory Security Validation
216216 //
@@ -248,17 +248,17 @@ func Credentials_HandlerNew(w http.ResponseWriter, r *http.Request) {
248248
249249 ExecuteTemplate (dm .Credentials_TemplateNew , w , r , pageDetail )
250250 //
251- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
251+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
252252 // END
253253}
254254
255255
256256//Credentials_HandlerDelete is the handler used process the deletion of an Credentials
257257// It will delete the Credentials and then redirect to the List page
258- //Credentials_HandlerDelete - Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
258+ //Credentials_HandlerDelete - Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
259259func Credentials_HandlerDelete (w http.ResponseWriter , r * http.Request ) {
260260 // START
261- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
261+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
262262 //
263263 // Mandatory Security Validation
264264 //
@@ -276,13 +276,13 @@ func Credentials_HandlerDelete(w http.ResponseWriter, r *http.Request) {
276276
277277 http .Redirect (w , r , dm .Credentials_Redirect , http .StatusFound )
278278 //
279- // Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
279+ // Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
280280 // END
281281}
282282
283283
284284//credentials_PopulatePage Builds/Populates the Credentials Page
285- //credentials_PopulatePage Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
285+ //credentials_PopulatePage Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
286286func credentials_PopulatePage (rD dm.Credentials , pageDetail dm.Credentials_Page ) dm.Credentials_Page {
287287 // Real DB Fields
288288 pageDetail .SYSId = rD .SYSId
@@ -350,7 +350,7 @@ func credentials_PopulatePage(rD dm.Credentials, pageDetail dm.Credentials_Page)
350350
351351
352352//credentials_DataFromRequest is used process the content of an HTTP Request and return an instance of an Credentials
353- //credentials_DataFromRequest Auto generated 15 /02/2023 by matttownsend (Matt Townsend) on silicon.local
353+ //credentials_DataFromRequest Auto generated 16 /02/2023 by matttownsend (Matt Townsend) on silicon.local
354354func credentials_DataFromRequest (r * http.Request ) dm.Credentials {
355355
356356 var item dm.Credentials
0 commit comments