Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fixed some issues with the useracc_list() function | David Sommerseth | 2009-09-25 | 1 | -32/+28 | |
| | | ||||||
* | | Unified eDBadminUser*() functions into one eDBadminUserAccount() function | David Sommerseth | 2009-09-24 | 3 | -303/+236 | |
|/ | | | | | | Rewritten the database API and the SQLite3 database driver. This code has yet not been tested. | |||||
* | Removed debug info | David Sommerseth | 2009-09-22 | 1 | -3/+0 | |
| | ||||||
* | Updates to .gitignore | David Sommerseth | 2009-09-22 | 1 | -2/+3 | |
| | ||||||
* | Added build rules and configure --doxygen argument to build Doxygen docs via ↵ | David Sommerseth | 2009-09-22 | 3 | -8/+62 | |
| | | | | make | |||||
* | Improved Doxygen generation, added index page | David Sommerseth | 2009-09-22 | 2 | -8/+137 | |
| | ||||||
* | Removed duplicated Doxygen documentation | David Sommerseth | 2009-09-22 | 1 | -9/+0 | |
| | ||||||
* | Fixed and cleaned up Doxygen comments | David Sommerseth | 2009-09-22 | 4 | -81/+114 | |
| | ||||||
* | Updated eurephia_init to also use eurephiaXML_ParseResultMsg() | David Sommerseth | 2009-09-22 | 1 | -5/+11 | |
| | ||||||
* | Unified eDBadminGetCertificateInfo(), eDBadminAddCertificate() and ↵ | David Sommerseth | 2009-09-22 | 5 | -132/+210 | |
| | | | | | | eDBadminDeleteCertificate() into eDBadminCertificate() Updated eurephiadm utility to make use of this new unified API | |||||
* | Rewritten eurephiadm users command to use eurephiaXML_ParseResultMsg() | David Sommerseth | 2009-09-21 | 1 | -9/+21 | |
| | ||||||
* | Rewritten most of the eurephiadm commands to use eurephiaXML_ParseResultMsg() | David Sommerseth | 2009-09-21 | 6 | -90/+110 | |
| | | | | Commands not covered yet are users and certs commands | |||||
* | Rewrote eurephiaXML_ResultMsg() to also support adding an xmlNode* with more ↵ | David Sommerseth | 2009-09-21 | 8 | -58/+127 | |
| | | | | | | | | info The eurephia result XML document is also changed, and all parsing of the result must be rewritten. To simplify this parsing, a new function is introduced, eurephiaXML_ParseResultMsg(). | |||||
* | Modified eurephiadm and eurephia_init programs to use the new ↵ | David Sommerseth | 2009-09-21 | 2 | -12/+37 | |
| | | | | eDBadminAccessLevel() function | |||||
* | Unified eDBadminGetAdminAccess() and eDBadminEditAdminAccess() into ↵ | David Sommerseth | 2009-09-21 | 4 | -113/+116 | |
| | | | | eDBadminAccessLevel() | |||||
* | Added eDBmappingGetValue() to retrieve field values from a eDBfieldMap struct | David Sommerseth | 2009-09-21 | 2 | -0/+27 | |
| | ||||||
* | Improved some doxygen comments | David Sommerseth | 2009-09-20 | 1 | -1/+3 | |
| | ||||||
* | Corrected wrong argument in eurephiadm users --add mode. | David Sommerseth | 2009-09-19 | 1 | -1/+1 | |
| | ||||||
* | Removed usage of a global result pointer | David Sommerseth | 2009-09-17 | 1 | -54/+50 | |
| | | | | | | | | The callback function do now get a pointer to the query results directly instead of using a global result pointer. This makes queries done in parallel a lot safer. Made the SQLITE_DEBUG main() function more generic and removed memwatch references which is no longer in use, as valgrind is much better and easier to use. | |||||
* | BUGFIX: Sometimes get_console_input() would "skip" a prompt if data was ↵ | David Sommerseth | 2009-09-15 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | still in the stream This happens when more data is entered than what fits into the buffer. Then the remaining input, including the new-line will be accepted automatically on the next get_console_input(). It's important to remember that the length argument of get_console_input() do not restrict how much data the user can type in. It only tells how big the receiving buffer is, thus leaving the remaining data in the file stream. The fix for eurephia_init was to make sure a bigger part of the buffer is used when calling get_console_input(), to be sure that new-line will be accepted into this buffer. | |||||
* | Fixed missing doxygen comments and improved a description in saltdecode.c | David Sommerseth | 2009-09-15 | 1 | -3/+11 | |
| | ||||||
* | Utilities did not get built when eurephiadm is enabled | David Sommerseth | 2009-09-15 | 1 | -1/+1 | |
| | ||||||
* | Rewritten eurephia_init to use the new unified eDBadminConfiguration() function | David Sommerseth | 2009-09-15 | 1 | -12/+53 | |
| | ||||||
* | Fix some valgrind warnings. Two timeval structs where not initialised ↵ | David Sommerseth | 2009-09-15 | 1 | -1/+3 | |
| | | | | before being used | |||||
* | BUGFIX: saltlen was set to 0 when a buffer for a new salt was generated | David Sommerseth | 2009-09-15 | 1 | -12/+12 | |
| | | | | | | This error caused eurephia_pwd_crypt() to fail, especially when salt length was requested to be longer. The solution was to retrieve the salt length before allocating memory for it. | |||||
* | Make Doxygen also document utils/ | David Sommerseth | 2009-09-15 | 1 | -1/+1 | |
| | ||||||
* | Fixed some new Doxygen warnings which came after enabling static functions ↵ | David Sommerseth | 2009-09-14 | 3 | -7/+12 | |
| | | | | and vars | |||||
* | Removed not valid argument for eurephiadm adminaccess command | David Sommerseth | 2009-09-14 | 1 | -1/+0 | |
| | ||||||
* | Adopted eurephiadm config command to use the new unified db function, ↵ | David Sommerseth | 2009-09-14 | 1 | -8/+36 | |
| | | | | eDBadminConfiguration() | |||||
* | Unified database driver functions eDBadminConfigSet() and ↵ | David Sommerseth | 2009-09-14 | 3 | -29/+151 | |
| | | | | eDBadminConfigDelete() into eDBadminConfiguration() | |||||
* | Added eRemove_value() function, to remove a key/value pair from an ↵ | David Sommerseth | 2009-09-14 | 2 | -3/+48 | |
| | | | | eurephiaVALUES chain | |||||
* | Doxygen - include static functions and variables as well | David Sommerseth | 2009-09-14 | 1 | -1/+1 | |
| | ||||||
* | Added a simple xmlNode iterator for future usage | David Sommerseth | 2009-09-14 | 1 | -0/+8 | |
| | ||||||
* | Corrected some doxygen issues after rearranging the sqlite3 db driver code | David Sommerseth | 2009-09-13 | 4 | -4/+5 | |
| | ||||||
* | Moved eDBGetLastlog() function into sqlite/administration/lastlog.c | David Sommerseth | 2009-09-13 | 3 | -109/+165 | |
| | ||||||
* | Moved eDBadminGetAdminAccess() into sqlite/administration/useraccount.c | David Sommerseth | 2009-09-13 | 2 | -59/+60 | |
| | ||||||
* | Moved certificate functions into sqlite/administration/certificates.c | David Sommerseth | 2009-09-13 | 3 | -200/+257 | |
| | ||||||
* | Moved user account functions into administration/useraccount.c | David Sommerseth | 2009-09-13 | 3 | -496/+555 | |
| | ||||||
* | Moved eDBadminBlacklist() function into administration/blacklist.c | David Sommerseth | 2009-09-13 | 2 | -68/+54 | |
| | ||||||
* | Corrected some wrong arguments and help screens for eurephiadm blacklist and ↵ | David Sommerseth | 2009-09-13 | 2 | -3/+3 | |
| | | | | attempts commands | |||||
* | Moved eDBadminAttemptsLog() function into administration/attempts.c | David Sommerseth | 2009-09-13 | 2 | -66/+52 | |
| | ||||||
* | Moved eDBadminConfigSet() and eDBadminConfigDelete() into its own file | David Sommerseth | 2009-09-13 | 3 | -68/+111 | |
| | ||||||
* | Added doxygen comments on the last missing files | David Sommerseth | 2009-09-11 | 4 | -33/+153 | |
| | ||||||
* | Added more of the file path to some file names with name conflicts in Doxygen | David Sommerseth | 2009-09-11 | 3 | -3/+3 | |
| | ||||||
* | Added another source file directory to scan for doxygen | David Sommerseth | 2009-09-11 | 1 | -1/+1 | |
| | ||||||
* | Removed no longer needed driver function (eDBadminGetCertificateList()) | David Sommerseth | 2009-09-11 | 3 | -27/+0 | |
| | ||||||
* | More doxygen comments in the sqlite3 driver | David Sommerseth | 2009-09-11 | 3 | -190/+167 | |
| | ||||||
* | Some simple comments to the SHA512 implementation | David Sommerseth | 2009-09-11 | 2 | -8/+50 | |
| | ||||||
* | Workaround to avoid confusing Doxygen on some extra declarations | David Sommerseth | 2009-09-11 | 2 | -3/+4 | |
| | ||||||
* | Completed doxygen comments for edb-sqlite.c | David Sommerseth | 2009-09-11 | 2 | -48/+125 | |
| |