Changeset 472
- Timestamp:
- 02/21/05 23:13:09 (8 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 3 modified
-
README (modified) (1 diff)
-
doc/README.developers.txt (modified) (2 diffs)
-
ipkg/rules (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/README
r185 r472 2 2 # $Header$ 3 3 # 4 The WiFi Guard Dog project will be a complete and embedable captive portal 4 5 The WiFi Guard Dog project is a complete and embedable captive portal 5 6 solution for wireless community groups or individuals who wish to open a 6 7 free HotSpot while still preventing abuse of their Internet connection. 7 8 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 9 The project's homepage is: 10 http://www.ilesansfil.org/wiki/WiFiDog 11 11 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)." 12 SourceForge project page: 13 http://sourceforge.net/projects/wifidog/ 14 15 Mailing list interface: 16 http://listes.ilesansfil.org/cgi-bin/mailman/listinfo/wifidog 17 18 19 The 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 2 2 $Header$ 3 3 4 4 5 This file contains some small notes on developing the WiFiDog application. 5 6 6 The application's home page is http://www.ilesansfil.org/wiki/WiFiDog7 The application's sourceforge page is http://sourceforge.net/projects/wifidog/ 7 The application's home page is: 8 http://www.ilesansfil.org/wiki/WiFiDog 8 9 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 10 The application's sourceforge page is: 11 http://sourceforge.net/projects/wifidog/ 12 13 As 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 10 16 11 17 SOURCE CODE: … … 19 25 - 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. 20 26 27 28 MEMORY 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 21 33 DOCUMENTATION: 22 34 - Please use DoxyGen-style comments (see http://www.doxygen.org/ for details) for source code documentation. 23 35 - 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. 24 36 - Please thoroughly-comment non-clear sections in your code. 37 -
trunk/wifidog/ipkg/rules
r464 r472 104 104 echo "Architecture: $(ARCH)" >> $(TMP_DIR)/CONTROL/control 105 105 echo "Section: base" >> $(TMP_DIR)/CONTROL/control 106 echo "Maintainer: WiFiDog <wifidog@ isf.waglo.com>" >> $(TMP_DIR)/CONTROL/control106 echo "Maintainer: WiFiDog <wifidog@listes.ilesansfil.org>" >> $(TMP_DIR)/CONTROL/control 107 107 echo "Priority: optional" >> $(TMP_DIR)/CONTROL/control 108 108 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
