| Commit message (Expand) | Author | Age | Files | Lines |
| * | Move vendor field to a compile time macro | Austin Ellis | 2017-10-30 | 1 | -1/+1 |
| * | Remove all trailing whitespace | Rylee Fowler | 2014-07-08 | 1 | -16/+16 |
| * | memoserv/delete: Only accept numeric indexes. | Mantas Mikulėnas | 2013-02-08 | 1 | -2/+3 |
| * | Remove the logged-in check from most modules that have one as this is now in ... | JD Horelick | 2010-12-23 | 1 | -9/+2 |
| * | Supply intent information when performing module unload operations.•••There are presently two intents for unload operations, these are
MODULE_UNLOAD_INTENT_PERM which indicates a permanent unload, and
MODULE_UNLOAD_INTENT_RELOAD which indicates that a module is being
reloaded (usually for a code upgrade).
This allows the module to know when it should stash persistence data
using the mowgli.global_data classes or when it should just destroy
all data records.
| William Pitcock | 2010-12-03 | 1 | -1/+1 |
| * | Remove the dlink code, it has now been entirely replaced by mowgli.list.•••The new mowgli.list code has been improved through usage in audacious and
other places, and has many features that atheme has needed for some time.
| William Pitcock | 2010-10-08 | 1 | -3/+3 |
| * | Replace LIST_FOREACH_* with the mowgli_iter framework. | William Pitcock | 2010-10-08 | 1 | -1/+1 |
| * | Remove "help/" from the help path of all modules that contain commands.•••This is just a waste of space as it is stripped out in src/help.c anyway.
Since we've re-done the help stuff anyway, might as well do this too.
| JD Horelick | 2010-09-22 | 1 | -2/+2 |
| * | memoserv: Port to new command framework. | JD Horelick | 2010-09-21 | 1 | -8/+2 |
| * | memoserv: Update to new command API. | William Pitcock | 2010-09-20 | 1 | -6/+4 |
| * | Remove a bunch of the SVN Id's from the comments as well while•••we're at it. Sidenote: Yay Vim.
| JD Horelick | 2010-06-04 | 1 | -1/+0 |
| * | Replace the $Id crap that hasn't really been used in 3 years with•••PACKAGE_STRING.
| JD Horelick | 2010-06-04 | 1 | -1/+1 |
| * | Use C99 booleans (<stdbool.h>, bool, true, false). | Jilles Tjoelker | 2008-12-13 | 1 | -1/+1 |
| * | Add memoserv delete old, to delete all read memos,•••leaving unread ones in the memo box.
| Jilles Tjoelker | 2008-12-04 | 1 | -6/+10 |
| * | [svn] Make MEMO_READ a flag, allowing the other bits of•••mymemo_t.status to be used for other flags.
| jilles | 2007-05-27 | 1 | -3/+3 |
| * | [svn] Stop /memoserv delete 257 deleting memo 1 and the like. | jilles | 2007-03-08 | 1 | -3/+3 |
| * | [svn] Added gettext's _() around command_fail and command_success_* calls | pippijn | 2007-03-05 | 1 | -4/+3 |
| * | [svn] command_fails to gettext | pippijn | 2007-03-05 | 1 | -7/+7 |
| * | [svn] Added N_() around all command descriptions | pippijn | 2007-03-05 | 1 | -4/+4 |
| * | [svn] added missing vim options | pippijn | 2007-03-03 | 1 | -2/+4 |
| * | [svn] added vim options to the end of each C file | pippijn | 2007-03-03 | 1 | -2/+6 |
| * | [svn] memoserv: get rid of separate u and mu variables,•••instead using the sourceinfo fields every time,
stop using u->myuser where possible
| jilles | 2006-09-29 | 1 | -10/+8 |
| * | [svn] Use command_fail() etc in memoserv, where possible. | jilles | 2006-09-22 | 1 | -9/+9 |
| * | [svn] Merged in sourceinfo changes to the services layer. | pippijn | 2006-09-10 | 1 | -17/+17 |
| * | [svn] Use MODULE_USE_SYMBOL everywhere.•••This commit brought to you by:
sed -i.bak 's/\([^[:space:]]*\) = module_locate_symbol(\(".*"\), \(".*"\));/MODULE_USE_SYMBOL(\1, \2, \3);/'
and manual editing to put them first everywhere.
| jilles | 2006-07-03 | 1 | -4/+5 |
| * | [svn] sed -i.bak -e 's/user_find(origin)/user_find_named(origin)/' modules/*/...•••This should fix most of the user_find()s that should be user_find_named()s.
| jilles | 2006-01-19 | 1 | -3/+3 |
| * | [svn] Make it such that "Insufficient parameters for \2<command>\2."•••and (former) variants only have to appear in language files
once.
| jilles | 2006-01-04 | 1 | -3/+3 |
| * | [svn] consistent grammar with the rest of the help titles. | pfish | 2006-01-03 | 1 | -3/+3 |
| * | [svn] MemoServ: Various cleanups --•••- don't use link as a variable name, it's a POSIX reserved word
- fix comparisons between signed and unsigned values
- fix invalid usage of free()
- fix improper use of uninitialized objects
| nenolod | 2005-10-30 | 1 | -4/+4 |
| * | [svn] oops, fixed delete all case again (untested) | terminal | 2005-10-08 | 1 | -27/+27 |
| * | [svn] fixes for 0/string delete index | terminal | 2005-10-08 | 1 | -4/+4 |
| * | [svn] free(n->data) is incorrect, use free(memo) instead. | nenolod | 2005-10-06 | 1 | -3/+4 |
| * | [svn] keeps track of new memo count via memoct_new in myuser_t. List will dis... | kog | 2005-10-06 | 1 | -2/+7 |
| * | [svn] enable version tracking | pfish | 2005-10-06 | 1 | -2/+2 |
| * | [svn] fixed delete all issue | kog | 2005-10-06 | 1 | -1/+2 |
| * | [svn] add DEL as an alias for DELETE | pfish | 2005-10-06 | 1 | -1/+4 |
| * | [svn] moved struct smalloc until after checks to avoid extra free() calls, ch... | kog | 2005-10-06 | 1 | -1/+1 |
| * | [svn] makes sure arg is a valid int via atoi == NULL check | kog | 2005-10-06 | 1 | -0/+6 |
| * | [svn] fixed strncasecmp in delete, make sure target isn't sender on forward/s... | kog | 2005-10-05 | 1 | -1/+1 |
| * | [svn] login check on functions, should be unix formatted, free memo struct on... | kog | 2005-10-05 | 1 | -5/+16 |
| * | [svn] Corrections. | nenolod | 2005-10-05 | 1 | -9/+5 |
| * | [svn] Death to MS-DOS. | nenolod | 2005-10-05 | 1 | -112/+112 |
| * | [svn] delete uses SAFE list iterator, has boundary for all param and 1 memo, ... | kog | 2005-10-05 | 1 | -0/+112 |