Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
bb1b6cfe
Commit
bb1b6cfe
authored
19 years ago
by
runemaster
Browse files
Options
Downloads
Patches
Plain Diff
Moved some Booleans to here for central editing.
Added a "Happy Birthday" message to user if it is their Birthday.
parent
310476e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
web/lib/global_defs.ssjs
+25
-3
25 additions, 3 deletions
web/lib/global_defs.ssjs
with
25 additions
and
3 deletions
web/lib/global_defs.ssjs
+
25
−
3
View file @
bb1b6cfe
...
...
@@ -5,12 +5,34 @@
/* Remember, the more global definitions here */
/* the longer all pages will take to display! */
/* User Changable Variables */
var
show_gender
=
true
;
var
show_location
=
true
;
var
show_age
=
true
;
/* If you want to remove QWk FTP downloads */
/* change this to false. Moved from leftnav_html.ssjs */
var
doQWK
=
false
;
/* End User Changable Variables */
if
(
user
.
number
==
0
)
template
.
user_greeting
=
"
Welcome, Guest.
"
;
else
if
(
!
(
user
.
security
.
restrictions
&
UFLAG_G
))
template
.
user_greeting
=
"
Welcome,
"
+
user
.
alias
+
"
.<br /> You last visited on
"
+
strftime
(
"
%A, %B %d, %Y
"
,
user
.
stats
.
laston_date
);
else
if
(
!
(
user
.
security
.
restrictions
&
UFLAG_G
))
{
/* If it is the users Birthday, display a quick Happy Birthday */
/* instead of the standard greeting. */
var
birthday
=
user
.
birthdate
.
substring
(
0
,
5
);
var
today
=
system
.
datestr
().
substring
(
0
,
5
);
if
(
birthday
==
today
)
template
.
user_greeting
=
"
Happy Birthday,
"
+
user
.
alias
+
"
!<br /> Can you believe that you are
"
+
user
.
age
+
"
years old!!
"
;
else
template
.
user_greeting
=
"
Welcome,
"
+
user
.
alias
+
"
.<br /> You last visited on
"
+
strftime
(
"
%A, %B %d, %Y
"
,
user
.
stats
.
laston_date
);
}
else
template
.
user_greeting
=
"
Welcome,
"
+
user
.
alias
+
"
.
"
;
template
.
user_alias
=
user
.
alias
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment