comparison rhodecode/lib/markup_renderer.py @ 4186:7e5f8c12a3fc kallithea-2.2.5-rebrand

First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:04:28 -0400
parents ffd45b185016
children
comparison
equal deleted inserted replaced
4185:aaa7c3331186 4186:7e5f8c12a3fc
10 # GNU General Public License for more details. 10 # GNU General Public License for more details.
11 # 11 #
12 # You should have received a copy of the GNU General Public License 12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>. 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 """ 14 """
15 rhodecode.lib.markup_renderer 15 kallithea.lib.markup_renderer
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17 17
18 Renderer for markup languages with ability to parse using rst or markdown 18 Renderer for markup languages with ability to parse using rst or markdown
19 19
20 :created_on: Oct 27, 2011 20 :created_on: Oct 27, 2011
26 26
27 import re 27 import re
28 import logging 28 import logging
29 import traceback 29 import traceback
30 30
31 from rhodecode.lib.utils2 import safe_unicode, MENTIONS_REGEX 31 from kallithea.lib.utils2 import safe_unicode, MENTIONS_REGEX
32 32
33 log = logging.getLogger(__name__) 33 log = logging.getLogger(__name__)
34 34
35 35
36 class MarkupRenderer(object): 36 class MarkupRenderer(object):