repo
string
commit
string
message
string
diff
string
rjbs/Data-Hive
689b72cfa930e212dac3a804f4c5a1aedf739754
move Hash to Hash::Nested
diff --git a/lib/Data/Hive/Store/Hash.pm b/lib/Data/Hive/Store/Hash.pm index b6ae420..40137bd 100644 --- a/lib/Data/Hive/Store/Hash.pm +++ b/lib/Data/Hive/Store/Hash.pm @@ -1,233 +1,130 @@ use strict; use warnings; package Data::Hive::Store::Hash; -# ABSTRACT: store a hive in nested hashrefs +# ABSTRACT: store a hiv...
rjbs/Data-Hive
bebe8eda5b908249872e1eeb71c88b8ec353d06a
split out pathpacker for re-use elsewhere
diff --git a/lib/Data/Hive/PathPacker/Basic.pm b/lib/Data/Hive/PathPacker/Basic.pm new file mode 100644 index 0000000..58165aa --- /dev/null +++ b/lib/Data/Hive/PathPacker/Basic.pm @@ -0,0 +1,75 @@ +use strict; +use warnings; +package Data::Hive::PathPacker::Basic; + +=begin :list + += escape and unescape + +These code...
rjbs/Data-Hive
73d03d171b5d6d8c1e548c2b09d8e7161ef3a791
clean up code and docs for Param
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index b167219..26f3fdb 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,207 +1,207 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive =head1 DESC...
rjbs/Data-Hive
5f59d31b19649341feae7e537ccf8a47609d66fa
eliminate need for URI::escape, add docs
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index c2cf0b8..b167219 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,206 +1,207 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive -use URI::Es...
rjbs/Data-Hive
a4084866f7e7b72630a6e4784e6fac03f6b983af
big overhaul to args to Param
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index 611aada..c2cf0b8 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,162 +1,206 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive use URI::Es...
rjbs/Data-Hive
594c1f6c427e4857d082ad42f9f440018508b494
make ->exists in Param more universal
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index 5af4579..611aada 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,154 +1,162 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive use URI::Es...
rjbs/Data-Hive
50fe1c609b4daf5001cfefeca1ca887574cf010b
tweak Param->new prepping to fix it
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index 59bf05e..5af4579 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,150 +1,154 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive use URI::Es...
rjbs/Data-Hive
511d5492a1e100bbbec7b76b17b7b12ac36a03a8
fix a bug in ->EXISTS on intermediate empty hives
diff --git a/lib/Data/Hive/Store/Hash.pm b/lib/Data/Hive/Store/Hash.pm index fb29ae4..b6ae420 100644 --- a/lib/Data/Hive/Store/Hash.pm +++ b/lib/Data/Hive/Store/Hash.pm @@ -1,232 +1,233 @@ use strict; use warnings; package Data::Hive::Store::Hash; # ABSTRACT: store a hive in nested hashrefs =head1 DESCRIPTION ...
rjbs/Data-Hive
e92fdcd37a3fcee53c39e9271b953543f79a800b
better Data::Hive::Test tests
diff --git a/lib/Data/Hive/Test.pm b/lib/Data/Hive/Test.pm index 84cb389..347acb9 100644 --- a/lib/Data/Hive/Test.pm +++ b/lib/Data/Hive/Test.pm @@ -1,127 +1,168 @@ use strict; use warnings; package Data::Hive::Test; # ABSTRACT: a bundle of tests for Data::Hive stores use Data::Hive; use Test::More 0.94; # su...
rjbs/Data-Hive
c4d95e58f3ee02b52f47534d076dfec34a3e84be
document the deprecation of GETSTR, GETNUM, and overload
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index 6f521f9..d6edb7b 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,371 +1,373 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
770d3ab284304c1bb5f45448d6aee2de0ecaa430
document test library
diff --git a/lib/Data/Hive/Test.pm b/lib/Data/Hive/Test.pm index 3c5cac1..84cb389 100644 --- a/lib/Data/Hive/Test.pm +++ b/lib/Data/Hive/Test.pm @@ -1,90 +1,127 @@ use strict; use warnings; package Data::Hive::Test; # ABSTRACT: a bundle of tests for Data::Hive stores -use Test::More; +use Data::Hive; + +use Test:...
rjbs/Data-Hive
6c3e7b43369dabf4313897f1db3287d650e74611
refactor the default tests into a reusable library
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index ad4ac52..6f521f9 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,362 +1,371 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
14cb80fdf08252bb558f0068ffe06754b3972f8f
improving test coverage and layout
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index 01d0337..ad4ac52 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,360 +1,362 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
fd80efa009287d2a667891bfed2cdadd3fed0801
fix typo in pod
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index 060075c..01d0337 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,360 +1,360 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
6f2f87bc865e880dc5e3f2bfa1a8791e81d64f27
v1.000
diff --git a/Changes b/Changes index bf97b31..b9f40e8 100644 --- a/Changes +++ b/Changes @@ -1,37 +1,45 @@ Revision history for Data-Hive {{$NEXT}} +1.000 2010-08-27 21:48:58 America/New_York + significant documentation overhaul + + add the ->KEYS method to Data::Hive and the core stores + +...
rjbs/Data-Hive
b59797ee900df3e813b343335f22edd1f1ac1593
reorganize docs a bit more
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index baa25eb..060075c 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,338 +1,360 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
df220172e0a494b72796736dcb09362f341cadd9
keys implementation for Hash
diff --git a/lib/Data/Hive/Store/Hash.pm b/lib/Data/Hive/Store/Hash.pm index aa0c7b6..634faa0 100644 --- a/lib/Data/Hive/Store/Hash.pm +++ b/lib/Data/Hive/Store/Hash.pm @@ -1,247 +1,265 @@ use strict; use warnings; package Data::Hive::Store::Hash; # ABSTRACT: store a hive in nested hashrefs =head1 DESCRIPTION ...
rjbs/Data-Hive
2f9fb6afcae8b49edf9ceb9e72389a87f8e863a7
lousy-but-working first pass at keys for Param
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index a22fec9..41a1314 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,158 +1,177 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive +use URI::Es...
rjbs/Data-Hive
4ae2786b7315229ccfc4d867785d70815c86702d
start to add keys support to Param
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index 21dfda9..a22fec9 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,145 +1,158 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive =method new...
rjbs/Data-Hive
7df9d6c6ab43d466a6880d649ef6e1daf7243234
cleaning up the Params tests
diff --git a/lib/Data/Hive/Store/Param.pm b/lib/Data/Hive/Store/Param.pm index 190cee8..21dfda9 100644 --- a/lib/Data/Hive/Store/Param.pm +++ b/lib/Data/Hive/Store/Param.pm @@ -1,144 +1,145 @@ use strict; use warnings; package Data::Hive::Store::Param; # ABSTRACT: CGI::param-like store for Data::Hive =method new...
rjbs/Data-Hive
33b6d1cd85241fd44884f694de5e58c843717aa6
start adding the much-needed KEYS method
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index b55c7e1..baa25eb 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,330 +1,338 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
360bd617879429691cd3f25d72ecd9c75628b680
renaming ITEM to HIVE makes it clearer
diff --git a/lib/Data/Hive.pm b/lib/Data/Hive.pm index 8f2f836..b55c7e1 100644 --- a/lib/Data/Hive.pm +++ b/lib/Data/Hive.pm @@ -1,323 +1,330 @@ use strict; use warnings; package Data::Hive; # ABSTRACT: convenient access to hierarchical data use Carp (); =head1 SYNOPSIS use Data::Hive; my $hive = Da...
rjbs/Data-Hive
9936375347f94e40c071aa285a9e6f3d6bfc0653
warning about the vicissitudes of the hash format
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5a462c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +Data-Hive-* +.build diff --git a/Changes b/Changes new file mode 100644 index 0000000..bf97b31 --- /dev/null +++ b/Changes @@ -0,0 +1,37 @@ +Revision history for Data-Hive + +{{$NEXT}} + +0.0...
jdcampbell/classfiles
beef0777af5f0559ebd121b3aa444d8532f2e466
changed
diff --git a/Document.rtf b/Document.rtf index 76d4072..7fea4ab 100644 Binary files a/Document.rtf and b/Document.rtf differ
jdcampbell/classfiles
8de305f19b761fe002274c22cb904572934121be
Class Files 2-4-09 Josh Campbell
diff --git a/Block Vs. Inline.odt b/Block Vs. Inline.odt new file mode 100644 index 0000000..3d79f5f Binary files /dev/null and b/Block Vs. Inline.odt differ diff --git a/CSS and Microformat.docx b/CSS and Microformat.docx new file mode 100644 index 0000000..abef133 Binary files /dev/null and b/CSS and Microformat.docx...
richardc/perl-mail-thread-chronological
dfba0aac86b9d969c6acb43679bde08e4ebd3a69
fix horizontal stretching
diff --git a/Changes b/Changes index b257937..4a25288 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,8 @@ +1.22 Saturday, 7th June 2003 + Fixed case for orphaned messages. + Fixed small glitch in horizontal stretching logic + Killed a 5.6ism that had crept in + 1.21 Friday, 6th June 2003 First release (pulled out fro...
richardc/perl-mail-thread-chronological
cca029d335dc9356a2d668c5d376a86a419314c9
I guess this is a release
diff --git a/Changes b/Changes new file mode 100644 index 0000000..b257937 --- /dev/null +++ b/Changes @@ -0,0 +1,3 @@ +1.21 Friday, 6th June 2003 + First release (pulled out from Mariachis svn repository as the + Mariachi code was starting to get very large) diff --git a/MANIFEST b/MANIFEST index c393053..40a30ca 1006...
richardc/perl-mail-thread-chronological
bf8dd8f1e5ff0bce2d408f5dd8970b793f4811ff
grand rename
diff --git a/Build.PL b/Build.PL index b5ccff5..9e39bb6 100644 --- a/Build.PL +++ b/Build.PL @@ -1,18 +1,18 @@ use strict; use Module::Build; Module::Build - ->new( module_name => "Mail::Thread::Lurker", + ->new( module_name => "Mail::Thread::Chronological", license => 'perl', requires ...
richardc/perl-mail-thread-chronological
e7d9316c5b9724e163f47fbbeeb1b82813e85e1c
rename
diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..b5ccff5 --- /dev/null +++ b/Build.PL @@ -0,0 +1,18 @@ +use strict; +use Module::Build; + +Module::Build + ->new( module_name => "Mail::Thread::Lurker", + license => 'perl', + requires => { + 'Mail::Thread' => 0, + ...
mccolin/axtags
67179c95ee8f9d72c1423ff7d77dee5cb963079f
some depth to README; tweak version file inclusion in gemspec
diff --git a/README.rdoc b/README.rdoc index 92312b4..4144fc9 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,9 +1,73 @@ += Ax Tags -== Ax Tags +A flexible, extensible custom tag and template-parsing framework built around the +{Radius templating framework}[https://github.com/jlong/radius]. A lighter-weight +alterna...
mccolin/axtags
34b7202754f5ddc88b642de5b3d5df7780eaa918
stub out a spec
diff --git a/lib/axtags.rb b/lib/axtags.rb index 8694b48..73f1022 100644 --- a/lib/axtags.rb +++ b/lib/axtags.rb @@ -1,19 +1,19 @@ # AWEXOME LABS # AxTags # # A flexible, extensible custom tag and template framework with safe execution of user # submitting templating. require "radius" -require "axtags/ax_cont...
mccolin/axtags
a9ebcbf377543c8434b9f5f213ab465068073205
gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9c888f --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +# rcov generated +coverage +coverage.data + +# rdoc generated +rdoc + +# yard generated +doc +.yardoc + +# bundler +.bundle + +# jeweler generated +pkg + +# Have editor/IDE/OS specific files...
mccolin/axtags
de11b0bb712f4f8a3cd0e6652ec7186e726cc588
more gem-ification
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..0522441 --- /dev/null +++ b/Gemfile @@ -0,0 +1,17 @@ +# AWEXOME LABS AX TAGS +# Gemfile + +source "http://rubygems.org" + +# Runtime dependencies: + +# The gem builds a different API to Radius: +gem "radius", "~> 0.7.3" + +# Development dependencies: +g...
mccolin/axtags
4f88443b62c6c65f9f82dd1cdf15aa5826f4bf7c
Version bump to 0.0.0
diff --git a/README b/README.rdoc similarity index 100% rename from README rename to README.rdoc diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..bd52db8 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.0 \ No newline at end of file
fiorix/nitgen-bsp
8fa24c622719470c526869757443e9da5e912ec4
Fixed typo
diff --git a/README.rst b/README.rst index 4da2f6c..e63442d 100644 --- a/README.rst +++ b/README.rst @@ -1,52 +1,52 @@ ========= NitgenBSP ========= :Info: See `github <http://github.com/fiorix/nitgen-bsp>`_ for the latest source. :Author: Alexandre Fiori <fiorix@gmail.com> About ===== -NitgenBSP is a Python...
fiorix/nitgen-bsp
75ec23beba27cc5cb67412ce1ea53e2006a06368
added search engine example
diff --git a/examples/search_engine.py b/examples/search_engine.py new file mode 100755 index 0000000..779e51a --- /dev/null +++ b/examples/search_engine.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# coding: utf-8 + +import os +import time +import NitgenBSP + +if __name__ == "__main__": + assert os.getuid() == 0, "p...
fiorix/nitgen-bsp
9f3c6ec578f7f741632d0ce5ffe1c0e2ec3a9e85
added search engine
diff --git a/NitgenBSP/__init__.py b/NitgenBSP/__init__.py index 724266b..86d30c3 100644 --- a/NitgenBSP/__init__.py +++ b/NitgenBSP/__init__.py @@ -1,129 +1,206 @@ #!/usr/bin/env python # coding: utf-8 +import types from PIL import Image from NitgenBSP import _bsp_core +from NitgenBSP import _bsp_search """Ni...
fiorix/nitgen-bsp
f3f9ae3f94628a11bac4b00e03f1dd983d3b599b
nitgen search engine api
diff --git a/NitgenBSP/bsp_search.c b/NitgenBSP/bsp_search.c new file mode 100644 index 0000000..903f7b1 --- /dev/null +++ b/NitgenBSP/bsp_search.c @@ -0,0 +1,176 @@ +#include <string.h> +#include <Python.h> +#include <NBioAPI.h> + +static PyObject *search_initialize(PyObject *self, PyObject *args) +{ + NBioAPI_RETU...
fiorix/nitgen-bsp
6193d532522ab0753a5250aa0bd01a3791bfa7da
added example
diff --git a/examples/auto_verify.py b/examples/auto_verify.py new file mode 100755 index 0000000..d58430a --- /dev/null +++ b/examples/auto_verify.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# coding: utf-8 + +import os +import NitgenBSP + +if __name__ == "__main__": + assert os.getuid() == 0, "please run as root" ...
fiorix/nitgen-bsp
0516777d0ad37215c74f27ca34ed2507288675b4
new features, organization...
diff --git a/NitgenBSP/__init__.py b/NitgenBSP/__init__.py index 8b4a6b2..724266b 100644 --- a/NitgenBSP/__init__.py +++ b/NitgenBSP/__init__.py @@ -1,92 +1,129 @@ #!/usr/bin/env python # coding: utf-8 from PIL import Image -from NitgenBSP import _bsp_module +from NitgenBSP import _bsp_core """Nitgen fingerprin...
fiorix/nitgen-bsp
a372b3f0b692bb7becb59c9c937184fb1c06c7f9
added support for 'user data'
diff --git a/TODO b/TODO index 075139d..af41d65 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,2 @@ support multiple devices -support for adding user data in FIR add support for nitgen's search engine
fiorix/nitgen-bsp
d37d90550d48a718f449e99f3b8ae524ea1cf13c
added documentation
diff --git a/BUGS b/BUGS new file mode 100644 index 0000000..23a2142 --- /dev/null +++ b/BUGS @@ -0,0 +1 @@ +allow non-root users to communicate (actually depends on /dev/ permissions) diff --git a/NitgenBSP/__init__.py b/NitgenBSP/__init__.py index 090f386..8b4a6b2 100644 --- a/NitgenBSP/__init__.py +++ b/NitgenBSP/__...
fiorix/nitgen-bsp
fc93f59f5ea1d99fef76eb8c9f7a60a9164f6569
removed unused variable
diff --git a/NitgenBSP/bsp_module.c b/NitgenBSP/bsp_module.c index b3fcfa9..b5a6777 100644 --- a/NitgenBSP/bsp_module.c +++ b/NitgenBSP/bsp_module.c @@ -1,185 +1,179 @@ #include <string.h> #include <Python.h> #include <NBioAPI.h> struct capture_data { int image_width; int image_height; int buffer_s...
fiorix/nitgen-bsp
7f73c98caea08a77dee0e53b4c68d0108e423fad
added examples
diff --git a/examples/save_image.py b/examples/save_image.py new file mode 100755 index 0000000..d12eae9 --- /dev/null +++ b/examples/save_image.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# coding: utf-8 + +import os +import NitgenBSP + +if __name__ == "__main__": + assert os.getuid() == 0, "please run as root" + +...
fiorix/nitgen-bsp
b2e49dc485cc557b9e9ab0c8a13f9625c8a4eaa9
renamed to NitgenBSP
diff --git a/NitgenBSP/__init__.py b/NitgenBSP/__init__.py new file mode 100644 index 0000000..090f386 --- /dev/null +++ b/NitgenBSP/__init__.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python +# coding: utf-8 + +from PIL import Image +from NitgenBSP import _bsp_module + +class FingerText(str): + pass + +class Finger(object...
fiorix/nitgen-bsp
91a038c8e579593c7a2a78ec158e25c3a63bff9f
initial import
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..903b180 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.pyc +*.swp +*.o +build/ diff --git a/BSP/__init__.py b/BSP/__init__.py new file mode 100644 index 0000000..f144dee --- /dev/null +++ b/BSP/__init__.py @@ -0,0 +1,61 @@ +#!/usr/bin/env pytho...
vits/good_enough_form_builder
5b70ac67d41fe4c64f190ecac945ba55fdd44e96
Fixed: use class attribute as inner element class only for plain fields.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index 9748052..66599ab 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,202 +1,205 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
d53d85102bab589898ebe8511961e608dffaf042
Added inner_class attribute.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index 13f487e..9748052 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,199 +1,202 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
a981e9232a2ad4ea0d2937cffea84bacf8ffba9f
Added button fields, changed submit button.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index deedc5d..13f487e 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,150 +1,199 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
912452bee162b2c2faa196d2c9ccac14262521d3
Added check_box_group.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index b31deb4..deedc5d 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,125 +1,150 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
2fa1c3477ca5828b70d5548fdb0647f339613966
Added check_box_field.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index 1f47b47..b31deb4 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,110 +1,125 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
d3d5d0b6957dbb12dd8da3fcc85d4c9547ccb28d
Added collection_select field type.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index d744f90..1f47b47 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,109 +1,110 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
e22eab6bff2fc1ccc3a74b8a11f6a533e358b7ec
Code refactored to clean options hash before calling super field builder to prevent rendering field options as HTML tag attributes.
diff --git a/lib/good_enough_form_builder.rb b/lib/good_enough_form_builder.rb index 8cb71d4..d744f90 100644 --- a/lib/good_enough_form_builder.rb +++ b/lib/good_enough_form_builder.rb @@ -1,120 +1,109 @@ module GoodEnoughFormBuilder class Builder < ActionView::Helpers::FormBuilder @@templates_path = "forms/...
vits/good_enough_form_builder
35468d01223c247e491956c5c1c9a4ff5fe1c146
Initial functionality
diff --git a/README b/README index 139cb66..2cbae89 100644 --- a/README +++ b/README @@ -1,13 +1,13 @@ GoodEnoughFormBuilder ===================== -Introduction goes here. +Rails form builder plugin with form templating suppoprt. Example ======= -Example goes here. +TODO -Copyright (c) 2009 [name of plu...
vits/good_enough_form_builder
f70a7c6dfa221d2a9a578f0d1145b347cc04b686
first import
diff --git a/MIT-LICENSE b/MIT-LICENSE new file mode 100644 index 0000000..9376605 --- /dev/null +++ b/MIT-LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2009 [name of plugin creator] + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Sof...
komagata/dnsbl_client
0eff1fcb0ef355758967c2adc15d604a2feeffb3
added has_rdoc
diff --git a/dnsbl_client.gemspec b/dnsbl_client.gemspec index d26ad86..000c5dd 100644 --- a/dnsbl_client.gemspec +++ b/dnsbl_client.gemspec @@ -1,15 +1,16 @@ Gem::Specification.new do |s| s.author = 'Masaki Komagata' s.description = <<-EOF DNSBL Client is simple solution for spam blocking. (What is DN...
techwizrd/GtkSidebar
8fd6eed016b032ed7890e9e9884ce9e7d2eea3f6
added text markup support
diff --git a/GtkSidebar.py b/GtkSidebar.py index 488f79c..df2e390 100755 --- a/GtkSidebar.py +++ b/GtkSidebar.py @@ -1,85 +1,85 @@ #!/usr/bin/env python import pygtk pygtk.require('2.0') import gtk class GtkSidebar(gtk.Frame): __gtype_name = 'GtkSidebar' def __init__(self): gtk.Frame.__init_...
gklopper/Simple-Web-Reference
bbb9f27d2c9cd459ac5aff936a8a8887c476cdee
Added repository to pom file
diff --git a/pom.xml b/pom.xml index 15474bc..c749452 100644 --- a/pom.xml +++ b/pom.xml @@ -1,48 +1,56 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> ...
Abica/Packit
530379cd8d1237034a36d3f9279da1a94f4eff1b
noticed some typos
diff --git a/lib/packit.rb b/lib/packit.rb index 0a93eda..892ea5f 100644 --- a/lib/packit.rb +++ b/lib/packit.rb @@ -1,100 +1,100 @@ module Packit class Field attr_accessor :name, :args def initialize( name, args ) @name = Utils.cache_key_for name @args = args end def size ...
Abica/Packit
e55827f146a9f5e9edc478e1c79cd1bca7fd8f0f
add call methods so I don't forget that I want them
diff --git a/lib/packit.rb b/lib/packit.rb index 3fc5b89..0a93eda 100644 --- a/lib/packit.rb +++ b/lib/packit.rb @@ -1,82 +1,100 @@ module Packit class Field attr_accessor :name, :args def initialize( name, args ) @name = Utils.cache_key_for name @args = args end def size ...
Abica/Packit
7f912f2ae762e276edcc82a1456f63299d32c169
- change tabs -> whitespace - flesh out tests
diff --git a/lib/packit.rb b/lib/packit.rb index c6f6441..3fc5b89 100644 --- a/lib/packit.rb +++ b/lib/packit.rb @@ -1,74 +1,82 @@ module Packit - class Field - attr_accessor :name, :args + class Field + attr_accessor :name, :args - def initialize( name, args ) - @name = Utils.cache_key_for name - @args = ...
Abica/Packit
950c521900a1a241b4f4303e5abd659e131912bd
initial progress
diff --git a/lib/packit.rb b/lib/packit.rb new file mode 100644 index 0000000..c6f6441 --- /dev/null +++ b/lib/packit.rb @@ -0,0 +1,74 @@ +module Packit + class Field + attr_accessor :name, :args + + def initialize( name, args ) + @name = Utils.cache_key_for name + @args = args + end + end + + class Record + de...
icehook/icehook_slinger_cdr_ftp_scripts
101112983786a066013145f1b50bceff5261fcab
added -f to cp
diff --git a/curl_ftp.sh b/curl_ftp.sh index 3c269cb..7cf05da 100755 --- a/curl_ftp.sh +++ b/curl_ftp.sh @@ -1,162 +1,162 @@ #!/bin/bash # change this to false (or anything but true) when not debugging DEBUG=true # dont modify this unless parameters change USAGE="Usage: $0 -g(to gunzip) -k /absolute/path/prepr...
icehook/icehook_slinger_cdr_ftp_scripts
2e6fe62a74737acb1162c57691afbe62a79f665d
added gunzip step
diff --git a/curl_ftp.sh b/curl_ftp.sh index d11fa8b..3c269cb 100755 --- a/curl_ftp.sh +++ b/curl_ftp.sh @@ -1,133 +1,162 @@ #!/bin/bash # change this to false (or anything but true) when not debugging DEBUG=true # dont modify this unless parameters change -USAGE="Usage: $0 -k /absolute/path/preprocessor.awk -u...
icehook/icehook_slinger_cdr_ftp_scripts
fcf4b18764d0f0e52e822aa023925d71c61b325c
switch find ordering and regextype
diff --git a/curl_ftp.sh b/curl_ftp.sh old mode 100644 new mode 100755 index d9d2e2b..d11fa8b --- a/curl_ftp.sh +++ b/curl_ftp.sh @@ -1,133 +1,133 @@ #!/bin/bash # change this to false (or anything but true) when not debugging DEBUG=true # dont modify this unless parameters change USAGE="Usage: $0 -k /absolute...
icehook/icehook_slinger_cdr_ftp_scripts
7d10157f2d0a397de914aacbc6e41c9290db8b86
cleaned up curl_ftp a bit and added awk preprocessing
diff --git a/curl_ftp.sh b/curl_ftp.sh index bc2b37b..d9d2e2b 100644 --- a/curl_ftp.sh +++ b/curl_ftp.sh @@ -1,83 +1,133 @@ #!/bin/bash # change this to false (or anything but true) when not debugging -DEBUG="true" +DEBUG=true # dont modify this unless parameters change -USAGE="Usage: $0 -u user -p password -a /...
icehook/icehook_slinger_cdr_ftp_scripts
db7683f32af521ab346505ec270e4e633d95d732
added curl based ftp script
diff --git a/curl_ftp.sh b/curl_ftp.sh new file mode 100644 index 0000000..c757845 --- /dev/null +++ b/curl_ftp.sh @@ -0,0 +1,83 @@ +#!/bin/bash + +# change this to false (or anything but true) when not debugging +DEBUG="true" + +# dont modify this unless parameters change +USAGE="Usage: $0 -u user -p password -a /abso...
vim-scripts/XQuery-syntax
6876e6e48be20d9a204a69a54536476ffce55557
Version 0.1: Initial upload
diff --git a/README b/README new file mode 100644 index 0000000..62ad577 --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +This is a mirror of http://www.vim.org/scripts/script.php?script_id=803 + +see http://jmvanel.free.fr/vim/ diff --git a/syntax/xquery.vim b/syntax/xquery.vim new file mode 100644 index 0000000..be6b74f -...
jeffkaufman/statmbx
8eaeeee66369754d36cfd9a01d693bd596a0ae5a
added license information
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA...
jeffkaufman/statmbx
58b9898cda3c1b8cab816751ddbf1242bccd29e7
explained some details
diff --git a/README b/README index 9c1c9bc..43c262d 100644 --- a/README +++ b/README @@ -1,30 +1,43 @@ Summary: statmbx allows you to see what unread messages you have in your mailbox without opening an email client. It is written in C and runs as quickly as is possible without indexing. Compatible with ...
jeffkaufman/statmbx
3634e00da7c33ff11f08abe8ceda6b10b4cecfd4
added readme text and existing code
diff --git a/README b/README index e69de29..9c1c9bc 100644 --- a/README +++ b/README @@ -0,0 +1,30 @@ +Summary: + + statmbx allows you to see what unread messages you have in your + mailbox without opening an email client. It is written in C and + runs as quickly as is possible without indexing. Compatible with + ...
plouj/testHudsonSelect
dfc4a3174a7457ec0b70a6e9c6129f44a1d099e4
trying to write a unit test - does not work
diff --git a/pom.xml b/pom.xml index f24fcda..13ed5f6 100644 --- a/pom.xml +++ b/pom.xml @@ -1,29 +1,29 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelV...
plouj/testHudsonSelect
ca4e20bad7186821574cc39767d0456ea83456c1
example where f:select inside f:repeatable does not get properly set from saved-to-disk values
diff --git a/src/main/java/com/example/HelloWorldBuilder.java b/src/main/java/com/example/HelloWorldBuilder.java index b074aaf..6536bda 100644 --- a/src/main/java/com/example/HelloWorldBuilder.java +++ b/src/main/java/com/example/HelloWorldBuilder.java @@ -1,91 +1,99 @@ package com.example; import hudson.Launcher; i...
plouj/testHudsonSelect
86cb5b9a0afd12168ee8940b81f0295e33189687
go to the minimum hudson version in which selection doFill actually works for f:select
diff --git a/pom.xml b/pom.xml index 13ed5f6..27fbe9e 100644 --- a/pom.xml +++ b/pom.xml @@ -1,29 +1,29 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelV...
plouj/testHudsonSelect
6c549ce632a9b66ac239b71c13759915686a4738
initial version - selection dropdown menu does not show the options configured globally
diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..13ed5f6 --- /dev/null +++ b/pom.xml @@ -0,0 +1,29 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd...
thedoct/vincitrentino
198170337eed779215f8905353116d7b4a4be283
primo commit della storia
diff --git a/README b/README index ee85649..775ae19 100644 --- a/README +++ b/README @@ -1 +1 @@ -RUL3Z \ No newline at end of file +RUL3ZZ \ No newline at end of file
thedoct/vincitrentino
46f488ee3745ba1ff3939efa1cb5b1b1c8a0c197
primo commit della storia
diff --git a/README b/README new file mode 100644 index 0000000..e69de29
miki/Statistics-Associations
408de1e6448fdae6e831d79eb170ef6b2249b268
アソシエーション
diff --git a/Changes b/Changes new file mode 100644 index 0000000..e99f463 --- /dev/null +++ b/Changes @@ -0,0 +1,13 @@ +Revision history for Perl extension Statistics::Associations + +0.00003 2008/11/19 + - fix a bug in case that is called without make_matrix() + - fix a typo in docs ( 'contingenvy -> '...
AstraFIN/fields
954864ab3314d93753ce755ae1b14c15240ca08a
Generalized <=: and <=~ to do customizable effects.
diff --git a/Data/Record/Field/Combinators.hs b/Data/Record/Field/Combinators.hs index 0773c8a..abc0833 100644 --- a/Data/Record/Field/Combinators.hs +++ b/Data/Record/Field/Combinators.hs @@ -1,133 +1,161 @@ +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE FlexibleContexts #-} ...
AstraFIN/fields
97f670c17569a1e5c2a96e004461109f69d19180
Fixed documentation regarding Indexable.
diff --git a/Data/Record/Field.hs b/Data/Record/Field.hs index 24ea2be..3ef3db9 100644 --- a/Data/Record/Field.hs +++ b/Data/Record/Field.hs @@ -1,242 +1,241 @@ {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE Typ...
AstraFIN/fields
4e0a3a99519785a1b97b4ee554b11f9b9b69c55d
Made Indexable a single-parameter type class.
diff --git a/Data/Record/Field/Indexable.hs b/Data/Record/Field/Indexable.hs index f8ea585..1500fce 100644 --- a/Data/Record/Field/Indexable.hs +++ b/Data/Record/Field/Indexable.hs @@ -1,122 +1,110 @@ -- vim: encoding=latin1 {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstan...
AstraFIN/fields
4fa2fa237ba36bae113fe6f1ff43d96f4a063864
Uploaded to Hackage.
diff --git a/fields.cabal b/fields.cabal index 06062e8..c9b453f 100644 --- a/fields.cabal +++ b/fields.cabal @@ -1,160 +1,161 @@ -- fields.cabal auto-generated by cabal init. For additional options, -- see -- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr. -- The name of th...
AstraFIN/fields
5c7a15e474d6b1a50dd409e211bcd56b2a68f2d9
Improved the Cabal description.
diff --git a/fields.cabal b/fields.cabal index 4b5b648..06062e8 100644 --- a/fields.cabal +++ b/fields.cabal @@ -1,145 +1,160 @@ -- fields.cabal auto-generated by cabal init. For additional options, -- see -- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr. -- The name of th...
AstraFIN/fields
a445abcb73813b9bf4f93c881fd0b73ff1fba9da
Removed a hyperlink to (#), due to a Haddock bug.
diff --git a/Data/Record/Field.hs b/Data/Record/Field.hs index 7ea2156..24ea2be 100644 --- a/Data/Record/Field.hs +++ b/Data/Record/Field.hs @@ -1,242 +1,242 @@ {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE Typ...
AstraFIN/fields
fa12e44a019da9b70e7657596de850df2018030d
First public release.
diff --git a/Data/Record/Field.hs b/Data/Record/Field.hs new file mode 100644 index 0000000..7ea2156 --- /dev/null +++ b/Data/Record/Field.hs @@ -0,0 +1,242 @@ +{-# LANGUAGE TypeFamilies #-} +{-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE MultiParamTypeClasses #-} +{-# LANGUAGE Type...
lunatech/pimpmyblog
df524437f6d71046e6ee6b0c06b8bda926e261d1
- try t identify and parse both rss and atom feed - print to STDOUT if no output file specified other improvemets
diff --git a/pimpmyblog.pl b/pimpmyblog.pl index cc5a92a..f9f8eba 100755 --- a/pimpmyblog.pl +++ b/pimpmyblog.pl @@ -1,97 +1,112 @@ #!/usr/bin/perl -w use strict; use warnings; use LWP; use Getopt::Long; use XML::LibXML; -use Data::Dumper; +#use Data::Dumper; sub print_usage { my $usage = <<USAGE; $0 :...
lunatech/pimpmyblog
455c8851f2b2155ddaf88a8afd9d442cc6fe921e
updating sig
diff --git a/mysig.tpl b/mysig.tpl index 4e86e71..5628219 100644 --- a/mysig.tpl +++ b/mysig.tpl @@ -1,9 +1,6 @@ -raj shekhar - -Take my love, take my land -Take me where I cannot stand -I don't care, I'm still free -You can't take the sky from me - -Read the latest at my blog: -"!title!" <!url!> \ No newline at end ...
lunatech/pimpmyblog
ed132fccfb4ce9f1a79285715283d48f97e29d65
pl scrpt to fetch create the sig file
diff --git a/pimpmyblog.pl b/pimpmyblog.pl new file mode 100755 index 0000000..cc5a92a --- /dev/null +++ b/pimpmyblog.pl @@ -0,0 +1,97 @@ +#!/usr/bin/perl -w + +use strict; +use warnings; + +use LWP; +use Getopt::Long; +use XML::LibXML; +use Data::Dumper; + +sub print_usage { + my $usage = <<USAGE; +$0 : -f "url of th...
lunatech/pimpmyblog
5105a109e445d2e47c909d1f3ad63249474ccb52
added options
diff --git a/pimpmyblog.php b/pimpmyblog.php index ce3a8ff..31c3443 100755 --- a/pimpmyblog.php +++ b/pimpmyblog.php @@ -1,45 +1,50 @@ #!/usr/bin/php -dopen_basedir= <?php function fetch_url($url) { $ch = curl_init ($url) ; curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1) ; $res = curl_exec ($ch) ; curl_c...
lunatech/pimpmyblog
469a5592a2e71aa1e1e52656a164894ad646c873
template for the signature
diff --git a/mysig.tpl b/mysig.tpl index 4454bb3..4e86e71 100644 --- a/mysig.tpl +++ b/mysig.tpl @@ -1,6 +1,9 @@ raj shekhar -http://rajshekhar.net -I've never made anyone's life easier and you know it! + +Take my love, take my land +Take me where I cannot stand +I don't care, I'm still free +You can't take the sky fr...
lunatech/pimpmyblog
3a9450c18520f58527ce3497dd7b243f0eb76848
functional php script
diff --git a/mysig.tpl b/mysig.tpl new file mode 100644 index 0000000..4454bb3 --- /dev/null +++ b/mysig.tpl @@ -0,0 +1,6 @@ +raj shekhar +http://rajshekhar.net +I've never made anyone's life easier and you know it! + +Read the latest at my blog: +"!title!" <!url!> diff --git a/pimpmyblog.php b/pimpmyblog.php index 09...
lunatech/pimpmyblog
ffe1a60c51d47faad2761d9d09290cf5b151a363
experimented with xpath on this branch. However, did not see any difference in the speed in using xpath
diff --git a/pimpmyblog.php b/pimpmyblog.php index 823c7c0..09ffb10 100755 --- a/pimpmyblog.php +++ b/pimpmyblog.php @@ -1,26 +1,38 @@ #!/usr/bin/php -dopen_basedir= <?php function fetch_url($url) { $ch = curl_init ($url) ; curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1) ; $res = curl_exec ($ch) ; curl_c...
lunatech/pimpmyblog
8deb72d4c6ca186289d46753852cff1a4c64d70a
initial version
diff --git a/TODO b/TODO new file mode 100644 index 0000000..f571c25 --- /dev/null +++ b/TODO @@ -0,0 +1,5 @@ +-*-outline-*- + +* Add a "decay" functionality +This will not add the blog line to the signature if it is more than N +days old diff --git a/pimpmyblog.php b/pimpmyblog.php new file mode 100755 index 0000000.....
cvan/secinv-client
46c4759656b9dd2233bef70088a5e4745c5a6cca
concatenate multiple ports
diff --git a/client/inventory.py b/client/inventory.py index 1986203..f0cff66 100644 --- a/client/inventory.py +++ b/client/inventory.py @@ -1,513 +1,521 @@ from ConfigParser import RawConfigParser, ParsingError import cStringIO import os import re import subprocess import string from apacheparser import * fr...
cvan/secinv-client
129bf51ea849de8aca35337f92da3b9854b09c53
split line by space
diff --git a/client/inventory.py b/client/inventory.py index 7230139..1986203 100644 --- a/client/inventory.py +++ b/client/inventory.py @@ -1,513 +1,513 @@ from ConfigParser import RawConfigParser, ParsingError import cStringIO import os import re import subprocess import string from apacheparser import * fr...
cvan/secinv-client
6379d353a08e0de189610e6b8f831ff18741ba8b
add workaround for allow_no_value for ConfigParser (for python < 2.7)
diff --git a/client/inventory.py b/client/inventory.py index b1aa7f3..7230139 100644 --- a/client/inventory.py +++ b/client/inventory.py @@ -1,484 +1,513 @@ -from ConfigParser import ConfigParser +from ConfigParser import RawConfigParser, ParsingError +import cStringIO import os import re import subprocess import s...
cvan/secinv-client
a75a58c680b2a968281f71672e2861ee7d04e70c
add list of ports for services, ws alignment
diff --git a/client/inventory.py b/client/inventory.py index fe2d1d6..b1aa7f3 100644 --- a/client/inventory.py +++ b/client/inventory.py @@ -1,477 +1,484 @@ from ConfigParser import ConfigParser import os import re import subprocess import string from apacheparser import * from common import * # TODO: Use `...
cvan/secinv-client
94795a8a17786578251c03dccf43a6ad499c7e02
check for colons in netmask and ip, clear ignore_directives
diff --git a/client/common.py b/client/common.py index 50a8a4c..3cdcc72 100644 --- a/client/common.py +++ b/client/common.py @@ -1,103 +1,103 @@ from ConfigParser import ConfigParser import os import re import sys ROOT = os.path.dirname(os.path.abspath(__file__)) # Used to translate path in this directory to ...
cvan/secinv-client
00670a1f29ac7989355659d719c74065a0e75559
add auth config
diff --git a/client/auth.conf b/client/auth.conf new file mode 100644 index 0000000..95a3a46 --- /dev/null +++ b/client/auth.conf @@ -0,0 +1,2 @@ +[auth_token] +auth_token=Jz_Cl1d0kF);}SwE
cvan/secinv-client
9b2fbf102a4189171d9bf1543b729e36c5df14df
add markdown readme
diff --git a/README b/README deleted file mode 100644 index 48a71ee..0000000 --- a/README +++ /dev/null @@ -1 +0,0 @@ -README. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f63ad1b --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +LittleSIS Client +================ +LittleSIS scans the system for...