Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
04878084
Commit
04878084
authored
Sep 05, 2012
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve lookup of files
parent
b4f0240d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
printrun_utils.py
printrun/printrun_utils.py
+8
-4
No files found.
printrun/printrun_utils.py
View file @
04878084
import
os
import
os
,
sys
import
gettext
# Set up Internationalization using gettext
...
...
@@ -16,18 +16,22 @@ def imagefile(filename):
candidate
=
os
.
path
.
join
(
prefix
,
filename
)
if
os
.
path
.
exists
(
candidate
):
return
candidate
local_candidate
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"images"
,
filename
)
local_candidate
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]
),
"images"
,
filename
)
if
os
.
path
.
exists
(
local_candidate
):
return
local_candidate
else
:
return
os
.
path
.
join
(
os
.
path
.
split
(
os
.
path
.
split
(
__file__
)[
0
])[
0
],
"images"
,
filename
)
return
os
.
path
.
join
(
"images"
,
filename
)
def
lookup_file
(
filename
,
prefixes
):
for
prefix
in
prefixes
:
candidate
=
os
.
path
.
join
(
prefix
,
filename
)
if
os
.
path
.
exists
(
candidate
):
return
candidate
return
filename
local_candidate
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]),
filename
)
if
os
.
path
.
exists
(
local_candidate
):
return
local_candidate
else
:
return
filename
def
pixmapfile
(
filename
):
return
lookup_file
(
filename
,
[
'/usr/local/share/pixmaps'
,
'/usr/share/pixmaps'
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment