log mod_pastebin/mod_pastebin.lua @ 3846:3941768916f1

age author description
2018-10-03 Kim Alvefur mod_pastebin: Convert limit values to strings (fixes traceback)
2018-10-03 Kim Alvefur mod_pastebin: Advertise a disco feature and current thresholds
2018-07-31 Kim Alvefur mod_pastebin: Make first line and URL more clearly separated
2018-06-23 Kim Alvefur mod_pastebin: Remove reference to removed header table
2018-06-23 Kim Alvefur mod_pastebin: Prevent header table form being mutated
2018-06-03 Kim Alvefur mod_pastebin: Off-by-one, the hardest problem known to man
2018-05-24 Kim Alvefur mod_pastebin: Restore URL in final body text
2018-05-24 Kim Alvefur mod_pastebin: Fix line count pattern added by 040eaa3844f4
2018-05-22 Kim Alvefur mod_pastebin: Support the new MUC API in Prosody trunk
2018-05-20 Kim Alvefur mod_pastebin: Add an OOB tag pointing to the pastebin URL
2018-05-20 Kim Alvefur mod_pastebin: Silence some warnings [luacheck]
2018-05-20 Kim Alvefur mod_pastebin: Remove unused locals [luacheck]
2018-05-20 Kim Alvefur mod_pastebin: Check line length via preconstructed pattern instead of gsub
2018-05-20 Kim Alvefur mod_pastebin: Remove redundant check for non-empty body since it returns earlier in that case
2018-05-20 Kim Alvefur mod_pastebin: Avoid using pattern matching facilities for simple prefix removal
2018-05-20 Kim Alvefur mod_pastebin: Replace tags using :maptags API instead of hacky direct manipulation
2018-05-20 Kim Alvefur mod_pastebin: Move result of host detection into a variable to improve readabily
2018-04-30 Kim Alvefur mod_pastebin: Fix loading on normal hosts (thanks ppmathis)
2017-09-19 Emmanuel Gil Peyrot mod_pastebin: Check for MUC presence before handling a message.
2014-03-11 Florian Zeitz all the things: Remove trailing whitespace
2013-05-22 Matthew Wild mod_pastebin: Ensure base URL always has a trailing / (thanks Masin)
2013-03-24 Kim Alvefur mod_pastebin: Fix invalid debug statement
2012-10-25 Marco Cirillo mod_pastebin: provide correct content-type on invalid pastes warnings too.
2012-08-21 Waqas Hussain mod_pastebin: Have a default pastebin URL.
2012-04-29 Kim Alvefur mod_pastebin: Update to the new HTTP API
2012-01-17 Marco Cirillo mod_pastebin: more sensible unconfigured base url formatting, use interface directive if present.
2011-12-21 Matthew Wild mod_pastebin: Make last commit work (also set on restore)
2011-12-21 Matthew Wild mod_pastebin: Fix issue with metatable not being set when a reload changes expires_after to 0
2011-12-19 Matthew Wild mod_pastebin: Support for persistent pastes (set pastebin_expire_after = 0)
2011-12-19 Matthew Wild mod_pastebin: Fix off-by-one in line counting (display issue only)
2011-12-19 Matthew Wild mod_pastebin: Fix call to undefined function introduced in previous commit
2011-12-08 Matthew Wild mod_pastebin: Threshold is now UTF-8 characters (thanks Grom_PE for initial patch)
2011-10-11 Matthew Wild mod_pastebin: Preserve pastes through a reload
2011-09-23 Matthew Wild mod_pastebin: Some experimental summary changes
2011-09-23 Matthew Wild mod_pastebin: Update to use module:get_option()
2011-09-23 Matthew Wild mod_pastebin: Support for changing the summary length (pastebin_summary_length), and including it even in the plaintext version of the generated message
2011-09-22 Matthew Wild mod_pastebin: Add option 'pastebin_private_messages', defaults to false for components and true for other hosts (thanks Kelden/Maranda)
2010-06-28 Matthew Wild mod_pastebin: Better fix for stripping truncated UFT-8 sequences
2010-06-28 Matthew Wild mod_pastebin: Fix to not truncate UTF-8 sequences when creating a snippet summary for XHTML-IM (thanks DaiZW for discovering :) )
2010-06-09 Matthew Wild mod_pastebin: Fix trigger_string matching when no trigger is set, and add support for counting lines (pastebin_line_threshold, default: 4)
2010-05-23 Florian Zeitz mod_pastebin: Optionally bin if message starts with a configurable trigger string
2009-11-01 Matthew Wild mod_pastebin: Send Content-Type header to specify plain UTF-8 text
2009-11-01 Matthew Wild mod_pastebin: Rename pastebin_message() to pastebin_text() and make it global so it can be called by other plugins
2009-10-31 Paul Aurich mod_pastebin: Fix finding of XHTML content.
2009-10-02 Matthew Wild mod_pastebin: Comment some debug logging on every message
2009-10-02 Matthew Wild mod_pastebin: Expire pastes after 'pastebin_expire_after' hours, 24 by default
2009-10-02 Matthew Wild mod_pastebin: Allow per-host pastebin_threshold
2009-10-01 Matthew Wild mod_pastebin: Small fix to read the pastebin URL from the config
2009-09-25 Matthew Wild mod_pastebin: Set default of 500 chars for pastebin_threshold
2009-09-25 Matthew Wild mod_pastebin: Allow configurable message length threshold
2009-09-25 Matthew Wild mod_pastebin: Initial commit