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
abf4a91e
Commit
abf4a91e
authored
19 years ago
by
runemaster
Browse files
Options
Downloads
Patches
Plain Diff
Use new profile.inc for both editprofile.ssjs and viewprofile.ssjs
parent
e3f64319
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
web/root/members/editprofile.ssjs
+66
-29
66 additions, 29 deletions
web/root/members/editprofile.ssjs
with
66 additions
and
29 deletions
web/root/members/editprofile.ssjs
+
66
−
29
View file @
abf4a91e
/* $Id$ */
/* This is for the Web Interface Only. */
/* There is no equivalent in Telnet. */
load
(
"
../web/lib/template.ssjs
"
);
var
sub
=
''
;
template
.
title
=
system
.
name
+
"
- Edit Your Profile
"
;
template
.
profile
=
new
Array
;
usr
=
new
Object
;
template
.
profile
.
push
({
html
:
'
<table class="newuser" cellpadding="0" cellspacing="2">
'
});
if
(
system
.
newuser_questions
&
UQ_REALNAME
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Real Name:</td><td class="newuser" align="left"><input type="text" name="name" size="25" maxlength="25" value="
'
+
user
.
name
+
'
" disabled="disabled" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_ALIASES
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Alias:</td><td class="newuser" align="left"><input type="text" name="alias" size="25" maxlength="25" value="
'
+
user
.
alias
+
'
" disabled="disabled" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_HANDLE
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Chat Handle:</td><td class="newuser" align="left"><input type="text" name="handle" size="8" maxlength="8" value="
'
+
user
.
handle
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">E-Mail Address:</td><td class="newuser" align="left"><input type="text" name="email" size="50" maxlength="60" value="
'
+
user
.
netmail
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_ADDRESS
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Address:</td><td class="newuser" align="left"><input type="text" name="address" size="50" maxlength="50" value="
'
+
user
.
address
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_LOCATION
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">City, State/Prov:</td><td class="newuser" align="left"><input type="text" name="location" size="50" maxlength="50" value="
'
+
user
.
location
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_ADDRESS
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Zip/Postal Code:</td><td class="newuser" align="left"><input type="text" name="zipcode" size="50" maxlength="50" value="
'
+
user
.
zipcode
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
</table>
'
});
usr
.
name
=
user
.
name
;
usr
.
alias
=
user
.
alias
;
usr
.
handle
=
user
.
handle
;
usr
.
netmail
=
user
.
netmail
;
usr
.
location
=
user
.
location
;
usr
.
address
=
usr
.
address
;
usr
.
zipcode
=
user
.
zipcode
;
if
(
file_exists
(
prefs_dir
+
format
(
"
%04d.html_prefs
"
,
user
.
number
)))
{
prefsfile
=
new
File
(
prefs_dir
+
format
(
"
%04d.html_prefs
"
,
user
.
number
));
if
(
prefsfile
.
open
(
"
r
"
,
false
))
{
template
.
user_icq
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
ICQ
'
);
template
.
user_msn
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
MSN
'
);
template
.
user_yahoo
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Yahoo
'
);
template
.
user_aim
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
AIM
'
);
template
.
user_homepage
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Homepage
'
);
template
.
user_hobbies
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Hobbies
'
);
template
.
user_picture
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Picture
'
);
template
.
user_avatar
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Avatar
'
);
usr
.
icq
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
ICQ
'
);
if
(
usr
.
icq
==
undefined
)
usr
.
icq
=
''
;
usr
.
msn
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
MSN
'
);
if
(
usr
.
msn
==
undefined
)
usr
.
msn
=
''
;
usr
.
yahoo
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Yahoo
'
);
if
(
usr
.
yahoo
==
undefined
)
usr
.
yahoo
=
''
;
usr
.
aim
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
AIM
'
);
if
(
usr
.
aim
==
undefined
)
usr
.
aim
=
''
;
usr
.
homepage
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Homepage
'
);
if
(
usr
.
homepage
==
undefined
)
usr
.
homepage
=
''
;
usr
.
hobbies
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Hobbies
'
);
if
(
usr
.
hobbies
==
undefined
)
usr
.
hobbies
=
''
;
usr
.
picture
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Picture
'
);
if
(
usr
.
picture
==
undefined
)
usr
.
picture
=
''
;
usr
.
avatar
=
prefsfile
.
iniGetValue
(
'
Profile
'
,
'
Avatar
'
);
if
(
usr
.
avatar
==
undefined
)
usr
.
avatar
=
''
;
prefsfile
.
close
();
}
}
template
.
profile
=
new
Array
;
template
.
profile
.
push
({
html
:
'
<h1>Edit Profile</h1>
'
});
template
.
profile
.
push
({
html
:
'
<p>Changes here mainly affect the Telnet side of the BBS</p>
'
});
template
.
profile
.
push
({
html
:
'
<form action="/members/updateprofile.ssjs" method="post">
'
});
template
.
profile
.
push
({
html
:
'
<table class="newuser" cellpadding="0" cellspacing="2">
'
});
if
(
system
.
newuser_questions
&
UQ_REALNAME
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Real Name:</td><td class="newuser" align="left"><input type="text" name="name" size="25" maxlength="25" value="
'
+
usr
.
name
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_ALIASES
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Alias:</td><td class="newuser" align="left"><input type="text" name="alias" size="25" maxlength="25" value="
'
+
usr
.
alias
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_HANDLE
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Chat Handle:</td><td class="newuser" align="left"><input type="text" name="handle" size="8" maxlength="8" value="
'
+
usr
.
handle
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">E-Mail Address:</td><td class="newuser" align="left"><input type="text" name="email" size="50" maxlength="60" value="
'
+
usr
.
netmail
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_ADDRESS
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Address:</td><td class="newuser" align="left"><input type="text" name="address" size="50" maxlength="50" value="
'
+
usr
.
address
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_LOCATION
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">City, State/Prov:</td><td class="newuser" align="left"><input type="text" name="location" size="50" maxlength="50" value="
'
+
usr
.
location
+
'
" /></td></tr>
'
});
if
(
system
.
newuser_questions
&
UQ_ADDRESS
)
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Zip/Postal Code:</td><td class="newuser" align="left"><input type="text" name="zipcode" size="50" maxlength="50" value="
'
+
usr
.
zipcode
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
</table>
'
});
template
.
profile
.
push
({
html
:
'
<h3>Web Profile</h3>
'
});
template
.
profile
.
push
({
html
:
'
<p>Changes here are only visible in the Web Interface.</p>
'
});
template
.
profile
.
push
({
html
:
'
<table class="newuser" cellpadding="0" cellspacing="2">
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">ICQ:</td><td class="newuser" align="left"><input type="text" name="icq" size="10" maxlength="10" value="
'
+
usr
.
icq
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">MSN:</td><td class="newuser" align="left"><input type="text" name="msn" size="50" maxlength="50" value="
'
+
usr
.
msn
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Yahoo:</td><td class="newuser" align="left"><input type="text" name="yahoo" size="50" maxlength="50" value="
'
+
usr
.
yahoo
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">AIM:</td><td class="newuser" align="left"><input type="text" name="aim" size="50" maxlength="50" value="
'
+
usr
.
aim
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Homepage:</td><td class="newuser" align="left"><input type="text" name="homepage" size="50" maxlength="50" value="
'
+
usr
.
homepage
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Hobbies:</td><td class="newuser" align="left"><input type="textarea" size="50" name="hobbies" value="
'
+
usr
.
hobbies
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Picture (Link):</td><td class="newuser" align="left"><input type="textarea" size="50" name="picture" value="
'
+
usr
.
picture
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser" align="right">Avatar (Link):</td><td class="newuser" align="left"><input type="textarea" size="50" name="avatar" value="
'
+
usr
.
avatar
+
'
" /></td></tr>
'
});
template
.
profile
.
push
({
html
:
'
<tr><td class="newuser"> </td><td class="newuser"><br /><input type="submit" value="Update Profile" /></td></tr></table></form><br />
'
});
write_template
(
"
header.inc
"
);
load
(
"
../web/lib/topnav_html.ssjs
"
);
load
(
"
../web/lib/leftnav_html.ssjs
"
);
write_template
(
"
edit
profile.inc
"
);
write_template
(
"
profile.inc
"
);
write_template
(
"
footer.inc
"
);
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