Example #1
0
    def tr(self):
        try:
            tr = int(self.request.GET.get("tr", AutorListView.TR_AUTOR_CHOICE_SERIALIZER))

            assert tr in (
                AutorListView.TR_AUTOR_CHOICE_SERIALIZER,
                AutorListView.TR_CHOICE_SERIALIZER,
                AutorListView.TR_AUTOR_SERIALIZER,
            ), sapl_logger.info(_("Tipo do Resultado a ser fornecido não existe!"))
        except:
            return AutorListView.TR_AUTOR_CHOICE_SERIALIZER
        else:
            return tr
Example #2
0
    def tr(self):
        try:
            tr = int(
                self.request.GET.get('tr',
                                     AutorListView.TR_AUTOR_CHOICE_SERIALIZER))

            assert tr in (
                AutorListView.TR_AUTOR_CHOICE_SERIALIZER,
                AutorListView.TR_AUTOR_SERIALIZER), sapl_logger.info(
                    _("Tipo do Resultado a ser fornecido não existe!"))
        except:
            return AutorListView.TR_AUTOR_CHOICE_SERIALIZER
        else:
            return tr