Changeset 472

Show
Ignore:
Timestamp:
02/21/05 23:13:09 (8 years ago)
Author:
minaguib
Message:

Documentation & URL updating

Location:
trunk/wifidog
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/README

    r185 r472  
    22# $Header$ 
    33# 
    4 The WiFi Guard Dog project will be a complete and embedable captive portal 
     4 
     5The WiFi Guard Dog project is a complete and embedable captive portal 
    56solution for wireless community groups or individuals who wish to open a 
    67free HotSpot while still preventing abuse of their Internet connection. 
    78 
    8 The project maintains a Wiki at http://ilesansfil.org/wiki/WiFiDog 
    9 and a mailing list which can be found here: 
    10 http://isf.waglo.com/mailman/listinfo/wifidog_isf.waglo.com 
     9The project's homepage is: 
     10        http://www.ilesansfil.org/wiki/WiFiDog 
    1111 
    12 Note that the mailing list interface is in french and that there's a drop 
    13 down menu to choose the language on the right hand side. "Visualiser en" 
    14 translates to "View in" and "Francais" is french for French while 
    15 "Anglais (E-U)" stands for "English (US)." 
     12SourceForge project page: 
     13        http://sourceforge.net/projects/wifidog/ 
     14 
     15Mailing list interface: 
     16        http://listes.ilesansfil.org/cgi-bin/mailman/listinfo/wifidog 
     17 
     18 
     19The project's software is released under the GPL license and is copyright it's respective owners. 
     20 
  • trunk/wifidog/doc/README.developers.txt

    r6 r472  
    22$Header$ 
    33 
     4 
    45This file contains some small notes on developing the WiFiDog application. 
    56 
    6 The application's home page is http://www.ilesansfil.org/wiki/WiFiDog 
    7 The application's sourceforge page is http://sourceforge.net/projects/wifidog/ 
     7The application's home page is: 
     8        http://www.ilesansfil.org/wiki/WiFiDog 
    89 
    9 As a developer, you must subscribe to sourceforge as a "developer" under WiFiDog, as well as subscribe to the WiFiDog mailing list located at http://isf.waglo.com/mailman/listinfo/wifidog_isf.waglo.com 
     10The application's sourceforge page is: 
     11        http://sourceforge.net/projects/wifidog/ 
     12 
     13As a developer, you must subscribe to sourceforge as a "developer" under WiFiDog, as well as subscribe to the WiFiDog mailing list located at: 
     14        http://listes.ilesansfil.org/cgi-bin/mailman/listinfo/wifidog 
     15 
    1016 
    1117SOURCE CODE: 
     
    1925        - Before writing any brand-new large chunks of code, make sure it's logic has been discussed with the other team of developers or included in the design stage. 
    2026 
     27 
     28MEMORY ALLOCATION IN SOURCE CODE: 
     29        - Safe versions of C functions that allocate memory (safe_malloc, safe_asprintf, etc..) have been created in safe.c . You must use them instead of the original functions. 
     30        - If you need to use a memory-allocating C function that does not have a safe version in safe.c, create the safe wrapper first (following the template of the others) and use that instead of calling the original. 
     31 
     32 
    2133DOCUMENTATION: 
    2234        - Please use DoxyGen-style comments (see http://www.doxygen.org/ for details) for source code documentation. 
    2335        - Please use DocBook-SGML documentation for user documentation.  This will make it easy to export documentation in multiple formats.  Otherwise submit your documentation in plaintext format to someone who will change it to DocBook. 
    2436        - Please thoroughly-comment non-clear sections in your code. 
     37 
  • trunk/wifidog/ipkg/rules

    r464 r472  
    104104        echo "Architecture: $(ARCH)" >> $(TMP_DIR)/CONTROL/control 
    105105        echo "Section: base" >> $(TMP_DIR)/CONTROL/control 
    106         echo "Maintainer: WiFiDog <wifidog@isf.waglo.com>" >> $(TMP_DIR)/CONTROL/control 
     106        echo "Maintainer: WiFiDog <wifidog@listes.ilesansfil.org>" >> $(TMP_DIR)/CONTROL/control 
    107107        echo "Priority: optional" >> $(TMP_DIR)/CONTROL/control 
    108108        echo "Description: The WiFiDog project is a complete and embeedable captive portal solution for wireless community groups or individuals who wish to open a free HotSpot while still preventing abuse of their Internet connection." >> $(TMP_DIR)/CONTROL/control