/usr/lib/gedit/plugins/latex/resources.py is in gedit-latex-plugin 3.8.0-3build1.
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 | # -*- coding: utf-8 -*-
# This file is part of the Gedit LaTeX Plugin
#
# Copyright (C) 2010 Michael Zeising
# 2011 Ignacio Casal Quinteiro
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public Licence as published by the Free Software
# Foundation; either version 2 of the Licence, 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 Licence for more
# details.
#
# You should have received a copy of the GNU General Public Licence along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
resources
"""
import logging
import os.path
import errno
from .singleton import Singleton
_log = logging.getLogger("resources")
class Resources(Singleton):
def __init_once__(self):
pass
def set_dirs(self, userdir, systemdir):
self.userdir = userdir
self.systemdir = systemdir
# Make sure dir exists
try:
os.makedirs(userdir)
except OSError as e:
if e.errno != errno.EEXIST:
raise
def get_user_dir(self):
return self.userdir
def get_system_dir(self):
return self.systemdir
def get_user_file(self, user_file):
return os.path.join(self.userdir, user_file)
def get_ui_file(self, ui_name):
return os.path.join(self.systemdir, "ui", ui_name)
def get_icon(self, icon_name):
return os.path.join(self.systemdir, "icons", icon_name)
def get_data_file(self, data_name):
return os.path.join(self.systemdir, data_name)
# ex:ts=4:et:
|