-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dependency on five.grok (#79)
* Remove dependency on five.grok * Remove dependency on plone.directives.form * Fix browser views and tests * Fix changelog
- Loading branch information
Showing
14 changed files
with
88 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
from brasil.gov.agenda.browser.agenda import AgendaView # noqa: F401 | ||
from brasil.gov.agenda.browser.agendadiaria import AgendaDiariaView # noqa: E501,F401 | ||
from brasil.gov.agenda.browser.compromisso import CompromissoView # noqa: E501,F401 | ||
from brasil.gov.agenda.browser.ics import ICSView # noqa: F401 | ||
from brasil.gov.agenda.browser.vcs import VCSView # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,50 @@ | ||
<configure | ||
xmlns="http://namespaces.zope.org/zope" | ||
xmlns:five="http://namespaces.zope.org/five" | ||
xmlns:grok="http://namespaces.zope.org/grok" | ||
xmlns:browser="http://namespaces.zope.org/browser" | ||
xmlns:i18n="http://namespaces.zope.org/i18n" | ||
i18n_domain="brasil.gov.agenda"> | ||
|
||
<five:registerPackage package="." /> | ||
<browser:page | ||
for="brasil.gov.agenda.interfaces.IAgenda" | ||
name="view" | ||
class="brasil.gov.agenda.browser.AgendaView" | ||
permission="zope2.View" | ||
layer="brasil.gov.agenda.interfaces.IBrowserLayer" | ||
template="templates/agendaview.pt" | ||
/> | ||
|
||
<grok:grok package="." /> | ||
<browser:page | ||
for="brasil.gov.agenda.interfaces.IAgendaDiaria" | ||
name="view" | ||
class="brasil.gov.agenda.browser.AgendaDiariaView" | ||
permission="zope2.View" | ||
layer="brasil.gov.agenda.interfaces.IBrowserLayer" | ||
template="templates/agendadiariaview.pt" | ||
/> | ||
|
||
<browser:page | ||
for="brasil.gov.agenda.interfaces.ICompromisso" | ||
name="view" | ||
class="brasil.gov.agenda.browser.CompromissoView" | ||
permission="zope2.View" | ||
layer="brasil.gov.agenda.interfaces.IBrowserLayer" | ||
template="templates/compromissoview.pt" | ||
/> | ||
|
||
<browser:page | ||
for="brasil.gov.agenda.interfaces.ICompromisso" | ||
name="ical_view" | ||
class="brasil.gov.agenda.browser.ICSView" | ||
permission="zope2.View" | ||
layer="brasil.gov.agenda.interfaces.IBrowserLayer" | ||
/> | ||
|
||
<browser:page | ||
for="brasil.gov.agenda.interfaces.ICompromisso" | ||
name="vcal_view" | ||
class="brasil.gov.agenda.browser.VCSView" | ||
permission="zope2.View" | ||
layer="brasil.gov.agenda.interfaces.IBrowserLayer" | ||
/> | ||
|
||
</configure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.