repo
string
commit
string
message
string
diff
string
intuited/xmlearn
40335ed0e4cf673861f563b95ddaf7b85aab9840
add DocbookDumper class
diff --git a/__init__.py b/__init__.py index 55cb6e8..5085902 100755 --- a/__init__.py +++ b/__init__.py @@ -1,410 +1,426 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
f1d472c3c1f364b6040e3fcb94adb6870dc16bd8
revised to list base tags along with children
diff --git a/__init__.py b/__init__.py index a1112ce..55cb6e8 100755 --- a/__init__.py +++ b/__init__.py @@ -1,407 +1,410 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
51b349fe1a17611001f6d86966fc616b020c80e4
add multiplexing to the graph functions and add graph subcommand to cli
diff --git a/__init__.py b/__init__.py index d86b14d..a1112ce 100755 --- a/__init__.py +++ b/__init__.py @@ -1,355 +1,407 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
84ef8cb325e0e2838a98fa5c7417756e0b305114
remove obsolete TODO
diff --git a/__init__.py b/__init__.py index 1e7a8b4..d86b14d 100755 --- a/__init__.py +++ b/__init__.py @@ -1,356 +1,355 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
48d93418d2622a99b9e8cf3b60b4ddf23eeaed20
add the --no-combine CLI option and logic
diff --git a/__init__.py b/__init__.py index 0bfb9e8..1e7a8b4 100755 --- a/__init__.py +++ b/__init__.py @@ -1,344 +1,356 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
500b16fd9fee9dc3aed139a4752e82379b610a9b
rework tag iterators to accept iterable as well as singular arguments
diff --git a/__init__.py b/__init__.py index dab9241..0bfb9e8 100755 --- a/__init__.py +++ b/__init__.py @@ -1,326 +1,344 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
1288c56645f358bd522ac25a493d7a5a903fdfcc
frig with spacing
diff --git a/__init__.py b/__init__.py index 036cf5a..dab9241 100755 --- a/__init__.py +++ b/__init__.py @@ -1,328 +1,326 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
5ba71bb32739e16871c528a30bd6750afbd06dd5
Refactor dump subcommand and add tags subcommand Moved dump subcommand parser construction into a subroutine. Wrote a second similar subroutine for the new tags subcommand. Both dump and tags subcommands pass perfunctory testing.
diff --git a/__init__.py b/__init__.py index 8f45657..036cf5a 100755 --- a/__init__.py +++ b/__init__.py @@ -1,281 +1,328 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
1bdc70ab4572eed1dee024f40089f1a6bb21276d
move the `dump` subcommand's path argument up to the top level and make it an option.
diff --git a/__init__.py b/__init__.py index 90177be..8f45657 100755 --- a/__init__.py +++ b/__init__.py @@ -1,282 +1,281 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
d23e6c71a0175566b9f8f0418c082bdb75ca361a
refactor non-Dumper methods as top-level module functions. Totally untested but mostly braindead.
diff --git a/__init__.py b/__init__.py index 87c1179..90177be 100755 --- a/__init__.py +++ b/__init__.py @@ -1,282 +1,282 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
ec601e35ffc937a10d0f65414c059edb38976255
refactor dumper instantiation and add check of key against `kw_from_ns`
diff --git a/__init__.py b/__init__.py index 7a06283..87c1179 100755 --- a/__init__.py +++ b/__init__.py @@ -1,279 +1,282 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
52af6b1128c9c8b975835fce1385adfeb5fa4ef3
remove vestigial function
diff --git a/__init__.py b/__init__.py index 3bb5c6e..7a06283 100755 --- a/__init__.py +++ b/__init__.py @@ -1,289 +1,279 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
f661478366f5ebd5d2f019a972129047a4db2086
revise documentation
diff --git a/__init__.py b/__init__.py index b2d49cb..3bb5c6e 100755 --- a/__init__.py +++ b/__init__.py @@ -1,290 +1,289 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
3fcc995cff776840d7418f923623115776b7821e
move outstream declaration from dump function into dump subcommand defaults
diff --git a/__init__.py b/__init__.py index ab1ebca..b2d49cb 100755 --- a/__init__.py +++ b/__init__.py @@ -1,291 +1,290 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
54170bca6e8d5de0f20a571c16ae0b582897a5ad
remove completed TODO about using custom Actions
diff --git a/__init__.py b/__init__.py index 755b5be..ab1ebca 100755 --- a/__init__.py +++ b/__init__.py @@ -1,293 +1,291 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
ddddfb5c2df71e7a505b86874d8c23428cdbdbbb
moved XPath creation into argument parsing
diff --git a/__init__.py b/__init__.py index 45a683a..755b5be 100755 --- a/__init__.py +++ b/__init__.py @@ -1,298 +1,293 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
d95464cc7a67ea21a33ae45e6249f68910a2d19a
cleanup extraneous parentheses
diff --git a/__init__.py b/__init__.py index 0acbe8c..45a683a 100755 --- a/__init__.py +++ b/__init__.py @@ -1,298 +1,298 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
453b4c59fb5da4857550ac395fc7f08840552fe2
fix bug that was preventing the `-w 0` switch from working.
diff --git a/__init__.py b/__init__.py index bcc07b7..0acbe8c 100755 --- a/__init__.py +++ b/__init__.py @@ -1,298 +1,298 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
3253315285c8847df53c6be1815ab60f89f5311c
remove pointless TODO
diff --git a/__init__.py b/__init__.py index ace2a65..bcc07b7 100755 --- a/__init__.py +++ b/__init__.py @@ -1,299 +1,298 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
8a577adc5a8b030d0cfab33ba5ca04b61a61dd96
rework to use an Action subclass to handle ruleset listing.
diff --git a/__init__.py b/__init__.py index 24c03a5..ace2a65 100755 --- a/__init__.py +++ b/__init__.py @@ -1,293 +1,299 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
a1c2a47cc13034af428f645aa02d5b8ffc2267fb
use subcommand defaults instead of action map
diff --git a/__init__.py b/__init__.py index a4bfc0a..24c03a5 100755 --- a/__init__.py +++ b/__init__.py @@ -1,306 +1,293 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
8ebf35c2f62bc4642d8c569cac0ae37bb2b48103
cleanup documentation
diff --git a/__init__.py b/__init__.py index 32db67c..a4bfc0a 100755 --- a/__init__.py +++ b/__init__.py @@ -1,305 +1,306 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" from lxml import etree class Dumper(object): """Dump an lxml.etree tree starting at `element`. ...
intuited/xmlearn
d239625cd9e091d984979f39a62578fe903158c0
cleanup debugging code and remnants of a failed venture
diff --git a/__init__.py b/__init__.py index dfdd788..32db67c 100755 --- a/__init__.py +++ b/__init__.py @@ -1,319 +1,305 @@ #!/usr/bin/env python """Library and CLI for learning about XML formats.""" -from deboogie import get_debug_logger -debug = get_debug_logger('xmlearn') - from lxml import etree class Dump...
intuited/xmlearn
85b76fd3049bba420a6147f94ebef723596c6848
refactor to target general-purpose XML files.
diff --git a/README b/README index f72f23c..a3cdbc0 100644 --- a/README +++ b/README @@ -1 +1 @@ -Library for parsing MPD's XML documentation. +Library and CLI for learning about XML formats. diff --git a/__init__.py b/__init__.py index bb97182..dfdd788 100755 --- a/__init__.py +++ b/__init__.py @@ -1,327 +1,319 @@ #!...
intuited/xmlearn
c96d932614c1aa95eca015513fe6188b7611ed72
add CLI capable of doing dumps.
diff --git a/__init__.py b/__init__.py old mode 100644 new mode 100755 index 51cfbf8..bb97182 --- a/__init__.py +++ b/__init__.py @@ -1,198 +1,327 @@ +#!/usr/bin/env python """Routines to parse mpd's protocol documentation.""" +# TODO: refactor almost the entirety of this code into +# a general-purpose library...
intuited/xmlearn
1e4cfa559708d8a723228bbaa1af2c7b808ae5a8
add graph capabilities, integrating with python-graph and pydot
diff --git a/__init__.py b/__init__.py index 607e5f1..51cfbf8 100644 --- a/__init__.py +++ b/__init__.py @@ -1,167 +1,198 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum r...
intuited/xmlearn
c69cf002a3a652837235aad4086d79d51e7417f1
add function to iterate unique tags
diff --git a/__init__.py b/__init__.py index 19b70ec..607e5f1 100644 --- a/__init__.py +++ b/__init__.py @@ -1,158 +1,167 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum r...
intuited/xmlearn
3f663ce023013e639173fc322de67f248c7ca7a7
minor documentation fixup
diff --git a/__init__.py b/__init__.py index 71ddf71..19b70ec 100644 --- a/__init__.py +++ b/__init__.py @@ -1,158 +1,158 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum r...
intuited/xmlearn
c7f5329e3f59732c1e3a1b4ad026b6c606ef124b
fix signature of iter_unique_child_tags. it works now.
diff --git a/__init__.py b/__init__.py index b905a1b..71ddf71 100644 --- a/__init__.py +++ b/__init__.py @@ -1,158 +1,158 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum r...
intuited/xmlearn
c4d1e885e8e9d5358cd7fdc7cc59251cfacbc87b
revise docstring example
diff --git a/__init__.py b/__init__.py index 9c6f09d..b905a1b 100644 --- a/__init__.py +++ b/__init__.py @@ -1,142 +1,158 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum r...
intuited/xmlearn
af7f13a2ee6c1c9d1381e3e12eddee25cb4f6afc
add function to list unique child tags for a tag.
diff --git a/__init__.py b/__init__.py index f433b7b..9c6f09d 100644 --- a/__init__.py +++ b/__init__.py @@ -1,127 +1,142 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum r...
intuited/xmlearn
70e817f91c9bfc342744a3b9c55b56bda5c6c53a
add option to override object properties when calling `dump`
diff --git a/__init__.py b/__init__.py index 533276d..f433b7b 100644 --- a/__init__.py +++ b/__init__.py @@ -1,91 +1,127 @@ """Routines to parse mpd's protocol documentation.""" class LXML_Dumper(object): """Dump an lxml.etree tree starting at `element`. Attributes: maxdepth: the maximum re...
intuited/xmlearn
5bb97b3aca0d5f51494edeb8d48e864fb4184dd0
remove pretty-printing approach code
diff --git a/__init__.py b/__init__.py index e805b1f..533276d 100644 --- a/__init__.py +++ b/__init__.py @@ -1,161 +1,91 @@ """Routines to parse mpd's protocol documentation.""" -from pprint import PrettyPrinter as _PrettyPrinter -from xml.etree import ElementTree as _ElementTree - -class TagsPrinter(_PrettyPrinter)...
intuited/xmlearn
0017f2854135a700553682f88d39a661a99eec42
initial working version of the LXML_Dumper class.
diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e805b1f --- /dev/null +++ b/__init__.py @@ -0,0 +1,161 @@ +"""Routines to parse mpd's protocol documentation.""" +from pprint import PrettyPrinter as _PrettyPrinter + +from xml.etree import ElementTree as _ElementTree + +class TagsPrinter(_Prett...
ribbit-tnt/ribbit-sdk-downloads
4d9bcf8cbf719d25cb07fa7cd603c9524383b4d5
Added binary packages for .NET, Flash, Java, and Silverlight. Added source packages for JS and PHP.
diff --git a/binary/ribbit_dotnet_1.6.0.zip b/binary/ribbit_dotnet_1.6.0.zip new file mode 100644 index 0000000..e6c3466 Binary files /dev/null and b/binary/ribbit_dotnet_1.6.0.zip differ diff --git a/binary/ribbit_flash_2.6.0.zip b/binary/ribbit_flash_2.6.0.zip new file mode 100644 index 0000000..982501f Binary files ...
kueda/inat-taxonomic_flickr_tagger
991843059f25e499419c9e0874548999fcd6a591
Added link to userscripts.org.
diff --git a/README b/README index d87ee88..c8e9d70 100644 --- a/README +++ b/README @@ -1,4 +1,8 @@ The is a Greasmonkey script that inserts a link to the iNaturalist Taxonomic Flickr Tagger (http://inaturalist.org/taxa/flickr_tagger) on Flickr photo pages. It's based on the "Flickr on Black" Greasemonkey script by...
kueda/inat-taxonomic_flickr_tagger
c11536c9109c7a95a37969704d438f443e8ac6d2
Added the license to the script, updated the description.
diff --git a/README b/README index a68f3fc..d87ee88 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ The is a Greasmonkey script that inserts a link to the iNaturalist Taxonomic -Flickr Tagger on Flickr photo pages. It's based on the "Flickr on Black" -Greasemonkey script by Simon Whitaker // -(http://userscripts.org/...
kueda/inat-taxonomic_flickr_tagger
a0c2eb82685e6c1e41230bc96217dd2401fa0c9f
Ok, this time I REALLY added the LICENSE and script.
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ab834be --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +iNaturalist Taxonomic Flickr Tagger License +---------------------------------------------------------------- + +The MIT License + +Copyright (c) 2009 Ken-ichi Ueda + +Permission is hereby granted, f...
kueda/inat-taxonomic_flickr_tagger
c44d574aeed50b549482f67a602944221eb2eac5
Added the Greasemonkey script, updated the README, and added a license.
diff --git a/README b/README index e69de29..a68f3fc 100644 --- a/README +++ b/README @@ -0,0 +1,4 @@ +The is a Greasmonkey script that inserts a link to the iNaturalist Taxonomic +Flickr Tagger on Flickr photo pages. It's based on the "Flickr on Black" +Greasemonkey script by Simon Whitaker // +(http://userscripts.org/...
spr1ng/Crawler
885ddffca9b139fcbff058ae20c3ab963a460795
last changes
diff --git a/.svn/entries b/.svn/entries index 901263d..e52d8a6 100644 --- a/.svn/entries +++ b/.svn/entries @@ -1,164 +1,164 @@ 10 dir -70 +93 svn://localhost/spr1ngsvn/TheEye/Eye svn://localhost/spr1ngsvn/TheEye -2010-07-08T03:48:08.935715Z -70 -spr1ng +2010-07-08T05:31:17.764496Z +76 +stream has-props ...
spr1ng/Crawler
c66ec407bfb43cf49a20583cb5d9b20efab20681
Небольшой рефакторинг ;)
diff --git a/.svn/dir-prop-base b/.svn/dir-prop-base index bd19930..c67a1b9 100644 --- a/.svn/dir-prop-base +++ b/.svn/dir-prop-base @@ -1,6 +1,7 @@ K 10 svn:ignore -V 6 +V 11 build +.git END diff --git a/.svn/entries b/.svn/entries index 405bc65..901263d 100644 --- a/.svn/entries +++ b/.svn/entries @@ -1,133 +1,...
spr1ng/Crawler
0d6bdf1d87c605749cc366da9e92886ef35e0040
Вдогонку! ;)
diff --git a/.svn/dir-prop-base b/.svn/dir-prop-base new file mode 100644 index 0000000..bd19930 --- /dev/null +++ b/.svn/dir-prop-base @@ -0,0 +1,6 @@ +K 10 +svn:ignore +V 6 +build + +END diff --git a/.svn/entries b/.svn/entries new file mode 100644 index 0000000..405bc65 --- /dev/null +++ b/.svn/entries @@ -0,0 +1,13...
rheaplex/postscript-viruses
bd21fed1810aebbb0a39cc8617a6be1b3ba0d4cb
Changes for Crypto Anarchist Manifesto infection.
diff --git a/2024/Makefile b/2024/Makefile index 723cea1..894c339 100644 --- a/2024/Makefile +++ b/2024/Makefile @@ -1,19 +1,49 @@ +.DEFAULT_GOAL := all + abstract-1.pdf: abstract-1.ps gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER \ -dDEVICEWIDTHPOINTS=1250 -dDEVICEHEIGHTPOINTS=504 \ -dPDFFitPage -sOutputFile...
rheaplex/postscript-viruses
fd7128f3f5d7436224732d21f1661a7d14dce54e
Add second commission.
diff --git a/2024/Makefile b/2024/Makefile new file mode 100644 index 0000000..723cea1 --- /dev/null +++ b/2024/Makefile @@ -0,0 +1,19 @@ +abstract-1.pdf: abstract-1.ps + gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER \ + -dDEVICEWIDTHPOINTS=1250 -dDEVICEHEIGHTPOINTS=504 \ + -dPDFFitPage -sOutputFile=abstract-1.pdf \...
rheaplex/postscript-viruses
e5b1ba836564063a650e67052b4c60af9fa9d852
Make multiple versions of each glitch, although each will be 1/10.
diff --git a/2023/infected/alphabet.ps.d/alphabet.ps-1.pdf b/2023/infected/alphabet.ps.d/alphabet.ps-1.pdf new file mode 100644 index 0000000..c5645d4 Binary files /dev/null and b/2023/infected/alphabet.ps.d/alphabet.ps-1.pdf differ diff --git a/2023/infected/alphabet.ps.d/alphabet.ps-10.pdf b/2023/infected/alphabet.ps...
filodej/rpcpp
d5a106824985c11747cc90846ba74bfa6b0466d9
implemeted async call buffering added benchmark results
diff --git a/bin/test.py b/bin/test.py index 2dacac5..ea58366 100644 --- a/bin/test.py +++ b/bin/test.py @@ -1,186 +1,219 @@ import sys import os.path sys.path.append( os.path.abspath( './release') ) import getopt import time import rpcppy import rpyc import rpyc.utils.server -def py_synch_benchmark( echo, va...
filodej/rpcpp
9acf9066aeadf4a9cae0597d0750afc998462b1d
fix in teh test descriptions
diff --git a/bin/test.py b/bin/test.py index ea49c98..2dacac5 100644 --- a/bin/test.py +++ b/bin/test.py @@ -1,183 +1,186 @@ import sys import os.path sys.path.append( os.path.abspath( './release') ) import getopt import time import rpcppy import rpyc import rpyc.utils.server def py_synch_benchmark( echo, va...
filodej/rpcpp
bca852ab37adcda36b14fc2b97636d7a21bf1e49
Added documentation to the python test. Added asynchronous tests.
diff --git a/bin/test.py b/bin/test.py index 087a749..ea49c98 100644 --- a/bin/test.py +++ b/bin/test.py @@ -1,132 +1,183 @@ import sys -import os.path -sys.path.append( os.path.abspath( './relwithdebinfo') ) +import os.path +sys.path.append( os.path.abspath( './release') ) import getopt -import new +import time i...
filodej/rpcpp
2bbad8498563c37761e15b63e8c4756af45df3c6
import _rpcppy workaround
diff --git a/bin/test.py b/bin/test.py index 99c1a93..087a749 100644 --- a/bin/test.py +++ b/bin/test.py @@ -1,130 +1,132 @@ import sys +import os.path +sys.path.append( os.path.abspath( './relwithdebinfo') ) import getopt import new import rpcppy import rpyc import rpyc.utils.server def deref( ptr ): t...
filodej/rpcpp
9104bf4177de64cb9f46a3fa3a63bbb1fd8a5f62
.pyd -> .so on non-windows system
diff --git a/cmake.sh b/cmake.sh new file mode 100755 index 0000000..639d873 --- /dev/null +++ b/cmake.sh @@ -0,0 +1,2 @@ +cd build/ +cmake .. \ No newline at end of file diff --git a/swig/CMakeLists.txt b/swig/CMakeLists.txt index 1ca9938..68852d8 100644 --- a/swig/CMakeLists.txt +++ b/swig/CMakeLists.txt @@ -1,30 +1,...
filodej/rpcpp
bacc178303b4f93aa31cb45934adfa7dd9292024
project renamed
diff --git a/CMakeLists.txt b/CMakeLists.txt index cdf4842..cf816cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,27 +1,27 @@ cmake_minimum_required (VERSION 2.6) -project (pyecho) +project (rpcpp) INCLUDE(FindPythonInterp) INCLUDE(FindPythonLibs) #INCLUDE(FindJNI) INCLUDE(FindSWIG) INCLUDE(FindBoost...
filodej/rpcpp
05085f959cdc0255f35dc131f0b1034d928c9612
Windows related changes.
diff --git a/.gitignore b/.gitignore index 826c12b..234e70a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,13 @@ *~ +*.bak *_wrap.cxx *_wrap.h *.pyc Makefile cmake_install.cmake CMakeFiles CMakeCache.txt +build +bin/Release +bin/Debug +bin/rpcppy.py \ No newline at end of file diff --git a/bin/test.py b/b...
filodej/rpcpp
d77c5ff89528434e4bf0a063e5741dbbf1a3d593
Windows related changes.
diff --git a/.gitignore b/.gitignore index 826c12b..234e70a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,13 @@ *~ +*.bak *_wrap.cxx *_wrap.h *.pyc Makefile cmake_install.cmake CMakeFiles CMakeCache.txt +build +bin/Release +bin/Debug +bin/rpcppy.py \ No newline at end of file diff --git a/bin/test.py b/b...
filodej/rpcpp
54c7191260a693b1fb3f3e6d79deb5b9d65cb798
Windows specifix fixes
diff --git a/CMakeLists.txt b/CMakeLists.txt index cdf4842..cf816cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,27 +1,27 @@ cmake_minimum_required (VERSION 2.6) -project (pyecho) +project (rpcpp) INCLUDE(FindPythonInterp) INCLUDE(FindPythonLibs) #INCLUDE(FindJNI) INCLUDE(FindSWIG) INCLUDE(FindBoost...
filodej/rpcpp
0a7c9fe6e5b0cc8db9b317f4cbb6e4c8f95411c2
echo interface fix
diff --git a/include/echo.hpp b/include/echo.hpp index b73eda8..419a5b3 100644 --- a/include/echo.hpp +++ b/include/echo.hpp @@ -1,30 +1,31 @@ #ifndef __ECHO_INCLUDED_HPP__ #define __ECHO_INCLUDED_HPP__ #include <boost/noncopyable.hpp> #include <boost/shared_ptr.hpp> #include <string> + template <class T> -c...
filodej/rpcpp
e58ac3b7676d1b7c020c1ec2735269904975dd15
Set up default symbol visibility as "hidden" (provided proper API defines)
diff --git a/CMakeLists.txt b/CMakeLists.txt index 27ca145..cdf4842 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,25 +1,27 @@ cmake_minimum_required (VERSION 2.6) project (pyecho) INCLUDE(FindPythonInterp) INCLUDE(FindPythonLibs) #INCLUDE(FindJNI) INCLUDE(FindSWIG) INCLUDE(FindBoost) SET( Boost_AD...
filodej/rpcpp
fdceb88c5cb4488423f423814c353e977b71d2aa
Added .gitignore file
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..826c12b --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +*~ +*_wrap.cxx +*_wrap.h +*.pyc +Makefile +cmake_install.cmake +CMakeFiles +CMakeCache.txt
filodej/rpcpp
e801fd894578a6a5616934a36912be164d2fb1ca
Started adding the java support
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cd7364..27ca145 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,23 +1,25 @@ cmake_minimum_required (VERSION 2.6) project (pyecho) INCLUDE(FindPythonInterp) INCLUDE(FindPythonLibs) +#INCLUDE(FindJNI) INCLUDE(FindSWIG) INCLUDE(FindBoost) SET( Boost_AD...
filodej/rpcpp
6c083f331c08ff1e8c9fb65729c8b10e599baae8
Added boost inslude detection and renamed the project from pyecho -> rpcpp
diff --git a/CMakeLists.txt b/CMakeLists.txt index af083b1..4728cd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,18 +1,22 @@ cmake_minimum_required (VERSION 2.6) project (pyecho) INCLUDE(FindPythonInterp) INCLUDE(FindPythonLibs) INCLUDE(FindSWIG) +INCLUDE(FindBoost) FIND_PACKAGE(SWIG REQUIRED) +FIND_...
filodej/rpcpp
cf2ef22e29b840f29292c5895724ff4f6ee0cf89
Added boost inslude detection and renamed the project from pyecho -> rpcpp
diff --git a/CMakeLists.txt b/CMakeLists.txt index af083b1..f7d6cc3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,18 +1,19 @@ cmake_minimum_required (VERSION 2.6) project (pyecho) INCLUDE(FindPythonInterp) INCLUDE(FindPythonLibs) INCLUDE(FindSWIG) FIND_PACKAGE(SWIG REQUIRED) +FIND_PACKAGE(Boost REQUIR...
filodej/rpcpp
2974508aaff7ad19d2f7fa5c745a88b8eaa59018
Optimized the factories and extended the set of benchmarks.
diff --git a/bin/test.py b/bin/test.py index 96c27a5..0255d03 100644 --- a/bin/test.py +++ b/bin/test.py @@ -1,127 +1,129 @@ import sys import getopt import new import pyecho import rpyc import rpyc.utils.server def deref( ptr ): try: return ptr.__deref__() except: return ptr -class adapter_fac...
filodej/rpcpp
98c13f13226932f363e9cf12303c32a27c4d1df9
Remote echo works now
diff --git a/TODO b/TODO new file mode 100644 index 0000000..a78c1df --- /dev/null +++ b/TODO @@ -0,0 +1,3 @@ +TODO: +1) solve CMake cache problem (http://www.cmake.org/pipermail/cmake/2004-July/005273.html) +2) update the test for remote echoing diff --git a/bin/test.py b/bin/test.py new file mode 100644 index 0000000...
filodej/rpcpp
670a490800e10dd8469ddb93b133cf432e95fcb8
First version
diff --git a/include/echo.hpp b/include/echo.hpp index 91f0935..8b85951 100644 --- a/include/echo.hpp +++ b/include/echo.hpp @@ -1,30 +1,30 @@ #ifndef __ECHO_INCLUDED_HPP__ #define __ECHO_INCLUDED_HPP__ #include <boost/noncopyable.hpp> #include <boost/shared_ptr.hpp> #include <string> template <class T> cla...
filodej/rpcpp
d709c31d8f2a2bcfb18e268bf0e337e8a7593c36
CMake files creation
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..af083b1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required (VERSION 2.6) +project (pyecho) + +INCLUDE(FindPythonInterp) +INCLUDE(FindPythonLibs) +INCLUDE(FindSWIG) +FIND_PACKAGE(SWIG REQUIRED) + +SET(BUILD_SHARED_...
oneup/Puit
af7d1d1155bcd6cc05bfd8aee636de73c462729e
switched to gosu .app bundle
diff --git a/Main.rb b/Main.rb deleted file mode 100644 index 0d9746c..0000000 --- a/Main.rb +++ /dev/null @@ -1,100 +0,0 @@ -# powered by Gosy Mac Bundle 0.7.15 - -# Do not include gosu.bundle into this template. -# This is just here so you can run your game from the terminal, or -# your favorite text editor, using `r...
oneup/Puit
c504a27f7c3e137c7161db4b616b8b0701fc216a
hackish way to update positions
diff --git a/Main.rb b/Main.rb index 72bd2b1..0d9746c 100644 --- a/Main.rb +++ b/Main.rb @@ -1,92 +1,100 @@ # powered by Gosy Mac Bundle 0.7.15 # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. ...
oneup/Puit
7a486c1b094d520ca16e14bbfefa97e6ac9e09be
gosu mac bundle currently (0.7.15) doesn't support socket
diff --git a/Main.rb b/Main.rb index 8406f45..72bd2b1 100644 --- a/Main.rb +++ b/Main.rb @@ -1,94 +1,92 @@ # powered by Gosy Mac Bundle 0.7.15 - # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. ...
oneup/Puit
f2253290229627ed0028753aea8824bbcc7898a5
sprite orientation left/right
diff --git a/gameobjects/puit.rb b/gameobjects/puit.rb index 09cbbf4..f015962 100644 --- a/gameobjects/puit.rb +++ b/gameobjects/puit.rb @@ -1,39 +1,45 @@ class Puit < Gameobject def move_to x, y @x = x @y = y end def initialize super @sprite = @sprites[:walk_empty] end def...
oneup/Puit
5920b274c6ac5b2e0379a4d82acb1d232d428fc7
move left
diff --git a/gameobjects/puit.rb b/gameobjects/puit.rb index bce0486..09cbbf4 100644 --- a/gameobjects/puit.rb +++ b/gameobjects/puit.rb @@ -1,28 +1,39 @@ class Puit < Gameobject def move_to x, y @x = x @y = y end def initialize super @sprite = @sprites[:walk_empty] end def...
oneup/Puit
f129af25ccc8c096d6dc2c616f95f1436b2b7b11
quick'n'dirty collision detection using Rect from rubygame via chingu
diff --git a/Main.rb b/Main.rb index dbff593..8406f45 100644 --- a/Main.rb +++ b/Main.rb @@ -1,80 +1,94 @@ +# powered by Gosy Mac Bundle 0.7.15 + + # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. ...
oneup/Puit
89a26ea415b42c5c9aae2e47573c1c07d8615ebd
basic key dispatcher
diff --git a/Main.rb b/Main.rb index 0ae7ef4..dbff593 100644 --- a/Main.rb +++ b/Main.rb @@ -1,65 +1,80 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
0a354cceb675ce3d39b45a1b4be944a0ab03b5b9
walk animation, sprite class extended
diff --git a/Main.rb b/Main.rb index 1fc122e..0ae7ef4 100644 --- a/Main.rb +++ b/Main.rb @@ -1,47 +1,65 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
59403c72deaa3a83c825b47713450aa066a30de4
sprite switching
diff --git a/gameobjects/puit.rb b/gameobjects/puit.rb index 4eb4ae4..dd3f528 100644 --- a/gameobjects/puit.rb +++ b/gameobjects/puit.rb @@ -1,6 +1,11 @@ class Puit < Gameobject def move_to x, y @x = x @y = y end + + def initialize + super + @sprite = @sprites[:walk_empty] + end end \ No n...
oneup/Puit
ff68e859f750c114880d54d6081e8c3d4e2c3176
background gameobject added
diff --git a/Main.rb b/Main.rb index 55584ce..1fc122e 100644 --- a/Main.rb +++ b/Main.rb @@ -1,38 +1,47 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
f1afd414c1025e5766345299b908d5d56bf61117
basic sprite autoloading
diff --git a/gameobjects/puit/mouse.png b/gameobjects/puit/mouse.png deleted file mode 100644 index f5e1a06..0000000 Binary files a/gameobjects/puit/mouse.png and /dev/null differ diff --git a/lib/helpers.rb b/lib/helpers.rb index cef3d0e..0b53f48 100644 --- a/lib/helpers.rb +++ b/lib/helpers.rb @@ -1,82 +1,90 @@ clas...
oneup/Puit
3b73ca9befd7d326f0478a067fbcc67a9cdfbee2
autoloading for resources
diff --git a/Main.rb b/Main.rb index feded3c..55584ce 100644 --- a/Main.rb +++ b/Main.rb @@ -1,39 +1,38 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
322b2764a12bb841b4f1706ff5aa216b7f4f72b9
require_all is handy
diff --git a/Main.rb b/Main.rb index 66f0ce7..feded3c 100644 --- a/Main.rb +++ b/Main.rb @@ -1,39 +1,39 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
84f6fb13eae16490e2e029533c4d7b5a5cf8218d
cursor object follows mouse
diff --git a/Main.rb b/Main.rb index ee1592a..66f0ce7 100644 --- a/Main.rb +++ b/Main.rb @@ -1,37 +1,39 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
3c65e585ab175628ad6378c7ca9ec3e73ebe3f1b
mouse pointer, framework stuff
diff --git a/Main.rb b/Main.rb index 8d802a2..ee1592a 100644 --- a/Main.rb +++ b/Main.rb @@ -1,22 +1,37 @@ # Do not include gosu.bundle into this template. # This is just here so you can run your game from the terminal, or # your favorite text editor, using `ruby Main.rb`. require "rubygems" rescue nil require '...
oneup/Puit
56331058778d5f5c79648b700ee8ade691b661ab
window, objects
diff --git a/Gosu.icns b/Gosu.icns new file mode 100644 index 0000000..719acef Binary files /dev/null and b/Gosu.icns differ diff --git a/Main.rb b/Main.rb new file mode 100644 index 0000000..8d802a2 --- /dev/null +++ b/Main.rb @@ -0,0 +1,22 @@ +# Do not include gosu.bundle into this template. +# This is just here so y...
wilkerlucio/jquery-multiselect
011555713904017ee87fe34367b045e5001b7ba6
resizable input has a title attribute for hinting
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index 8b21ae9..66584fb 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,525 +1,529 @@ (function() { var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; (function($) { var KEY; ...
wilkerlucio/jquery-multiselect
0a62ee271943de8c722b5e85d6bb637d796aadd9
added some events
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index baa374b..8b21ae9 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,515 +1,525 @@ (function() { var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; (function($) { var KEY; ...
wilkerlucio/jquery-multiselect
f642de41639a9aaeed847baff4422a55f723639b
deploy version 0.1.9
diff --git a/VERSION b/VERSION index 699c6c6..1a03094 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.8 +0.1.9 diff --git a/dist/jquery.multiselect.0.1.9.min.js b/dist/jquery.multiselect.0.1.9.min.js new file mode 100644 index 0000000..c3c56f0 --- /dev/null +++ b/dist/jquery.multiselect.0.1.9.min.js @@ -0,0 +1,45 @...
wilkerlucio/jquery-multiselect
9f7f56befe9af0daf3dd8313a5f2907a2678d917
automatic add selected options when creating from an select
diff --git a/examples/index.html b/examples/index.html index bb9209d..a83e1d5 100644 --- a/examples/index.html +++ b/examples/index.html @@ -1,48 +1,48 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="...
wilkerlucio/jquery-multiselect
972defc9c4080e3518b768131eb2a895e8188a83
fixed loading initial values, get correct label from completions if it's available
diff --git a/examples/index.html b/examples/index.html index e18bfea..bb9209d 100644 --- a/examples/index.html +++ b/examples/index.html @@ -1,48 +1,48 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="...
wilkerlucio/jquery-multiselect
3c5174928289edf85451de9da483eb220f8b122e
fixed string extension and generated new version
diff --git a/Rakefile b/Rakefile index e962539..68fc3fa 100644 --- a/Rakefile +++ b/Rakefile @@ -1,45 +1,45 @@ # encoding: utf-8 require 'rubygems' require 'bundler' Bundler.setup Bundler.require desc "Compile CoffeeScripts and watch for changes" task :coffee do - coffee = IO.popen 'coffee -wc --no-wrap -o ...
wilkerlucio/jquery-multiselect
baac8e884c39e63a269d4111753267bd4166d8c7
fixed mouse selection
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index ab07f0f..b72bcea 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,486 +1,486 @@ var __bind = function(func, context) { return function(){ return func.apply(context, arguments); }; }; (function($) { var KEY; ...
wilkerlucio/jquery-multiselect
23d2fce202ee3e29b9ede291ffe6f5a26fdcd4cf
gemfile lock
diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..b705e5b --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,10 @@ +GEM + remote: http://rubygems.org/ + specs: + jsmin (1.0.1) + +PLATFORMS + ruby + +DEPENDENCIES + jsmin
wilkerlucio/jquery-multiselect
db96237e09c0553d64ceb169d638c4811315ba8f
ported code for coffeescript 0.9.4
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index 093b046..ab07f0f 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,599 +1,486 @@ -// Copyright (c) 2010 Wilker Lúcio -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file exce...
wilkerlucio/jquery-multiselect
520ab2de1521d24bbebe2f822b919818f2725784
fixing rake file
diff --git a/Rakefile b/Rakefile index 8bd2e17..e962539 100644 --- a/Rakefile +++ b/Rakefile @@ -1,44 +1,45 @@ +# encoding: utf-8 require 'rubygems' require 'bundler' Bundler.setup Bundler.require desc "Compile CoffeeScripts and watch for changes" task :coffee do - coffee = IO.popen 'coffee -wc --no-wrap src...
wilkerlucio/jquery-multiselect
c79f667d16e9ddf303fd72ebed90ab778bd37d65
released 0.1.7
diff --git a/VERSION b/VERSION index a192233..a1e1395 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.6 \ No newline at end of file +0.1.7 \ No newline at end of file diff --git a/dist/jquery.multiselect.0.1.7.min.js b/dist/jquery.multiselect.0.1.7.min.js new file mode 100644 index 0000000..76dded1 --- /dev/null ++...
wilkerlucio/jquery-multiselect
4ad746d452ece641cfade4ff57b67fbc9145fd30
fixed complex search for IE
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index e175963..093b046 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,597 +1,599 @@ // Copyright (c) 2010 Wilker Lúcio // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file exce...
wilkerlucio/jquery-multiselect
39dbff7426be1f03cf36653287e0fe0ac30e1d7b
release 0.1.6
diff --git a/VERSION b/VERSION index def9a01..a192233 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.5 \ No newline at end of file +0.1.6 \ No newline at end of file diff --git a/dist/jquery.multiselect.0.1.6.min.js b/dist/jquery.multiselect.0.1.6.min.js new file mode 100644 index 0000000..3c655d1 --- /dev/null ++...
wilkerlucio/jquery-multiselect
722fc4e2f0faac91c947fea5ab38072483bc7c2b
added complex search
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index cbb3c1a..e175963 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,570 +1,597 @@ // Copyright (c) 2010 Wilker Lúcio // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file exce...
wilkerlucio/jquery-multiselect
02058d6da3ae3f621e07435d63810fcd6f479c11
hide autocomplete box when esc and blur, and added some effects
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index fecfe2a..cbb3c1a 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,542 +1,570 @@ // Copyright (c) 2010 Wilker Lúcio // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file exce...
wilkerlucio/jquery-multiselect
bf1f701038f18cd1632af9e8cb7b33140c2495d2
z-index on autocomplete to be over other size things
diff --git a/css/jquery.multiselect.css b/css/jquery.multiselect.css index c7e7bab..31cfa98 100644 --- a/css/jquery.multiselect.css +++ b/css/jquery.multiselect.css @@ -1,32 +1,32 @@ /* TextboxList CSS */ *:first-child+html div.holder { padding-bottom: 2px; } * html div.holder { padding-bottom: 2px; } /* ie7 and bel...
wilkerlucio/jquery-multiselect
61b7e179b194f0b59a6642cd8b6e23fd7c2c962c
released 0.1.5
diff --git a/VERSION b/VERSION index 446ba66..def9a01 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.4 \ No newline at end of file +0.1.5 \ No newline at end of file diff --git a/dist/jquery.multiselect.0.1.5.min.js b/dist/jquery.multiselect.0.1.5.min.js new file mode 100644 index 0000000..e3127b2 --- /dev/null ++...
wilkerlucio/jquery-multiselect
9e39c9295df9eec9bb8c3138daa21b5e6b0b353b
fixed cursor when enable_new_options is false
diff --git a/js/jquery.multiselect.js b/js/jquery.multiselect.js index e536005..fecfe2a 100644 --- a/js/jquery.multiselect.js +++ b/js/jquery.multiselect.js @@ -1,541 +1,542 @@ // Copyright (c) 2010 Wilker Lúcio // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file exce...
wilkerlucio/jquery-multiselect
0293ab731165775054325e798fb155b1c1f18ef0
release 0.1.4 [removed console request]
diff --git a/VERSION b/VERSION index 7693c96..446ba66 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.3 \ No newline at end of file +0.1.4 \ No newline at end of file diff --git a/dist/jquery.multiselect.0.1.4.min.js b/dist/jquery.multiselect.0.1.4.min.js new file mode 100644 index 0000000..af3528a --- /dev/null ++...
wilkerlucio/jquery-multiselect
085509a615635791e0d9c47adf864e0aaa60292b
release 0.1.3
diff --git a/VERSION b/VERSION index 8294c18..7693c96 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.2 \ No newline at end of file +0.1.3 \ No newline at end of file diff --git a/dist/jquery.multiselect.0.1.3.min.js b/dist/jquery.multiselect.0.1.3.min.js new file mode 100644 index 0000000..2e5f669 --- /dev/null ++...