Capitalize the name Messkit
sounds more official that way..?
This commit is contained in:
parent
7058ebf75e
commit
ec84808332
14 changed files with 86 additions and 86 deletions
|
|
@ -1,27 +1,27 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
######################################################################
|
||||
#
|
||||
# messkit -- Generic-ish Data Utility App
|
||||
# Messkit -- Generic-ish Data Utility App
|
||||
# Copyright © 2022 Lance Edgar
|
||||
#
|
||||
# This file is part of messkit.
|
||||
# This file is part of Messkit.
|
||||
#
|
||||
# messkit is free software: you can redistribute it and/or modify it
|
||||
# Messkit is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# messkit is distributed in the hope that it will be useful, but
|
||||
# Messkit is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
# along with Messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
######################################################################
|
||||
"""
|
||||
messkit web app
|
||||
Messkit web app
|
||||
"""
|
||||
|
||||
from tailbone import app
|
||||
|
|
@ -31,7 +31,7 @@ def main(global_config, **settings):
|
|||
"""
|
||||
This function returns a Pyramid WSGI application.
|
||||
"""
|
||||
# prefer messkit templates over Tailbone
|
||||
# prefer Messkit templates over Tailbone
|
||||
settings.setdefault('mako.directories', ['messkit.web:templates',
|
||||
'tailbone:templates',])
|
||||
|
||||
|
|
@ -42,7 +42,7 @@ def main(global_config, **settings):
|
|||
rattail_config = app.make_rattail_config(settings)
|
||||
pyramid_config = app.make_pyramid_config(settings)
|
||||
|
||||
# bring in the rest of messkit
|
||||
# bring in the rest of Messkit
|
||||
pyramid_config.include('messkit.web.static')
|
||||
pyramid_config.include('messkit.web.subscribers')
|
||||
pyramid_config.include('messkit.web.views')
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
######################################################################
|
||||
#
|
||||
# messkit -- Generic-ish Data Utility App
|
||||
# Messkit -- Generic-ish Data Utility App
|
||||
# Copyright © 2022 Lance Edgar
|
||||
#
|
||||
# This file is part of messkit.
|
||||
# This file is part of Messkit.
|
||||
#
|
||||
# messkit is free software: you can redistribute it and/or modify it
|
||||
# Messkit is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# messkit is distributed in the hope that it will be useful, but
|
||||
# Messkit is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
# along with Messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
######################################################################
|
||||
"""
|
||||
|
|
@ -124,7 +124,7 @@ def simple_menus(request):
|
|||
'perm': 'tables.list',
|
||||
},
|
||||
{
|
||||
'title': "messkit Upgrades",
|
||||
'title': "Messkit Upgrades",
|
||||
'url': url('upgrades'),
|
||||
'perm': 'upgrades.list',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
######################################################################
|
||||
#
|
||||
# messkit -- Generic-ish Data Utility App
|
||||
# Messkit -- Generic-ish Data Utility App
|
||||
# Copyright © 2022 Lance Edgar
|
||||
#
|
||||
# This file is part of messkit.
|
||||
# This file is part of Messkit.
|
||||
#
|
||||
# messkit is free software: you can redistribute it and/or modify it
|
||||
# Messkit is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# messkit is distributed in the hope that it will be useful, but
|
||||
# Messkit is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
# along with Messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
######################################################################
|
||||
"""
|
||||
messkit static assets
|
||||
Messkit static assets
|
||||
"""
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
######################################################################
|
||||
#
|
||||
# messkit -- Generic-ish Data Utility App
|
||||
# Messkit -- Generic-ish Data Utility App
|
||||
# Copyright © 2022 Lance Edgar
|
||||
#
|
||||
# This file is part of messkit.
|
||||
# This file is part of Messkit.
|
||||
#
|
||||
# messkit is free software: you can redistribute it and/or modify it
|
||||
# Messkit is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# messkit is distributed in the hope that it will be useful, but
|
||||
# Messkit is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
# along with Messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
######################################################################
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
######################################################################
|
||||
#
|
||||
# messkit -- Generic-ish Data Utility App
|
||||
# Messkit -- Generic-ish Data Utility App
|
||||
# Copyright © 2022 Lance Edgar
|
||||
#
|
||||
# This file is part of messkit.
|
||||
# This file is part of Messkit.
|
||||
#
|
||||
# messkit is free software: you can redistribute it and/or modify it
|
||||
# Messkit is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# messkit is distributed in the hope that it will be useful, but
|
||||
# Messkit is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
# along with Messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
######################################################################
|
||||
"""
|
||||
messkit web views
|
||||
Messkit web views
|
||||
"""
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
######################################################################
|
||||
#
|
||||
# messkit -- Generic-ish Data Utility App
|
||||
# Messkit -- Generic-ish Data Utility App
|
||||
# Copyright © 2022 Lance Edgar
|
||||
#
|
||||
# This file is part of messkit.
|
||||
# This file is part of Messkit.
|
||||
#
|
||||
# messkit is free software: you can redistribute it and/or modify it
|
||||
# Messkit is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# messkit is distributed in the hope that it will be useful, but
|
||||
# Messkit is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
# along with Messkit. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
######################################################################
|
||||
"""
|
||||
|
|
@ -31,7 +31,7 @@ import messkit
|
|||
|
||||
class CommonView(base.CommonView):
|
||||
|
||||
project_title = "messkit"
|
||||
project_title = "Messkit"
|
||||
project_version = messkit.__version__ + '+dev'
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue