Subversion Repositories general

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1382 → Rev 1383

/asterisk-stats/trunk/astweb.css
File deleted
/asterisk-stats/trunk/telbook.php
1,9 → 1,6
<?php
 
include_once('includes/config.php');
include_once('includes/display.php');
include_once('includes/functions.php');
include_once('includes/db.php');
include_once('includes/common.php');
 
$display = new template_handler('template');
 
/asterisk-stats/trunk/includes/config.php-dist
1,25 → 1,5
<?php
####################################################
# AstWeb - Asterisk PBX Dynamic config environment #
# #
# Written by: Jamie Carl #
# jazz@funkynerd.com #
# #
# Copyright (C) 2006 Achieve Corp #
# #
# Licence: This software is licenced under the #
# GNU/GPL. Please see licence.txt for #
# more information. #
####################################################
 
/* Configuration settings */
 
$tpl_dir = 'templates';
$img_dir = 'images';
 
$site_title = 'Asterisk Web Interface';
$site_style = 'astweb.css';
 
$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
/asterisk-stats/trunk/includes/defaults.php
0,0 → 1,15
<?php
 
$tpl_dir = 'templates';
$img_dir = 'images';
 
$site_title = 'Asterisk Web Interface';
$site_style = 'style.css';
 
$db_type = 'PGSQL';
$db_host = 'localhost';
$db_user = 'astweb';
$db_password = 'password';
$db_database = 'asterisk';
 
?>
/asterisk-stats/trunk/includes/common.php
0,0 → 1,9
<?
 
include_once('includes/defaults.php');
include_once('includes/config.php');
include_once('includes/display.php');
include_once('includes/functions.php');
include_once('includes/db.php');
 
?>
/asterisk-stats/trunk/telbook_export.php
1,9 → 1,6
<?php
 
include_once('includes/config.php');
include_once('includes/display.php');
include_once('includes/functions.php');
include_once('includes/db.php');
include_once('includes/common.php');
 
if($_GET['type'] == 'panasonic') {
$db->query("select person_name, category_export_key, entry_title, entry_value"
/asterisk-stats/trunk/style.css
0,0 → 1,147
body {
font-family: Verdana;
font-size: 8pt;
}
 
a {
text-decoration: none;
}
 
table.menu {
background-color: #6876F8;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 40px;
font-size: 14pt;
}
 
table.menu td {
text-align: center;
}
 
table.menu a {
color: #FFFFFF;
}
 
div.copyright {
color: #FFFFFF;
font: 8pt Verdana;
text-align: center;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #6876F8;
}
 
div.copyright a {
color: #FFFFFF;
}
 
div.main {
margin-top: 50px;
margin-bottom: 50px;
}
 
table.calls a {
color: #000000;
}
 
table.stat th {
color: #FFFFFF;
background-color: #6876F8;
font-weight: bold;
font-size: 10pt;
padding: 5px;
}
 
table.stat td {
border: 1px solid #AAAAAA;
padding: 5px;
vertical-align: text-bottom;
font-size: 8pt;
}
 
table.stat tr:hover td {
background-color: #AAAAAA;
}
 
table.stat td.d {
text-align: right;
}
 
table.stat td.di {
text-align: right;
}
 
table.cdr td.link {
border: none;
}
 
table.cdr td.duration {
text-align: right;
}
 
table.cdr td.num {
text-align: right;
}
 
table.sum td {
text-align: right;
}
 
table.details td {
text-align: right;
}
 
table.calls {
width: 300px;
}
 
table.cdr a {
color: #2B3EF5;
}
 
div.rval {
font-size: 8pt;
padding-top: 16px;
padding-bottom: 16px;
}
 
table.search tr.buttons td {
border: none;
}
 
table.search td.desc {
border: none;
}
 
table.search td.radio {
border: none;
}
 
table.search tr.buttons:hover td {
background-color: #FFFFFF;
}
 
table.telbook th {
color: #FFFFFF;
background-color: #6876F8;
font-weight: bold;
font-size: 10pt;
padding: 5px;
}
 
table.telbook td {
border: 1px solid #AAAAAA;
padding: 5px;
vertical-align: text-bottom;
font-size: 8pt;
}
 
table.telbook tr.buttons td {
border: none;
}
 
Property changes:
Added: svn:mergeinfo
/asterisk-stats/trunk/telbook_categories.php
1,9 → 1,6
<?php
 
include_once('includes/config.php');
include_once('includes/display.php');
include_once('includes/functions.php');
include_once('includes/db.php');
include_once('includes/common.php');
 
$display = new template_handler('template');
 
/asterisk-stats/trunk/index.php
12,10 → 12,7
# more information. #
####################################################
 
include_once('includes/config.php');
include_once('includes/display.php');
include_once('includes/functions.php');
include_once('includes/db.php');
include_once('includes/common.php');
 
$display = new template_handler('template');
$display->add_template('header');