root/tags/v0_1_0_alpha1/wifidog-auth/ChangeLog

Revision 525, 19.0 kB (checked in by aprilp, 4 years ago)

Tagged v0_1_0_alpha1

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 2005-04-01 Philippe April <philippe@ilesansfil.org>
2         * User.php: Add reference to $db global variable.
3         * Tagged v0_1_0_alpha1
4        
5 2005-03-31 Benoit Gr�ire  <bock@step.polymtl.ca>
6         * Remove spaces after php blocks in various files.
7         * Temporarely fix single authentication source not present bug in login smarty template.  All other places where we select the network will be fixed tommorow.
8         * Fix initial schema errors.
9        
10 2005-03-31 Benoit Gr�ire  <bock@step.polymtl.ca>
11         * More RADIUS install documentation.
12         * Fix schema_validate.php
13        
14 2005-03-31 Francois Proulx  <francois.proulx@gmail.com>
15         * Moved language definition
16         * Moved e-mail subjects to User class ( each e-mail functions )
17        
18 2005-03-31 Francois Proulx  <francois.proulx@gmail.com>
19         * Added missing schema_validate.php modifs.
20
21 2005-03-31 Francois Proulx  <francois.proulx@gmail.com>
22         * Added PEAR install procedure
23        
24 2005-03-30 Fran�s Proulx  <francois.proulx@gmail.com>
25         * Finished RADIUS authentication and accounting
26         * Accounting Unique session ID is now based on the same token we use
27         * Fixed all issues with lost_username, lost_password etc...
28         * User class has new static function getUsersByEmail and getUsersByUsername
29         * Added translations for new features
30         * Translated the validation, lost password, username e-mails
31         * Tested quite a bit, this version is considered stable
32         * A few examples on how set different RADIUS or local authenticators can be found in the config.php
33        
34 2005-03-29 Fran�s Proulx  <francois.proulx@gmail.com>
35         * schema_validate.php : Modified schema : dropped e-mail + account unique index, dropped email not empty constraint
36         * Schema is now at version 3
37         * Coded RADIUS authentication
38         * Modified templates to show a select box when more than one server is configured
39         * Coded RADIUS accounting and backward compatibility accounting
40         * Modified many statistics SQL queries to match new Users table
41         * modified statistics templates to match user_id and account_origin
42         * TODO : Fix lost_username and lost_password ( issue since we dropped the unique constraint on emails... )
43         * TODO : Heavy testing possibly with remote RADIUS servers
44        
45 2005-03-28 Benoit Gr�ire  <bock@step.polymtl.ca>
46         * sql:  Put initial data in a transaction, and specify the wifidog user so you do not have to su to it while using sync_sql_for_svs
47        
48 2005-03-28 Benoit Gr�ire  <bock@step.polymtl.ca>
49         * common.php:  Add get_guid() function
50         * validate_schema.php: New auto-upgrade script to allow autaumatic schema upgrade.  Note that you must still update dump_initial_data_postgres.sh and use sync_sql_for_cvs.sh so new users aren't left in the cold.
51         * New class Authenticator (and subclasses):  Begin virtualizing the login process.
52          
53 2005-03-24 Benoit Gr�ire  <bock@step.polymtl.ca>
54         * Statistics.php: Fix getMostGreedyUsers returning bad values when incoming and outgoing for all connections from a user have null values.
55         * wifidog/local_content/default/portal.html: Fix layout so it resizes properly.  This in an interim measure.
56         * Update schema.  This will allow automatic schema updates in the future.  TO update a live server:
57                 BEGIN;
58                 CREATE TABLE schema_info (
59                     tag text PRIMARY KEY,
60                     value text
61                 );
62                 INSERT INTO schema_info (tag, value) VALUES ('schema_version', '1');
63                 COMMIT;
64        
65 2005-03-16 Matthew Asham <matthewa@bcwireless.net>
66  * config.php: will use "local.config.php" instead, if present.  avoid cvs over-writing.
67  * signup.php: if CUSTOM_SIGNUP_URL is defined, signup.php will re-direct.  For integration with existing auth systems
68  * hotspot_status.php: ob_clean may complain about buffering.  muted.
69  * ./classes/RssPressReview.inc: if rss_source['url'] is blank, ignore the feed.
70  
71 2005-02-22 Benoit Gr�ire  <bock@step.polymtl.ca>
72         * sql/dump_initial_data_postgres.sh, wifidog-postgres-initial-data.sql, wifidog-postgres-schema.sql:-Widen the connections size to fix int4 wraparound problems.  To update a running server, execute the following sql sniplet:
73 BEGIN;
74 ALTER TABLE connections RENAME incoming TO incoming_old;
75 ALTER TABLE connections ADD COLUMN incoming int8;
76 ALTER TABLE connections RENAME outgoing TO outgoing_old;
77 ALTER TABLE connections ADD COLUMN outgoing int8;
78 UPDATE connections set incoming=incoming_old, outgoing=outgoing_old;
79 ALTER TABLE connections DROP COLUMN incoming_old;
80 ALTER TABLE connections DROP COLUMN outgoing_old;
81 COMMIT;
82         * wifidog/admin/hotspot.php: Missing file from phil's commit.
83         * wifidog/locale/fr/LC_MESSAGES/messages.mo, messages.po:  New translation by Benoit St-Andr�2005-02-14 Philippe April <philippe@ilesansfil.org>
84         * gw_message.php: the "activate" message was not properly defined and
85         would cause an error to show up instead of the nice activate your account
86         message
87
88 2005-02-14 Philippe April <philippe@ilesansfil.org>
89         * wifidog/locale/gen.s: Was not working as expected, it will now get the
90         gettext from smarty properly.
91         * Updated TODO with ideas on making config better
92
93 2005-01-31 Benoit Gr�ire  <bock@step.polymtl.ca>
94         * wifidog/templates/hotspot_status.html:  Restore the number of nodes
95         * wifidog/hotspot_status.php: Restore the number of nodes, add formatting and more information to the RSS feed.
96
97 2005-01-26 Philippe April <isf_lists@philippeapril.com>
98         * Some kind of virtual login (we need to talk about this).
99         * New User and Node classes
100         * Modified all files to work with the classes.
101         * Remove mgmt_helpers (all done in User class now)
102
103 2005-01-25 Benoit Gr�ire  <bock@step.polymtl.ca>
104         * classes/Node.php:  New file, untested code example
105         * wifidog/admin/admin_common.php: Remove double-defined BASEPATH
106        
107 2005-01-25 Philippe April <isf_lists@philippeapril.com>
108         * Changed initial postgres inserts sql file, it wasn't working properly
109
110 2005-01-25 Pascal Leclerc  <pascal@plec.ca>
111         * Added admin and owner administration pages
112
113 2005-01-23 Philippe April <isf_lists@philippeapril.com>
114         * Added gateway error messages (validation period, etc.)
115
116 2005-01-20 Philippe April <isf_lists@philippeapril.com>
117         * Modularized the admin interface, added functions
118
119 2005-01-18 Philippe April <isf_lists@philippeapril.com>
120         * Smarty'ized more, I think it's done now
121
122 2005-01-12 Philippe April <isf_lists@philippeapril.com>
123         * i18n and smarty'ized parts
124
125 2005-01-11 Benoit Gr�ire  <bock@step.polymtl.ca>
126         * INSTALL: Mandate PHP5
127         * wifidog/hotspot_status.php: Allow export of the list as a RSS feed
128         * wifidog/classes/RssPressReview.inc:  Make it truly functionnal.
129         * wifidog/portal/index.php:  Support multiple RSS feeds.  The system will automatically pick the best 5 entries from all the feeds.  It will compensate for disparate publication intervals.  An entry from a feed that does not publish often will live longer than an entry from a feed that publishes very often.  If a feed doesn't have any entry that makes the cut, it will not appear at all.
130         * wifidog/templates/hotspot_status.html:  Add link to the RSS version.
131
132 2005-01-11 Benoit Gr�ire  <bock@step.polymtl.ca>
133         * wifidog/config.php:  Add list of hotspot to network rss feed list (not yet functionnal)
134         * wifidog/hotspot_status.php:  Allow RSS export of the list of deployed HotSpots.
135         * wifidog/admin/incoming_outgoing_swap.php:  Script to swap incoming and outgoing in your data.  only use this if you had gateways before 1.0.2 and wish to correct your logs before you upgrade.
136         * wifidog/classes/RssPressReview.inc:  Missing file from previous commit.
137         * wifidog/portal/index.php: Preliminary work to enable smart press review of multiple RSS feeds.
138
139 2005-01-10 Benoit Gr�ire  <bock@step.polymtl.ca>
140         * include/common.php: Fix SSL security warnings.  If SSL is enabled and the page was actually served over SSL, all media in the file will be served over SSL. Add a new define (BASE_NON_SSL_PATH) to allow us to make links that break out of SSL mode.  From now on, use the self adapting BASE_URL_PATH in most circumstance, BASE_SSL_PATH to enter SSL mode, and BASE_URL_PATH to break out of it.
141
142 2005-01-10 Benoit Gr�ire  <bock@step.polymtl.ca>
143         * admin/user_stats.php: Add three top tens to the statistics:  Top ten apetite for bandwidth, top ten travelers, most addicted users.
144
145 2005-01-04 Benoit Gr�ire  <bock@step.polymtl.ca>
146         * wifidog/local_content/default/hotspot_logo_banner.jpg: Make it much thinner.
147         * wifidog/local_content/default/login.html: Remove announcements
148         * wifidog/include/user_management_menu.php: Fix mailto:
149         * wifidog/auth/index.php: Fix auth server part of the no data transmited statistics bug.
150         * wifidog/admin/index.php: Add link to statistics
151         * wifidog/admin/user_stats.php: Activate security.
152         * wifidog/index.php: Make the distinction between the two hotspot status pages clearer.
153
154 2004-12-08 Benoit Gr�ire  <bock@step.polymtl.ca>
155         * wifidog/index.php: Add menu
156         * wifidog/include/user_management_menu.php: Editorial change, make translateable
157         * wifidog/portal/index.php:  Fix RSS feeds
158
159 2004-12-03 Benoit Gr�ire  <bock@step.polymtl.ca>
160         * wifidog/admin/user_stats.php,  wifidog/classes/Statistics.php:  Embryonic aggregate user stats.  Currently allows you to find out the rate at which your users subscribe.
161         * wifidog/config.php, wifidog/local_content/default/login.html, wifidog/include/user_management_menu.php:  Add hotspot status page to login page.
162         * wifidog/hotspot_status.php: Cosmetic
163         * wifidog/admin/hotspot_log.php: Stats now need admin privileges
164         * wifidog/index.php: Cosmetic.
165
166 2004-11-19 Benoit Gr�ire  <bock@step.polymtl.ca>
167         * TODO: Add email domains to blacklist
168         * wifidog/config.php, wifidog/include/user_management_menu.php: Add tech support email address
169         * wifidog/hotspot_status.php: List of HotSpots that are open with summary of information.  Designed to be included as part of another page.
170         * wifidog/local_content/common/wifidog_logo_banner.gif: Add wifidog logo
171         * wifidog/local_content/default/hotspot_logo_banner.jpg: Shrink the logo and write unknown hotspot, however this is still really ugly
172         * wifidog/local_content/default/login.html, portal.html, stylesheet.css: Cosmetic fixes
173         * wifidog/local_content/default/login.html.fr, portal.html.fr: Delete the files, this isn't the approach we will use for translation.
174         * sql/wifidog-postgres-initial-data.sql, wifidog-postgres-schema.sql: Update with new node information structures.
175
176 2004-11-04 Benoit Gr�ire  <bock@step.polymtl.ca>
177         * wifidog/admin/hotspot_log.php: Add number of currently connected users here as well.
178
179 2004-11-03 Benoit Gr�ire  <bock@step.polymtl.ca>
180         * wifidog/ping/index.php: Log user-agent
181         * extensive statistics work
182         * sql/wifidog-postgres-schema.sql: Add description field for hotspots and log user-agent
183
184 2004-10-28 Benoit Gr�ire  <bock@step.polymtl.ca>
185         * sql/wifidog-postgres-schema.sql:  Add constraints to avoid empty string in email or user_id.
186         * Some statistics fixes
187
188 2004-09-29 Alexandre Carmel-Veilleux <acv@acv.ca>
189         * wifidog/admin/index.php: Integrated the changes contributed
190         on the mailing list by Rikhardur EGILSSON (fname.lname@oecd.org),
191         mainly a missing ' in some HTML.
192
193 2004-09-28 Yanik Cr�au <yanik@exScriptis.com>
194         * wifidog/include/common.php: Added commented header with cvs
195         keywords.
196         * wifidog/include/common.php: Added commented code (not executing) for
197         further testing with language/localization issues.
198
199 2004-09-27 Benoit Gr�ire  <bock@step.polymtl.ca>
200         * sql/wifidog-postgres-schema.sql:  Remove non SQL standard "COMMENT ON" comments
201
202 2004-09-27 Benoit Gr�ire  <bock@step.polymtl.ca>
203         * sql/wifidog-postgres-schema.sql:  Drop procedural language stuff
204
205 2004-09-27 Benoit Gr�ire  <bock@step.polymtl.ca>
206         * sql/wifidog-postgres-schema.sql:  Fix layout for the node_owners table
207         * Begin integrating Patrick Tanguay's new layout and generate the css dynamically to allow for background images.
208
209 2004-09-22 Benoit Gr�ire  <bock@step.polymtl.ca>
210         * portal/index.php:  Fix users appearing online at every hotspot.
211         * wifidog/classes/Style.php, wifidog/login/index.php:  Fix some potential cache problems and help with validation.
212        
213 2004-09-18 Benoit Gr�ire  <bock@step.polymtl.ca>
214         * wifidog/config.php:  Add VALIDATION_GRACE_TIME configuration parameter.
215         * wifidog/auth/index.php:  Move grace time date arithmetics to the database, fixes validation period not working.  Stop storing VALIDATION_FAILES status to the database.  Add check for validation period expiration at stage login, not just stage counters, this will fix one minute validation period.
216         * wifidog/login/index.php:  Check validation period activation, and if period is expired, explain to the user instead of redirecting to the gateway.
217         * wifidog/user_management/index.php:  Fix SQL error at new user registration. 
218        
219 2004-09-02 Benoit Gr�ire  <bock@step.polymtl.ca>
220         * wifidog/node_list.php: Complete the status page
221         * Add images
222         * Add hotspot creation date
223        
224 2004-08-31 Benoit Gr�ire  <bock@step.polymtl.ca>
225         * sql/: Update the postgres schemas and add scripts to ease maintaining it.
226         * sql/sync_sql_for_cvs.sh: Should you modify the schema in your db, run this script to the chances will be available in the cvs schemas and initial data.
227         * sql/dump_initial_data_postgres.sh: This does the actual dump of the data in a runnable form.  Note that this needs to be edited manually if you add a new table requiring initial data.
228         * INSTALL:  Update for postgres.  Somebody please test this.
229
230 2004-08-31 Benoit Gr�ire  <bock@step.polymtl.ca>
231         * wifidog/ping/index.php: Implement logging of which hotspot sent the heartbeat, from which ip and when.
232         * wifidog/node_list.php:  Primitive but functionnal hotspot status page.
233         * wifidog/include/user_management_menu.php:  Change menu labels
234         * wifidog/local_content/default/login.html: Improve layout.  Someone needs to make this stylesheet correct, I took shortcuts...
235         * wifidog/local_content/default/stylesheet.css:  Reduce H1 font size.
236         * wifidog/user_management/index.php:  Display the menu, will eventually allow us to present proper help text.
237
238 2004-08-30 Benoit Gr�ire  <bock@step.polymtl.ca>
239         * Add link to original requested site.
240         * wifidog/node_list.php:  New file.  Will become the main node status page.
241
242 2004-08-28 Benoit Gr�ire  <bock@step.polymtl.ca>
243         * Primitive network status available form the index page
244         * Administrative security is implemented.
245
246 2004-08-28 Benoit Gr�ire  <bock@step.polymtl.ca>
247         * Fix big gaping security hole in login page (password would be ignored if the username was used to login)
248         * PostgreSql port
249         * Change the method to determine who is online
250         * Stop keeping unused token once user successfully logs in.
251         * Fix missing update of token update date.
252         * Counters wouldn't get updated for stage=LOGOUT
253         * wifidog/auth/index.php:  Added a Messages: response in addition to Auth: so we can know what the hell the server is up to.  Currently you need to run wifidog in debug level 7 to see it. That message should be parsed so it is visible in debug level 6.
254         * wifidog/auth/index.php:   Fix code injection vulnerability.
255        
256 2004-08-27 Benoit Gr�ire  <bock@step.polymtl.ca>
257         * SSL support and RSS improvement
258         * Last commit tested with mysql support
259        
260 2004-08-24 Pascal Leclerc  <pascal@plec.ca>
261         * wifidog/admin/user_log.php: Add total to incoming and outgoing
262         * Replace all SERVER_NAME by HTTP_HOST to fix non-standard server ports
263
264 2004-08-11 Benoit Gr�ire  <bock@step.polymtl.ca>
265         * wifidog/config.php: Add USER_MANAGEMENT_PAGE
266         * wifidog/include/user_management_menu.php:  Code meant to deal with non-standard ports broke the menu.  Hopefully fixed.
267         * Add alex's mising changelog entry...
268        
269 2004-08-11 Alexandre Carmel-Veilleux <acv@acv.ca>
270         * wifidog/ping/index.php: will now reply if the wifidog auth server is up. to be used by wifidog to do heartbeats.
271
272 2004-08-07 Benoit Gr�ire  <bock@step.polymtl.ca>
273         * Add code to import a NoCat user database (passwd).  The username will be generated from the first part of the email if the name was en email.
274         * Change password hashing algorithm to make it compatible with NoCat (For the curious among you, the hashing algorithm is now:  take the md5 digest in binary format of the password, and base64 encode it.
275         * Table schema changed to accomodate newhash length (users.pass is now varchar(32))
276         * The user is now allowed to login with either his username or his email.
277        
278 2004-08-03 Pascal Leclerc  <pascal@plec.ca>
279         * wifidog/classes/SmartyWifidog.php: Fix path validation bug, replace NODE_CONTENT_URL with NODE_CONTENT_PHP_RELATIVE_PATH
280         * wifidog/classes/AbstractDb.php: Add class=warning for better display
281         * wifidog/config.php: Add SYSTEM_PATH and test/fix non-standard server ports
282
283 2004-08-03 Benoit Gr�ire  <bock@step.polymtl.ca>
284         * Make gettext support optionnal, and define GETTEXT_AVAILABLE, will be set to true if gettext is available.  If false, blank _() and gettext() functions will be defined so the system still works.
285
286 2004-08-03 Benoit Gr�ire  <bock@step.polymtl.ca>
287         * Fix BASE_URL_PATH to properly detect non-standard server ports (hopefully).
288
289 2004-08-02 Benoit Gr�ire  <bock@step.polymtl.ca>
290         * wifidog-auth lives! New since the dark ages
291         * Demo page to allow people to hack more easely on it
292         * Support for multiple nodes.  TODO:  Merge with the database project.
293         * Very cool local content architecture.  Every hotspot can have a folder in the local_content directory.  This folder can be filed by a single logo, leaving all the rest to the default content, or be completely custom (stylesheet, login page, portal page, header, etc.)
294         * Everything in local content is templated with smarty, no problem with web designer wrecking havoc on the auth server.  You can edit everything in local_content/default even if you only speak html.
295         * No need to set any path in the web server config files (that one was a bitch to implement)
296         * RSS feed support (optionnal, with magpierss), one feed per node (url stored in the database, works great, but no gui to edit it yet) and one network-wide RSS feed.
297         * All path are editable from the config file
298         * "Productize" the thing, so it make sense for other groups to install it (the network name, url, default RSS, and such are set from the config file.
299         * Put most strings in gettext calls for easy future translation.
300         * User can request that the server send the validation email again
301         * User can change password
302         * User who forgot his username can have it mailed to him.
303         * User who lost his password can ask the system to generate a new one and mail it to him.
304         * Email is now a separate field to preserve user privacy.
305         * Enforces (politely) that there are no duplicate emails in the database
306         * Database abstraction layer with very nice debugging features (just append true at the end of the call, and you'll see the query, the results, the query plan and number of affected rows.  Also allow future upgrade to postgres.
307         * Lots of other things I forgot.
308        
309         * User who forgot his username can have it mailed to him.
310         * User who lost his password can ask the system to generate a new one and mail it to him.
311         * Email is now a separate field to preserve user privacy.
312         * Enforces (politely) that there are no duplicate emails in the database
313         * Database abstraction layer with very nice debugging features (just append true at the end of the call, and you'll see the query, the results, the query plan and number of affected rows.  Also allow future upgrade to postgres.
314         * Lots of other things I forgot.
315        
Note: See TracBrowser for help on using the browser.