Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
poezio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
204
Issues
204
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
poezio
poezio
Commits
eabf05c8
Commit
eabf05c8
authored
Oct 16, 2010
by
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Makefile again
parent
63d583c0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
8 deletions
+4
-8
Makefile
Makefile
+3
-6
src/gui.py
src/gui.py
+0
-1
src/window.py
src/window.py
+1
-1
No files found.
Makefile
View file @
eabf05c8
...
...
@@ -4,8 +4,6 @@ BINDIR=$(prefix)/bin
DATADIR
=
$(prefix)
/share
LOCALEDIR
=
$(DATADIR)
/locale
MANDIR
=
$(DATADIR)
/man
CP
=
/bin/cp
CHMOD
=
/bin/chmod
all
:
Makefile
...
...
@@ -15,12 +13,11 @@ clean:
find ./
-name
"#*#"
-delete
install
:
mkdir
-p
$(DESTDIR)
install
-d
$(DESTDIR)$(LOCALEDIR)
$(DESTDIR)$(BINDIR)
$(DESTDIR)$(DATADIR)
/poezio
$(DESTDIR)$(DATADIR)
/poezio/data
$(DESTDIR)$(DATADIR)
/poezio/src/
$(DESTDIR)$(DATADIR)
/poezio/src
/xmpp
$(DESTDIR)$(DATADIR)
/poezio/data/themes
$(DESTDIR)$(MANDIR)
/man1
mkdir
-p
$(DESTDIR)
$(prefix)
install
-d
$(DESTDIR)$(LOCALEDIR)
$(DESTDIR)$(BINDIR)
$(DESTDIR)$(DATADIR)
/poezio
$(DESTDIR)$(DATADIR)
/poezio/data
$(DESTDIR)$(DATADIR)
/poezio/src/
$(DESTDIR)$(DATADIR)
/poezio/src
$(DESTDIR)$(DATADIR)
/poezio/data/themes
$(DESTDIR)$(MANDIR)
/man1
$(CP)
-R
data/*
$(DESTDIR)$(DATADIR)/poezio/data/
cp
-R
data/*
$(DESTDIR)$(DATADIR)/poezio/data/
rm
$(DESTDIR)$(DATADIR)/poezio/data/poezio.1
$(CHMOD)
655
-R
$(DESTDIR)$(DATADIR)/poezio/data/
install
-m644
data/poezio.1
$(DESTDIR)$(MANDIR)/man1/
for
sourcefile
in
`find
src/
-maxdepth
1
-type
f
-name
\*.py`
;
do
\
...
...
src/gui.py
View file @
eabf05c8
...
...
@@ -569,7 +569,6 @@ class Gui(object):
"""
theme
.
init_colors
()
curses
.
noecho
()
curses
.
curs_set
(
0
)
stdscr
.
keypad
(
True
)
def
reset_curses
(
self
):
...
...
src/window.py
View file @
eabf05c8
...
...
@@ -877,7 +877,7 @@ class Input(Win):
with
g_lock
:
self
.
clear_text
()
self
.
addstr
(
self
.
text
[
self
.
line_pos
:
self
.
line_pos
+
self
.
width
-
1
])
self
.
win
.
chgat
(
0
,
self
.
pos
,
1
,
curses
.
A_REVERSE
)
#
self.win.chgat(0, self.pos, 1, curses.A_REVERSE)
self
.
win
.
refresh
()
def
refresh
(
self
):
...
...
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