repo
string
commit
string
message
string
diff
string
lewiswharf/mailchimp
a1f304b59d3b2e4d404b74a87ad320dde9297902
Formatting for the nth time.
diff --git a/readme.md b/readme.md index 0834dee..a928b7f 100644 --- a/readme.md +++ b/readme.md @@ -1,81 +1,81 @@ #MailChimp The MailChimp extension allows users to subscribe to a list and supports unlimited number of merge fields. - Version: 1.14 - Author: Mark Lewis <mark@casadelewis.com> - Build Date: 21 J...
lewiswharf/mailchimp
e64974d5037fd32a89e8fb72a7d0de871066893a
Formatting, work dammit!
diff --git a/readme.md b/readme.md index 4c7c3ab..0834dee 100644 --- a/readme.md +++ b/readme.md @@ -1,81 +1,81 @@ #MailChimp The MailChimp extension allows users to subscribe to a list and supports unlimited number of merge fields. - Version: 1.14 - Author: Mark Lewis <mark@casadelewis.com> - Build Date: 21 J...
lewiswharf/mailchimp
f982707b24dd66fce122d6291353e36ef57b4c6c
Formatting again.
diff --git a/readme.md b/readme.md index 15e05d0..4c7c3ab 100644 --- a/readme.md +++ b/readme.md @@ -1,79 +1,81 @@ #MailChimp The MailChimp extension allows users to subscribe to a list and supports unlimited number of merge fields. - Version: 1.14 - Author: Mark Lewis <mark@casadelewis.com> - Build Date: 21 J...
lewiswharf/mailchimp
24361683398a19243623cb32ab19cf7fa7f10929
Fixed formatting.
diff --git a/readme.md b/readme.md index 88e137e..15e05d0 100644 --- a/readme.md +++ b/readme.md @@ -1,79 +1,79 @@ #MailChimp The MailChimp extension allows users to subscribe to a list and supports unlimited number of merge fields. - Version: 1.14 - Author: Mark Lewis <mark@casadelewis.com> - Build Date: 21 J...
lewiswharf/mailchimp
2987e784d065836313a4960f5770be8dd3a5d7f1
Code review before pull request: Fixed typos, code clarification, added comments
diff --git a/assets/subscribe.js b/assets/subscribe.js index 5dcdb67..44154c4 100644 --- a/assets/subscribe.js +++ b/assets/subscribe.js @@ -1,103 +1,99 @@ -/* simple jquery plugin for the mail chimp ajax form */ +/** + * Simple jquery plugin for the mail chimp ajax form + * + * As for the normal use of this exten...
lewiswharf/mailchimp
6e25fa189faf4dd37d145a0400f7cf6a5c9d99a3
Fix for error handling
diff --git a/content/content.subscribe.php b/content/content.subscribe.php index fd51cc1..91ba955 100644 --- a/content/content.subscribe.php +++ b/content/content.subscribe.php @@ -1,88 +1,88 @@ <?php if(!defined("__IN_SYMPHONY__")) die("<h2>Error</h2><p>You cannot directly access this file</p>"); require_...
lewiswharf/mailchimp
755ab1a842f1cb7f80c1fb3129e72aa6225254d1
Fix for error handling
diff --git a/content/content.subscribe.php b/content/content.subscribe.php index b035c69..fd51cc1 100644 --- a/content/content.subscribe.php +++ b/content/content.subscribe.php @@ -1,82 +1,88 @@ <?php if(!defined("__IN_SYMPHONY__")) die("<h2>Error</h2><p>You cannot directly access this file</p>"); require_...
lewiswharf/mailchimp
a3a603c66923671dd650ce03cdbb62725f9f9ff4
First working version: create a JSONPage class and extend it for this event
diff --git a/assets/subscribe.js b/assets/subscribe.js index 6bf0b17..5dcdb67 100644 --- a/assets/subscribe.js +++ b/assets/subscribe.js @@ -1,83 +1,103 @@ /* simple jquery plugin for the mail chimp ajax form */ (function ($, undefined) { var defaults = { /*emailField : '#email', mergeFields : [ ...
lewiswharf/mailchimp
2188d67810ce5958089d0a81259447d43af66eed
js file done, still not working...
diff --git a/assets/subscribe.js b/assets/subscribe.js index c57e43c..6bf0b17 100644 --- a/assets/subscribe.js +++ b/assets/subscribe.js @@ -1,80 +1,83 @@ /* simple jquery plugin for the mail chimp ajax form */ (function ($, undefined) { var defaults = { /*emailField : '#email', mergeFields : [ ...
lewiswharf/mailchimp
d58add6c7e4ceb317ad070b651edc76731d4c3da
First version on jQuery plugin to catch the submit form and ajaxify it
diff --git a/assets/subscribe.js b/assets/subscribe.js new file mode 100644 index 0000000..c57e43c --- /dev/null +++ b/assets/subscribe.js @@ -0,0 +1,80 @@ +/* simple jquery plugin for the mail chimp ajax form */ + +(function ($, undefined) { + + var defaults = { + /*emailField : '#email', + mergeFields : [ +...
lewiswharf/mailchimp
13ab1f7e0b29deb9f16645a32d793db2204270a3
Switched from login/password authentication to using API key.
diff --git a/events/event.mailchimp.php b/events/event.mailchimp.php index 7684a06..e9c7a2a 100644 --- a/events/event.mailchimp.php +++ b/events/event.mailchimp.php @@ -1,112 +1,112 @@ <?php if(!defined('__IN_SYMPHONY__')) die('<h2>Error</h2><p>You cannot directly access this file</p>'); include_once(EXTENSION...
lewiswharf/mailchimp
55dcf978be7425c8b648d570c11cb9e606392524
Fixed bug to handle email-only forms
diff --git a/extension.driver.php b/extension.driver.php index 89bb19f..7cf3243 100644 --- a/extension.driver.php +++ b/extension.driver.php @@ -1,87 +1,87 @@ <?php if(!defined("__IN_SYMPHONY__")) die("<h2>Error</h2><p>You cannot directly access this file</p>"); Class extension_mailchimp extends Extension{ ...
lewiswharf/mailchimp
df5af08adc9ee42c4245c11f3071595a479d5071
additional mergeVars fixes
diff --git a/events/event.mailchimp.php b/events/event.mailchimp.php index cd53ac1..5eadafe 100644 --- a/events/event.mailchimp.php +++ b/events/event.mailchimp.php @@ -1,108 +1,112 @@ <?php if(!defined('__IN_SYMPHONY__')) die('<h2>Error</h2><p>You cannot directly access this file</p>'); include_once(EXTENSION...
lewiswharf/mailchimp
2371f5997da518e02fc78e2b7a026aeb182b042e
fixed additional markdown formatting in readme
diff --git a/readme.md b/readme.md index b5af8ca..1c06529 100644 --- a/readme.md +++ b/readme.md @@ -1,63 +1,65 @@ #MailChimp The MailChimp extension allows users to subscribe to a list. Supports unlimited number of merge fields. - Version: 1.1 - Author: Mark Lewis <mark@casadelewis.com> - Build Date: 10 Marc...
lewiswharf/mailchimp
43c3d639abda718774b6cac0b7e4242f97a83f4e
fixed readme formatting
diff --git a/readme.md b/readme.md index aa0c7bc..b5af8ca 100644 --- a/readme.md +++ b/readme.md @@ -1,63 +1,63 @@ #MailChimp -Version: 1.1 -Author: Mark Lewis <mark@casadelewis.com> -Build Date: 10 March 2011 -Requirements: Symphony 2.2 +The MailChimp extension allows users to subscribe to a list. Supports unlimit...
lewiswharf/mailchimp
9ebbc21e1d4b96d7d3753aacad42a1482026e01d
fixed configuration error
diff --git a/extension.driver.php b/extension.driver.php index 6e7d6eb..d101603 100644 --- a/extension.driver.php +++ b/extension.driver.php @@ -1,87 +1,87 @@ <?php if(!defined("__IN_SYMPHONY__")) die("<h2>Error</h2><p>You cannot directly access this file</p>"); Class extension_mailchimp extends Extension{ ...
lewiswharf/mailchimp
d88ce9548afa49e1bc19b6490e9848ac723638f5
modified error handling to accept any number of merged fields
diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..85854fb --- /dev/null +++ b/README.txt @@ -0,0 +1,59 @@ +MailChimp +------------------------------------------------------------------------------- + +Version: 1.0 +Author: Mark Lewis <mark@casadelewis.com> +Build Date: 8 May 2009 +Requirements: S...
jgoerzen/datapacker
f957fb9f952f954b1ca17d7a17e3ffd16945442e
Add missing debian/rules targets build-indep, build-arch.
diff --git a/debian/changelog b/debian/changelog index 19bd4de..f10af4f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,77 +1,78 @@ datapacker (1.0.4) UNRELEASED; urgency=medium * Remove constraints unnecessary since buster: + Build-Depends: Drop versioned constraint on ghc, haskell-devscripts and...
jgoerzen/datapacker
0ccef5d3554ca60f7d0ee8878cd515b9ecfbd683
Bump debhelper from old 12 to 13.
diff --git a/debian/changelog b/debian/changelog index b71286c..19bd4de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,76 +1,77 @@ datapacker (1.0.4) UNRELEASED; urgency=medium * Remove constraints unnecessary since buster: + Build-Depends: Drop versioned constraint on ghc, haskell-devscripts and...
jgoerzen/datapacker
38fd69f780aefa98fac8b579ed13e75264a0aeeb
Remove constraints unnecessary since buster
diff --git a/debian/changelog b/debian/changelog index f8760da..b71286c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,68 +1,76 @@ +datapacker (1.0.4) UNRELEASED; urgency=medium + + * Remove constraints unnecessary since buster: + + Build-Depends: Drop versioned constraint on ghc, haskell-devscripts and...
jgoerzen/datapacker
01e263b77b30ec4c8098d4e2a9ce780f8730f426
Fix warnings
diff --git a/Actions.hs b/Actions.hs index fd93c8a..739c63c 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,88 +1,87 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
59a416927f91a0c136d7e52cdeb288da4bbe9437
Change priority extra to priority optional.
diff --git a/debian/changelog b/debian/changelog index 614f83e..910d7f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,61 +1,62 @@ datapacker (1.0.3) UNRELEASED; urgency=medium * Trim trailing whitespace. * debian/rules: Use dh_prep rather than "dh_clean -k". * Explicitly specify source format. ...
jgoerzen/datapacker
12c3f346a095619dde0377da402c6de2ff1a9137
Bump debhelper from deprecated 5 to 12.
diff --git a/debian/changelog b/debian/changelog index fcd25fd..614f83e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,60 +1,61 @@ datapacker (1.0.3) UNRELEASED; urgency=medium * Trim trailing whitespace. * debian/rules: Use dh_prep rather than "dh_clean -k". * Explicitly specify source format. ...
jgoerzen/datapacker
ee5475d881468f8c9af152ce1e41745a5037279b
Explicitly specify source format.
diff --git a/debian/changelog b/debian/changelog index a5220d7..fcd25fd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,59 +1,60 @@ datapacker (1.0.3) UNRELEASED; urgency=medium * Trim trailing whitespace. * debian/rules: Use dh_prep rather than "dh_clean -k". + * Explicitly specify source format. ...
jgoerzen/datapacker
2d7bc93e26f2400f0bea8d52eec266d6e67e7e18
debian/rules: Use dh_prep rather than "dh_clean -k".
diff --git a/debian/changelog b/debian/changelog index 1deee84..a5220d7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,58 +1,59 @@ datapacker (1.0.3) UNRELEASED; urgency=medium * Trim trailing whitespace. + * debian/rules: Use dh_prep rather than "dh_clean -k". -- Debian Janitor <janitor@jelmer.u...
jgoerzen/datapacker
9e8da57e01dbe3e90d2eaaac92c1f6268248ab56
Trim trailing whitespace.
diff --git a/debian/changelog b/debian/changelog index 0d33914..1deee84 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,52 +1,58 @@ +datapacker (1.0.3) UNRELEASED; urgency=medium + + * Trim trailing whitespace. + + -- Debian Janitor <janitor@jelmer.uk> Fri, 18 Oct 2019 04:11:19 +0000 + datapacker (1.0.2) ...
jgoerzen/datapacker
a48f9749275f3004981cc28d5942c6b79b6f969a
bump standards-version
diff --git a/debian/changelog b/debian/changelog index c546106..0d33914 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,51 +1,52 @@ datapacker (1.0.2) unstable; urgency=medium * Ack NMUs. Closes: #840517, #843420, #629774, #549388. + * Bump standards-version. -- John Goerzen <jgoerzen@complete.or...
jgoerzen/datapacker
e81f966a32b324a95bd24b91080b07f5877ccac4
Import NMUs
diff --git a/debian/changelog b/debian/changelog index 9d4196d..88241a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,45 @@ +datapacker (1.0.1+nmu4) unstable; urgency=medium + + * Non-maintainer upload. + * Remove Build-Depends on jade. (Closes: #840517) + * Update Homepage and Vcs-* fields in d/c...
jgoerzen/datapacker
894de03d567887a4133f24f21ddde9692cff154d
Prepping 1.0.1
diff --git a/datapacker.cabal b/datapacker.cabal index d72a987..20bc690 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,38 +1,38 @@ Name: datapacker -Version: 1.0.0 +Version: 1.0.1 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyright ...
jgoerzen/datapacker
a8d0ef6f6da3e6178b2bc8c5e8e9e5f4445eeb3d
Initial implementation of --deep
diff --git a/Actions.hs b/Actions.hs index d80f7da..fd93c8a 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,83 +1,88 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
8763ec66eae5ac594673f5dd416beebc4e39981a
Implemented sort option and working on deep option
diff --git a/Types.hs b/Types.hs index b0d5589..1ceb488 100644 --- a/Types.hs +++ b/Types.hs @@ -1,25 +1,27 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTAB...
jgoerzen/datapacker
7843ed60dd338ae237381ceee8444c692ea60497
Added more modules to Hackage package
diff --git a/datapacker.cabal b/datapacker.cabal index d72a987..7331f8d 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,38 +1,39 @@ Name: datapacker -Version: 1.0.0 +Version: 1.0.0.1 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyrigh...
jgoerzen/datapacker
f59484daa5d5115acbf6169361a039e63a2e318d
Fix category
diff --git a/datapacker.cabal b/datapacker.cabal index 7f73d2e..d72a987 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,38 +1,38 @@ Name: datapacker Version: 1.0.0 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyright (c) 2008 John Go...
jgoerzen/datapacker
9551913d511169c5dd94ad47e37add67ef0180d6
Initial versioning info
diff --git a/datapacker.cabal b/datapacker.cabal index f4cfe9e..7f73d2e 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,38 +1,38 @@ Name: datapacker -Version: 0.5.0 +Version: 1.0.0 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyright ...
jgoerzen/datapacker
6dd719851eb9377d41e12a9d939e6b318391abec
Added INSTALL
diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..5b07cf8 --- /dev/null +++ b/INSTALL @@ -0,0 +1,16 @@ +Sorry, I need to work on this some more... + +PREREQUISITES: + + * GHC 6.8 or above http://www.haskell.org/ghc + +Once you have that, you can just run "make". It will tell you if you +ar...
jgoerzen/datapacker
90911009b05947f1d14f6f9197aa3c3569ea7b6b
Adjusted Scan to new error type of BinPacker stuff
diff --git a/Scan.hs b/Scan.hs index 4867101..2f1943f 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,32 +1,32 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
d9c497434fa3b8b5f1d29bf786d2c7f58784dcca
Various doc updates
diff --git a/datapacker.sgml b/datapacker.sgml index 51f726f..87f46a3 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,531 +1,575 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
f30c5bad7de14693b5d3a803b7d548fba9f0a393
Move binify to MissingH Data.BinPacking
diff --git a/Scan.hs b/Scan.hs index fc7e1a8..4867101 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,75 +1,32 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
84b26c6862985e879a2a0458477306451e917350
First whack at debian/ files
diff --git a/debian/control b/debian/control index c3408b4..6c60f81 100644 --- a/debian/control +++ b/debian/control @@ -1,12 +1,32 @@ Source: datapacker -Section: unknown +Section: utils Priority: extra Maintainer: John Goerzen <jgoerzen@complete.org> -Build-Depends: debhelper (>= 5) -Standards-Version: 3.7.2 +Buil...
jgoerzen/datapacker
7f5f80fc8e001785862f43727b9a97e75a7056be
Added debian/
diff --git a/.gitignore b/.gitignore index 6bd93a4..dc4f52b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,12 @@ *.hi *.ho *.o datapacker.1 dist manpage.links manpage.refs setup *.html *.pdf *.ps - +*~ diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..18647ce --- /dev/null ...
jgoerzen/datapacker
30529c2638e65e2fc322f70863c01ba97b68188e
Clean up cabal
diff --git a/datapacker.cabal b/datapacker.cabal index 88aa0d7..08f5f7c 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,35 +1,38 @@ Name: datapacker Version: 0.5.0 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyright (c) 2008 John Go...
jgoerzen/datapacker
7da22af6a5062c628ddd7c6d88fc46d4c9cb26bb
Tweak .gitignore
diff --git a/.gitignore b/.gitignore index 6994979..6bd93a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,12 @@ *.hi *.ho *.o datapacker.1 dist manpage.links manpage.refs setup +*.html +*.pdf +*.ps +
jgoerzen/datapacker
fc4573beb3167dc2f4cdddb5ee390938db660e8e
Doc tweaks
diff --git a/datapacker.sgml b/datapacker.sgml index ef1826f..51f726f 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,526 +1,531 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
c40be94d3dec229eb70a9e6fb770a36b8cf292f1
Add new exec example
diff --git a/datapacker.sgml b/datapacker.sgml index be4fe1b..ef1826f 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,503 +1,526 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
60554609db3c698c0e9f7cc7f656c71c7a0e548e
Switched to passing args to exec
diff --git a/Actions.hs b/Actions.hs index d92c055..d80f7da 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,89 +1,83 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
ea6d33c6d2ce14e36d5278965dc6440a77edd19f
Slight error message tweak
diff --git a/Actions.hs b/Actions.hs index 7c2dc08..d92c055 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,89 +1,89 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
2a9e5c47ef4e1fd1eab1e193e675aeef608c49b2
Clean up shell
diff --git a/Actions.hs b/Actions.hs index 2653b95..7c2dc08 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,85 +1,89 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
b29a7a31bf7b99adebb4b0df14c4e505e4be6ab1
Implemented exec action
diff --git a/Actions.hs b/Actions.hs index d346970..2653b95 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,63 +1,85 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
6e9ae9147cfbff68e86b9f9316e5c5dbb0ffcc3a
Added .gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6994979 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +*.hi +*.ho +*.o +datapacker.1 +dist +manpage.links +manpage.refs +setup
jgoerzen/datapacker
55600feae4004e4d5dc302aff53fc59e360c159f
Implement Hardlink, Symlink actions and rewrite Print action
diff --git a/Actions.hs b/Actions.hs index db54fc0..d346970 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,41 +1,63 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
e8d920f80da773cefd5b3b303c5822dac000ba4f
Implemented print0
diff --git a/Actions.hs b/Actions.hs index 12da747..db54fc0 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,33 +1,41 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
9a436ddbba268cbf6670239cf1f64527e5e881cc
Implemented printfull action
diff --git a/Actions.hs b/Actions.hs index f07fd85..12da747 100644 --- a/Actions.hs +++ b/Actions.hs @@ -1,25 +1,33 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ME...
jgoerzen/datapacker
ef1c9d6f63c08ca6585e819790072a94485228e2
Implement switchable actions
diff --git a/Actions.hs b/Actions.hs new file mode 100644 index 0000000..f07fd85 --- /dev/null +++ b/Actions.hs @@ -0,0 +1,25 @@ +{- +Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warra...
jgoerzen/datapacker
bd4b204dbcc7631347e73bc4adaf18d1b10de228
Added action parsing
diff --git a/Types.hs b/Types.hs index 3fe50ec..b0d5589 100644 --- a/Types.hs +++ b/Types.hs @@ -1,25 +1,25 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTAB...
jgoerzen/datapacker
93c1d21c75f6b13f0a0200e6b32df166e90138a8
Finish initial manpage
diff --git a/Types.hs b/Types.hs index bec0ba8..3fe50ec 100644 --- a/Types.hs +++ b/Types.hs @@ -1,21 +1,25 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTAB...
jgoerzen/datapacker
4a3147c3fe8748d1659ed24fe56180f1d0dda262
Sort options
diff --git a/datapacker.hs b/datapacker.hs index e605946..d68b4e7 100644 --- a/datapacker.hs +++ b/datapacker.hs @@ -1,134 +1,135 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied w...
jgoerzen/datapacker
78999974f844ce3682ddcf57e03d234163f40ebd
Finished early doc
diff --git a/datapacker.sgml b/datapacker.sgml index 61a6031..18d244a 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,869 +1,344 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
d36ee295c069b057efbfc796a33da61d668e4ac4
More doc work
diff --git a/datapacker.sgml b/datapacker.sgml index eccda58..61a6031 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,627 +1,762 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
8d156bc944933ecc14b316bef7ee8948d06f6dbd
Eliminate some OfflineIMAP stuff
diff --git a/datapacker.sgml b/datapacker.sgml index 5e0dba8..eccda58 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,707 +1,600 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
7f5ebe0da1116d2790ce49f3a137a98786fce2f3
Adding info
diff --git a/datapacker.hs b/datapacker.hs index 570bc81..e605946 100644 --- a/datapacker.hs +++ b/datapacker.hs @@ -1,131 +1,134 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied w...
jgoerzen/datapacker
177287b9a46f72957364fa18dde83301748349c8
Convert &OfflineIMAP; into &datapacker;
diff --git a/datapacker.sgml b/datapacker.sgml index 23f0054..3413633 100644 --- a/datapacker.sgml +++ b/datapacker.sgml @@ -1,803 +1,801 @@ <!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!ENTITY datapacker "<application>datapacker</application>"> ]> <!-- "file:///usr/share/sgml/docbook/dtd/x...
jgoerzen/datapacker
a41883081cf7e76fd965ad075f76dd5f44bad14f
Added doc SGML
diff --git a/datapacker.sgml b/datapacker.sgml new file mode 100644 index 0000000..23f0054 --- /dev/null +++ b/datapacker.sgml @@ -0,0 +1,803 @@ +<!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ + <!ENTITY datapacker "<application>datapacker</application>"> +]> +<!-- "file:///usr/share/sgml/docbook/d...
jgoerzen/datapacker
59f52fe3764c765824dfd2a1a20e3d232a858a0f
Initial add of sgml manual from offlineimap example
diff --git a/Makefile b/Makefile index 72e57fa..e9ccf13 100644 --- a/Makefile +++ b/Makefile @@ -1,29 +1,55 @@ # Copyright (c) 2004-2008 John Goerzen # all: setup # GHC build ./setup configure ./setup build -doc: lib/dfs.html/index.html lib/dfs.pdf lib/dfs.ps lib/dfs.txt - hugsbuild: setup ./setup confi...
jgoerzen/datapacker
4d1bfa524c8f5cf88e3e6a36a8786612a3c7a09b
Implement --binfmt
diff --git a/Types.hs b/Types.hs index 21c105c..bec0ba8 100644 --- a/Types.hs +++ b/Types.hs @@ -1,20 +1,21 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTAB...
jgoerzen/datapacker
c27a930c84a2e1954347fbc4daf4478f27407a61
Fix null input
diff --git a/datapacker.hs b/datapacker.hs index ab3e2b7..36b09dc 100644 --- a/datapacker.hs +++ b/datapacker.hs @@ -1,117 +1,117 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied w...
jgoerzen/datapacker
5310f5dfa46941fb3299927bc8cc82cc51dd81a9
First implementation that can read a file list
diff --git a/Types.hs b/Types.hs index 94655d7..21c105c 100644 --- a/Types.hs +++ b/Types.hs @@ -1,20 +1,20 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTAB...
jgoerzen/datapacker
2c577906f59c051df1b28dcc0ad0feeaa09a073c
Added optimized packing
diff --git a/Scan.hs b/Scan.hs index 3992964..fc7e1a8 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,47 +1,75 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
791855a4c2ff368f5de099004455ce8393eab53d
Code -Wall clean now
diff --git a/Scan.hs b/Scan.hs index 1dfc446..3992964 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,47 +1,47 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
ce793441a8fccb311640746f6a3be3102deef7e6
Added -Werror -Wall
diff --git a/datapacker.cabal b/datapacker.cabal index 375d524..1b1f5c0 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,30 +1,33 @@ Name: datapacker Version: 0.5.0 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyright (c) 2008 John Go...
jgoerzen/datapacker
7f922b8f5133331795fd0b2173dfa5d4a7c74fea
Cleaned up an incomplete pattern
diff --git a/Scan.hs b/Scan.hs index acd5373..1dfc446 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,46 +1,47 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
0d4e3ee6c4e5c780009ad5c09dfd79cc0df8ae90
Made binify_po smarter
diff --git a/Scan.hs b/Scan.hs index d4e8ac8..acd5373 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,44 +1,46 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
18e774ba27bd4857fd13fcbdd62083dc8c11ff56
Documented binify_po better
diff --git a/Scan.hs b/Scan.hs index aafeaf2..d4e8ac8 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,41 +1,44 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
45b102f0e0a9b3ecdc65da11577919c46f8629f3
Working, at least somewhat
diff --git a/datapacker.hs b/datapacker.hs index fadef3c..345e009 100644 --- a/datapacker.hs +++ b/datapacker.hs @@ -1,93 +1,93 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied war...
jgoerzen/datapacker
a5096e91aec120fd5f0b59c34c64bc200ef92704
Simplification
diff --git a/datapacker.hs b/datapacker.hs index 75e1e08..fadef3c 100644 --- a/datapacker.hs +++ b/datapacker.hs @@ -1,95 +1,93 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied war...
jgoerzen/datapacker
d8035ee744befa070ee57004dbf1963fa94107bc
Compilation fixed
diff --git a/datapacker.cabal b/datapacker.cabal index 6012b68..375d524 100644 --- a/datapacker.cabal +++ b/datapacker.cabal @@ -1,29 +1,30 @@ Name: datapacker Version: 0.5.0 License: GPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen Stability: Stable Copyright: Copyright (c) 2008 John Go...
jgoerzen/datapacker
77198ea61f3dcb6c736097d0bc70f7aba54bec86
Compilation fixes
diff --git a/Types.hs b/Types.hs index 9a7197e..94655d7 100644 --- a/Types.hs +++ b/Types.hs @@ -1,19 +1,20 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTAB...
jgoerzen/datapacker
6467b910f51dad2d6a52d41991f2fc93c19341b5
Compilation fixes for Scan.hs
diff --git a/Scan.hs b/Scan.hs index f126e09..aafeaf2 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,41 +1,41 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
b0e2982e7ac5c06a28959f6af20ffb4263edcf7f
Compilation fixes
diff --git a/Scan.hs b/Scan.hs index 2bce5f6..f126e09 100644 --- a/Scan.hs +++ b/Scan.hs @@ -1,39 +1,41 @@ {- Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILIT...
jgoerzen/datapacker
5f96cbc99afd6e3515270ebcaa486556410ce6ce
Compilation fixes
diff --git a/Scan.hs b/Scan.hs new file mode 100644 index 0000000..2bce5f6 --- /dev/null +++ b/Scan.hs @@ -0,0 +1,39 @@ +{- +Copyright (C) 2006-2008 John Goerzen <jgoerzen@complete.org> + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +M...
vanicat/xmms-gtk-rater
631d61212a5732df98e0ff5d7b81608eacc00589
unifying stuff...
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 8ba59c3..64ec886 100755 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,883 +1,903 @@ #!/usr/bin/ruby -# Copyright (c) 2010, 2011, 2012 Rémi Vanicat -# +### Copyright (c) 2010, 2011, 2012 Rémi Vanicat +# # Permission is hereby granted, free of charge, to any per...
vanicat/xmms-gtk-rater
e3efd1e1e91e246b3df1ea3de5a02f8970441a3d
moving the on_disconnect handler
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index e3d0173..8ba59c3 100755 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,611 +1,610 @@ #!/usr/bin/ruby # Copyright (c) 2010, 2011, 2012 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associat...
vanicat/xmms-gtk-rater
3758e0caa07db7559522d2596b9182c4479256cb
Moving from org's literate programming
diff --git a/xmms-gtk-rater.org b/xmms-gtk-rater.org deleted file mode 100644 index 1a31be6..0000000 --- a/xmms-gtk-rater.org +++ /dev/null @@ -1,1105 +0,0 @@ -#+TITLE: Xmms Gtk Rater -#+AUTHOR: Rémi Vanicat <vanicat@debian.org> - -Copyright: (c) 2010, 2011, 2012 Rémi Vanicat - -* About - This is a small gtk client ...
vanicat/xmms-gtk-rater
1702a91dd7a23134bff83a3de8eb2cf983afb4e0
Upgrade to ruby1.9 and more recent org-mode
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 218a614..e3d0173 100755 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,569 +1,568 @@ #!/usr/bin/ruby -# Copyright (c) 2010,2011 Rémi Vanicat +# Copyright (c) 2010, 2011, 2012 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person obtainin...
vanicat/xmms-gtk-rater
8622b019cc06d53edd90fe432f31847a5cbbe6d5
Use a png icon
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 09aabea..218a614 100755 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -44,843 +44,842 @@ module Xmms coll.attributes["value"]=value coll.operands<< self return coll end end end def debug(*arg) puts(*arg) end class XmmsInteract ...
vanicat/xmms-gtk-rater
1abb74939f743f911a1b4469fad3a0418e80e10a
Export with a shebang
diff --git a/xmms-gtk-rater.org b/xmms-gtk-rater.org index 062de2b..de7bebf 100644 --- a/xmms-gtk-rater.org +++ b/xmms-gtk-rater.org @@ -1,559 +1,559 @@ #+TITLE: Xmms Gtk Rater #+AUTHOR: Rémi Vanicat <vanicat@debian.org> Copyright: (c) 2010, 2011 Rémi Vanicat * About This is a small gtk client for xmms2 th...
vanicat/xmms-gtk-rater
5f3e5135dfc3403e56173816b88ae1810a87dad3
Added an icon
diff --git a/xmms-gtk-rater b/xmms-gtk-rater old mode 100644 new mode 100755 index 1d6c5b4..e7087fe --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -46,842 +46,843 @@ module Xmms coll.attributes["value"]=value coll.operands<< self return coll end end end def debug(*arg) puts(*arg) end ...
vanicat/xmms-gtk-rater
0b68bc908b545c777577bd814ec8d0c7f0131e59
Correct the shebang
diff --git a/xmms-gtk-rater b/xmms-gtk-rater old mode 100755 new mode 100644 index a3943db..1d6c5b4 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,792 +1,792 @@ -#!/usr/bin/env ruby +#!/usr/bin/ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is her...
vanicat/xmms-gtk-rater
e1429bb0773c846f0596bd0f7b04ea54407545e2
Render the script executable
diff --git a/xmms-gtk-rater b/xmms-gtk-rater old mode 100644 new mode 100755
vanicat/xmms-gtk-rater
84775790e46fdb1394eceb919f8ea2394a40ba99
Adding menu for reloading
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 26bb263..a3943db 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -156,722 +156,732 @@ class XmmsInteract def add_current_song_watcher(watcher) current_id do |id| song_info(id) do |id, title, artist, album, rating| watcher.current_song_info(i...
vanicat/xmms-gtk-rater
ec7cda689fbd78f8d9a6e736cdfa81ea110717b4
Factoring some functionality of SongListCollection and SongListDuplicate
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index dc823cc..26bb263 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,883 +1,877 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...
vanicat/xmms-gtk-rater
41308e571c5e61331f749bbe52ac875421880e1f
Add reload to SongListCollection
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 17e4e2e..dc823cc 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,873 +1,883 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...
vanicat/xmms-gtk-rater
3c0b789ab68cab50b1415d70d37b7cc846693a55
Better sorting
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 465654d..17e4e2e 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,850 +1,873 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...
vanicat/xmms-gtk-rater
2328e9b67dd5f8b45ffb0910a32c6cfe058e91f4
Set process name
diff --git a/xmms-gtk-rater b/xmms-gtk-rater old mode 100755 new mode 100644 index 1bbe772..465654d --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -335,514 +335,516 @@ class SongList @xi.rate(id, rate) end end def add_to_playlist(path, pl) with_id(path) do |id| @xi.add_to_playlist(id, pl...
vanicat/xmms-gtk-rater
34a6b5213fb5f141ec666631296b1ba581acf20e
Make xmms-gtk-rater executable
diff --git a/xmms-gtk-rater b/xmms-gtk-rater old mode 100644 new mode 100755
vanicat/xmms-gtk-rater
3c3dded0d2df6bb68e815f8bbad431494921354d
Looking for duplicate songs
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 5ae4a53..1bbe772 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,723 +1,848 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...
vanicat/xmms-gtk-rater
43d101a3171d07acea9799c271c9813c024ba985
Use an unused accelerator for "Add to playlist" submenu
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 48693b8..5ae4a53 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -65,659 +65,659 @@ class XmmsInteract def initialize @looking_for_medialib_list = [] @current_song_watcher = [] @views = [] unless connect! puts 'Failed to connect to XMM...
vanicat/xmms-gtk-rater
e87ce50711df439208bcfc244805878f231da64a
Adding to the playlist from the menu
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 31abbc5..48693b8 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,712 +1,723 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...
vanicat/xmms-gtk-rater
86e97ebdc83f4bc00ba54ce9388f416720eb7c07
Factor out handling of the song to change in songslist rate
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index b281926..31abbc5 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,707 +1,712 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...
vanicat/xmms-gtk-rater
15c500c86fcae50f1e3977ad94b54356b67a6afc
Add the playlist menu
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index e3cfbaf..b281926 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -51,629 +51,657 @@ module Xmms end def debug(*arg) puts(*arg) end class XmmsInteract def get(info, attr, default=nil) info[attr].map[0][1] rescue NoMethodError => e default ...
vanicat/xmms-gtk-rater
6400b804d5dd1ec61f5ccb5d673f0a5dce05d5fe
Add functions to have the list of playlist
diff --git a/xmms-gtk-rater b/xmms-gtk-rater index 4773bae..e3cfbaf 100644 --- a/xmms-gtk-rater +++ b/xmms-gtk-rater @@ -1,649 +1,679 @@ #!/usr/bin/env ruby # [[id:febdc89b-bfbc-4782-bf53-8b19ff298cf4][block-2]] # Copyright (c) 2010 Rémi Vanicat # # Permission is hereby granted, free of charge, to any person...