2011-02-15 22:57:06 +01:00
|
|
|
#!/usr/bin/env python
|
2010-01-15 00:15:41 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2008-12-30 17:25:42 +01:00
|
|
|
#
|
|
|
|
# This file is part of Radicale Server - Calendar Server
|
2009-07-27 17:04:54 +02:00
|
|
|
# Copyright © 2008 Nicolas Kandel
|
|
|
|
# Copyright © 2008 Pascal Halter
|
2013-04-26 01:28:03 +02:00
|
|
|
# Copyright © 2008-2013 Guillaume Ayoub
|
2008-12-30 17:25:42 +01:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Radicale. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-07-27 17:04:54 +02:00
|
|
|
"""
|
2011-04-02 22:09:43 +02:00
|
|
|
Radicale CalDAV Server.
|
2009-07-27 17:04:54 +02:00
|
|
|
|
2011-04-02 22:09:43 +02:00
|
|
|
Launch the server according to configuration and command-line options.
|
2010-02-10 18:57:21 +01:00
|
|
|
|
2009-07-27 17:04:54 +02:00
|
|
|
"""
|
|
|
|
|
2011-11-03 17:47:35 +01:00
|
|
|
import radicale.__main__
|
2011-04-03 12:18:43 +02:00
|
|
|
|
2011-04-10 18:17:06 +02:00
|
|
|
|
2011-11-03 17:47:35 +01:00
|
|
|
radicale.__main__.run()
|