]> git.pld-linux.org Git - packages/dokuwiki-plugin-data.git/commitdiff
- add <span class="sep"> to table lists as well AC-branch auto/ac/dokuwiki-plugin-data-20100125-1 auto/th/dokuwiki-plugin-data-20100125-1
authorElan Ruusamäe <glen@pld-linux.org>
Thu, 18 Mar 2010 17:35:18 +0000 (17:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dokuwiki-plugin-data.spec -> 1.13
    separator-style.patch -> 1.1

dokuwiki-plugin-data.spec
separator-style.patch [new file with mode: 0644]

index f60836fda25598f56a5504ab438d92b94dae92b4..ca2448588f1a59e67c60ec2f1d4e7c75d255f1b8 100644 (file)
@@ -10,6 +10,7 @@ Source0:      http://download.github.com/splitbrain-dokuwiki-plugin-data-1e1e56a.zip
 URL:           http://wiki.splitbrain.org/plugin:data
 Patch0:                interwiki.patch
 Patch1:                helper-map.patch
+Patch2:                separator-style.patch
 BuildRequires: rpmbuild(macros) >= 1.520
 Requires:      dokuwiki >= 20090214b-5
 Requires:      php(sqlite)
@@ -34,6 +35,7 @@ different to the repository plugin.
 mv splitbrain-dokuwiki-plugin-data-*/* .
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 version=$(awk '/date/{print $2}' plugin.info.txt)
 if [ $(echo "$version" | tr -d -) != %{version} ]; then
diff --git a/separator-style.patch b/separator-style.patch
new file mode 100644 (file)
index 0000000..4c04bbd
--- /dev/null
@@ -0,0 +1,20 @@
+add style to list separator, so one could write to userstyle.css:
+
+table.dataplugin_table span.sep {
+    display: block;
+    font-size: 0px;
+}
+
+and have list items listed below each other
+
+--- data/helper.php    2010-02-23 03:00:00.000000000 +0200
++++ data/helper.php    2009-09-10 09:00:02.000000000 +0300
+@@ -129,7 +139,7 @@
+                     }
+             }
+         }
+-        return join(', ',$outs);
++        return join('<span class="sep">, </span>',$outs);
+     }
+     /**
This page took 0.148267 seconds and 4 git commands to generate.