From 5b5e54d3e8b7e08813974b7b6325f1b08983ed3e Mon Sep 17 00:00:00 2001 From: Egon Willighagen Date: Thu, 24 Dec 2009 14:11:06 +0100 Subject: [PATCH] Created a list, to be able to add license information --- createModulePages.groovy | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/createModulePages.groovy b/createModulePages.groovy index 3546f98fdb1..3d374378ab1 100644 --- a/createModulePages.groovy +++ b/createModulePages.groovy @@ -83,8 +83,14 @@ files.each { file -> p(){ if (libdepends.exists()) { b("Libraries") - libdepends.text.eachLine{ - span(it) + ul() { + libdepends.text.eachLine{ libdep -> + if (libdep.length() > 0) { + p() { + span(libdep) + } + } + } } } }