Comparison

util/rsm.lua @ 7852:e594010e1ba0

util.rsm: Add copyright header
author Kim Alvefur <zash@zash.se>
date Mon, 23 Jan 2017 19:18:41 +0100
parent 7837:a17bddf62a28
child 10761:b53193bb21cc
comparison
equal deleted inserted replaced
7851:80ee0d9cd56f 7852:e594010e1ba0
1 -- Prosody IM
2 -- Copyright (C) 2008-2017 Matthew Wild
3 -- Copyright (C) 2008-2017 Waqas Hussain
4 -- Copyright (C) 2011-2017 Kim Alvefur
5 --
6 -- This project is MIT/X11 licensed. Please see the
7 -- COPYING file in the source package for more information.
8 --
9 -- XEP-0313: Message Archive Management for Prosody
10 --
11
1 local stanza = require"util.stanza".stanza; 12 local stanza = require"util.stanza".stanza;
2 local tostring, tonumber = tostring, tonumber; 13 local tostring, tonumber = tostring, tonumber;
3 local type = type; 14 local type = type;
4 local pairs = pairs; 15 local pairs = pairs;
5 16