Fix copyright/license headers and module docstrings

This commit is contained in:
René Stadler 2007-11-22 10:47:06 +02:00 committed by Stefan Sauer
parent d59678e2e3
commit 13a1310e44
15 changed files with 118 additions and 36 deletions

View file

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer development utilities common Data module""" """GStreamer Development Utilities Common Data module."""
import pygtk import pygtk
pygtk.require ("2.0") pygtk.require ("2.0")

View file

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer development utilities common GUI module""" """GStreamer Development Utilities Common GUI module."""
import logging import logging

View file

@ -15,9 +15,9 @@
# more details. # more details.
# #
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program; if not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer development utilities common main module.""" """GStreamer Development Utilities Common Main module."""
import sys import sys
import os import os

View file

@ -1,5 +1,7 @@
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Development Utilities
#
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #
# This program is free software; you can redistribute it and/or modify it # This program is free software; you can redistribute it and/or modify it
@ -15,6 +17,6 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer development utilities common module""" """GStreamer Development Utilities Common package."""
import Data, GUI, Main, utils import Data, GUI, Main, utils

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Inspector - Multimedia system plugin introspection # GStreamer Development Utilities
# #
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #
@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program; if not, see <http://www.gnu.org/licenses/>. # this program; if not, see <http://www.gnu.org/licenses/>.
"""Misc utilities.""" """GStreamer Development Utilities Common utils module."""
import os import os
import logging import logging

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Debug Viewer # GStreamer Debug Viewer - View and analyze GStreamer debug log files
# #
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #
@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer debug viewer data module""" """GStreamer Debug Viewer Data module."""
import os import os
import logging import logging

View file

@ -1,25 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
## #
## gst-debug-viewer.py: GStreamer debug log viewer # GStreamer Debug Viewer - View and analyze GStreamer debug log files
## #
## Copyright (C) 2006 Rene Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
## #
## This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify it
## it under the terms of the GNU General Public License as published by # under the terms of the GNU General Public License as published by the Free
## the Free Software Foundation; either version 2 of the License, or # Software Foundation; either version 3 of the License, or (at your option)
## (at your option) any later version. # any later version.
## #
## This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful, but WITHOUT
## but WITHOUT ANY WARRANTY; without even the implied warranty of # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
## GNU General Public License for more details. # more details.
## #
## You should have received a copy of the GNU Lesser General Public # You should have received a copy of the GNU General Public License along with
## License along with this library; if not, write to the Free # this program. If not, see <http://www.gnu.org/licenses/>.
## Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
## Boston, MA 02110-1301 USA """GStreamer Debug Viewer GUI module."""
##
__author__ = u"René Stadler <mail@renestadler.de>" __author__ = u"René Stadler <mail@renestadler.de>"
__version__ = "0.1" __version__ = "0.1"

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Debug Viewer # GStreamer Debug Viewer - View and analyze GStreamer debug log files
# #
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #
@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer debug viewer main module""" """GStreamer Debug Viewer Main module."""
import sys import sys
from gettext import gettext as _, ngettext from gettext import gettext as _, ngettext

View file

@ -1,3 +1,23 @@
# -*- coding: utf-8; mode: python; -*-
#
# GStreamer Debug Viewer - View and analyze GStreamer debug log files
#
# Copyright (C) 2007 René Stadler <mail@renestadler.de>
#
# This program 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.
#
# 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 General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer Debug Viewer row colorization plugin."""
from GstDebugViewer.Plugins import FeatureBase, PluginBase from GstDebugViewer.Plugins import FeatureBase, PluginBase

View file

@ -1,3 +1,23 @@
# -*- coding: utf-8; mode: python; -*-
#
# GStreamer Debug Viewer - View and analyze GStreamer debug log files
#
# Copyright (C) 2007 René Stadler <mail@renestadler.de>
#
# This program 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.
#
# 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 General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer Debug Viewer file properties plugin."""
from GstDebugViewer.Plugins import * from GstDebugViewer.Plugins import *
import logging import logging

View file

@ -1,3 +1,23 @@
# -*- coding: utf-8; mode: python; -*-
#
# GStreamer Debug Viewer - View and analyze GStreamer debug log files
#
# Copyright (C) 2007 René Stadler <mail@renestadler.de>
#
# This program 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.
#
# 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 General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer Debug Viewer timeline widget plugin."""
import logging import logging

View file

@ -1,3 +1,23 @@
# -*- coding: utf-8; mode: python; -*-
#
# GStreamer Debug Viewer - View and analyze GStreamer debug log files
#
# Copyright (C) 2007 René Stadler <mail@renestadler.de>
#
# This program 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.
#
# 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 General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer Debug Viewer Plugins package."""
__all__ = ["_", "FeatureBase", "PluginBase"] __all__ = ["_", "FeatureBase", "PluginBase"]

View file

@ -1,6 +1,6 @@
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Debug Viewer # GStreamer Debug Viewer - View and analyze GStreamer debug log files
# #
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #
@ -17,6 +17,8 @@
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>. # this program. If not, see <http://www.gnu.org/licenses/>.
"""GStreamer Debug Viewer package."""
version = "0.1" version = "0.1"
__version__ = version __version__ = version

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8; mode: python; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Debug Viewer # GStreamer Debug Viewer - View and analyze GStreamer debug log files
# #
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8; -*- # -*- coding: utf-8; mode: python; -*-
# #
# GStreamer Debug Viewer # GStreamer Debug Viewer - View and analyze GStreamer debug log files
# #
# Copyright (C) 2007 René Stadler <mail@renestadler.de> # Copyright (C) 2007 René Stadler <mail@renestadler.de>
# #