summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2019-08-25 08:52:41 -0300
committerDavid Bremner <david@tethera.net>2019-08-25 08:52:41 -0300
commit4855370ae13f8da6fcc6368bb50546d9265dbda1 (patch)
treeb20672cef069155e3db734e323f7934dd3cf0e66
parent665e1555392a83f1f69baf0675ab96ada4f98e72 (diff)
Commit Debian 3.0 (quilt) metadata
[dgit (9.7) quilt-fixup]
-rw-r--r--debian/patches/auto-0.1.2-4-665e1555392a83f1f69baf0675ab96ada4f98e72-1566733960154
-rw-r--r--debian/patches/series1
2 files changed, 155 insertions, 0 deletions
diff --git a/debian/patches/auto-0.1.2-4-665e1555392a83f1f69baf0675ab96ada4f98e72-1566733960 b/debian/patches/auto-0.1.2-4-665e1555392a83f1f69baf0675ab96ada4f98e72-1566733960
new file mode 100644
index 0000000..ebb8ec5
--- /dev/null
+++ b/debian/patches/auto-0.1.2-4-665e1555392a83f1f69baf0675ab96ada4f98e72-1566733960
@@ -0,0 +1,154 @@
+From: David Bremner <bremner@debian.org>
+Subject: Automatically generated patch (0.1.2-4)
+
+Last (up to) 3 git changes, FYI:
+
+commit 665e1555392a83f1f69baf0675ab96ada4f98e72
+Author: David Bremner <david@tethera.net>
+Date: Sun Aug 25 08:52:38 2019 -0300
+
+ changelog for rebuild with current dh-elpa
+
+commit f864dc519ccef06f79108a890afc32d4f3a99e49
+Author: David Bremner <david@tethera.net>
+Date: Sat Jun 2 20:18:01 2018 -0300
+
+ changelog for byte compilation rebuild
+
+commit a1ef20685df1bc660bd4ccbb952b08b17a3bd696
+Author: Lev Lamberov <dogsleg@debian.org>
+Date: Sat Apr 7 15:13:53 2018 +0500
+
+ Fix Vcs URLs
+---
+
+--- emacs-ctable-0.1.2.orig/readme.md
++++ emacs-ctable-0.1.2/readme.md
+@@ -19,26 +19,26 @@ and add the following code to your progr
+ Giving a list of the rows list to the function `ctbl:popup-table-buffer-easy', a simple table buffer is popped out.
+
+ ```lisp
+-(ctbl:popup-table-buffer-easy
++(ctbl:popup-table-buffer-easy
+ '((1 2 3 4) (5 6 7 8) (9 10 11 12)))
+ ```
+
+ Here is the result image. The header titles are generated automatically.
+
+-![sample-1-1](/usr/share/doc/elpa-ctable/sample-1-1.png)
++![sample-1-1](img/sample-1-1.png)
+
+
+ Giving two lists, the latter list is displayed at header titles.
+
+ ```lisp
+-(ctbl:popup-table-buffer-easy
++(ctbl:popup-table-buffer-easy
+ '((1 2 3 4) (5 6 7 8) (9 10 11 12))
+ '(aaa bbb ccc ddd))
+ ```
+
+ Here is the result image.
+
+-![sample-1-2](/usr/share/doc/elpa-ctable/sample-1-2.png)
++![sample-1-2](img/sample-1-2.png)
+
+ ## Basic Use
+
+@@ -50,7 +50,7 @@ Second, one chooses builds the view comp
+
+ Here is an illustration for the object relations in this basic case.
+
+-![Object relations](/usr/share/doc/elpa-ctable/normal_use.png)
++![Object relations](img/normal_use.png)
+
+ Here is a sample code for the model and view.
+
+@@ -87,7 +87,7 @@ Here is a sample code for the model and
+
+ Here is the result image.
+
+-![sample-2-1](/usr/share/doc/elpa-ctable/sample-2-1.png)
++![sample-2-1](img/sample-2-1.png)
+
+
+ The models have further options and functions to customize the display and behavior, such as column width, text alignment, sorting and so on. (See Model section)
+@@ -98,7 +98,7 @@ The ctable framework provides some hooks
+
+ The appearance of the table can be customized, such as foreground and background color, tabular lines. (See Display Parameter section)
+
+-![ctable components](/usr/share/doc/elpa-ctable/objects.png)
++![ctable components](img/objects.png)
+
+ ## Sample Codes
+
+@@ -110,7 +110,7 @@ The appearance of the table can be custo
+ - directory tree and table list in collaboration with direx.el
+ - ref: https://github.com/m2ym/direx-el
+
+-![direx-ctable image](/usr/share/doc/elpa-ctable/direx-ctable.png)
++![direx-ctable image](img/direx-ctable.png)
+
+
+ # Advanced Topics
+@@ -159,8 +159,8 @@ The ctable provides some hooks for the p
+ Here is a sample code for the click action:
+
+ ```lisp
+-(ctbl:cp-add-click-hook
+- cp (lambda () (message "CTable : Click Hook [%S]"
++(ctbl:cp-add-click-hook
++ cp (lambda () (message "CTable : Click Hook [%S]"
+ (ctbl:cp-get-selected-data-row cp))))
+ ```
+
+@@ -263,7 +263,7 @@ Region destination example:
+
+ Then, the tabular view will be embedded in the scratch buffer. You can navigate the ctable view in the buffer. Undoing for the some times, you can remove the ctable view.
+
+-![ctable in scratch buffer](/usr/share/doc/elpa-ctable/region-scratch.png)
++![ctable in scratch buffer](img/region-scratch.png)
+
+ Because this destination never interacts anything out of the region and has its own key-binds as a text property, users can easily embed a tabular view in the other applications.
+
+@@ -351,11 +351,11 @@ Here is a sample code:
+ (loop with lim = 4000
+ for i from 0 upto lim
+ for d = (/ (random 1000) 1000.0)
+- collect
++ collect
+ (list i d (exp (- (/ i 1.0 lim))) (exp (* (- (/ i 1.0 lim)) d)))))
+ (async-model ; wrapping a large data in async-data-model
+ (ctbl:async-model-wrapper large-data))
+- (cp ; just build a component
++ (cp ; just build a component
+ (ctbl:create-table-component-buffer
+ :model
+ (make-ctbl:model
+@@ -370,7 +370,7 @@ Here is a sample code:
+
+ And here is the result image:
+
+-![async data wrapper](/usr/share/doc/elpa-ctable/async-wrapper.png)
++![async data wrapper](img/async-wrapper.png)
+
+
+ ### Case 2: Asynchronous Retrieving
+@@ -387,7 +387,7 @@ Here is a minimum sample code:
+ (loop for i from row-num below (+ row-num len)
+ collect
+ (list i (* i i) (* i i i) (sqrt i)))))
+-
++
+ (ctbl:open-table-buffer-easy
+ (make-ctbl:async-model :request 'async-response) ; defining async-model
+ '("int" "square" "cube" "root"))
+@@ -403,7 +403,7 @@ The `request` function should have 4 arg
+
+ Here is the result image:
+
+-![defining async model:1](/usr/share/doc/elpa-ctable/async-model-sample1.png)
++![defining async model:1](img/async-model-sample1.png)
+
+ #### ctbl:async-model struct
+
diff --git a/debian/patches/series b/debian/patches/series
index 3522b6d..9d633ab 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
fix-documantation.diff
+auto-0.1.2-4-665e1555392a83f1f69baf0675ab96ada4f98e72-1566733960