Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 5f52e63

Browse files
committed
Add Env Banner + Avatars
1 parent 89a1f75 commit 5f52e63

40 files changed

Lines changed: 522 additions & 407 deletions

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@
1919

2020
# Go workspace file
2121
go.work
22+
data/images/avatars/
23+
*.DS_Store
24+
.DS_Store

application/credentials_api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package application
99
// For Project : github.com/mt1976/ebEstimates/
1010
// ----------------------------------------------------------------
1111
// Template Generator : Einsteinium [r5-23.01.23]
12-
// Date & Time : 15/02/2023 at 10:44:41
12+
// Date & Time : 16/02/2023 at 12:41:49
1313
// Who & Where : matttownsend (Matt Townsend) on silicon.local
1414
// ----------------------------------------------------------------
1515

application/credentials_core.go

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -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
2727
func 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
4949
func 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
9090
func 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
129129
func 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
176176
func 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
211211
func 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
259259
func 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
286286
func 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
354354
func credentials_DataFromRequest(r *http.Request) dm.Credentials {
355355

356356
var item dm.Credentials

application/origin_api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package application
99
// For Project : github.com/mt1976/ebEstimates/
1010
// ----------------------------------------------------------------
1111
// Template Generator : Einsteinium [r5-23.01.23]
12-
// Date & Time : 15/02/2023 at 10:44:45
12+
// Date & Time : 16/02/2023 at 10:11:36
1313
// Who & Where : matttownsend (Matt Townsend) on silicon.local
1414
// ----------------------------------------------------------------
1515

application/origin_core.go

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -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:45
11+
// Date & Time : 16/02/2023 at 10:11:36
1212
// Who & Where : matttownsend (Matt Townsend) on silicon.local
1313
// ----------------------------------------------------------------
1414

@@ -23,10 +23,10 @@ import (
2323
)
2424

2525
//Origin_Publish annouces the endpoints available for this object
26-
//Origin_Publish - Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
26+
//Origin_Publish - Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
2727
func Origin_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.Origin_Path, Origin_Handler)
3232
mux.HandleFunc(dm.Origin_PathList, Origin_HandlerList)
@@ -38,17 +38,17 @@ func Origin_Publish(mux http.ServeMux) {
3838
logs.Publish("Application", dm.Origin_Title)
3939
core.Catalog_Add(dm.Origin_Title, dm.Origin_Path, "", dm.Origin_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
//Origin_HandlerList is the handler for the list page
4747
//Allows Listing of Origin records
48-
//Origin_HandlerList - Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
48+
//Origin_HandlerList - Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
4949
func Origin_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 Origin_HandlerList(w http.ResponseWriter, r *http.Request) {
7878

7979
ExecuteTemplate(dm.Origin_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
//Origin_HandlerView is the handler used to View a page
8888
//Allows Viewing for an existing Origin record
89-
//Origin_HandlerView - Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
89+
//Origin_HandlerView - Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
9090
func Origin_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 Origin_HandlerView(w http.ResponseWriter, r *http.Request) {
118118

119119
ExecuteTemplate(dm.Origin_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
//Origin_HandlerEdit is the handler used generate the Edit page
127127
//Allows Editing for an existing Origin record and then allows the user to save the changes
128-
//Origin_HandlerEdit - Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
128+
//Origin_HandlerEdit - Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
129129
func Origin_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 Origin_HandlerEdit(w http.ResponseWriter, r *http.Request) {
165165

166166
ExecuteTemplate(dm.Origin_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
//Origin_HandlerSave is the handler used process the saving of an Origin
174174
//It is called from the Edit and New pages
175-
//Origin_HandlerSave - Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
175+
//Origin_HandlerSave - Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
176176
func Origin_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 Origin_HandlerSave(w http.ResponseWriter, r *http.Request) {
200200
ExecuteRedirect(r.Referer(), w, r,dm.Origin_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
//Origin_HandlerNew is the handler used process the creation of an Origin
209209
//It will create a new Origin and then redirect to the Edit page
210-
//Origin_HandlerNew - Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
210+
//Origin_HandlerNew - Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
211211
func Origin_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,14 +248,14 @@ func Origin_HandlerNew(w http.ResponseWriter, r *http.Request) {
248248

249249
ExecuteTemplate(dm.Origin_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

257257
//origin_PopulatePage Builds/Populates the Origin Page
258-
//origin_PopulatePage Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
258+
//origin_PopulatePage Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
259259
func origin_PopulatePage(rD dm.Origin, pageDetail dm.Origin_Page) dm.Origin_Page {
260260
// Real DB Fields
261261
pageDetail.SYSId = rD.SYSId
@@ -327,7 +327,7 @@ func origin_PopulatePage(rD dm.Origin, pageDetail dm.Origin_Page) dm.Origin_Page
327327

328328

329329
//origin_DataFromRequest is used process the content of an HTTP Request and return an instance of an Origin
330-
//origin_DataFromRequest Auto generated 15/02/2023 by matttownsend (Matt Townsend) on silicon.local
330+
//origin_DataFromRequest Auto generated 16/02/2023 by matttownsend (Matt Townsend) on silicon.local
331331
func origin_DataFromRequest(r *http.Request) dm.Origin {
332332

333333
var item dm.Origin

0 commit comments

Comments
 (0)