From 1cfd229459b61560786b2c0d791c0422dd8512ee Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Sat, 6 Jun 2015 16:42:07 -0300 Subject: [PATCH] Add remaining sapl apps --- comissoes/__init__.py | 0 comissoes/admin.py | 3 +++ comissoes/migrations/__init__.py | 0 comissoes/models.py | 3 +++ comissoes/tests.py | 3 +++ comissoes/views.py | 3 +++ lexml/__init__.py | 0 lexml/admin.py | 3 +++ lexml/migrations/__init__.py | 0 lexml/models.py | 3 +++ lexml/tests.py | 3 +++ lexml/views.py | 3 +++ materia/__init__.py | 0 materia/admin.py | 3 +++ materia/migrations/__init__.py | 0 materia/models.py | 3 +++ materia/tests.py | 3 +++ materia/views.py | 3 +++ mesa/__init__.py | 0 mesa/admin.py | 3 +++ mesa/migrations/__init__.py | 0 mesa/models.py | 3 +++ mesa/tests.py | 3 +++ mesa/views.py | 3 +++ norma/__init__.py | 0 norma/admin.py | 3 +++ norma/migrations/__init__.py | 0 norma/models.py | 3 +++ norma/tests.py | 3 +++ norma/views.py | 3 +++ protocoloadm/__init__.py | 0 protocoloadm/admin.py | 3 +++ protocoloadm/migrations/__init__.py | 0 protocoloadm/models.py | 3 +++ protocoloadm/tests.py | 3 +++ protocoloadm/views.py | 3 +++ sessao/__init__.py | 0 sessao/admin.py | 3 +++ sessao/migrations/__init__.py | 0 sessao/models.py | 3 +++ sessao/tests.py | 3 +++ sessao/views.py | 3 +++ 42 files changed, 84 insertions(+) create mode 100644 comissoes/__init__.py create mode 100644 comissoes/admin.py create mode 100644 comissoes/migrations/__init__.py create mode 100644 comissoes/models.py create mode 100644 comissoes/tests.py create mode 100644 comissoes/views.py create mode 100644 lexml/__init__.py create mode 100644 lexml/admin.py create mode 100644 lexml/migrations/__init__.py create mode 100644 lexml/models.py create mode 100644 lexml/tests.py create mode 100644 lexml/views.py create mode 100644 materia/__init__.py create mode 100644 materia/admin.py create mode 100644 materia/migrations/__init__.py create mode 100644 materia/models.py create mode 100644 materia/tests.py create mode 100644 materia/views.py create mode 100644 mesa/__init__.py create mode 100644 mesa/admin.py create mode 100644 mesa/migrations/__init__.py create mode 100644 mesa/models.py create mode 100644 mesa/tests.py create mode 100644 mesa/views.py create mode 100644 norma/__init__.py create mode 100644 norma/admin.py create mode 100644 norma/migrations/__init__.py create mode 100644 norma/models.py create mode 100644 norma/tests.py create mode 100644 norma/views.py create mode 100644 protocoloadm/__init__.py create mode 100644 protocoloadm/admin.py create mode 100644 protocoloadm/migrations/__init__.py create mode 100644 protocoloadm/models.py create mode 100644 protocoloadm/tests.py create mode 100644 protocoloadm/views.py create mode 100644 sessao/__init__.py create mode 100644 sessao/admin.py create mode 100644 sessao/migrations/__init__.py create mode 100644 sessao/models.py create mode 100644 sessao/tests.py create mode 100644 sessao/views.py diff --git a/comissoes/__init__.py b/comissoes/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/comissoes/admin.py b/comissoes/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/comissoes/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/comissoes/migrations/__init__.py b/comissoes/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/comissoes/models.py b/comissoes/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/comissoes/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/comissoes/tests.py b/comissoes/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/comissoes/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/comissoes/views.py b/comissoes/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/comissoes/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/lexml/__init__.py b/lexml/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/lexml/admin.py b/lexml/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/lexml/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/lexml/migrations/__init__.py b/lexml/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/lexml/models.py b/lexml/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/lexml/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/lexml/tests.py b/lexml/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/lexml/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/lexml/views.py b/lexml/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/lexml/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/materia/__init__.py b/materia/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/materia/admin.py b/materia/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/materia/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/materia/migrations/__init__.py b/materia/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/materia/models.py b/materia/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/materia/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/materia/tests.py b/materia/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/materia/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/materia/views.py b/materia/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/materia/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/mesa/__init__.py b/mesa/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/mesa/admin.py b/mesa/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/mesa/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/mesa/migrations/__init__.py b/mesa/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/mesa/models.py b/mesa/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/mesa/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/mesa/tests.py b/mesa/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/mesa/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/mesa/views.py b/mesa/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/mesa/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/norma/__init__.py b/norma/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/norma/admin.py b/norma/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/norma/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/norma/migrations/__init__.py b/norma/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/norma/models.py b/norma/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/norma/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/norma/tests.py b/norma/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/norma/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/norma/views.py b/norma/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/norma/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/protocoloadm/__init__.py b/protocoloadm/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/protocoloadm/admin.py b/protocoloadm/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/protocoloadm/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/protocoloadm/migrations/__init__.py b/protocoloadm/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/protocoloadm/models.py b/protocoloadm/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/protocoloadm/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/protocoloadm/tests.py b/protocoloadm/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/protocoloadm/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/protocoloadm/views.py b/protocoloadm/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/protocoloadm/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/sessao/__init__.py b/sessao/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/sessao/admin.py b/sessao/admin.py new file mode 100644 index 000000000..8c38f3f3d --- /dev/null +++ b/sessao/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/sessao/migrations/__init__.py b/sessao/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/sessao/models.py b/sessao/models.py new file mode 100644 index 000000000..71a836239 --- /dev/null +++ b/sessao/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/sessao/tests.py b/sessao/tests.py new file mode 100644 index 000000000..7ce503c2d --- /dev/null +++ b/sessao/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/sessao/views.py b/sessao/views.py new file mode 100644 index 000000000..91ea44a21 --- /dev/null +++ b/sessao/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.