repo string | commit string | message string | diff string |
|---|---|---|---|
mattetti/acts_as_taggable_on_steroids | d8a39eeaae4bd7f29727041d4504c36bce880c02 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@331 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index f72c144..e145668 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,118 +1,129 @@
+[20 September 2007]
+
+* Add :parse option to TagList#new and TagList#add.
+
+ tag_list = TagList.new("One, Two", :parse => true) # ["One", "Two"]
+
+ tag_list # ["One", "Two"]
+ tag... |
mattetti/acts_as_taggable_on_steroids | 1eb5ec1a8a84070cfbc0cda164de418553941989 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@330 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index 29a3f07..34ddbee 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,186 +1,184 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | 24ab9b0c3faac29973ce82b2d9e5536591243a58 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@329 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/README b/README
index 8d07327..e5192a9 100644
--- a/README
+++ b/README
@@ -1,144 +1,144 @@
= acts_as_taggable_on_steroids
If you find this plugin useful, please consider a donation to show your support!
http://www.paypal.com/cgi-bin/webscr?cmd=_send-money
Email address: jonathan.vine... |
mattetti/acts_as_taggable_on_steroids | b0d527d624e410145f7b6741f64343c0fa683601 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@328 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 930d37c..f72c144 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,114 +1,118 @@
+[29 September 2007]
+
+* Add TagsHelper to assist with generating tag clouds and provide a simple example.
+
[27 September 2007]
* Add #tag_counts method to get tag counts for a specific objec... |
mattetti/acts_as_taggable_on_steroids | 789dbd53584641f8f03767ff6294356ac621a59d | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@325 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index 728a1b0..34ddbee 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,180 +1,184 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | 10e8b158b1d82f1b7d4fe7aab5ef24700c6b5601 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@321 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index b700e19..930d37c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,112 +1,114 @@
[27 September 2007]
* Add #tag_counts method to get tag counts for a specific object's tags.
+* BACKWARDS INCOMPATIBILITY: Rename #find_options_for_tagged_with to #find_options_for_find_tagged_... |
mattetti/acts_as_taggable_on_steroids | 87df528edb589741a9dbb75454ceadf6daae02e6 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@318 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index a037432..b700e19 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,108 +1,112 @@
+[27 September 2007]
+
+* Add #tag_counts method to get tag counts for a specific object's tags.
+
[17 September 2007]
* Fix clearing of cached tag list when all tags removed.
[12 Septembe... |
mattetti/acts_as_taggable_on_steroids | b3d7ef6a17e8b163bbdb1e5aaa419bc237ebff5e | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@315 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index d7abf03..49d2bfc 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,178 +1,176 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | 1ee82863a8b2e39dd7a35ffab41f31cefb25204f | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@311 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/README b/README
index f931c95..2e9072a 100644
--- a/README
+++ b/README
@@ -1,116 +1,116 @@
= acts_as_taggable_on_steroids
If you find this plugin useful, please consider a donation to show your support!
http://www.paypal.com/cgi-bin/webscr?cmd=_send-money
Email address: jonathan.vine... |
mattetti/acts_as_taggable_on_steroids | 904eef0aceb45f232672f00ad7e064ba8c6c5c0e | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@310 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/README b/README
index 670d13a..f931c95 100644
--- a/README
+++ b/README
@@ -1,116 +1,116 @@
= acts_as_taggable_on_steroids
If you find this plugin useful, please consider a donation to show your support!
http://www.paypal.com/cgi-bin/webscr?cmd=_send-money
Email address: jonathan.vine... |
mattetti/acts_as_taggable_on_steroids | 69cb0f6b5374a4cb5a225c6dd7586311f433f0ab | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@309 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/test/acts_as_taggable_test.rb b/test/acts_as_taggable_test.rb
index b755638..50d61d1 100644
--- a/test/acts_as_taggable_test.rb
+++ b/test/acts_as_taggable_test.rb
@@ -1,292 +1,292 @@
require File.dirname(__FILE__) + '/abstract_unit'
class ActsAsTaggableOnSteroidsTest < Test::Unit::TestCase
fixtures... |
mattetti/acts_as_taggable_on_steroids | 9d4467c22e7ee893ea2e21e0ee7ed87859e6a4b4 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@306 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index 2a958b6..d7abf03 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,177 +1,178 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | c230c1e7fc7a2a1373c85e2eac694bd430c1b81d | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@305 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 9ceebc5..a037432 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,104 +1,108 @@
+[17 September 2007]
+
+* Fix clearing of cached tag list when all tags removed.
+
[12 September 2007]
* Make the TagList class inherit from Array.
BACKWARDS INCOMPATIBILITY:
... |
mattetti/acts_as_taggable_on_steroids | f9ee522995a603301da5edb7a0039955e2c4972f | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@296 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/README b/README
index ac1e199..670d13a 100644
--- a/README
+++ b/README
@@ -1,116 +1,116 @@
= acts_as_taggable_on_steroids
If you find this plugin useful, please consider a donation to show your support!
http://www.paypal.com/cgi-bin/webscr?cmd=_send-money
Email address: jonathan.vine... |
mattetti/acts_as_taggable_on_steroids | 1c9fdb5edf7f62a01d6c3730f4db0317dc8bab17 | git-svn-id: http://svn.viney.net.nz/things/trunk/rails_plugins/acts_as_taggable_on_steroids@293 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/README b/README
index 670d13a..ac1e199 100644
--- a/README
+++ b/README
@@ -1,116 +1,116 @@
= acts_as_taggable_on_steroids
If you find this plugin useful, please consider a donation to show your support!
http://www.paypal.com/cgi-bin/webscr?cmd=_send-money
Email address: jonathan.vine... |
mattetti/acts_as_taggable_on_steroids | 88144be28e47685ef16b48df2e9f433ac94db38e | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@288 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index f24a411..9ceebc5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,91 +1,104 @@
+[12 September 2007]
+
+* Make the TagList class inherit from Array.
+
+ BACKWARDS INCOMPATIBILITY:
+
+ TagList#initialize, TagList#add, and TagList#remove no longer accept array arguments.
+... |
mattetti/acts_as_taggable_on_steroids | d5f67ed91899d6391ebf519d5dc5657fc1a1c0bf | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@286 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 3880aa8..f24a411 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,87 +1,91 @@
+[6 September 2007]
+
+* Add TagList#include? and TagList#empty?
+
[26 August 2006]
* Remove deprecated Tag.delimiter. Use TagList.delimiter instead.
[25 August 2007]
* Make tag_counts ... |
mattetti/acts_as_taggable_on_steroids | f7445b3439d88efd28b9bb96e606e8e239e65920 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@284 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 96c82fa..3880aa8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,89 +1,87 @@
[26 August 2006]
* Remove deprecated Tag.delimiter. Use TagList.delimiter instead.
-* Remove deprecated TagCountsAssociation. Scoping is used instead.
-
[25 August 2007]
* Make tag_counts... |
mattetti/acts_as_taggable_on_steroids | 2864ec74e85bb85e9048a3834a3af8af8d7a1803 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@283 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 523e57f..96c82fa 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,82 +1,89 @@
+[26 August 2006]
+
+* Remove deprecated Tag.delimiter. Use TagList.delimiter instead.
+
+* Remove deprecated TagCountsAssociation. Scoping is used instead.
+
[25 August 2007]
* Make tag_counts... |
mattetti/acts_as_taggable_on_steroids | 369353512ba0109e68ff96bec2eceef8dfc0b27c | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@282 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index d75c63b..523e57f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,78 +1,82 @@
+[25 August 2007]
+
+* Make tag_counts work with has_many :through
+
[23 August 2007]
* Make search comparisons case-insensitive across different databases. [Moisés Machado]
* Improve compa... |
mattetti/acts_as_taggable_on_steroids | b2bab00c4e4218da9d993bfff4ad19ccc9ecf43b | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@281 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index 2c1deae..0326049 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,173 +1,177 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | 655c731d78cad9f84e3f096185b6dca3ce9edb54 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@280 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 54d932e..d75c63b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,72 +1,78 @@
+[23 August 2007]
+
+* Make search comparisons case-insensitive across different databases. [Moisés Machado]
+
+* Improve compatiblity with STI. [Moisés Machado]
+
[25 July 2007]
* Respect cu... |
mattetti/acts_as_taggable_on_steroids | a778ca849f049e0e5c2cf4f7405c509c4ebf0f45 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@275 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index 0bbf58f..8136697 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,170 +1,170 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | 378ea62a14a1bf8c7d750a4d2e11c57932e17845 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@274 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 88ba39a..54d932e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,66 +1,72 @@
+[25 July 2007]
+
+* Respect custom table names for the Tag and Tagging classes.
+
+* Fix the :exclude option for find_tagged_with
+
[17 July 2007]
* Make the migration work on edge rails
... |
mattetti/acts_as_taggable_on_steroids | dd86aaeb5d0676e8627162800d8d91b8c7d856a9 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@272 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/acts_as_taggable.rb b/lib/acts_as_taggable.rb
index f11152d..73865a0 100644
--- a/lib/acts_as_taggable.rb
+++ b/lib/acts_as_taggable.rb
@@ -1,160 +1,160 @@
module ActiveRecord
module Acts #:nodoc:
module Taggable #:nodoc:
def self.included(base)
base.extend(ClassMethods)
... |
mattetti/acts_as_taggable_on_steroids | b08b16cbb96c019db5391c8a399f3717f408e162 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@271 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 0a4b0b9..88ba39a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,62 +1,66 @@
+[17 July 2007]
+
+* Make the migration work on edge rails
+
[8 July 2007]
* find_options_for_tagged_with should not alter its arguments
[1 July 2007]
* Fix incorrect tagging when the c... |
mattetti/acts_as_taggable_on_steroids | e5e70dafc9f09b65a0a2b85caf9ecb8b33af513a | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@268 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index 8c36852..0a4b0b9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,58 +1,62 @@
+[8 July 2007]
+
+* find_options_for_tagged_with should not alter its arguments
+
[1 July 2007]
* Fix incorrect tagging when the case of the tag list is changed.
* Fix deprecated Tag.delimit... |
mattetti/acts_as_taggable_on_steroids | 04f8a7bc8f66234e7091c7de2ee368b04565b166 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@267 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
index a12b709..8c36852 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,52 +1,58 @@
+[1 July 2007]
+
+* Fix incorrect tagging when the case of the tag list is changed.
+
+* Fix deprecated Tag.delimiter accessor.
+
[23 June 2007]
* Add validation to Tag model.
* find_optio... |
mattetti/acts_as_taggable_on_steroids | 821005bef3ed13e75882d0b8208656b6bbc077fb | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@250 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..60db6b1
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,46 @@
+[23 June 2007]
+
+* Add validation to Tag model.
+
+[21 June 2007]
+
+* Remove extra .rb from generated migration file name.
+
+[15 June 2007]
+
+* Introduce TagList class.
+
+* Var... |
mattetti/acts_as_taggable_on_steroids | 39812592ac8ac90f94d57341fb70b5b95f28820e | Add :match_all option to find_tagged_with | diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..615eae1
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,3 @@
+[7 Jan 2007]
+
+* Add :match_all to find_tagged_with [Michael Sheakoski]
diff --git a/README b/README
index 93b007e..fe2f8ec 100644
--- a/README
+++ b/README
@@ -1,60 +1,71 @@
= acts_as_tagg... |
mattetti/acts_as_taggable_on_steroids | a998b6fd6054fda54b8f2eeb8823350e4621ff11 | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@165 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/lib/tag.rb b/lib/tag.rb
index 189c8b7..b3adf67 100644
--- a/lib/tag.rb
+++ b/lib/tag.rb
@@ -1,39 +1,39 @@
class Tag < ActiveRecord::Base
has_many :taggings
def self.parse(list)
tags = []
return tags if list.blank?
list = list.dup
# Parse the quoted tags
list.... |
mattetti/acts_as_taggable_on_steroids | face1b540f04bffa5646b0a29e98916230019cdf | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@164 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/test/acts_as_taggable_test.rb b/test/acts_as_taggable_test.rb
index 2dd8b77..1bb467e 100644
--- a/test/acts_as_taggable_test.rb
+++ b/test/acts_as_taggable_test.rb
@@ -1,144 +1,142 @@
require File.dirname(__FILE__) + '/abstract_unit'
class ActsAsTaggableOnSteroidsTest < Test::Unit::TestCase
fixtu... |
mattetti/acts_as_taggable_on_steroids | 2638ef4711bf7597c7bb64359437d6e67045404a | git-svn-id: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids@130 20afb1e0-9c0e-0410-9884-91ed27886737 | diff --git a/MIT-LICENSE b/MIT-LICENSE
new file mode 100644
index 0000000..602bda2
--- /dev/null
+++ b/MIT-LICENSE
@@ -0,0 +1,20 @@
+Copyright (c) 2006 Jonathan Viney
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), t... |
edeca/Net-LibNIDS | f983445ceff0bee4cc7b8cbee914f67cbffef78c | Bump to v0.14 with update to bundled Devel::CheckLib, which was failing with Perl 5.18. Fixes cpan #94096. | diff --git a/Changes b/Changes
index c4c3a8c..38d234a 100644
--- a/Changes
+++ b/Changes
@@ -1,31 +1,34 @@
-Revision history for Perl extension Lib::nids.
+Revision history for Perl extension Net::LibNIDS.
+
+0.14 Fri Mar 21 23:00:00 2014 (EDECA)
+ - Update bundled Devel::CheckLib for Perl 5.18 (fixes cpan #94096)
... |
edeca/Net-LibNIDS | 5da488ab06547a69ac8bc9f455eadef18676cd32 | Version bump to 1.13 for meta fixes (as repored by http://cpants.cpanauthors.org/dist/Net-LibNIDS) | diff --git a/Changes b/Changes
index d5e474f..c4c3a8c 100644
--- a/Changes
+++ b/Changes
@@ -1,28 +1,31 @@
Revision history for Perl extension Lib::nids.
+0.13 Thu Mar 20 14:30:00 2014 (EDECA)
+ - Update Meta.yml to be compliant with spec v1.4
+
0.12 Wed Mar 19 11:00:00 2014 (EDECA)
- Add checksum_off(), fixes ... |
edeca/Net-LibNIDS | b9c1a8778da5127ca3fd219b4915303addeb5d74 | Bump for v0.12, including patch from github/midenok. | diff --git a/Changes b/Changes
index 11ee955..d5e474f 100644
--- a/Changes
+++ b/Changes
@@ -1,25 +1,28 @@
Revision history for Perl extension Lib::nids.
+0.12 Wed Mar 19 11:00:00 2014 (EDECA)
+ - Add checksum_off(), fixes cpan #82871 (patch by github/midenok)
+
0.11 Fri Jan 18 18:30:00 2013 (EDECA)
- - Allow ... |
edeca/Net-LibNIDS | 31a0a089b8aa026192f693a9dd8d02f28d58c37c | Add URL to Rafal's demonstration of where GCC is getting code wrong on AMD64. | diff --git a/README b/README
index 13e898e..19b4c50 100644
--- a/README
+++ b/README
@@ -1,42 +1,45 @@
Net::LibNIDS version 0.1
========================
This module embeds the libnids C library written by Rafal Wojtczuk <nergal@avet.com.pl?.
libnids is designed to do all lowlevel network code required by a networ... |
edeca/Net-LibNIDS | 3099baed447ce183c674996826a92220154d24e8 | Add warning about optimisation of libnids on 64-bit machines, which is causing tests to fail. | diff --git a/README b/README
index 87f7896..13e898e 100644
--- a/README
+++ b/README
@@ -1,38 +1,42 @@
Net::LibNIDS version 0.1
========================
This module embeds the libnids C library written by Rafal Wojtczuk <nergal@avet.com.pl?.
libnids is designed to do all lowlevel network code required by a networ... |
edeca/Net-LibNIDS | bdce397ce6bac75876193fc4625d929d93277340 | checksum_off(): disable checksum check | diff --git a/LibNIDS.xs b/LibNIDS.xs
index e30faa4..255fe8b 100644
--- a/LibNIDS.xs
+++ b/LibNIDS.xs
@@ -1,480 +1,488 @@
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#include "nids.h"
#include "const-c.inc"
#include <sys/types.h>
#include <sys/socket.h>
#include <netine... |
edeca/Net-LibNIDS | 462a80d81b5d3f760e810f282337507819b82148 | Add $stream->discard to replace the global nids_discard function. This brings it a little more in line with the psuedo-"OO" of the rest of the module. | diff --git a/LibNIDS.xs b/LibNIDS.xs
index ea43099..e30faa4 100644
--- a/LibNIDS.xs
+++ b/LibNIDS.xs
@@ -1,478 +1,480 @@
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#include "nids.h"
#include "const-c.inc"
#include <sys/types.h>
#include <sys/socket.h>
#include <netine... |
edeca/Net-LibNIDS | f4f92c2e8dd261c7bcd4ff760ae4c283a3d81e23 | Fix text in 5.t | diff --git a/t/5.t b/t/5.t
index c4f5450..4fef21f 100644
--- a/t/5.t
+++ b/t/5.t
@@ -1,51 +1,51 @@
use Test::More tests => 8;
BEGIN { use_ok('Net::LibNIDS') };
use strict;
# This test builds on 4.t by seeing whether nids_discard is working properly.
Net::LibNIDS::param::set_filename("t/http-test.dump");
i... |
edeca/Net-LibNIDS | 8563c677a05e0f5dbaca8081398bfa60509b324d | Export nids_discard also, to allow the user to manually manage how much data libnids keeps after you return from the TCP callback. | diff --git a/Changes b/Changes
index 2132bbc..11ee955 100644
--- a/Changes
+++ b/Changes
@@ -1,22 +1,25 @@
Revision history for Perl extension Lib::nids.
+0.11 Fri Jan 18 18:30:00 2013 (EDECA)
+ - Allow user to call nids_discard from within TCP callback
+
0.1 Mon Jun 28 15:55:00 2010 (EDECA)
- updated now t... |
edeca/Net-LibNIDS | 9cc732e404b9150e10529cd58adea8c12a094804 | More typos fixed | diff --git a/LibNIDS.pm b/LibNIDS.pm
index 15aca1e..52f746a 100644
--- a/LibNIDS.pm
+++ b/LibNIDS.pm
@@ -1,335 +1,335 @@
package Net::LibNIDS;
use 5.008;
use strict;
use warnings;
use Carp;
our @ISA = qw();
our $VERSION = '0.1';
sub AUTOLOAD {
# This AUTOLOAD is used to 'autoload' constants from th... |
edeca/Net-LibNIDS | 5b45420e48977959ced1269f285bb4cceb169c6a | Typo fix | diff --git a/LibNIDS.pm b/LibNIDS.pm
index 64a286b..15aca1e 100644
--- a/LibNIDS.pm
+++ b/LibNIDS.pm
@@ -1,335 +1,335 @@
package Net::LibNIDS;
use 5.008;
use strict;
use warnings;
use Carp;
our @ISA = qw();
our $VERSION = '0.1';
sub AUTOLOAD {
# This AUTOLOAD is used to 'autoload' constants from th... |
edeca/Net-LibNIDS | cd305107ba10b5ca4da54a268f77da087a59429e | One more comment added | diff --git a/Changes b/Changes
index ae78abc..2132bbc 100644
--- a/Changes
+++ b/Changes
@@ -1,21 +1,22 @@
Revision history for Perl extension Lib::nids.
0.1 Mon Jun 28 15:55:00 2010 (EDECA)
- updated now that libnids exports last_hdr by default in v1.19, some tidy up
- changed the way the callback is set, fi... |
edeca/Net-LibNIDS | 72f64a10609ed3037753f8dee2230eaf128b5b82 | Two small fixes to tests. Fix lib checking, don't require header files for libraries, just require the -l<libname> | diff --git a/Makefile.PL b/Makefile.PL
index f7558ab..f78006a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,60 +1,60 @@
use 5.008;
use lib 'inc';
use ExtUtils::MakeMaker;
use Devel::CheckLib;
# Check for the dependencies we need to build
check_lib_or_exit( lib => 'pcap', header => 'pcap.h' );
check_lib_or_e... |
edeca/Net-LibNIDS | 06f7f419925cfaddde6246435cd957cec4a3145f | Push changes for 0.1, ready for testing | diff --git a/Changes b/Changes
index 96dd68f..ae78abc 100644
--- a/Changes
+++ b/Changes
@@ -1,20 +1,21 @@
Revision history for Perl extension Lib::nids.
-0.1 TBC
+0.1 Mon Jun 28 15:55:00 2010 (EDECA)
- updated now that libnids exports last_hdr by default in v1.19, some tidy up
- changed the way the callback... |
edeca/Net-LibNIDS | ff2ee62f1e0d55f29b9e4f0a60dc9ea5581c5790 | Some systems seem to need to link explicitly against libnet | diff --git a/Makefile.PL b/Makefile.PL
index 98b004b..95c9182 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,51 +1,51 @@
use 5.008;
use lib 'inc';
use ExtUtils::MakeMaker;
use Devel::CheckLib;
# Check for the dependencies we need to build
check_lib_or_exit( lib => 'pcap', header => 'pcap.h' );
check_lib_or_e... |
edeca/Net-LibNIDS | f046eb3111e5ab4a1f9c75c2b2191e487e0596dc | Added note about potential gthread-2.0 bug | diff --git a/Makefile.PL b/Makefile.PL
index 600dfa6..98b004b 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,48 +1,51 @@
use 5.008;
use lib 'inc';
use ExtUtils::MakeMaker;
use Devel::CheckLib;
# Check for the dependencies we need to build
check_lib_or_exit( lib => 'pcap', header => 'pcap.h' );
check_lib_or_e... |
edeca/Net-LibNIDS | 04bed3d60e887f9a1343edfb0d44ade3ec234747 | Switch order of arguments to Devel::CheckLib so the error message makes more sense and remove old file from MANIFEST | diff --git a/MANIFEST b/MANIFEST
index a286c9a..893ab19 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,20 +1,19 @@
inc/Devel/CheckLib.pm
Changes
MANIFEST
Makefile.PL
README
const-c.inc
const-xs.inc
example.pl
fallback/const-c.inc
fallback/const-xs.inc
-libnids.patch
LibNIDS.pm
LibNIDS.xs
ppport.h
t/1.t
t/2.t... |
edeca/Net-LibNIDS | 13c7d5f18aac8125191ddc5ae5802f3e255ff09f | Proposed changes for v0.1. Cannot be included until the C library is updated. | diff --git a/Changes b/Changes
index 72103ba..96dd68f 100644
--- a/Changes
+++ b/Changes
@@ -1,15 +1,20 @@
Revision history for Perl extension Lib::nids.
+0.1 TBC
+ - updated now that libnids exports last_hdr by default in v1.19, some tidy up
+ - changed the way the callback is set, fixing a bug with parsing multi... |
edeca/Net-LibNIDS | 391958fdc6462b46c545bc31243043514e3ca502 | Add the files from Net::LibNIDS v0.04 for future modification | diff --git a/Changes b/Changes
new file mode 100644
index 0000000..72103ba
--- /dev/null
+++ b/Changes
@@ -0,0 +1,15 @@
+Revision history for Perl extension Lib::nids.
+
+0.04 Sun Feb 07 14:55:00 2010
+ - Fix the broken attempt to use Devel::CheckLib (EDECA)
+
+0.03 Sat Feb 06 13:55:00 2010
+ - Small update to... |
mbarbon/wx-perl-entrylist | db9153efbeada9636d466c0d386aab4b3b8ed169 | Add some documentation. | diff --git a/lib/Wx/Perl/EntryList.pm b/lib/Wx/Perl/EntryList.pm
index 13e8bc1..5248e2f 100644
--- a/lib/Wx/Perl/EntryList.pm
+++ b/lib/Wx/Perl/EntryList.pm
@@ -1,102 +1,183 @@
package Wx::Perl::EntryList;
+=head1 NAME
+
+Wx::Perl::EntryList - dynamic list that can be displayed in various controls
+
+=head1 SYNOPSIS... |
mbarbon/wx-perl-entrylist | 5813241f1e34d11af2188520b31aa506b665fb51 | Basic layout for a distribution. | diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..161494a
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,22 @@
+#!/usr/bin/perl -w
+
+use strict;
+
+use Module::Build;
+
+my $build = Module::Build->new
+ ( module_name => 'Wx::Perl::EntryList',
+ author => 'Mattia Barbon <mbarbon@cpan.org>',
+ ... |
mbarbon/wx-perl-entrylist | 6b59413eb4a23a0d23c7e143e2a22fb7f59cf2e8 | View based upon a Wx::ListBox. | diff --git a/lib/Wx/Perl/EntryList/ListBoxView.pm b/lib/Wx/Perl/EntryList/ListBoxView.pm
new file mode 100644
index 0000000..a69756d
--- /dev/null
+++ b/lib/Wx/Perl/EntryList/ListBoxView.pm
@@ -0,0 +1,67 @@
+package Wx::Perl::EntryList::ListBoxView;
+
+use Wx;
+
+use strict;
+use base qw(Wx::ListBox Class::Accessor::Fa... |
mbarbon/wx-perl-entrylist | ffbe2ca9f734e0a253b036c071f66dd8180a8056 | Compilation fix. | diff --git a/lib/Wx/Perl/EntryList/Iterator.pm b/lib/Wx/Perl/EntryList/Iterator.pm
index f1f2443..3c53c69 100644
--- a/lib/Wx/Perl/EntryList/Iterator.pm
+++ b/lib/Wx/Perl/EntryList/Iterator.pm
@@ -1,30 +1,30 @@
package Wx::Perl::EntryList::Iterator;
use strict;
use base qw(Class::Accessor::Fast);
__PACKAGE__->m... |
mbarbon/wx-perl-entrylist | 594c25304fd13f5824bf7a45839ce8c74e091c04 | Move all files of Wx::Perl::EntryList under a separate project. | diff --git a/lib/Wx/Perl/EntryList.pm b/lib/Wx/Perl/EntryList.pm
new file mode 100644
index 0000000..e1412cf
--- /dev/null
+++ b/lib/Wx/Perl/EntryList.pm
@@ -0,0 +1,94 @@
+package Wx::Perl::EntryList;
+
+use strict;
+use base qw(Class::Publisher Class::Accessor::Fast);
+
+__PACKAGE__->mk_accessors( qw(entries) );
+
+su... |
haminh/PinkBata | ee0c16683a2589895090a328f586e4aa6cdfd85d | this is a funny drawing | diff --git a/flower.bmp b/flower.bmp
new file mode 100644
index 0000000..a635804
Binary files /dev/null and b/flower.bmp differ
|
haminh/PinkBata | 6b923fcfd595db3bfd389b49e2bf92db4764dd91 | add 2 items | diff --git a/README b/README
index cdf440a..9ee8942 100644
--- a/README
+++ b/README
@@ -1,3 +1,5 @@
add a pink bata to the wish list
-add a tiramisru cake
\ No newline at end of file
+add a tiramisru cake
+
+add a cheese cake
\ No newline at end of file
|
haminh/PinkBata | a5db84f1b63449336c044b7db7352cacefd24c1b | add one item to the wish list | diff --git a/README b/README
index 31a5709..cdf440a 100644
--- a/README
+++ b/README
@@ -1 +1,3 @@
-add a pink bata to the wish list
\ No newline at end of file
+add a pink bata to the wish list
+
+add a tiramisru cake
\ No newline at end of file
|
ThisIsMissEm/Hex | df014480a29305c1f6ad0480989b4b6687627cd6 | Fixing and odd bug, involving archlinux | diff --git a/lib/hex.rb b/lib/hex.rb
index 10f8af3..ad9adc2 100644
--- a/lib/hex.rb
+++ b/lib/hex.rb
@@ -1,164 +1,164 @@
require 'rack'
require 'yaml'
require 'rdiscount'
require 'digest'
require 'erb'
module Hex
Paths = {
:templates => "demo/templates",
:data => "demo/data"
}
def self.... |
ThisIsMissEm/Hex | 5d69cf167273cfb23df301e514f54ae8823d7304 | Hex now has enough ants and a beehive to work. | diff --git a/config.ru b/config.ru
index fc1a859..f67de61 100644
--- a/config.ru
+++ b/config.ru
@@ -1,16 +1,14 @@
require 'lib/hex'
# Rack config
-# use Rack::Static, :urls => ['/css', '/js', '/images', '/favicon.ico'], :root => 'public'
+use Rack::Static, :urls => ['/css', '/js', '/images'], :root => "demo/publi... |
ThisIsMissEm/Hex | 6914825e4c56502a213361a00f4638039548de14 | The ants are still learning, give them time, and they shall implement the Modem. | diff --git a/config.ru b/config.ru
index 2e5c5cb..fc1a859 100644
--- a/config.ru
+++ b/config.ru
@@ -1,14 +1,16 @@
require 'lib/hex'
# Rack config
# use Rack::Static, :urls => ['/css', '/js', '/images', '/favicon.ico'], :root => 'public'
use Rack::CommonLogger
if ENV['RACK_ENV'] == 'development'
use Rack:... |
ThisIsMissEm/Hex | 66058059dd8fc7acebfdd3166affb95875327a5d | Okay, so I get the point that textmate doesn't like soft-tabs. | diff --git a/config.ru b/config.ru
index 0e7073c..2e5c5cb 100644
--- a/config.ru
+++ b/config.ru
@@ -1,14 +1,14 @@
require 'lib/hex'
# Rack config
# use Rack::Static, :urls => ['/css', '/js', '/images', '/favicon.ico'], :root => 'public'
use Rack::CommonLogger
if ENV['RACK_ENV'] == 'development'
- use Rack::... |
ThisIsMissEm/Hex | 4d8e2c8c57e4e20eaabea3b54ed1b94e2fd5cd71 | Hex doesn't like tabs, but prefers cheese and spaces | diff --git a/config.ru b/config.ru
index 2e5c5cb..0e7073c 100644
--- a/config.ru
+++ b/config.ru
@@ -1,14 +1,14 @@
require 'lib/hex'
# Rack config
# use Rack::Static, :urls => ['/css', '/js', '/images', '/favicon.ico'], :root => 'public'
use Rack::CommonLogger
if ENV['RACK_ENV'] == 'development'
- use Rack:... |
ThisIsMissEm/Hex | 120e6517711c16666b3b28e50d3083bd2dac98d8 | The first ants come in to colonise Hex. | diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e69de29
diff --git a/config.ru b/config.ru
new file mode 100644
index 0000000..2e5c5cb
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,14 @@
+require 'lib/hex'
+
+# Rack config
+# use Rack::Static, :urls => ['/css', '/js', '/images', '/favicon.ico'], :roo... |
ZachGoldberg/gssdp-gi | 907d3e3f2c79054d1126914db6d10b0583953ba8 | Add ability to make GSSDP gir and typelib (needs cleanup) | diff --git a/libgssdp/Makefile.am b/libgssdp/Makefile.am
index c9656b6..00a452a 100644
--- a/libgssdp/Makefile.am
+++ b/libgssdp/Makefile.am
@@ -1,51 +1,88 @@
# Version format current:revision:age
# If the library source code has changed at all since the last update, then
# increment revision (âc:r:aâ becomes â... |
ZachGoldberg/gssdp-gi | 5d8fc2a2ad61427d82f529ffd03ce659a960b37c | Don't leak target regex | diff --git a/libgssdp/gssdp-resource-browser.c b/libgssdp/gssdp-resource-browser.c
index 4cada12..47a7514 100644
--- a/libgssdp/gssdp-resource-browser.c
+++ b/libgssdp/gssdp-resource-browser.c
@@ -1,744 +1,747 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
... |
ZachGoldberg/gssdp-gi | 9aeb6188a4598e0648932d8947eed1f5b3626696 | Remove gssdp_client_new_full (#1796) | diff --git a/libgssdp/gssdp-client.h b/libgssdp/gssdp-client.h
index e4f4fac..cae12f6 100644
--- a/libgssdp/gssdp-client.h
+++ b/libgssdp/gssdp-client.h
@@ -1,102 +1,97 @@
/*
* Copyright (C) 2006, 2007 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; you can r... |
ZachGoldberg/gssdp-gi | 17290914e7d601414631311000f5749eddf4cc84 | Release announcement for release 0.7 | diff --git a/NEWS b/NEWS
index 7d7255e..ed422ae 100644
--- a/NEWS
+++ b/NEWS
@@ -1,74 +1,112 @@
+0.7
+===
+
+- Join the multicast group on the specified interface.
+- Put the message src timeout in the specified GMainContext.
+- "host-ip" property moved from GUPnPContext to parent GSSDPClient.
+- Use inet_aton instead ... |
ZachGoldberg/gssdp-gi | 35abde3593abf3a9929dcae9d9690ba672969898 | Revert "Print interface and IP client gets bound to" | diff --git a/tests/test-browser.c b/tests/test-browser.c
index 7e8eba1..0b88ba5 100644
--- a/tests/test-browser.c
+++ b/tests/test-browser.c
@@ -1,97 +1,93 @@
/*
* Copyright (C) 2006 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; you can redistribute it and/... |
ZachGoldberg/gssdp-gi | cfebec7b1f780474b2e72f052972e4ddab89653d | Discard packets from different network | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 3673087..8966ac9 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -202,711 +202,726 @@ gssdp_client_get_property (GObject *object,
case PROP_ACTIVE:
g_value_set_boolean (value, client->priv->active);
... |
ZachGoldberg/gssdp-gi | f9e90ec37e9f96aa140e1a3ab2e42f17525670e8 | Add a getter for GSSDPClient:active | diff --git a/doc/gssdp-sections.txt b/doc/gssdp-sections.txt
index 58bf9bc..e3a506d 100644
--- a/doc/gssdp-sections.txt
+++ b/doc/gssdp-sections.txt
@@ -1,87 +1,88 @@
<SECTION>
<FILE>gssdp-client</FILE>
<TITLE>GSSDPClient</TITLE>
GSSDPClient
gssdp_client_new
gssdp_client_get_main_context
gssdp_client_set_server_... |
ZachGoldberg/gssdp-gi | 6f0fa9e869b968f2b906af8e95294f9d07a17361 | Prefer non-loopback IPv4 interfaces | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 5ede2ad..cb3a75a 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -287,598 +287,612 @@ gssdp_client_class_init (GSSDPClientClass *klass)
object_class = G_OBJECT_CLASS (klass);
object_class->constructed = gssdp_client_constru... |
ZachGoldberg/gssdp-gi | 4d48561a8e601c2fc3911839754507f9c369dd0a | Print interface and IP client gets bound to | diff --git a/tests/test-browser.c b/tests/test-browser.c
index 0b88ba5..7e8eba1 100644
--- a/tests/test-browser.c
+++ b/tests/test-browser.c
@@ -1,93 +1,97 @@
/*
* Copyright (C) 2006 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; you can redistribute it and/... |
ZachGoldberg/gssdp-gi | 61565238ab0358b6cbc553866f0ddc6af36a8d6d | No need to find the default route | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index a2b7600..5ede2ad 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,975 +1,884 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
* Copyright (C) 2009 Nokia Corporation, all rights reserved.
*
* Author: Jorn Baayen ... |
ZachGoldberg/gssdp-gi | 136111031307fa37aa06f32480ebec624b48c63b | Client now binds to interface rather than IP | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 552f49f..a2b7600 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,904 +1,975 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
* Copyright (C) 2009 Nokia Corporation, all rights reserved.
*
* Author: Jorn Baayen ... |
ZachGoldberg/gssdp-gi | 2996283abe369502f633c85e558f391675b94883 | Correct behavior/docs for get_host_ip() | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 11803af..552f49f 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -250,664 +250,655 @@ gssdp_client_dispose (GObject *object)
client->priv->multicast_socket = NULL;
}
/* Unref the context */
... |
ZachGoldberg/gssdp-gi | 691ade3c36e609bc7e8aa477f11bf3b876a8cf2d | Version-independent M-SEARCH response | diff --git a/libgssdp/gssdp-resource-group.c b/libgssdp/gssdp-resource-group.c
index e01fb58..c677a5d 100644
--- a/libgssdp/gssdp-resource-group.c
+++ b/libgssdp/gssdp-resource-group.c
@@ -1,1015 +1,1081 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
*... |
ZachGoldberg/gssdp-gi | 46c97110adaaa76e90fb97fbb3629e19757d9b61 | Version-independent target match | diff --git a/libgssdp/gssdp-resource-browser.c b/libgssdp/gssdp-resource-browser.c
index 3118184..4cada12 100644
--- a/libgssdp/gssdp-resource-browser.c
+++ b/libgssdp/gssdp-resource-browser.c
@@ -1,940 +1,977 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
... |
ZachGoldberg/gssdp-gi | d7b975e4627c47f542b7864ffcf7c1c6e81b8312 | Put target compatibility in a separate function | diff --git a/libgssdp/gssdp-resource-browser.c b/libgssdp/gssdp-resource-browser.c
index 2453be5..3118184 100644
--- a/libgssdp/gssdp-resource-browser.c
+++ b/libgssdp/gssdp-resource-browser.c
@@ -229,705 +229,712 @@ gssdp_resource_browser_finalize (GObject *object)
resource_browser = GSSDP_RESOURCE_BROWSER ... |
ZachGoldberg/gssdp-gi | 08eb417739d7e0356df5cb33eabe69025682734c | Add "active" property to GSSDPClient | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 008b1a5..11803af 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,877 +1,913 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
* Copyright (C) 2009 Nokia Corporation, all rights reserved.
*
* Author: Jorn Baayen ... |
ZachGoldberg/gssdp-gi | fe400023ef6e29a74a2709f42a02b232bdd034c6 | Port gssdp-device-sniffer to GtkBuilder | diff --git a/Makefile.am b/Makefile.am
index bc5d602..f830c30 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,17 +1,17 @@
-if USE_LIBGLADE
+if USE_LIBGTK
TOOLS_DIR = tools
else
TOOLS_DIR =
endif
SUBDIRS = libgssdp $(TOOLS_DIR) tests doc
pkgconfig_DATA= gssdp-1.0.pc
pkgconfigdir = $(libdir)/pkgconfig
EXTR... |
ZachGoldberg/gssdp-gi | c8b3a57fada7cc2390d54cb12bc341d22b39380e | get_default_host_ip() is not supposed to return NULL | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 3b74748..008b1a5 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -277,597 +277,601 @@ gssdp_client_class_init (GSSDPClientClass *klass)
*
* The SSDP server's identifier.
**/
g_object_class_i... |
ZachGoldberg/gssdp-gi | 13b520cb5d18532d0187e4d7b4e109fc7460978e | Minor indentation fix | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 9234c91..3b74748 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -322,549 +322,552 @@ gssdp_client_class_init (GSSDPClientClass *klass)
"if any.",
G_PARAM_WRITABLE | G_PARAM_C... |
ZachGoldberg/gssdp-gi | d1ec1ab53c67d0addbb10bf5e690873124f9c504 | Bump library version | diff --git a/libgssdp/Makefile.am b/libgssdp/Makefile.am
index e9cbc55..c9656b6 100644
--- a/libgssdp/Makefile.am
+++ b/libgssdp/Makefile.am
@@ -1,51 +1,51 @@
# Version format current:revision:age
# If the library source code has changed at all since the last update, then
# increment revision (âc:r:aâ becomes â... |
ZachGoldberg/gssdp-gi | 831feb9ff7a653585a53821b413b3cb7635068d2 | Version bump to 0.7 as we have new APIs | diff --git a/configure.ac b/configure.ac
index c0d56a6..aef6978 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,73 +1,73 @@
AC_PREREQ(2.53)
-AC_INIT(gssdp, 0.6.5, http://www.gupnp.org/)
+AC_INIT(gssdp, 0.7.0, http://www.gupnp.org/)
AM_INIT_AUTOMAKE()
AC_CONFIG_SRCDIR(libgssdp/gssdp-client.c)
AM_CONFIG_HEADER(con... |
ZachGoldberg/gssdp-gi | 7f91a535431083b672661813c4bd997d1cdb821f | Add documentation about LTVERSION | diff --git a/libgssdp/Makefile.am b/libgssdp/Makefile.am
index 90738ae..e9cbc55 100644
--- a/libgssdp/Makefile.am
+++ b/libgssdp/Makefile.am
@@ -1,41 +1,51 @@
+# Version format current:revision:age
+# If the library source code has changed at all since the last update, then
+# increment revision (âc:r:aâ becomes â... |
ZachGoldberg/gssdp-gi | 81630fafffe0833ec7c12bce424624167ecff146 | Add basic .gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..52916b4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,23 @@
+Makefile.in
+Makefile
+*~
+*.o
+*.lo
+*.la
+.libs
+.deps
+config.*
+aclocal.m4
+autom4te.cache
+depcomp
+configure
+doc/html*
+doc/xml*
+*.pc
+gtk-doc.make
+install-sh
+gssdp-marshal.[ch]
+l... |
ZachGoldberg/gssdp-gi | d075e2a10c7900892db523444892f65b330a8612 | Bind request socket to host_ip. | diff --git a/libgssdp/gssdp-socket-source.c b/libgssdp/gssdp-socket-source.c
index 99498ec..e1914b5 100644
--- a/libgssdp/gssdp-socket-source.c
+++ b/libgssdp/gssdp-socket-source.c
@@ -1,267 +1,268 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This ... |
ZachGoldberg/gssdp-gi | 8b0cc16392f6090656cfc7ff5e402e69fcc832ed | Address the socket is bound to is determined by the type of socket. | diff --git a/libgssdp/gssdp-socket-source.c b/libgssdp/gssdp-socket-source.c
index 3103951..99498ec 100644
--- a/libgssdp/gssdp-socket-source.c
+++ b/libgssdp/gssdp-socket-source.c
@@ -1,265 +1,267 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This ... |
ZachGoldberg/gssdp-gi | 9c362d571bbd4024c3fae0200a7c0f07f033e2c3 | Attach the sockets main_context to after they are created. | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 1ccd94c..9a5188d 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,871 +1,867 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; yo... |
ZachGoldberg/gssdp-gi | 328f4ac7b7fcec827c70e6084de21441f829b5c4 | No need to initialize private struct fields to NULL. | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index aa1ae8a..1ccd94c 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,618 +1,617 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; yo... |
ZachGoldberg/gssdp-gi | 4f95e1de9e549930632144c716bb25e8a4a3c7e2 | Initialize the server id in _init. | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index d55720c..aa1ae8a 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,628 +1,628 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; yo... |
ZachGoldberg/gssdp-gi | e25f6ef3eccf78715878809486c2f16da9cc94bf | Enable multicast loopback. | diff --git a/libgssdp/gssdp-socket-source.c b/libgssdp/gssdp-socket-source.c
index a9b1704..3103951 100644
--- a/libgssdp/gssdp-socket-source.c
+++ b/libgssdp/gssdp-socket-source.c
@@ -1,256 +1,265 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This ... |
ZachGoldberg/gssdp-gi | ca27f9fc9c440c5aeac3b225e0059b7f3f24da30 | Join the multicast group on the specified interface. | diff --git a/libgssdp/gssdp-socket-source.c b/libgssdp/gssdp-socket-source.c
index e06da04..a9b1704 100644
--- a/libgssdp/gssdp-socket-source.c
+++ b/libgssdp/gssdp-socket-source.c
@@ -1,240 +1,256 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This ... |
ZachGoldberg/gssdp-gi | 143601f7cbd66d300b891ad05493291cc9ad2c2f | Set error later. | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 6575ea2..d55720c 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,713 +1,714 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; yo... |
ZachGoldberg/gssdp-gi | e786b03890ddf7e89de9812043abd8e0ff81627f | Initialize in _constructed rather than _init. | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 0f86510..6575ea2 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,760 +1,767 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; yo... |
ZachGoldberg/gssdp-gi | 0fd527f52a034b692223035b911eed03501ca2b2 | inet_aton returns 0 on error. | diff --git a/libgssdp/gssdp-socket-source.c b/libgssdp/gssdp-socket-source.c
index 74c1223..e06da04 100644
--- a/libgssdp/gssdp-socket-source.c
+++ b/libgssdp/gssdp-socket-source.c
@@ -1,240 +1,240 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This ... |
ZachGoldberg/gssdp-gi | e1338ba08cd42b821ff76bb255ea93a46c336fdf | Pass "host-ip" to socket source. | diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 3ef680b..0f86510 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1,632 +1,634 @@
/*
* Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
*
* Author: Jorn Baayen <jorn@openedhand.com>
*
* This library is free software; yo... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.