Codebase list tpp / 092560c
Refresh patches. Debian Janitor 4 years ago
4 changed file(s) with 25 addition(s) and 21 deletion(s). Raw diff Collapse all Expand all
00 Author: Nico Golde <nion@debian.org>
11 Description: Adjust documentation file install
22
3 diff -urNad tpp-1.3.1~/Makefile tpp-1.3.1/Makefile
4 --- tpp-1.3.1~/Makefile 2005-06-12 13:37:20.000000000 +0200
5 +++ tpp-1.3.1/Makefile 2007-04-23 11:24:33.000000000 +0200
6 @@ -13,7 +13,7 @@
3 Index: tpp/Makefile
4 ===================================================================
5 --- tpp.orig/Makefile
6 +++ tpp/Makefile
7 @@ -13,7 +13,7 @@ all:
78
89 install :
910 mkdir -p $(DOCPATH)
00 Author: Nico Golde <nico@ngolde.de>
11 Description: Fix hyphens in manual page
22
3 diff -urNad tpp-1.3.1~/doc/tpp.1 tpp-1.3.1/doc/tpp.1
4 --- tpp-1.3.1~/doc/tpp.1 2007-04-23 11:12:21.000000000 +0200
5 +++ tpp-1.3.1/doc/tpp.1 2007-12-11 08:41:23.000000000 +0100
3 Index: tpp/doc/tpp.1
4 ===================================================================
5 --- tpp.orig/doc/tpp.1
6 +++ tpp/doc/tpp.1
67 @@ -1,6 +1,6 @@
78 .TH TPP "1" "April 2007" "tpp 1.3.1" "User Commands"
89 .SH NAME
1112 .SH SYNOPSIS
1213 .B tpp
1314 <\fIOPTIONS\fR> <\fIFILE\fR>
14 @@ -16,21 +16,21 @@
15 @@ -16,21 +16,21 @@ It supports color, various output modes,
1516 LaTeX conversion and more.
1617 .SH OPTIONS
1718 .TP
3839 display previous page
3940 .TP
4041 q, Q
41 @@ -50,16 +50,16 @@
42 @@ -50,16 +50,16 @@ start command line
4243 .PP
4344 .SH WRITING PRESENTATIONS
4445 The tpp presentation formats consists of normal text lines and special
44
55 Index: tpp/tpp.rb
66 ===================================================================
7 --- tpp.orig/tpp.rb 2013-06-12 22:13:55.000000000 +0200
8 +++ tpp/tpp.rb 2013-06-12 22:15:08.000000000 +0200
9 @@ -725,9 +725,13 @@
7 --- tpp.orig/tpp.rb
8 +++ tpp/tpp.rb
9 @@ -729,9 +729,13 @@ class NcursesVisualizer < TppVisualizer
1010 end
1111
1212 def do_exec(cmdline)
2323 end
2424 end
2525
26 @@ -1683,6 +1687,7 @@
26 @@ -1687,6 +1691,7 @@ def usage
2727 $stderr.puts "\t -t <type>\tset filetype <type> as output format"
2828 $stderr.puts "\t -o <file>\twrite output to file <file>"
2929 $stderr.puts "\t -s <seconds>\twait <seconds> seconds between slides (with -t autoplay)"
3131 $stderr.puts "\t --version\tprint the version"
3232 $stderr.puts "\t --help\t\tprint this help"
3333 $stderr.puts "\n\t currently available types: ncurses (default), autoplay, latex, txt"
34 @@ -1699,6 +1704,7 @@
34 @@ -1703,6 +1708,7 @@ input = nil
3535 output = nil
3636 type = "ncurses"
3737 time = 1
3939
4040 skip_next = false
4141
42 @@ -1720,6 +1726,8 @@
42 @@ -1724,6 +1730,8 @@ ARGV.each_index do |i|
4343 elsif ARGV[i] == "-s" then
4444 time = ARGV[i+1].to_i
4545 skip_next = true
5050 end
5151 Index: tpp/doc/tpp.1
5252 ===================================================================
53 --- tpp.orig/doc/tpp.1 2013-06-12 22:13:55.000000000 +0200
54 +++ tpp/doc/tpp.1 2013-06-12 22:13:55.000000000 +0200
55 @@ -20,6 +20,8 @@
53 --- tpp.orig/doc/tpp.1
54 +++ tpp/doc/tpp.1
55 @@ -20,6 +20,8 @@ LaTeX conversion and more.
5656 .TP
5757 \-l output.tex input.tpp converts tpp slides into tex
5858 .TP
22 Author: Axel Beckert <abe@debian.org>
33 Forwarded: no
44
5 --- a/contrib/tpp-mode.el
6 +++ b/contrib/tpp-mode.el
5 Index: tpp/contrib/tpp-mode.el
6 ===================================================================
7 --- tpp.orig/contrib/tpp-mode.el
8 +++ tpp/contrib/tpp-mode.el
79 @@ -1,4 +1,4 @@
810 -;; tpp-mode.el - An Major mode for Emacs to editing TextPraesentionProgramm (tpp) - Files
911 +;;; tpp-mode.el --- An Major mode for Emacs to editing TextPraesentionProgramm (tpp) - Files
1012
1113 ;; Filename: tpp-mode.el
1214 ;; Author: Christian Dietrich <stettberger@gmx.de>
13 @@ -189,4 +189,4 @@
15 @@ -189,4 +189,4 @@ more convenient. These commands are avai
1416 ;; Hook ablaufen lassen
1517 (run-hooks 'tpp-mode-hook)
1618 )