Skip to content
Snippets Groups Projects
Commit 3dc9cbfc authored by runemaster's avatar runemaster
Browse files

* Configurable image dir for themes.

* The ability to toggle *inc files (header, topnav, leftnav, rightnav <-- new, footer)
* Update User posts and E-Mails sent -- Requires Sync 3.13b
Many more subtle additions
parent fe360c7d
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,12 @@ var show_gender=true;
var show_location=true;
var show_age=true;
/* If User #1 or is.operator and show_ip is set to true, */
/* Then the Author info will post the last known IP from */
/* user.note */
var show_ip=true;
/* If you want to remove QWk FTP downloads */
/* change this to false. Moved from leftnav_html.ssjs */
......@@ -26,13 +32,16 @@ if(user.number!=0) {
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)) {
if(prefsfile.iniGetValue(null, 'SortDate', '')!='');
if(prefsfile.iniGetValue(null, 'SortDate', '')!='')
var SortDate=prefsfile.iniGetValue(null, 'SortDate', '');
prefsfile.close();
}
prefsfile=new File(prefs_dir + '/'+format("%04d.html_prefs",user.number));
if(SortDate!='') {
if(SortDate=='' && !file_exists(prefs_dir + format("%04d.html_prefs",user.number))) {
SortDate="descending";
if(prefsfile.open("w+",false)) {
prefsfile.iniSetValue('User Info', 'Alias', user.alias);
prefsfile.iniSetValue('User Info', 'Name', user.name);
prefsfile.iniSetValue('Messaging', 'SortDate', SortDate);
prefsfile.close();
}
......
......@@ -10,6 +10,12 @@ prefs_dir=system.data_dir + 'user/';
var CurrTheme=DefaultTheme;
var do_header = true;
var do_topnav = true;
var do_leftnav = true;
var do_rightnav = true;
var do_footer = true;
/* Read in current users selected theme if it exists */
if(file_exists(prefs_dir +format("%04d.html_prefs",user.number))) {
prefsfile=new File(prefs_dir +format("%04d.html_prefs",user.number));
......@@ -19,8 +25,15 @@ if(file_exists(prefs_dir +format("%04d.html_prefs",user.number))) {
}
}
if(Themes[CurrTheme] == undefined || Themes[CurrTheme].dir == undefined)
CurrTheme=DefaultTheme;
if(Themes[CurrTheme] == undefined || Themes[CurrTheme].theme_dir == undefined)
CurrTheme=DefaultTheme;
do_header = Themes[CurrTheme].do_header;
do_topnav = Themes[CurrTheme].do_topnav;
do_leftnav = Themes[CurrTheme].do_leftnav;
do_rightnav = Themes[CurrTheme].do_rightnav;
do_footer = Themes[CurrTheme].do_footer;
template.image_dir = Themes[CurrTheme].image_dir;
if(http_request.query.force_ssjs_theme != undefined) {
if(http_request.query.force_ssjs_theme[0] != undefined && Themes[http_request.query.force_ssjs_theme[0]] != undefined)
......
......@@ -22,36 +22,43 @@
template.leftnav=new Array;
// template.leftnav.push({ html: '<ul>' });
if(user.number==0 || user.security.restrictions&UFLAG_G)
template.leftnav.push({html: '<a href="/login.ssjs">Login</a><a href="/newuser.ssjs">New User</a>' });
template.leftnav.push({html: '<li><a href="/login.ssjs">Login</a></li><li><a href="/newuser.ssjs">New User</a></li>' });
else
template.leftnav.push({html: '<a href="/members/userlist.ssjs">User Listing</a><a href="/members/lastcallers.ssjs">Last Callers</a><a href="/members/info.ssjs">Information</a><a href="/members/themes.ssjs">Change Theme</a><a href="/members/newpw.ssjs">Change Password</a><a href="/msgs/msgs.ssjs?msg_sub=mail">E-mail</a>' });
template.leftnav.push({html: '<li><a href="/members/userlist.ssjs">User Listing</a></li><li><a href="/members/lastcallers.ssjs">Last Callers</a></li><li><a href="/members/info.ssjs">Information</a></li><li><a href="/members/themes.ssjs">Change Theme</a></li><li><a href="/members/newpw.ssjs">Change Password</a></li><li><a href="/msgs/msgs.ssjs?msg_sub=mail">E-mail</a></li>' });
if(user.number || (this.login!=undefined && system.matchuser("Guest")))
template.leftnav.push({html: '<a href="/msgs">Message Groups</a>' });
template.leftnav.push({html: '<li><a href="/msgs">Message Groups</a></li>' });
/*
if( sub != 'mail' && (http_request.virtual_path == '/msgs/msg.ssjs' || http_request.virtual_path == '/msgs/msgs.ssjs' || http_request.virtual_path == '/msgs/post.ssjs' || http_request.virtual_path == '/msgs/reply.ssjs' || http_request.virtual_path == '/msgs/savemsg.ssjs' || http_request.virtual_path == '/msgs/subinfo.ssjs' || http_request.virtual_path == '/msgs/subs.ssjs')) {
template.leftnav.push({ html: '<span id="sectionSubLinks">' });
template.leftnav.push({ html: '<span class="sectionSubLinks">' });
for(s in msg_area.grp_list)
template.leftnav.push({html: '<a href="/msgs/subs.ssjs?msg_grp=' + msg_area.grp_list[s].name + '">' + msg_area.grp_list[s].description + '</a>' });
template.leftnav.push({html: '<li class="sectionSubLinks"><a class="sectionSubLinks" href="/msgs/subs.ssjs?msg_grp=' + msg_area.grp_list[s].name + '">' + msg_area.grp_list[s].description + '</a></li>' });
template.leftnav.push({ html: '</span>' });
}
if( sub != 'mail' && (http_request.virtual_path == '/msgs/choosesubs.ssjs' || http_request.virtual_path == '/msgs/updatesubs.ssjs')) {
template.leftnav.push({ html: '<span id="sectionSubLinks">' });
template.leftnav.push({ html: '<span class="sectionSubLinks">' });
for(s in msg_area.grp_list)
template.leftnav.push({html: '<a href="/msgs/choosesubs.ssjs?msg_grp=' + msg_area.grp_list[s].name + '">' + msg_area.grp_list[s].description + '</a>' });
template.leftnav.push({html: '<li class="sectionSubLinks"><a class="sectionSubLinks" href="/msgs/choosesubs.ssjs?msg_grp=' + msg_area.grp_list[s].name + '">' + msg_area.grp_list[s].description + '</a></li>' });
template.leftnav.push({ html: '</span>' });
}
*/
if(user.number==0 || user.security.restrictions&UFLAG_G) {
}
else
template.leftnav.push({html: '<a href="/msgs/choosegroup.ssjs">Set Message Scan</a>' });
template.leftnav.push({html: '<li><a href="/msgs/choosegroup.ssjs">Set Message Scan</a></li>' });
if(user.number==0 || user.security.restrictions&UFLAG_G) {
}
else
if(doQWK)
template.leftnav.push({ html: '<a href="' + template.ftp_url + template.ftpqwk + '">Download QWK Packet</a>' });
template.leftnav.push({ html: '<li><a href="' + template.ftp_url + template.ftpqwk + '">Download QWK Packet</a></li>' });
// template.leftnav.push({ html: '</ul>' });
write_template("leftnav.inc");
\ No newline at end of file
/* $Id$ */
var start=new Date();
......
/* $Id$ */
function count_attachments(hdr, body)
{
var Message=new Array;
......
/* $Id$ */
max_messages=20;
max_pages=30;
next_msg_html='<img src="/graphics/next1.gif" alt="Next Message" title="Next Message" border="0" />';
no_next_msg_html='<img src="/graphics/next1_light.gif" alt="No More Messages" title="No More Messages" />';
prev_msg_html='<img src="/graphics/prev1.gif" alt="Previous Message" title="Previous Message" border="0" />';
no_prev_msg_html='<img src="/graphics/prev1_light.gif" alt="No More Messages" title="No More Messages" />';
max_pages=20;
next_msg_html='<img src="' + template.image_dir + '/next1.gif" alt="Next Message" title="Next Message" border="0" />';
no_next_msg_html='<img src="' + template.image_dir + '/next1_light.gif" alt="No More Messages" title="No More Messages" />';
prev_msg_html='<img src="' + template.image_dir + '/prev1.gif" alt="Previous Message" title="Previous Message" border="0" />';
no_prev_msg_html='<img src="' + template.image_dir + '/prev1_light.gif" alt="No More Messages" title="No More Messages" />';
next_page_html="NEXT";
prev_page_html="PREV";
showall_subs_enable_html="Show all subs";
......
/* $Id$ */
load("sbbsdefs.js");
load("../web/lib/template.ssjs");
load("../web/lib/msgsconfig.ssjs");
......
......@@ -41,6 +41,94 @@ if(file.open("r")) {
file.close();
}
if(this.web_root_dir!=undefined && file_exists(web_root_dir + "/graphics/logo.gif"))
template.name_logo='<div id="siteName"><img src="/graphics/logo.gif" alt="Synchronet" title="Synchronet" /></div>';
if(telnet_port=="23")
telnet_port="";
else
telnet_port = ":" + telnet_port;
if(rlogin_port=="513")
rlogin_port="";
else
rlogin_port = ":" + rlogin_port;
if(ftp_port=="21")
ftp_port="";
else
ftp_port = ":" + ftp_port;
if(irc_port=="6667")
irc_port="";
else
irc_port = ":" + irc_port;
if(nntp_port=="119")
nntp_port="";
else
nntp_port = ":" + nntp_port;
if(gopher_port=="70")
gopher_port='';
else
gopher_port = ":" + gopher_port;
if(this.web_root_dir!=undefined && file_exists(web_root_dir + template.image_dir + "/logo.png"))
template.name_logo='<div id="siteName"><img src="' + template.image_dir + '/logo.png" style="float: left; height: 75px; width: 225px;" alt="Synchronet" title="Synchronet" /></div>';
/* System Stats */
if(CurrTheme=="NightShade") {
total=time()-system.uptime;
days = Math.floor(total/(24*60*60));
if(days)
total%=(24*60*60);
hours = Math.floor(total/(60*60));
min =(Math.floor(total/60))%60;
sec=total%60;
template.uptime = format("%u days, %u:%02u:%02u",days,hours,min,sec);
template.logons_today = system.stats.logons_today;
template.posted_today = system.stats.messages_posted_today;
template.uploaded_today = format("%lu bytes in %lu files" ,system.stats.bytes_uploaded_today ,system.stats.files_uploaded_today);
template.timeon_today = system.stats.timeon_today;
template.new_users_today = system.stats.new_users_today;
template.email_sent_today = system.stats.email_sent_today;
template.downloaded_today = format("%lu bytes in %lu files" ,system.stats.bytes_downloaded_today ,system.stats.files_downloaded_today);
template.total_timeon = addcommas(system.stats.total_timeon);
template.total_logons = addcommas(system.stats.total_logons);
template.total_messages = addcommas(system.stats.total_messages);
template.total_users = addcommas(system.stats.total_users);
template.total_email = addcommas(system.stats.total_email);
template.total_files = addcommas(system.stats.total_files);
if((host = http_request.vhost)==undefined)
host = http_request.host;
if(host==undefined || !host.length)
host = system.host_name;
var port = host.indexOf(':');
if(port>=0)
host=host.slice(0,port);
template.additional_services ='[' + ("java telnet".link("telnet/")) + '] ';
template.additional_services+='[' + ("telnet".link("telnet://"+host +telnet_port)) + '] ';
template.additional_services+='[' + ("rlogin".link("rlogin://"+host +rlogin_port)) + '] ';
template.additional_services+='[' + ("ftp".link("ftp://"+host +ftp_port)) + '] ';
template.additional_services+='[' + ("irc".link("irc://"+host +irc_port)) + '] ';
template.additional_services+='[' + ("news".link("news://"+host +nntp_port)) + '] ';
template.additional_services+='[' + ("gopher".link("gopher://"+host +gopher_port)) + '] ';
}
function addcommas(num)
{
num = '' + num;
if (num.length > 3) {
var mod = num.length % 3;
var output = (mod > 0 ? (num.substring(0,mod)) : '');
for (i=0 ; i < Math.floor(num.length / 3); i++) {
if ((mod == 0) && (i == 0))
output += num.substring(mod+ 3 * i, mod + 3 * i + 3);
else
output+= ',' + num.substring(mod + 3 * i, mod + 3 * i + 3);
}
return (output);
}
else
return num;
}
\ No newline at end of file
......@@ -45,6 +45,7 @@ template.Theme_CSS_File=Themes[CurrTheme].css;
template.server=server;
template.system=system;
function Nz(value, valifundefined)
{
if(valifundefined==undefined)
......@@ -55,11 +56,11 @@ function Nz(value, valifundefined)
}
function write_template(filename) {
var fname='../web/templates/'+Themes[CurrTheme].dir+'/'+filename;
var fname='../web/templates/'+Themes[CurrTheme].theme_dir+'/'+filename;
if(!file_exists(fname)) {
fname='../web/templates/'+Themes[DefaultTheme].dir+'/'+filename;
fname='../web/templates/'+Themes[DefaultTheme].theme_dir+'/'+filename;
if(!file_exists(fname))
fname='../web/templates/'+Themes["Default"].dir+'/'+filename;
fname='../web/templates/'+Themes["Default"].theme_dir+'/'+filename;
}
var inc=new File(fname);
if(!inc.open("r",true,1024)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment