Log of /contributions/modules/listhandler/listhandler.module
Parent Directory
|
Revision Log
|
Revision Graph
Revision
1.86 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Aug 19 20:21:52 2009 UTC
(3 months ago)
by
philipnet
Branch:
MAIN
Changes since
1.85: +9 -1 lines
Diff to
previous 1.85
#544132
sql-mode STRICT_TRANS_TABLES results in new forum topics not being logged/emailed
Set CID and TID to 0 before SQL statement.
Revision
1.82 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Jul 26 16:30:00 2008 UTC
(16 months ago)
by
philipnet
Branch:
MAIN
Changes since
1.81: +48 -32 lines
Diff to
previous 1.81
Fixed up admin GUI. The prefix table now saves the changes; uses ratio
options instead of a mis-match of types.
Added option to select drupal_html_to_text or decode_entities(strip_tags())
Fancy or Standard HTML to text coversion.
Misc clean-up/bug fixes.
Revision
1.79 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun May 11 11:15:21 2008 UTC
(18 months, 2 weeks ago)
by
philipnet
Branch:
MAIN
Changes since
1.78: +197 -60 lines
Diff to
previous 1.78
Updated install and uninstall.
Admin pages appears okay and the mailing lists are listed in a table
(mailinglist changes aren't saved yet)
Updates to email generation not completed.
Revision
1.77 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Dec 20 21:16:08 2007 UTC
(23 months ago)
by
philipnet
Branch:
MAIN
Changes since
1.76: +26 -26 lines
Diff to
previous 1.76
Ran 'Coder' over the code; corrected for Drupal coding conventions
Stripped training spaces from the end of lines.
Revision
1.76 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Dec 20 20:58:52 2007 UTC
(23 months ago)
by
philipnet
Branch:
MAIN
Changes since
1.75: +17 -14 lines
Diff to
previous 1.75
1: Displays "<Mailing list> | <Prefix>" in tabulated form
2: Saves updates to mailing list prefixes
3: Doesn't display mid values
4: Doesn't display duplicated "The configuration options have been
Revision
1.75.2.1 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Dec 18 21:25:05 2007 UTC
(23 months, 1 week ago)
by
philipnet
Branch:
DRUPAL-5
Changes since
1.75: +17 -14 lines
Diff to
previous 1.75
1: Displays "<Mailing list> | <Prefix>" in tabulated form
2: Saves updates to mailing list prefixes
3: Doesn't display mid values
4: Doesn't display duplicated "The configuration options have been
saved" message
Revision
1.57 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Jan 26 00:18:18 2005 UTC
(4 years, 10 months ago)
by
drumm
Branch:
MAIN
Changes since
1.56: +37 -46 lines
Diff to
previous 1.56
http://drupal.org/node/15910
[^[:digit:]]* does in fact match zero digits followed by digits. So if you have a list with tid 1 and a list with tid 12, both are matched and spammed. [[:>:]] is a bit better choice. This patch does that. It also fixes code style.
Revision
1.53 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Oct 1 00:08:33 2004 UTC
(5 years, 1 month ago)
by
uwe
Branch:
MAIN
Branch point for:
DRUPAL-4-5
Changes since
1.52: +3 -1 lines
Diff to
previous 1.52
Added CVS $Id$ tag to all *.module files where it was missing (as required
by the coding standards, see CODING_STANDARDS.html). I also unified the
format and the location of the $Id$ tag. It starts with "//" and is placed
on the second line in all *.module files, now.
Revision
1.31 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Feb 15 12:35:50 2003 UTC
(6 years, 9 months ago)
by
dries
Branch:
MAIN
Changes since
1.30: +4 -4 lines
Diff to
previous 1.30
- Updated the modules in the contributions repository to use
'theme("function")' instead of '$theme->function()'. Hopefully I didn't
break anything. If I did, let me know.
The following modules need special attention (but should still work as is):
1. The ldap_integration directory has its own user.module; I haven't updated
the documentation bit that talks about themes.
2. The hotlist module uses '$theme->hotlist_del_icon'. Should be avoided
and somehow wrapped in a (larger) call to theme().
3. The image module has its own way of doing what 'theme()' does (or the
former 'theme_invoke()'). Constructs like the one below (a) look wrong
and (b) should be rewritten to properly use 'theme()'. For example:
$theme->box("foo", method_exists("bar") ? $theme->bar() : $bar);
Search for "image_gallery_album", "image_gallery_home" and
"image_thumb_browser". I've already changed '$theme->box()' to
'theme()'.
4. The sidebar module uses '$theme->foreground' and '$theme->background'.
Should be avoided and somehow wrapped in a (larger) call to theme().
5. The org_informations module uses '$theme->separator()', which is new to
me.
6. The taxonomy_filter module uses '$theme->taxolist_filter_item()'. It
should use 'theme("taxolist_filter_item")' instead. I haven't changed
it because it would probably fail to resolve the default function if
not overridden by a theme.
7. The taxonomy_dhtml module's INSTALL file still talks about
'$theme->image'.
8. The xloadtree module's INSTALL file still talks about '$theme->image'.
9. I haven't updated the style.module; too many $theme's, though I don't
think it needs any updates.
[I'll try to update the sandboxes later on.]
Revision
1.29 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Jan 21 00:12:18 2003 UTC
(6 years, 10 months ago)
by
weitzman
Branch:
MAIN
Changes since
1.28: +0 -26 lines
Diff to
previous 1.28
removed admin function since it doesn't fit the current admin scheme. all admin is done on the site config page. no functional change
Revision
1.22 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Oct 14 02:00:28 2002 UTC
(7 years, 1 month ago)
by
killes
Branch:
MAIN
Changes since
1.21: +4 -1 lines
Diff to
previous 1.21
Return the node unaltered if not a listhandled node.
Happy listhandling!
I would love to get user feedback.
Revision
1.21 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Oct 14 00:33:21 2002 UTC
(7 years, 1 month ago)
by
killes
Branch:
MAIN
Changes since
1.20: +9 -25 lines
Diff to
previous 1.20
Well, it seems to be working after all. You'll currently need a patched
version of mailhandler, but I think Moshe will approve my changes.
TODO:
- Docs
- Cleanup
- Send new topics added on the web using cron.
(requires new node api)
- More testing
This form allows you to request diffs between any two revisions of this file.
For each of the two "sides" of the diff,
select a symbolic revision name using the selection box, or choose
'Use Text Field' and enter a numeric revision.