Codebase list lua-ldoc / 06da063
new patch to fix missing closing bracket Enrico Tassi 8 years ago
5 changed file(s) with 32 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 lua-ldoc (1.4.3-2) unstable; urgency=medium
1
2 * Patch: close missing bracket in template file
3
4 -- Enrico Tassi <gareuselesinge@debian.org> Mon, 17 Aug 2015 14:40:09 +0200
5
06 lua-ldoc (1.4.3-1) unstable; urgency=medium
17
28 * New upstream version:
22 Subject: Fix the interpreter to lua5.1 (since lua may be lua50 too)
33
44 ---
5 ldoc.lua | 2 +-
5 ldoc.lua | 2 +-
66 1 file changed, 1 insertion(+), 1 deletion(-)
77
88 diff --git a/ldoc.lua b/ldoc.lua
9 index 0d44850..7fa86c9 100644
9 index e32472c..3454bcf 100644
1010 --- a/ldoc.lua
1111 +++ b/ldoc.lua
1212 @@ -1,4 +1,4 @@
0 From 516e017f97feff9beabddffbcd6bbbcc920db2e1 Mon Sep 17 00:00:00 2001
10 From: Julian Wollrath <jwollrath@web.de>
21 Date: Fri, 26 Dec 2014 17:19:57 +0100
3 Subject: [PATCH] Remove non-existing 'one 1.md' from tests/config.ld
2 Subject: Remove non-existing 'one 1.md' from tests/config.ld
43
54 ---
65 tests/config.ld | 2 +-
76 1 file changed, 1 insertion(+), 1 deletion(-)
87
98 diff --git a/tests/config.ld b/tests/config.ld
10 index 22b498319958..08621bcad9d4 100644
9 index 22b4983..08621bc 100644
1110 --- a/tests/config.ld
1211 +++ b/tests/config.ld
1312 @@ -2,4 +2,4 @@ format='markdown'
1615 use_markdown_titles=true
1716 -topics = {'one 1.md','two.md'}
1817 +topics = {'two.md'}
19 --
20 2.1.4
21
0 From: Enrico Tassi <gareuselesinge@debian.org>
1 Date: Mon, 17 Aug 2015 14:39:14 +0200
2 Subject: Fix broken template (missing closing bracket)
3
4 ---
5 ldoc/html/ldoc_ltp.lua | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/ldoc/html/ldoc_ltp.lua b/ldoc/html/ldoc_ltp.lua
9 index 07c8a84..7033ad5 100644
10 --- a/ldoc/html/ldoc_ltp.lua
11 +++ b/ldoc/html/ldoc_ltp.lua
12 @@ -65,7 +65,7 @@ return [==[
13 # for kind, mods, type in ldoc.kinds() do
14 # if ldoc.allowed_in_contents(type,module) then
15 <h2>$(kind)</h2>
16 -<ul class="$(kind=='Topics' and '' or 'nowrap'">
17 +<ul class="$(kind=='Topics' and '' or 'nowrap')">
18 # for mod in mods() do local name = ldoc.module_name(mod)
19 # if mod.name == this_mod then
20 <li><strong>$(name)</strong></li>
00 0001-Fix-the-interpreter-to-lua5.2-since-lua-may-be-lua50.patch
11 0002-Remove-non-existing-one-1.md-from-tests-config.ld.patch
2 0003-Fix-broken-template-missing-closing-bracket.patch