repo string | commit string | message string | diff string |
|---|---|---|---|
briang/MooseX-PrivateSetters | c55122727d1aecd1a552e9a8aa99e7e0884a1010 | Bump version to 0.02 | diff --git a/lib/MooseX/PrivateSetters.pm b/lib/MooseX/PrivateSetters.pm
index a17882d..76be9dc 100644
--- a/lib/MooseX/PrivateSetters.pm
+++ b/lib/MooseX/PrivateSetters.pm
@@ -1,107 +1,107 @@
package MooseX::PrivateSetters;
use strict;
use warnings;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
use Moose 0... |
briang/MooseX-PrivateSetters | f07f160a8d9225425f31423b2bdaea96374266c9 | Code reformatting | diff --git a/lib/MooseX/PrivateSetters/Role/Attribute.pm b/lib/MooseX/PrivateSetters/Role/Attribute.pm
index 62b0512..ef758a6 100644
--- a/lib/MooseX/PrivateSetters/Role/Attribute.pm
+++ b/lib/MooseX/PrivateSetters/Role/Attribute.pm
@@ -1,80 +1,76 @@
package MooseX::PrivateSetters::Role::Attribute;
use strict;
use... |
briang/MooseX-PrivateSetters | 61b04f2d78b40c88aa749e6c2a4f993859feb9ec | Improve documentation | diff --git a/lib/MooseX/PrivateSetters/Role/Attribute.pm b/lib/MooseX/PrivateSetters/Role/Attribute.pm
index 300c5c1..62b0512 100644
--- a/lib/MooseX/PrivateSetters/Role/Attribute.pm
+++ b/lib/MooseX/PrivateSetters/Role/Attribute.pm
@@ -1,76 +1,80 @@
package MooseX::PrivateSetters::Role::Attribute;
use strict;
use... |
briang/MooseX-PrivateSetters | e1bb0237710c1dffbebf326bda78b3a414b50619 | Modernise by using class_metaroles in Moose::Exporter->setup_import_methods | diff --git a/lib/MooseX/PrivateSetters.pm b/lib/MooseX/PrivateSetters.pm
index 5cf4028..a17882d 100644
--- a/lib/MooseX/PrivateSetters.pm
+++ b/lib/MooseX/PrivateSetters.pm
@@ -1,80 +1,107 @@
package MooseX::PrivateSetters;
use strict;
use warnings;
our $VERSION = '0.01';
-use Moose 0.84 ();
+use Moose 0.94 (... |
briang/MooseX-PrivateSetters | f7f0057effc3cbe362e46c6e2cc076b0f443b5cb | Add tests for attributes starting with double underscore | diff --git a/t/basic.t b/t/basic.t
index ed2167b..e68a6d2 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -1,84 +1,96 @@
use strict;
use warnings;
#use FindBin;
#use lib "$FindBin::Bin/../lib";
#use Data::Dump 'pp';
-use Test::More tests => 21;
+use Test::More tests => 23;
{
package Standard;
use Moos... |
briang/MooseX-PrivateSetters | 4aa74bf8b0b65d1dae6b8f9cc628b3705ebda127 | Bump Moose prereq to 0.94, add repository | diff --git a/Build.PL b/Build.PL
index 6b6d49c..68bc550 100644
--- a/Build.PL
+++ b/Build.PL
@@ -1,21 +1,23 @@
use strict;
use warnings;
require 5.00601;
use Module::Build;
-my $builder = Module::Build->new
- ( module_name => 'MooseX::PrivateSetters',
- license => 'perl',
- requ... |
briang/MooseX-PrivateSetters | 7674154b0739bb2b1263426cfba48f1ca7ca5ed5 | add TODO.org | diff --git a/TODO.org b/TODO.org
new file mode 100644
index 0000000..07ae6cb
--- /dev/null
+++ b/TODO.org
@@ -0,0 +1,10 @@
+* Documentation
+*** RATIONALE
+ - sick of writing reader=>'...', writer=>'...'
+*** SEE ALSO
+ - Moose
+ - Similar MooseX extensions
+* Code
+ - Modernise as per SemiAffordanceAccsessor... |
briang/MooseX-PrivateSetters | 8a91d95dc7cdc2335a24ec1d1785200cd2540c2a | add .gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b25c15b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*~
|
briang/MooseX-PrivateSetters | b95922de136411fa0b95daf43d9c260a1f74e7b8 | lib/MooseX/PrivateSetters/Role/Attribute.pm: Add $VERSION | diff --git a/lib/MooseX/PrivateSetters/Role/Attribute.pm b/lib/MooseX/PrivateSetters/Role/Attribute.pm
index 7aeab9e..cf33692 100644
--- a/lib/MooseX/PrivateSetters/Role/Attribute.pm
+++ b/lib/MooseX/PrivateSetters/Role/Attribute.pm
@@ -1,74 +1,76 @@
package MooseX::PrivateSetters::Role::Attribute;
use strict;
use... |
briang/MooseX-PrivateSetters | d85c929e79cf0a99a8b8b1f0408d973427d28c53 | Added an INSTALL file | diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..cc95a06
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,25 @@
+INSTALLATION
+============
+
+This distribution may be installed via one of the following methods:
+
+1 Using Module::Build (distributed with Perl since perl-5.9.4):
+
+ perl Build.PL
+ perl ... |
briang/MooseX-PrivateSetters | 1ec2df557d9a35c8456a34e8e0a9960a1dbcd043 | Remove all references to SemiAffordance::Accessors from lib/MooseX/PrivateSetters.pm | diff --git a/lib/MooseX/PrivateSetters.pm b/lib/MooseX/PrivateSetters.pm
index 631c8f3..5cf4028 100644
--- a/lib/MooseX/PrivateSetters.pm
+++ b/lib/MooseX/PrivateSetters.pm
@@ -1,84 +1,80 @@
package MooseX::PrivateSetters;
use strict;
use warnings;
-our $VERSION = '0.05';
+our $VERSION = '0.01';
use Moose 0.8... |
briang/MooseX-PrivateSetters | 643d9ef05ab5bc851d6054df3a2654d7af9a1419 | Fix Changes | diff --git a/Changes b/Changes
index e7bb9ae..fc91e7c 100644
--- a/Changes
+++ b/Changes
@@ -1,31 +1,5 @@
-0.05 2009-07-15
+0.01 2010-07-15
-- Now requires Moose 0.84 to prevent test failures.
+ Initial release
-
-0.04 2009-07-09
-
-- This module unconditionally deleted the "is" parameter, which meant
-... |
briang/MooseX-PrivateSetters | d153c150e26803dc14869342238d59ce0254f310 | Fix Build.PL | diff --git a/Build.PL b/Build.PL
index ec80cc1..6b6d49c 100644
--- a/Build.PL
+++ b/Build.PL
@@ -1,20 +1,21 @@
use strict;
use warnings;
require 5.00601;
use Module::Build;
my $builder = Module::Build->new
- ( module_name => 'MooseX::SemiAffordanceAccessor',
+ ( module_name => 'MooseX::Pr... |
briang/MooseX-PrivateSetters | 7444a92681d092d2cdffd71a8c1614ad62b7b810 | Fix tests - all tests passing | diff --git a/lib/MooseX/PrivateSetters/Role/Attribute.pm b/lib/MooseX/PrivateSetters/Role/Attribute.pm
index 14505a7..7aeab9e 100644
--- a/lib/MooseX/PrivateSetters/Role/Attribute.pm
+++ b/lib/MooseX/PrivateSetters/Role/Attribute.pm
@@ -1,73 +1,74 @@
package MooseX::PrivateSetters::Role::Attribute;
use strict;
use... |
briang/MooseX-PrivateSetters | 98591d320be6c68e4ae038ec7d2c9f2089948612 | s/SemiAffordanceAccessor/PrivateSetters/g in *.{pm,t} | diff --git a/lib/MooseX/PrivateSetters.pm b/lib/MooseX/PrivateSetters.pm
index 57afd2f..631c8f3 100644
--- a/lib/MooseX/PrivateSetters.pm
+++ b/lib/MooseX/PrivateSetters.pm
@@ -1,84 +1,84 @@
-package MooseX::SemiAffordanceAccessor;
+package MooseX::PrivateSetters;
use strict;
use warnings;
our $VERSION = '0.05';... |
ess/Sanman | d53d18e2c744a8c6b30dc1d70f5c0331dc93ffe5 | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index f3d0cea..fefc82d 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,284 +1,284 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
use Data::Dumper;
require Exporter;
use Au... |
ess/Sanman | 1e8b879b6282648534e72028a67d3b2bbe2e1c0c | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 2a8f0b0..f3d0cea 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,284 +1,284 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
use Data::Dumper;
require Exporter;
use Au... |
ess/Sanman | 926cf3842a9b22ef4e36b3a6647cbebb85ef1aec | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index d5688b6..2a8f0b0 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,284 +1,284 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
use Data::Dumper;
require Exporter;
use Au... |
ess/Sanman | 505b6c40d4f5fe985c1c66f7d247d44bb01d0509 | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 2934497..d5688b6 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,278 +1,284 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
use Data::Dumper;
require Exporter;
use Au... |
ess/Sanman | 766680d5213f541734c420e8ddcf2068754bd4c7 | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index 7f78ead..2881bdb 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,208 +1,210 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | cdb96f4e3b0ec76544f4592fcd0c7c444b019caf | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index f555f6d..2934497 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,274 +1,278 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
+use Data::Dumper;
+
require Exporter;
use Au... |
ess/Sanman | 5275b673ee5f298c62fcab9952e23e8e6bf4721b | Debugging Sanman::Server::lv_info | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 5f87182..f555f6d 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,274 +1,274 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | a7a067dc2bb0399242a772d3d688c05d8dd66160 | Debugging Sanman::LVM::vg_exists | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 0272e7a..5f87182 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,273 +1,274 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 7922023240cfed720ac3520666841a7405a9dedf | Had a flipped return value in Sanman::LVM::lv_exists and Sanman::LVM::vg_exists. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index f0b2f92..0272e7a 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,273 +1,273 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | d5aef5a39428ddce2d84bd112f4a650e45f81612 | vg_info probably shouldn't try to use pv calls. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index 11e2d73..f2ae54e 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,206 +1,206 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | 2f54e13388b12718147ba75053853e9ac0a2c247 | vg_info probably shouldn't try to use pv calls. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index 64ca3c3..11e2d73 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,206 +1,206 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | c34ad6fcc93807af658560ef56d3a65dd902cea5 | Fleshed out the RPC calls for vg_info and lv_info. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index 98f28e5..64ca3c3 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,187 +1,206 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | 20f34004a1e7e42931aefb96576a36ee76b6bef8 | Debugging the pv_info RPC call. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index 6cbc0f2..98f28e5 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,185 +1,187 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | 198b426c6dd72d87733ea1189e743922c029d351 | More stupid LVM typos. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 878eb3c..f0b2f92 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,273 +1,273 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 2742410e44dab2526e9cdd41913620c7207c14d2 | More stupid LVM typos. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 8b8eb39..878eb3c 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,273 +1,273 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 57ce3ba1c1201d3b906a60a69d7fc17039503480 | Added *_info RPC call stubs. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 8398aac..8b8eb39 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,271 +1,273 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 4dfc1b8e2818a93eacf936669ff31504cfce0456 | Attempting to make the get_lvs output somewhat meaningful. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 7912121..8398aac 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,270 +1,271 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | e08346f515d9905c825be4676e224c7ec8dfa526 | Continuing to remove stupid typos from the Server methods, too. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index 0c09cf5..0a68946 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,153 +1,153 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | 885de62204af9e60fceba7e4fc1ca19b9bfdfebb | Continuing to remove stupid typos from the LVM methods. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 52c4159..7912121 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,270 +1,270 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 4e05f40177591e4fd152d799aa16b1e5c3dbd830 | Continuing to remove stupid typos from the LVM methods. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 4b454e7..52c4159 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,270 +1,270 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 796c62619493d6a66f691686c7d6e945cb3e39ba | Continuing to add constraints to the LVM methods. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 0b8095d..4b454e7 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,246 +1,270 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | 6a6d137650382e6b2ea4185a61276de912c03c80 | Breaking for the weekend. | diff --git a/modules/Sanman/lib/Sanman/LVM.pm b/modules/Sanman/lib/Sanman/LVM.pm
index 077318e..0b8095d 100644
--- a/modules/Sanman/lib/Sanman/LVM.pm
+++ b/modules/Sanman/lib/Sanman/LVM.pm
@@ -1,228 +1,246 @@
package Sanman::LVM;
use 5.006;
use strict;
use Sanman;
require Exporter;
use AutoLoader qw(AUTOLOAD)... |
ess/Sanman | e4068122c2b22b7be70d4434c1ac6e94551e9d39 | Added an API call to return valid block devices and altered create_pv to add consistency checks. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index a221fe9..7043b16 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,134 +1,142 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | b4426a6494e8948e939708f859c10ed92a10c2ab | 'result' is not 'results' typo | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index a37b1a8..a221fe9 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,134 +1,134 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | 32618243b3c7fa472a9529a8cad0f0f5fb7ca0d2 | Added the create_lv RPC call. | diff --git a/modules/Sanman/lib/Sanman/Server.pm b/modules/Sanman/lib/Sanman/Server.pm
index d9f6b73..a37b1a8 100644
--- a/modules/Sanman/lib/Sanman/Server.pm
+++ b/modules/Sanman/lib/Sanman/Server.pm
@@ -1,122 +1,134 @@
package Sanman::Server;
use 5.006;
use strict;
use Sanman::LVM;
use Sanman::ISCSI;
use Sanm... |
ess/Sanman | 9ddfad46d4e78d459ef9e2d1e9c8f7b30593afed | Added the read_config class method to Sanman. | diff --git a/modules/Sanman/lib/Sanman.pm b/modules/Sanman/lib/Sanman.pm
index cc7afcf..fd0f017 100644
--- a/modules/Sanman/lib/Sanman.pm
+++ b/modules/Sanman/lib/Sanman.pm
@@ -1,118 +1,127 @@
package Sanman;
use 5.006;
use strict;
+use JSON;
use Sys::Syslog;
use IO::CaptureOutput qw(capture capture_exec);
re... |
benlund/node-beanstalk-client | b154d86119145c308579e79ad97e3e91bf66e374 | tweaked readme | diff --git a/README b/README
index 9789737..7e133d3 100644
--- a/README
+++ b/README
@@ -1,37 +1,39 @@
Beanstalkd Client for Node.js
=============================
Version: 0.2.0
Example:
var client = require('beanstalk_client').Client;
client.connect('127.0.0.1:11300', function(err, conn) {
var job_dat... |
benlund/node-beanstalk-client | b52023a6ae2c86d94bfb3835da0e67c2875fa671 | added not about npm to readme | diff --git a/README b/README
index 397296c..9789737 100644
--- a/README
+++ b/README
@@ -1,31 +1,37 @@
Beanstalkd Client for Node.js
=============================
Version: 0.2.0
Example:
var client = require('beanstalk_client').Client;
client.connect('127.0.0.1:11300', function(err, conn) {
var job_dat... |
benlund/node-beanstalk-client | e58232e7ef0e9ebaf0a6cb28def36387bdb7a602 | added package.json | diff --git a/README b/README
index 640042f..397296c 100644
--- a/README
+++ b/README
@@ -1,31 +1,31 @@
Beanstalkd Client for Node.js
=============================
-Version: 0.2
+Version: 0.2.0
Example:
var client = require('beanstalk_client').Client;
client.connect('127.0.0.1:11300', function(err, conn) {
... |
benlund/node-beanstalk-client | 7b26eeef4bf48bdb0028796b4a3b65b429269cff | added error arg to the calback data | diff --git a/README b/README
index dbf2d27..640042f 100644
--- a/README
+++ b/README
@@ -1,32 +1,31 @@
Beanstalkd Client for Node.js
=============================
-Version: 0.0.1
-
--- Not all commands are yet implemented --
+Version: 0.2
Example:
-var sys = require('sys');
-var bt = require('lib/beanstalk_cli... |
benlund/node-beanstalk-client | fc71fb9db6521259c841411a0bbe59fa17903d6a | added release API call | diff --git a/README b/README
index 057293d..dbf2d27 100644
--- a/README
+++ b/README
@@ -1,31 +1,32 @@
Beanstalkd Client for Node.js
=============================
Version: 0.0.1
-- Not all commands are yet implemented --
Example:
var sys = require('sys');
var bt = require('lib/beanstalk_client');
bt.C... |
benlund/node-beanstalk-client | af7fb0fa0d1574ff72b3ebeee18e911625b343b3 | switched to sys.inherits | diff --git a/lib/beanstalk_client.js b/lib/beanstalk_client.js
index 121ecd3..1933f4f 100644
--- a/lib/beanstalk_client.js
+++ b/lib/beanstalk_client.js
@@ -1,208 +1,209 @@
var events = require('events'),
tcp = require('tcp'),
Promise= require('./promise').Promise;
var sys = require('sys');
var Cli... |
benlund/node-beanstalk-client | 56c0bd251b9fdef45a6ca1b29d09361500df4b01 | added README | diff --git a/README b/README
index e69de29..057293d 100644
--- a/README
+++ b/README
@@ -0,0 +1,31 @@
+Beanstalkd Client for Node.js
+=============================
+
+Version: 0.0.1
+
+-- Not all commands are yet implemented --
+
+Example:
+
+var sys = require('sys');
+var bt = require('lib/beanstalk_client');
+
+bt.Cl... |
benlund/node-beanstalk-client | 866eeac38abe2be32afbfbee7702b0ba756d0073 | version 0.0.1 | diff --git a/lib/beanstalk_client.js b/lib/beanstalk_client.js
new file mode 100644
index 0000000..121ecd3
--- /dev/null
+++ b/lib/beanstalk_client.js
@@ -0,0 +1,208 @@
+var events = require('events'),
+ tcp = require('tcp'),
+ Promise= require('./promise').Promise;
+
+var sys = require('sys');
+
+var Client ... |
markpasc/textmate-emptylines | b0b34cce91fd2893dfa31e17721be0bc528669d1 | Fake the document into reloading if the sed succeeded by changing the last-mod date Look for trailing tabs, not backslashes and t's | diff --git a/Emptylines.h b/Emptylines.h
index 4b749eb..0eabae5 100644
--- a/Emptylines.h
+++ b/Emptylines.h
@@ -1,38 +1,42 @@
//
// Emptylines.h
// Emptylines
//
// Created by mark on 3/25/09.
// Copyright 2009 Six Apart, Ltd.. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@protocol TMPlugInControll... |
markpasc/textmate-emptylines | cd7a3395013eeb90b083a08e136e5c78c5b61bf5 | Use NSTask to run a sed instead of screwing around in memory | diff --git a/Emptylines.h b/Emptylines.h
index e59e2c5..4b749eb 100644
--- a/Emptylines.h
+++ b/Emptylines.h
@@ -1,27 +1,38 @@
//
// Emptylines.h
// Emptylines
//
// Created by mark on 3/25/09.
// Copyright 2009 Six Apart, Ltd.. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@protocol TMPlugInControll... |
markpasc/textmate-emptylines | c7c670d93affb14dd005d93871af5dd6459dedea | Move test document saver to a swizzly category | diff --git a/Emptylines.h b/Emptylines.h
index 943f102..e59e2c5 100644
--- a/Emptylines.h
+++ b/Emptylines.h
@@ -1,23 +1,27 @@
//
// Emptylines.h
// Emptylines
//
// Created by mark on 3/25/09.
// Copyright 2009 Six Apart, Ltd.. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@protocol TMPlugInControll... |
markpasc/textmate-emptylines | 2cb54a19966152812aa3c90a15d2c9c26cda970f | import without products or project files | diff --git a/Emptylines.h b/Emptylines.h
new file mode 100644
index 0000000..943f102
--- /dev/null
+++ b/Emptylines.h
@@ -0,0 +1,23 @@
+//
+// Emptylines.h
+// Emptylines
+//
+// Created by mark on 3/25/09.
+// Copyright 2009 Six Apart, Ltd.. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@protocol TMPlugIn... |
orbitz/glitter | 598afe0cc431ac6fca93e065e4369179fd37aebb | Adding third order markov model (doesn't work) and updated to use the org bounding technique (appears to have no effect) | diff --git a/bin/make.sh b/bin/make.sh
index 2173329..2ff93f1 100755
--- a/bin/make.sh
+++ b/bin/make.sh
@@ -1,27 +1,27 @@
#!/bin/sh
-OCAMLC="ocamlc"
+OCAMLC="ocamlopt"
if [ $OCAMLC = "ocamlc" ]
then
SUFFIX=cmo
LIB_SUFFIX=cma
else
SUFFIX=cmx
LIB_SUFFIX=cmxa
fi
-BASE_OBJECTS="str.$LIB_SUFF... |
orbitz/glitter | 0353cdb04b92b3673da01582d285756fb653d1cd | Version prior to significant optimizations on HMM | diff --git a/bin/make.sh b/bin/make.sh
index 1662db0..2173329 100755
--- a/bin/make.sh
+++ b/bin/make.sh
@@ -1,26 +1,27 @@
#!/bin/sh
OCAMLC="ocamlc"
if [ $OCAMLC = "ocamlc" ]
then
SUFFIX=cmo
LIB_SUFFIX=cma
else
SUFFIX=cmx
LIB_SUFFIX=cmxa
fi
-BASE_OBJECTS="str.$LIB_SUFFIX seq.$SUFFIX lazy... |
orbitz/glitter | 70e655b5cc833ec536a156bd93360e9f191897f7 | Added several single order HMMs + wrapper scripts | diff --git a/bin/make.sh b/bin/make.sh
index 70b38ad..1662db0 100755
--- a/bin/make.sh
+++ b/bin/make.sh
@@ -1,5 +1,26 @@
#!/bin/sh
-OCAMLC=ocamlc
+OCAMLC="ocamlc"
+
+if [ $OCAMLC = "ocamlc" ]
+then
+ SUFFIX=cmo
+ LIB_SUFFIX=cma
+else
+ SUFFIX=cmx
+ LIB_SUFFIX=cmxa
+fi
+
+BASE_OBJECTS="str.$LIB_SUFFIX se... |
orbitz/glitter | 2b6a1f393df0b7fdef1ab142bccb5333f569bcbc | Adding new HMM code (partially broken) | diff --git a/bin/make.sh b/bin/make.sh
index b826e86..70b38ad 100755
--- a/bin/make.sh
+++ b/bin/make.sh
@@ -1,2 +1,5 @@
#!/bin/sh
-for i in *.ml; do ocamlc -pp "camlp4o pa_extend.cmo" -I +camlp4 -g -c $i; done
+
+OCAMLC=ocamlc
+
+for i in *.ml; do $OCAMLC -pp "camlp4o pa_extend.cmo" -I +camlp4 -g -c $i; done
diff --g... |
orbitz/glitter | e6b21143475683dba8f1d4af709bac907d341d6e | Had a line in there that shouldn't have been | diff --git a/lib/test.ml b/lib/test.ml
index 2582f9a..8f74eb6 100644
--- a/lib/test.ml
+++ b/lib/test.ml
@@ -1,88 +1,85 @@
(* type states = Q0 | Q1 | Q2 *)
(* let transitions = [ (Q0, [ (Q1, 1.0) ]) *)
(* ; (Q1, [ (Q1, 0.8); (Q2, 0.15); (Q0, 0.05) ]) *)
(* ; (Q2, [ (Q2, 0.7); (Q1, 0.3) ]) *)
(* ] *)
... |
orbitz/glitter | 664836f066be86def68568b698847eb0536b3199 | Silly scripts that need to be replaced with make files | diff --git a/bin/make.sh b/bin/make.sh
new file mode 100755
index 0000000..b826e86
--- /dev/null
+++ b/bin/make.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+for i in *.ml; do ocamlc -pp "camlp4o pa_extend.cmo" -I +camlp4 -g -c $i; done
diff --git a/bin/run.sh b/bin/run.sh
new file mode 100755
index 0000000..9b08ef0
--- /dev/null
+++... |
orbitz/glitter | 2191d306539f31a780b61436aa273aec5ae65cc0 | Broken, but making progress in the right direction | diff --git a/lib/gene_prediction_2.ml b/lib/gene_prediction_2.ml
index 08b2f41..a3b8cdb 100644
--- a/lib/gene_prediction_2.ml
+++ b/lib/gene_prediction_2.ml
@@ -1,71 +1,73 @@
(* 2 state HMM *)
type coding_state = Q0 | NotGene | Gene
(*
* If the next to read in the fasta file is a header it returns
* Some ((0... |
orbitz/glitter | 51ab51273c2468449870cd0109e90b54d3db57ec | Adding support to make it easier to constructs HMMs | diff --git a/lib/gene_prediction_4.ml b/lib/gene_prediction_4.ml
index 749c273..04c45e4 100644
--- a/lib/gene_prediction_4.ml
+++ b/lib/gene_prediction_4.ml
@@ -1,52 +1,46 @@
(* 4 state hmm *)
type coding_state = Q0 | NotGene | C1 | C2 | C3
(*
* This creates our training. The algorithm here uses
* the tra... |
orbitz/glitter | 1ad99528d38583a8121f731ef36fd7aed13daa3a | Adding new state functionality | diff --git a/lib/fasta.ml b/lib/fasta.ml
index 7f64ede..c62f5b7 100644
--- a/lib/fasta.ml
+++ b/lib/fasta.ml
@@ -1,69 +1,69 @@
(* A fasta sequence has a header and a sequence *)
type fasta = Header of string | Sequence of string
let rec read_fasta_sequence f curdata sin =
if curdata = "" then
match Seq... |
orbitz/glitter | 501a6f37465c088172acfd5e01398d0b2407b1b8 | Fixing fasta support | diff --git a/lib/fasta.ml b/lib/fasta.ml
index e359b51..7f64ede 100644
--- a/lib/fasta.ml
+++ b/lib/fasta.ml
@@ -1,67 +1,69 @@
(* A fasta sequence has a header and a sequence *)
type fasta = Header of string | Sequence of string
let rec read_fasta_sequence f curdata sin =
if curdata = "" then
match Seq... |
orbitz/glitter | 026199539cd6002d413dccd1ce89424e026cc9d0 | Fixed newline issue | diff --git a/lib/fasta.ml b/lib/fasta.ml
index 6de4984..e359b51 100644
--- a/lib/fasta.ml
+++ b/lib/fasta.ml
@@ -1,67 +1,67 @@
(* A fasta sequence has a header and a sequence *)
type fasta = Header of string | Sequence of string
let rec read_fasta_sequence f curdata sin =
if curdata = "" then
match Seq... |
orbitz/glitter | 7e684ff0bc6da8b12313043e0654c6e6306bfad3 | Wrong order | diff --git a/lib/fasta.ml b/lib/fasta.ml
index dac165b..6de4984 100644
--- a/lib/fasta.ml
+++ b/lib/fasta.ml
@@ -1,67 +1,67 @@
(* A fasta sequence has a header and a sequence *)
type fasta = Header of string | Sequence of string
let rec read_fasta_sequence f curdata sin =
if curdata = "" then
match Seq... |
orbitz/glitter | 4854dd52ff06ab56e36c2d14a56da77943ef03f3 | Didn't mean a +1 there | diff --git a/lib/fasta.ml b/lib/fasta.ml
index ce45c4b..dac165b 100644
--- a/lib/fasta.ml
+++ b/lib/fasta.ml
@@ -1,67 +1,67 @@
(* A fasta sequence has a header and a sequence *)
type fasta = Header of string | Sequence of string
let rec read_fasta_sequence f curdata sin =
if curdata = "" then
match Seq... |
orbitz/glitter | 1312cfa6c4a7932fe184657e0850e1f9b587da46 | Adding README | diff --git a/README b/README
new file mode 100644
index 0000000..8645614
--- /dev/null
+++ b/README
@@ -0,0 +1 @@
+GLITTER is an implementation of GLIMMER the popular prokaryotic gene finding tool written in Ocaml
\ No newline at end of file
|
orbitz/glitter | ccb21bae20d510577030fdd75a58999da66c8018 | Adding code | diff --git a/lib/csv.ml b/lib/csv.ml
new file mode 100644
index 0000000..f0065c7
--- /dev/null
+++ b/lib/csv.ml
@@ -0,0 +1,114 @@
+(*
+ * Reads CSV files
+ *)
+
+type quoting = Quote_all | Quote_minimal | Quote_none
+
+type state = { data : string
+ ; pos : int
+ ; stream : string Stream.t
+ }
+
+type di... |
padolsey-archive/prettyprint.js | cbd4e096610cb3b9333a35fc7300dda5995c14b2 | maxArray default value was not checked so always compact arrays if not overridden | diff --git a/prettyprint.js b/prettyprint.js
index 6304c3f..38e2b67 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -71,705 +71,705 @@ var prettyPrint = (function(){
applyCSS: function(el, styles) {
/* Applies CSS to a single element */
for (var prop in styles) {
if (styles.hasOwnProperty(prop)) {
... |
padolsey-archive/prettyprint.js | 14f6cf1a3c90da79b0e6bab34627e996404910d7 | Implemented maxArray without changing util.forEach. Updated readme too. | diff --git a/README.md b/README.md
index 44a3c44..3519933 100644
--- a/README.md
+++ b/README.md
@@ -1,53 +1,59 @@
prettyPrint.js
===
© [James Padolsey](http://james.padolsey.com)
*prettyPrint.js* is an in-browser JavaScript variable dumper, similar in functionality to ColdFusion's cfdump tag.
First, a... |
padolsey-archive/prettyprint.js | 61ea7f9f266c7b14b4cac0a10ecd167c44b4fabd | Small issue: if an array is truncated due to settings.maxArray, the largest index display was actually the array length (one too large). | diff --git a/prettyprint.js b/prettyprint.js
index a24cd1b..f456a90 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,735 +1,735 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
VERSION 1.02.1
UPDATED 07-14-2009
CONTRIBUTORS
David Waller
*/
var prettyPrint = (function(){
/* Thes... |
padolsey-archive/prettyprint.js | d600ea99592ac27277797753c3d77d1013b27ac9 | Adding a setting "maxArray" that allows one to limit the display length of large arrays. | diff --git a/prettyprint.js b/prettyprint.js
index e8744d6..a24cd1b 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,730 +1,738 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
VERSION 1.02.1
UPDATED 07-14-2009
CONTRIBUTORS
David Waller
*/
var prettyPrint = (function(){
/* Thes... |
padolsey-archive/prettyprint.js | 36668ddf39d7f0df96384dc0498a24dc0abf3d5b | Per email from James Padolsey that I received on 2011/04/30 at 5:33AM, prettyprint.js is licensed under the 2 clause BSD license. | diff --git a/prettyprint.js b/prettyprint.js
index e8744d6..194f439 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,730 +1,760 @@
/*
+Copyright (c) 2009 James Padolsey. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the foll... |
padolsey-archive/prettyprint.js | 8b69a8a516780f1ad355bec6ca6aee5c7143d3c3 | Version number correction + adding David Walker as contributor | diff --git a/prettyprint.js b/prettyprint.js
index 4a44067..e8744d6 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,518 +1,518 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
- VERSION 1.02.x
+ VERSION 1.02.1
UPDATED 07-14-2009
-
- (hacked by David Waller to incorporate support for jQuery objects)
+... |
padolsey-archive/prettyprint.js | 768249e400dacec31d5e3bf8d545dfae709c66a3 | added array-like treatment of jQuery objects | diff --git a/prettyprint.js b/prettyprint.js
index 5b8a6be..4a44067 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,714 +1,730 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
- VERSION 1.02
- UPDATED 07-06-2009
+ VERSION 1.02.x
+ UPDATED 07-14-2009
+
+ (hacked by David Waller to incorporate support fo... |
padolsey-archive/prettyprint.js | e27783e56f7e0b05048b4d6d6e0ac1590cfe0480 | Added td_hover style option + util.applyCSS | diff --git a/prettyprint.js b/prettyprint.js
index 1423578..5b8a6be 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,712 +1,714 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
- VERSION 1.01
- UPDATED 06-06-2009
+ VERSION 1.02
+ UPDATED 07-06-2009
*/
var prettyPrint = (function(){
/* The... |
padolsey-archive/prettyprint.js | cb7874eba4346455743e741e718dd8320fa055c6 | Fixing function aspect ( for e.g. 'function() 1' ) | diff --git a/prettyprint.js b/prettyprint.js
index e84cf3b..1423578 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -51,662 +51,662 @@ var prettyPrint = (function(){
/* Creates new <tr> */
cellType = cellType || 'td';
/* colSpan is calculated by len... |
padolsey-archive/prettyprint.js | a68366ff627ad4e4c38c59f041c321108982e06f | damn you JSLINT! :D | diff --git a/prettyprint.js b/prettyprint.js
index cd049a7..e84cf3b 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,675 +1,675 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
VERSION 1.01
UPDATED 06-06-2009
*/
var prettyPrint = (function(){
/* These "util" functions are not part of ... |
padolsey-archive/prettyprint.js | e3c4a5a5d167bfe98052838331958ea3d1b259fe | New comments + fixed <2 Chrome issue (cnvs.toDataURL) | diff --git a/prettyprint.js b/prettyprint.js
index c7e5050..cd049a7 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,712 +1,712 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
VERSION 1.01
UPDATED 06-06-2009
*/
var prettyPrint = (function(){
/* These "util" functions are not part of ... |
padolsey-archive/prettyprint.js | f83d3b0f892f107e30eff94d8ebd16d1efbd6bf1 | Better comments + fixed canvas.toDataURL issues (i think...) | diff --git a/prettyprint.js b/prettyprint.js
index 37fb8f4..c7e5050 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,705 +1,712 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
VERSION 1.01
UPDATED 06-06-2009
*/
var prettyPrint = (function(){
/* These "util" functions are not part of ... |
padolsey-archive/prettyprint.js | 1220ac5d12533c435fe8ede1da918e2527fa8a89 | Improved util,merge (it now recurses) | diff --git a/prettyprint.js b/prettyprint.js
index 30db4a7..37fb8f4 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,687 +1,705 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
VERSION 1.01
- UPDATED 05-06-2009
+ UPDATED 06-06-2009
*/
var prettyPrint = (function(){
/* These "util" funct... |
padolsey-archive/prettyprint.js | 6a2e2526a79aa4d5ef80c49ccbd315a60b67568a | Improving comments a bit | diff --git a/prettyprint.js b/prettyprint.js
index d209b3c..30db4a7 100644
--- a/prettyprint.js
+++ b/prettyprint.js
@@ -1,671 +1,687 @@
/*
AUTHOR James Padolsey (http://james.padolsey.com)
- VERSION 1.0
+ VERSION 1.01
UPDATED 05-06-2009
*/
var prettyPrint = (function(){
/* These "util" functions ar... |
padolsey-archive/prettyprint.js | ed94a997925c6bf269b780712c17fd27cf284886 | Removing redundancy | diff --git a/demo.html b/demo.html
index 6263e64..d33587c 100644
--- a/demo.html
+++ b/demo.html
@@ -1,63 +1,63 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PrettyPrint</title>
... |
padolsey-archive/prettyprint.js | 103b4028ecae0db78428f529a9c9fbcf7e226b77 | Must please JSlint | diff --git a/demo.html b/demo.html
index d33587c..6263e64 100644
--- a/demo.html
+++ b/demo.html
@@ -1,63 +1,63 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PrettyPrint</title>
... |
antimatter15/fluidizer | ded96d9537ab76dd2b83301878b1455109aa1123 | changed from welfarehost.com to chemicalservers.com | diff --git a/bookmarklet.js b/bookmarklet.js
index 937a94c..5c125d7 100644
--- a/bookmarklet.js
+++ b/bookmarklet.js
@@ -1 +1 @@
-javascript:(function(){function k(a){return(a||"").replace(/^\s+|\s+$/g,"")}function u(a,g){var b=new XMLHttpRequest;b.open("GET","http://anti15.welfarehost.com/cssproxy.php?cssurl="+encodeU... |
antimatter15/fluidizer | 7a7610b268d433041a4046602405c79948053a5d | Added a readme | diff --git a/README.md b/README.md
index e69de29..df605b9 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,14 @@
+So. What is fluidizer?
+
+Basically, I felt fixed-width layouts were really wasteful. With the advent of really large monitors, I don't consider mine large at all, but my left monitor is 1600px wide. Why i... |
antimatter15/fluidizer | 778a99c7d5455b1e30a5316a60921ea8908e817a | so this is the initial commit | diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e69de29
diff --git a/fixedwidth.js b/fixedwidth.js
new file mode 100644
index 0000000..16edf11
--- /dev/null
+++ b/fixedwidth.js
@@ -0,0 +1,558 @@
+var sheet, rule, width, elements, element;
+for(var sheets = document.styleSheets, sheetx = sheets.le... |
astashov/solutions_grid | 605af5e2fdfcc747b65d79ac364732a3847aa3d6 | Removed old specs | diff --git a/spec/models/grid_spec.rb b/spec/models/grid_spec.rb
index 0b521b9..ec8710e 100644
--- a/spec/models/grid_spec.rb
+++ b/spec/models/grid_spec.rb
@@ -1,340 +1,340 @@
require File.dirname(__FILE__) + '/../spec_helper'
describe Grid do
before do
@category = mock_model(CategoryExample, :name => ... |
astashov/solutions_grid | 91f0aa8ff5c133da048a66fd8763ab9ff6865d42 | Added Sphinx support | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a30965e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.swp
+spec/debug.log
diff --git a/lib/solutions_grid/controllers/grid_controller.rb b/lib/solutions_grid/controllers/grid_controller.rb
index 9b53fc5..36b3dbc 100644
--- a/lib/solutions_grid... |
astashov/solutions_grid | 0919952af7376139618c43500ca46b39b7d2ae88 | Fixed initialization for Rails > 2.1 | diff --git a/init.rb b/init.rb
index d1bf4b3..c58af76 100644
--- a/init.rb
+++ b/init.rb
@@ -1,7 +1,7 @@
# Enable our grid_controller
controller_path = RAILS_ROOT + '/vendor/plugins/solutions_grid/lib/solutions_grid/controllers'
$LOAD_PATH << controller_path
-Dependencies.load_paths << controller_path
+ActiveSupport... |
astashov/solutions_grid | 237f0b417214046835bbd663532b7543a5daa9fa | Added support of many filters (they will be combined by 'AND'). Added support of strict ( = 'value') or match ( LIKE '%value%') filtering. Added possibility to set table and column to filter by table_name.column (with dot), it will avoid to add table_name to :includes, you should add this table manually. Added possibil... | diff --git a/lib/solutions_grid/controllers/grid_controller.rb b/lib/solutions_grid/controllers/grid_controller.rb
index 3077fa2..9b53fc5 100644
--- a/lib/solutions_grid/controllers/grid_controller.rb
+++ b/lib/solutions_grid/controllers/grid_controller.rb
@@ -1,83 +1,85 @@
class GridController < ApplicationController... |
astashov/solutions_grid | c9aec199d2d51db99e42ba5cf8c58a05d194861f | Added escaping to output values of grid | diff --git a/lib/solutions_grid/helpers/grid_helper.rb b/lib/solutions_grid/helpers/grid_helper.rb
index b4c043a..d1eab74 100644
--- a/lib/solutions_grid/helpers/grid_helper.rb
+++ b/lib/solutions_grid/helpers/grid_helper.rb
@@ -1,133 +1,133 @@
module SolutionsGrid
module GridHelper
# This helper shows g... |
astashov/solutions_grid | a100bf0478e24b835e0506504706dab262bd41fd | Fixed README. Added destroying of session[:page][grid_name] while filtering %grid_name%. | diff --git a/README b/README
index 8f52005..1a4468b 100644
--- a/README
+++ b/README
@@ -1,111 +1,115 @@
== Description
This is Ruby On Rails plugin, implementing AJAXed grid with sorting, filtering and
paginating (with help of will_paginate plugin).
== Features
* AJAXed Sorting and Filtering (works only... |
astashov/solutions_grid | 5d2ee354dd16fdfb8799338b8b077335d45819e8 | Fixed pagination - added grid name to params | diff --git a/lib/solutions_grid/helpers/grid_helper.rb b/lib/solutions_grid/helpers/grid_helper.rb
index f900fed..b4c043a 100644
--- a/lib/solutions_grid/helpers/grid_helper.rb
+++ b/lib/solutions_grid/helpers/grid_helper.rb
@@ -1,132 +1,133 @@
module SolutionsGrid
module GridHelper
# This helper shows g... |
astashov/solutions_grid | ab905811f925aee0c4f928304c8d275f4d27dd9e | Removed old code from grid_helper | diff --git a/lib/solutions_grid/helpers/grid_helper.rb b/lib/solutions_grid/helpers/grid_helper.rb
index d6882e8..f900fed 100644
--- a/lib/solutions_grid/helpers/grid_helper.rb
+++ b/lib/solutions_grid/helpers/grid_helper.rb
@@ -1,151 +1,132 @@
module SolutionsGrid
module GridHelper
# This helper shows g... |
astashov/solutions_grid | 72c1f1d1a170cd7e3ba39e130dd7ebefb781c3b0 | Fixed README | diff --git a/README b/README
index 5c6edf8..8f52005 100644
--- a/README
+++ b/README
@@ -1,111 +1,111 @@
== Description
This is Ruby On Rails plugin, implementing AJAXed grid with sorting, filtering and
paginating (with help of will_paginate plugin).
== Features
* AJAXed Sorting and Filtering (works only... |
astashov/solutions_grid | 59cfc6087e86c220713358809c673496cf950111 | Added LICENSE | diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..fe97a2f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+== MIT License
+
+Copyright (c) 2008 iVillage Inc (http://www.ivillage.com/).
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated docume... |
astashov/solutions_grid | 1c78dda00c52b2aa751a20f44f203a06be29700c | Wrote documentation to the plugin | diff --git a/README b/README
index 8ea319e..5c6edf8 100644
--- a/README
+++ b/README
@@ -1,13 +1,111 @@
-SolutionsGrid
-=============
+== Description
-Introduction goes here.
+This is Ruby On Rails plugin, implementing AJAXed grid with sorting, filtering and
+paginating (with help of will_paginate plugin).
-Exam... |
astashov/solutions_grid | 1ebabc34730fadf24e0e1c939e10541e7b50af28 | Added /files - examples of configs for the plugin | diff --git a/files/app/attributes/actions.rb b/files/app/attributes/actions.rb
new file mode 100644
index 0000000..606b840
--- /dev/null
+++ b/files/app/attributes/actions.rb
@@ -0,0 +1,36 @@
+module SolutionsGrid::Actions
+
+ def action_edit(record = nil)
+ if record
+ url = generate_url(record.class, "edit",... |
astashov/solutions_grid | 9b22e28b0f3b0c4074aa16c45ab11a0a0e4d0c1a | Added possibility to use url_for() and h() in user-defined columns | diff --git a/lib/solutions_grid/column/column.rb b/lib/solutions_grid/column/column.rb
index 5208ed4..6992f0c 100644
--- a/lib/solutions_grid/column/column.rb
+++ b/lib/solutions_grid/column/column.rb
@@ -1,110 +1,114 @@
require "solutions_grid/helpers/grid_helper.rb"
class SolutionsGrid::Column
- attr_reader ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.