예제 #1
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)
예제 #2
0
파일: models.py 프로젝트: ediaz1/tendenci
 def render(self):
     self.body_html = _get_markup_formatter()(self.body)
     # Remove tags which was generated with the markup processor
     text = strip_tags(self.body_html)
     # Unescape entities which was generated with the markup processor
     self.body_text = unescape(text)
예제 #3
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)
예제 #4
0
 def render(self):
     self.body_html = _get_markup_formatter()(self.body)
     # Remove tags which was generated with the markup processor
     text = strip_tags(self.body_html)
     # Unescape entities which was generated with the markup processor
     self.body_text = unescape(text)
예제 #5
0
파일: views.py 프로젝트: goetzk/tendenci
def post_ajax_preview(request):
    content = request.POST.get('data')
    html = util._get_markup_formatter()(content)
    return render(request, 'pybb/_markitup_preview.html', {'html': html})
예제 #6
0
파일: views.py 프로젝트: morad7/tendenci
def post_ajax_preview(request):
    content = request.POST.get('data')
    html = util._get_markup_formatter()(content)
    return render(request, 'pybb/_markitup_preview.html', {'html': html})