コード例 #1
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the Deluge module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/deluge/$', ConfigurationView.as_view(module_name='deluge'),
        name='index'),
]
コード例 #2
0
ファイル: urls.py プロジェクト: jvalleroy/plinth-debian
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the XMPP module
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [url(r"^apps/xmpp/$", ConfigurationView.as_view(module_name="xmpp"), name="index")]
コード例 #3
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the quassel module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/quassel/$', ConfigurationView.as_view(module_name='quassel'),
        name='index'),
]
コード例 #4
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the Privoxy module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/privoxy/$', ConfigurationView.as_view(module_name='privoxy'),
        name='index'),
]
コード例 #5
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the radicale module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/radicale/$', ConfigurationView.as_view(module_name='radicale'),
        name='index'),
]
コード例 #6
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the Shaarli module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/shaarli/$', ConfigurationView.as_view(module_name='shaarli'),
        name='index'),
]
コード例 #7
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the minetest module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/minetest/$', ConfigurationView.as_view(module_name='minetest'),
        name='index'),
]
コード例 #8
0
ファイル: urls.py プロジェクト: pamungkaski/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the ownCloud module
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/owncloud/$', ConfigurationView.as_view(module_name='owncloud'),
        name='index'),
]
コード例 #9
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the Roundcube module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/roundcube/$',
        ConfigurationView.as_view(module_name='roundcube'), name='index'),
]
コード例 #10
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the service discovery module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^sys/avahi/$', ConfigurationView.as_view(module_name='avahi'),
        name='index'),
]
コード例 #11
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the repro module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/repro/$', ConfigurationView.as_view(module_name='repro'),
        name='index'),
]
コード例 #12
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the Tiny Tiny RSS module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/ttrss/$', ConfigurationView.as_view(module_name='ttrss'),
        name='index'),
]
コード例 #13
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the date and time module
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^sys/datetime/$', ConfigurationView.as_view(module_name='datetime'),
        name='index'),
]
コード例 #14
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the reStore module.
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/restore/$', ConfigurationView.as_view(module_name='restore'),
        name='index'),
]
コード例 #15
0
ファイル: urls.py プロジェクト: gvsurenderreddy/Plinth
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

"""
URLs for the Mumble module
"""

from django.conf.urls import url

from plinth.views import ConfigurationView


urlpatterns = [
    url(r'^apps/mumble/$', ConfigurationView.as_view(module_name='mumble'),
        name='index'),
]