Esempio n. 1
0
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})
Esempio n. 2
0
File: views.py Progetto: JTLX/pybbm
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})
Esempio n. 3
0
 def render(self):
     self.body_html = _get_markup_formatter()(self.body, instance=self)
     # 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)
Esempio n. 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)
Esempio n. 5
0
 def save(self, *args, **kwargs):
     #self.body_html = BaseParser().format(self.body)
     self.body_html = _get_markup_formatter()(self.body)
     super(NewsArticle, self).save(*args, **kwargs)
Esempio n. 6
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)
Esempio n. 7
0
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})
Esempio n. 8
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)