Show
Ignore:
Timestamp:
06/11/08 02:10:17 (2 years ago)
Author:
benoitg
Message:
  • Authenticator.php: Fix SQL error closing connections.
  • auth/index.php: Probably fix the "Access denied" message when user click twice problem that resurfaced.
  • At long last, implement operational Dynamic abuse control (out of the embryo of the token architecture)! Configurable in Network preferences if you have the permissions. Unlike static limits, this is a sliding window (typically a month) during which user have a bandwidth and connection duration limit, per node, and totalled throughout the network.
  • UIAllowedBandwidth: New, simplistic content type to show the user how much of his allocation he consumed. Off course, the goal is actually to make it into a pretty graph....
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/sql/wifidog-postgres-initial-data.sql

    r1261 r1351  
    197197INSERT INTO virtual_hosts (virtual_host_id, hostname, default_network) VALUES ('DEFAULT_VHOST', 'localhost', 'default-network'); 
    198198INSERT INTO server (server_id, default_virtual_host) VALUES ('SERVER_ID', 'DEFAULT_VHOST'); 
    199 INSERT into roles (role_id, stakeholder_type_id) VALUES ('SERVER_SYSADMIN', 'Server'); 
    200 INSERT into roles (role_id, stakeholder_type_id) VALUES ('NETWORK_SYSADMIN', 'Network'); 
     199INSERT into roles (role_id, stakeholder_type_id) VALUES ('SERVER_OWNER', 'Server'); 
     200INSERT into roles (role_id, stakeholder_type_id) VALUES ('NETWORK_OWNER', 'Network'); 
    201201-- 
    202202-- PostgreSQL database dump 
     
    215215-- 
    216216 
    217 INSERT INTO schema_info (tag, value) VALUES ('schema_version', '56'); 
     217INSERT INTO schema_info (tag, value) VALUES ('schema_version', '61'); 
    218218 
    219219