/usr/share/pybliographer/Pyblio/GnomeUI/Pybliographic.py is in pybliographer 1.2.14-3.
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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | # This file is part of pybliographer
#
# Copyright (C) 1998-2004 Frederic GOBRY
# Email : gobry@pybliographer.org
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
''' Main Module holding all the documents '''
import copy, os, stat
from Pyblio.GnomeUI import Document, Utils
from Pyblio import Base, Config
from gtk import *
class Pybliographic:
''' Main class holding all the documents and performing
general tasks '''
def __init__ (self):
self.documents = []
self.opened = []
histsize = Config.get ('gnome/history').data
for i in range (1, histsize + 1):
file = Utils.config.get_string ('/apps/pybliographic/history/file%d' % i) or ''
fmat = Utils.config.get_string ('/apps/pybliographic/history/type%d' % i) or ''
if not file: continue
if not fmat: fmat = None
self.opened.append ((file, fmat))
return
def new_document (self, * arg):
db = Base.DataBase (None)
doc = Document.Document (db)
# register several callbacks
doc.Subscribe ('new-document', self.new_document)
doc.Subscribe ('open-in-new', self.open_document)
doc.Subscribe ('open-document', self.cb_open_document)
doc.Subscribe ('close-document', self.close_document)
doc.Subscribe ('exit-application', self.exit_application)
doc.update_history (self.opened)
self.documents.append (doc)
return doc
def cb_open_document (self, doc):
''' a document has been opened '''
file = str (doc.data.key)
fmat = doc.data.id
#FIXME.
#history.recently_used (file, 'application/x-bibtex',
# 'pybliographic', 'Bibliography')
try:
self.opened.remove ((file, fmat))
except ValueError:
pass
self.opened.insert (0, (file, fmat))
# warn all the documents
for doc in self.documents:
doc.update_history (self.opened)
# get the modification date...
if doc.data.key and doc.data.key.url [0] == 'file':
file = doc.data.key.url [2]
doc.modification_date = os.stat (file) [stat.ST_MTIME]
return
def open_document (self, url, how = None, no_name=False):
doc = self.new_document ()
doc.open_document(url, how, no_name)
return doc
def close_document (self, document, maybe_exit = False):
''' close one specified document '''
if not document.close_document_request ():
return
if len (self.documents) == 1 and maybe_exit:
self.exit_application (self.documents [0])
return
document.w.destroy ()
self.documents.remove (document)
if not self.documents: self.new_document ()
return
def exit_application (self, document):
document.update_configuration ()
i = 1
for file in self.opened [0:Config.get ('gnome/history').data]:
name = file [0]
fmat = file [1] or ''
Utils.config.set_string ('/apps/pybliographic/history/file%d' % i, name)
Utils.config.set_string ('/apps/pybliographic/history/type%d' % i, fmat)
i = i + 1
doclist = copy.copy (self.documents)
for doc in doclist:
if not doc.close_document_request ():
return
doc.w.destroy ()
self.documents.remove (doc)
main_quit ()
return
|