/usr/share/pyshared/Editra/src/info.py is in editra 0.6.58-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ###############################################################################
# Name: info.py #
# Purpose: Global project information #
# Author: Cody Precord <cprecord@editra.org> #
# Copyright: (c) 2008 Cody Precord <staff@editra.org> #
# License: wxWindows License #
###############################################################################
"""Editra Project information module"""
__author__ = "Cody Precord <cprecord@editra.org>"
__svnid__ = "$Id: info.py 68341 2011-07-23 15:06:39Z CJP $"
__revision__ = "$Revision: 68341 $"
#-----------------------------------------------------------------------------#
AUTHOR = 'Cody Precord'
VERSION = '0.6.58'
PROG_NAME = 'Editra'
HOME_PAGE = "http://editra.org"
I18N_PAGE = "https://translations.launchpad.net/editra/trunk/+pots/editra"
CONTACT_MAIL = "staff@editra.org"
|