treequel 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -163,6 +163,27 @@ describe Treequel::Branch do
163
163
  end
164
164
 
165
165
 
166
+ it "knows that it hasn't loaded its entry yet if it's nil" do
167
+ @branch.loaded?.should be_false()
168
+ end
169
+
170
+ it "knows that it has loaded its entry if it's non-nil" do
171
+ @branch.instance_variable_set( :@entry, {} )
172
+ @branch.loaded?.should be_true()
173
+ end
174
+
175
+ it "knows that it exists in the directory if it can fetch its entry" do
176
+ @directory.should_receive( :get_entry ).with( @branch ).exactly( :once ).
177
+ and_return( :the_entry )
178
+ @branch.exists?.should be_true()
179
+ end
180
+
181
+ it "knows that it doesn't exist in the directory if it can't fetch its entry" do
182
+ @directory.should_receive( :get_entry ).with( @branch ).exactly( :once ).
183
+ and_return( nil )
184
+ @branch.exists?.should be_false()
185
+ end
186
+
166
187
  it "fetch their LDAP::Entry from the directory if they don't already have one" do
167
188
  @directory.should_receive( :get_entry ).with( @branch ).exactly( :once ).
168
189
  and_return( :the_entry )
@@ -2,7 +2,7 @@
2
2
 
3
3
  BEGIN {
4
4
  require 'pathname'
5
- basedir = Pathname.new( __FILE__ ).dirname.parent.parent
5
+ basedir = Pathname.new( __FILE__ ).dirname.parent.parent.parent
6
6
 
7
7
  libdir = basedir + "lib"
8
8
 
@@ -70,6 +70,15 @@ describe Treequel::Model::ObjectClass do
70
70
  mixin.model_objectclasses.should == [:inetOrgPerson]
71
71
  end
72
72
 
73
+ they "can declare a required objectClass as a String" do
74
+ mixin = Module.new do
75
+ extend Treequel::Model::ObjectClass
76
+ model_objectclasses 'apple-computer-list'
77
+ end
78
+
79
+ mixin.model_objectclasses.should == [:'apple-computer-list']
80
+ end
81
+
73
82
  they "can declare multiple required objectClasses" do
74
83
  mixin = Module.new do
75
84
  extend Treequel::Model::ObjectClass
metadata CHANGED
@@ -1,42 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: treequel
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
5
4
  prerelease: false
6
5
  segments:
7
6
  - 1
8
7
  - 2
9
- - 0
10
- version: 1.2.0
8
+ - 1
9
+ version: 1.2.1
11
10
  platform: ruby
12
11
  authors:
13
12
  - Michael Granger
14
13
  - Mahlon E. Smith
15
14
  autorequire:
16
15
  bindir: bin
17
- cert_chain:
18
- - |
19
- -----BEGIN CERTIFICATE-----
20
- MIIDLDCCAhSgAwIBAgIBADANBgkqhkiG9w0BAQUFADA8MQwwCgYDVQQDDANnZWQx
21
- FzAVBgoJkiaJk/IsZAEZFgdfYWVyaWVfMRMwEQYKCZImiZPyLGQBGRYDb3JnMB4X
22
- DTEwMDkxNjE0NDg1MVoXDTExMDkxNjE0NDg1MVowPDEMMAoGA1UEAwwDZ2VkMRcw
23
- FQYKCZImiZPyLGQBGRYHX2FlcmllXzETMBEGCgmSJomT8ixkARkWA29yZzCCASIw
24
- DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALy//BFxC1f/cPSnwtJBWoFiFrir
25
- h7RicI+joq/ocVXQqI4TDWPyF/8tqkvt+rD99X9qs2YeR8CU/YiIpLWrQOYST70J
26
- vDn7Uvhb2muFVqq6+vobeTkILBEO6pionWDG8jSbo3qKm1RjKJDwg9p4wNKhPuu8
27
- KGue/BFb67KflqyApPmPeb3Vdd9clspzqeFqp7cUBMEpFS6LWxy4Gk+qvFFJBJLB
28
- BUHE/LZVJMVzfpC5Uq+QmY7B+FH/QqNndn3tOHgsPadLTNimuB1sCuL1a4z3Pepd
29
- TeLBEFmEao5Dk3K/Q8o8vlbIB/jBDTUx6Djbgxw77909x6gI9doU4LD5XMcCAwEA
30
- AaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFJeoGkOr9l4B
31
- +saMkW/ZXT4UeSvVMA0GCSqGSIb3DQEBBQUAA4IBAQBG2KObvYI2eHyyBUJSJ3jN
32
- vEnU3d60znAXbrSd2qb3r1lY1EPDD3bcy0MggCfGdg3Xu54z21oqyIdk8uGtWBPL
33
- HIa9EgfFGSUEgvcIvaYqiN4jTUtidfEFw+Ltjs8AP9gWgSIYS6Gr38V0WGFFNzIH
34
- aOD2wmu9oo/RffW4hS/8GuvfMzcw7CQ355wFR4KB/nyze+EsZ1Y5DerCAagMVuDQ
35
- U0BLmWDFzPGGWlPeQCrYHCr+AcJz+NRnaHCKLZdSKj/RHuTOt+gblRex8FAh8NeA
36
- cmlhXe46pZNJgWKbxZah85jIjx95hR8vOI+NAM5iH9kOqK13DrxacTKPhqj5PjwF
37
- -----END CERTIFICATE-----
16
+ cert_chain: []
38
17
 
39
- date: 2010-11-30 00:00:00 -08:00
18
+ date: 2010-12-13 00:00:00 -08:00
40
19
  default_executable:
41
20
  dependencies:
42
21
  - !ruby/object:Gem::Dependency
@@ -47,62 +26,129 @@ dependencies:
47
26
  requirements:
48
27
  - - ~>
49
28
  - !ruby/object:Gem::Version
50
- hash: 41
51
29
  segments:
52
30
  - 0
53
31
  - 9
54
- - 9
55
- version: 0.9.9
32
+ - 11
33
+ version: 0.9.11
56
34
  type: :runtime
57
35
  version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: hoe-yard
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ segments:
45
+ - 0
46
+ - 1
47
+ - 2
48
+ version: 0.1.2
49
+ type: :development
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: rspec
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ~>
58
+ - !ruby/object:Gem::Version
59
+ segments:
60
+ - 2
61
+ - 1
62
+ - 0
63
+ version: 2.1.0
64
+ type: :development
65
+ version_requirements: *id003
66
+ - !ruby/object:Gem::Dependency
67
+ name: ruby-termios
68
+ prerelease: false
69
+ requirement: &id004 !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ segments:
75
+ - 0
76
+ - 9
77
+ - 6
78
+ version: 0.9.6
79
+ type: :development
80
+ version_requirements: *id004
81
+ - !ruby/object:Gem::Dependency
82
+ name: ruby-terminfo
83
+ prerelease: false
84
+ requirement: &id005 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ segments:
90
+ - 0
91
+ - 1
92
+ - 1
93
+ version: 0.1.1
94
+ type: :development
95
+ version_requirements: *id005
96
+ - !ruby/object:Gem::Dependency
97
+ name: yard
98
+ prerelease: false
99
+ requirement: &id006 !ruby/object:Gem::Requirement
100
+ none: false
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ segments:
105
+ - 0
106
+ - 6
107
+ - 1
108
+ version: 0.6.1
109
+ type: :development
110
+ version_requirements: *id006
111
+ - !ruby/object:Gem::Dependency
112
+ name: hoe
113
+ prerelease: false
114
+ requirement: &id007 !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ segments:
120
+ - 2
121
+ - 8
122
+ - 0
123
+ version: 2.8.0
124
+ type: :development
125
+ version_requirements: *id007
58
126
  description: |-
59
- A library for interacting with LDAP (modeled after Sequel). It is an attempt to remove
60
- the impedence mismatch of trying to treat LDAP as if it's a relational database, and
61
- instead embrace its hierarchical, free-form nature.
127
+ Treequel is an LDAP toolkit for Ruby. It is intended to allow quick, easy
128
+ access to LDAP directories in a manner consistent with LDAP's hierarchical,
129
+ free-form nature.
130
+
131
+ It's inspired by and modeled after [Sequel](http://sequel.rubyforge.org/), a
132
+ kick-ass database library.
62
133
  email:
63
- - mahlon@martini.nu
64
134
  - ged@FaerieMUD.org
135
+ - mahlon@martini.nu
65
136
  executables:
66
137
  - treeirb
67
138
  - treequel
68
139
  extensions: []
69
140
 
70
141
  extra_rdoc_files:
71
- - ChangeLog
72
- - README.md
73
- - LICENSE
142
+ - History.md
74
143
  files:
75
- - Rakefile
76
- - ChangeLog
77
144
  - README.md
78
- - LICENSE
79
- - spec/treequel/branch_spec.rb
80
- - spec/treequel/branchcollection_spec.rb
81
- - spec/treequel/branchset_spec.rb
82
- - spec/treequel/control_spec.rb
83
- - spec/treequel/controls/contentsync_spec.rb
84
- - spec/treequel/controls/pagedresults_spec.rb
85
- - spec/treequel/controls/sortedresults_spec.rb
86
- - spec/treequel/directory_spec.rb
87
- - spec/treequel/filter_spec.rb
88
- - spec/treequel/mixins_spec.rb
89
- - spec/treequel/model/objectclass_spec.rb
90
- - spec/treequel/model_spec.rb
91
- - spec/treequel/monkeypatches_spec.rb
92
- - spec/treequel/schema/attributetype_spec.rb
93
- - spec/treequel/schema/ldapsyntax_spec.rb
94
- - spec/treequel/schema/matchingrule_spec.rb
95
- - spec/treequel/schema/matchingruleuse_spec.rb
96
- - spec/treequel/schema/objectclass_spec.rb
97
- - spec/treequel/schema/table_spec.rb
98
- - spec/treequel/schema_spec.rb
99
- - spec/treequel_spec.rb
100
- - spec/lib/constants.rb
101
- - spec/lib/control_behavior.rb
102
- - spec/lib/helpers.rb
103
- - spec/lib/matchers.rb
145
+ - Rakefile
104
146
  - bin/treeirb
105
147
  - bin/treequel
148
+ - examples/company-directory.rb
149
+ - examples/ldap-rack-auth.rb
150
+ - examples/ldap_state.rb
151
+ - lib/treequel.rb
106
152
  - lib/treequel/branch.rb
107
153
  - lib/treequel/branchcollection.rb
108
154
  - lib/treequel/branchset.rb
@@ -115,36 +161,47 @@ files:
115
161
  - lib/treequel/exceptions.rb
116
162
  - lib/treequel/filter.rb
117
163
  - lib/treequel/mixins.rb
118
- - lib/treequel/model/objectclass.rb
119
164
  - lib/treequel/model.rb
165
+ - lib/treequel/model/objectclass.rb
120
166
  - lib/treequel/monkeypatches.rb
167
+ - lib/treequel/schema.rb
121
168
  - lib/treequel/schema/attributetype.rb
122
169
  - lib/treequel/schema/ldapsyntax.rb
123
170
  - lib/treequel/schema/matchingrule.rb
124
171
  - lib/treequel/schema/matchingruleuse.rb
125
172
  - lib/treequel/schema/objectclass.rb
126
173
  - lib/treequel/schema/table.rb
127
- - lib/treequel/schema.rb
128
174
  - lib/treequel/sequel_integration.rb
129
175
  - lib/treequel/utils.rb
130
- - lib/treequel.rb
131
- - rake/191_compat.rb
132
- - rake/dependencies.rb
133
- - rake/documentation.rb
134
- - rake/helpers.rb
135
- - rake/hg.rb
136
- - rake/manual.rb
137
- - rake/packaging.rb
138
- - rake/publishing.rb
139
- - rake/style.rb
140
- - rake/svn.rb
141
- - rake/testing.rb
142
- - rake/verifytask.rb
143
- - ./examples/company-directory.rb
144
- - ./examples/ldap-rack-auth.rb
145
- - ./examples/ldap_state.rb
146
- - Rakefile.local
147
- has_rdoc: true
176
+ - spec/data/objectClasses.yml
177
+ - spec/data/schema.yml
178
+ - spec/lib/constants.rb
179
+ - spec/lib/control_behavior.rb
180
+ - spec/lib/helpers.rb
181
+ - spec/lib/matchers.rb
182
+ - spec/treequel/branch_spec.rb
183
+ - spec/treequel/branchcollection_spec.rb
184
+ - spec/treequel/branchset_spec.rb
185
+ - spec/treequel/control_spec.rb
186
+ - spec/treequel/controls/contentsync_spec.rb
187
+ - spec/treequel/controls/pagedresults_spec.rb
188
+ - spec/treequel/controls/sortedresults_spec.rb
189
+ - spec/treequel/directory_spec.rb
190
+ - spec/treequel/filter_spec.rb
191
+ - spec/treequel/mixins_spec.rb
192
+ - spec/treequel/model/objectclass_spec.rb
193
+ - spec/treequel/model_spec.rb
194
+ - spec/treequel/monkeypatches_spec.rb
195
+ - spec/treequel/schema/attributetype_spec.rb
196
+ - spec/treequel/schema/ldapsyntax_spec.rb
197
+ - spec/treequel/schema/matchingrule_spec.rb
198
+ - spec/treequel/schema/matchingruleuse_spec.rb
199
+ - spec/treequel/schema/objectclass_spec.rb
200
+ - spec/treequel/schema/table_spec.rb
201
+ - spec/treequel/schema_spec.rb
202
+ - spec/treequel_spec.rb
203
+ - History.md
204
+ has_rdoc: yard
148
205
  homepage: http://deveiate.org/projects/Treequel
149
206
  licenses:
150
207
  - BSD
@@ -154,14 +211,12 @@ post_install_message: |-
154
211
  - termios
155
212
  - ruby-terminfo
156
213
  - columnize
157
- - diff-lcs
158
214
  rdoc_options:
159
- - --tab-width=4
160
- - --show-hash
161
- - --include
162
- - .
163
- - --main=README.md
164
- - --title=treequel
215
+ - --use-cache
216
+ - --protected
217
+ - --verbose
218
+ - --title
219
+ - Treequel
165
220
  require_paths:
166
221
  - lib
167
222
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -169,7 +224,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
169
224
  requirements:
170
225
  - - ">="
171
226
  - !ruby/object:Gem::Version
172
- hash: 57
173
227
  segments:
174
228
  - 1
175
229
  - 8
@@ -180,40 +234,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
234
  requirements:
181
235
  - - ">="
182
236
  - !ruby/object:Gem::Version
183
- hash: 3
184
237
  segments:
185
238
  - 0
186
239
  version: "0"
187
- requirements:
188
- - ldap >=0
189
- rubyforge_project:
240
+ requirements: []
241
+
242
+ rubyforge_project: treequel
190
243
  rubygems_version: 1.3.7
191
244
  signing_key:
192
245
  specification_version: 3
193
- summary: An honest LDAP library
194
- test_files:
195
- - spec/treequel/branch_spec.rb
196
- - spec/treequel/branchcollection_spec.rb
197
- - spec/treequel/branchset_spec.rb
198
- - spec/treequel/control_spec.rb
199
- - spec/treequel/controls/contentsync_spec.rb
200
- - spec/treequel/controls/pagedresults_spec.rb
201
- - spec/treequel/controls/sortedresults_spec.rb
202
- - spec/treequel/directory_spec.rb
203
- - spec/treequel/filter_spec.rb
204
- - spec/treequel/mixins_spec.rb
205
- - spec/treequel/model/objectclass_spec.rb
206
- - spec/treequel/model_spec.rb
207
- - spec/treequel/monkeypatches_spec.rb
208
- - spec/treequel/schema/attributetype_spec.rb
209
- - spec/treequel/schema/ldapsyntax_spec.rb
210
- - spec/treequel/schema/matchingrule_spec.rb
211
- - spec/treequel/schema/matchingruleuse_spec.rb
212
- - spec/treequel/schema/objectclass_spec.rb
213
- - spec/treequel/schema/table_spec.rb
214
- - spec/treequel/schema_spec.rb
215
- - spec/treequel_spec.rb
216
- - spec/lib/constants.rb
217
- - spec/lib/control_behavior.rb
218
- - spec/lib/helpers.rb
219
- - spec/lib/matchers.rb
246
+ summary: Treequel is an LDAP toolkit for Ruby
247
+ test_files: []
248
+
data.tar.gz.sig DELETED
Binary file
data/ChangeLog DELETED
@@ -1,963 +0,0 @@
1
- 320[github/master,master,tip] ccdee2d78e68 2010-11-24 18:21 -0800 ged
2
- Updated build system.
3
-
4
- 319 47697f2ebc27 2010-11-24 18:18 -0800 ged
5
- Added hash-key conversion so Branches can be constructed with Symbol-key hashargs.
6
-
7
- 318 44f8be0662c4 2010-11-18 15:43 -0800 ged
8
- Adding 'Treequel::Branchset#from' mutator for changing the base DN.
9
-
10
- 317:316,315 72dd41272f6f 2010-11-11 12:46 -0600 ged
11
- Merging with 316:33a7dcde80a1
12
-
13
- 316:313 9f9460125077 2010-11-11 10:59 -0600 ged
14
- Spec fixes for RSpec 2.0
15
-
16
- 315 33a7dcde80a1 2010-11-09 13:00 -0800 ged
17
- Readding subrepo
18
-
19
- 314 fc9ae9f5b034 2010-11-09 12:53 -0800 ged
20
- Fixing subrepo corruption caused by rollback
21
-
22
- 313:312,311 c1b750e4e9fc 2010-11-09 12:09 -0800 ged
23
- Merged with 310:cc7c63ff15a0
24
-
25
- 312:310 380662d385e0 2010-11-09 12:08 -0800 ged
26
- stub! -> stub; added more debugging to try to track down the model test failure
27
-
28
- 311:309 cc7c63ff15a0 2010-11-03 07:50 -0700 ged
29
- Converting the README to Markdown
30
-
31
- 310 7f20ab74d6b1 2010-11-08 12:53 -0800 ged
32
- Fixed treequel shell's cp to support relative and absolute DNs
33
-
34
- 309 26c3853695ea 2010-10-22 17:47 -0700 ged
35
- Converted to RSpec 2.0
36
-
37
- 308 98b6847de872 2010-10-22 14:58 -0700 ged
38
- Updating build system; add requirement for Ruby 1.8.7
39
-
40
- 307 7f70394868e2 2010-09-21 08:49 -0700 ged
41
- Added tag 1.1.1 for changeset e52c71f4e4ca
42
-
43
- 306[1.1.1] e52c71f4e4ca 2010-09-21 08:49 -0700 ged
44
- Added signature for changeset c6d26ab6a7a4
45
-
46
- 305 c6d26ab6a7a4 2010-09-21 08:48 -0700 ged
47
- Critical bugfix.
48
-
49
- 304 92c28b14730a 2010-09-20 13:51 -0700 ged
50
- Added tag 1.1.0 for changeset b415e0fce774
51
-
52
- 303[1.1.0] b415e0fce774 2010-09-20 13:51 -0700 ged
53
- Added signature for changeset 4ba782a3a7e4
54
-
55
- 302 4ba782a3a7e4 2010-09-17 09:09 -0700 ged
56
- Include mixins for inherited objectClasses, too.
57
-
58
- 301 f075a27a35eb 2010-09-17 09:03 -0700 ged
59
- Updated build system
60
-
61
- 300 c77bac0bf816 2010-09-17 09:02 -0700 ged
62
- Manual updates for the Model section (paired with Mahlon)
63
-
64
- 299 1b375c5dc123 2010-09-15 16:46 -0700 ged
65
- Use the #syntax method instead of the syntax_oid in #inspect output so inherited syntaxes are shown
66
-
67
- 298 0786411cd707 2010-09-15 16:43 -0700 ged
68
- Use the system LDAP config if no URI is given
69
-
70
- 297 d3a6c89d8004 2010-09-15 16:42 -0700 ged
71
- Un-spam debugging on entry lookup
72
-
73
- 296 2101482df41f 2010-09-15 16:41 -0700 ged
74
- Overriding #inspect in Treequel::Model to show the list of extensions applied to the entry
75
-
76
- 295 a384412c0e6f 2010-08-25 16:56 -0700 ged
77
- Rescue the right error in Treequel::Model#method_missing and add a spec for the negative case.
78
-
79
- 294 b220a83d31b5 2010-08-25 16:48 -0700 ged
80
- Load the entry from Model's #method_missing to catch calls to methods that are added via
81
-
82
- 293 2753f8405caf 2010-08-23 17:12 -0700 ged
83
- Fixing object/attribute mapping for attributes whose types that inherit their syntax from their superclass
84
-
85
- 292 2e2b035d3721 2010-08-23 15:19 -0700 ged
86
- Coverage improvements, manual work
87
-
88
- 291 693a163bd068 2010-08-23 08:36 -0700 ged
89
- Started catching the manual up to 1.1.0.
90
-
91
- 290 df0b0594cb62 2010-08-23 08:36 -0700 ged
92
- Made Treequel::Branch#delete with no arguments delete the entry
93
-
94
- 289 31fc0ea1ea31 2010-08-19 16:35 -0700 ged
95
- Fixes for Ruby 1.9.2.
96
-
97
- 288 7c7d3e2034b0 2010-08-19 07:21 -0700 ged
98
- Build system update; fixed ruby-termios dependency
99
-
100
- 287 f9151315d37f 2010-08-18 17:35 -0700 ged
101
- Implement Branchset operators
102
-
103
- 286 cd3ef7e3ffb0 2010-08-16 17:20 -0700 ged
104
- Reworked operational attributes to use the 'USAGE' attribute at Mahlon's suggestion.
105
-
106
- 285 dfb032f5e5c1 2010-08-16 17:19 -0700 ged
107
- Fixes for Treequel::Model instantiation and lookup.
108
-
109
- 284 844ee21c6916 2010-08-16 17:05 -0700 ged
110
- Made Treequel::Schema::Table Enumerable
111
-
112
- 283 ff2629196b4e 2010-08-06 16:11 -0700 ged
113
- Don't add the objectClass attribute when searching through Treequel::Model if
114
-
115
- 282 d4e58760ee34 2010-08-06 15:02 -0700 ged
116
- Handle Sequel's Ruby1.9 Symbol-operator workaround in filter attributes
117
-
118
- 281 d60c6b83db01 2010-08-06 15:02 -0700 ged
119
- Also output empty-string attributes as non-binary
120
-
121
- 280 bb182f705fe5 2010-08-05 14:07 -0700 ged
122
- Unwrap base64ed LDIF lines before wrapping them to the new line length.
123
-
124
- 279 32084630894f 2010-08-05 11:14 -0700 ged
125
- Fix LDIF-generation for really reals.
126
-
127
- 278 aabbab99b093 2010-08-05 10:40 -0700 ged
128
- Optimizations, logging cleanup.
129
-
130
- 277 7a4f2e5bef0a 2010-08-02 08:45 -0700 ged
131
- Bugfixes.
132
-
133
- 276 2f741e5294bf 2010-07-29 14:34 -0700 ged
134
- Filter component symmetry, Model refactor
135
-
136
- 275 bc0bc3aea136 2010-07-28 09:06 -0700 ged
137
- Added support for Sequel-style #or: branchset.filter( :something ).or( :somethingelse ).
138
-
139
- 274 30091794b910 2010-07-28 07:14 -0700 ged
140
- Added Treequel::Model#respond_to?
141
-
142
- 273 e9c908b1f426 2010-07-27 08:05 -0700 ged
143
- Bugfix, make object conversion work for setting attributes too.
144
-
145
- 272 30ba889041a8 2010-07-26 20:04 -0700 ged
146
- Bugfixes, coverage of LDIF-generation.
147
-
148
- 271 a6dd7b685a6a 2010-07-16 18:32 -0700 ged
149
- Fixing the "cd .." special case
150
-
151
- 270 2793fa802dad 2010-07-14 20:16 -0700 ged
152
- Untaint objectClasses passed to Treequel::Model::mixins_for_objectclasses.
153
-
154
- 269 b76dd9ca1f3f 2010-07-13 19:14 -0700 ged
155
- The workaround for two-param syntax mapping Procs didn't work after all. Modifying
156
-
157
- 268 70cc87a200ad 2010-07-13 19:08 -0700 ged
158
- Added schema-object roundtripping, with a script/specs to test it.
159
-
160
- 267 47e865bfef9e 2010-07-13 12:31 -0700 ged
161
- Added the ability to set the default results class on a per-directory basis.
162
-
163
- 266 c61373e3dc49 2010-07-13 08:03 -0700 ged
164
- Fixes for Apache DS and bugfix in Treequel::Model.
165
-
166
- 265 601003ff3077 2010-07-10 17:16 -0700 ged
167
- Treequel::Model bugfix
168
-
169
- 264 a76065cfeba0 2010-07-09 07:19 -0700 ged
170
- Adding Treequel::Model, bumping version to 1.1.0.
171
-
172
- 263:262,261 6dd6cb37f5ce 2010-07-09 07:16 -0700 ged
173
- Merged with 47bb9cd7af3b
174
-
175
- 262:258 3f4134d20d9d 2010-07-08 09:40 -0700 ged
176
- Delegate the Treequel::Directory#root_dse method through its #conn
177
-
178
- 261 0188c2ba5b7e 2010-07-07 23:21 -0700 ged
179
- Added tag 1.0.4 for changeset 0ec4ff0ce67f
180
-
181
- 260[1.0.4] 0ec4ff0ce67f 2010-07-07 23:21 -0700 ged
182
- Added signature for changeset c8534439a5bc
183
-
184
- 259 c8534439a5bc 2010-07-07 23:20 -0700 ged
185
- Bumping version to 1.0.4 because I'm an idiot and included some files that were intended for a future version in 1.0.3.
186
-
187
- 258 47bb9cd7af3b 2010-07-07 22:32 -0700 ged
188
- Added tag 1.0.3 for changeset 65be21a77bfe
189
-
190
- 257[1.0.3] 65be21a77bfe 2010-07-07 22:32 -0700 ged
191
- Added signature for changeset fd86e30957a6
192
-
193
- 256 fd86e30957a6 2010-07-07 19:04 -0700 ged
194
- Build system update, prep for 1.0.3 release.
195
-
196
- 255 dd880dcd1b9a 2010-06-14 16:18 -0700 ged
197
- Fix the 'parent' command in the treequel shell and the success message for the 'cp' command.
198
-
199
- 254 c2a696248d22 2010-06-14 15:58 -0700 ged
200
- Treequel shell cleanup, new subcommand, Treequel::Directory#bound_user
201
-
202
- 253 61d5aae13b7e 2010-06-10 15:11 -0700 ged
203
- Added 'cp' treequel shell command, removed FOLDED_LDIF_ATTRVAL_SPEC pattern.
204
-
205
- 252 d9073c3a9f0e 2010-05-27 05:56 -0700 ged
206
- Treequel shell cleanup, support config-loaded directory, Branch#move fixes
207
-
208
- 251 0982bb19bfb9 2010-05-03 15:04 -0700 ged
209
- Treequel shell work, made schema tables more Hash-like.
210
-
211
- 250 b725e5424fa9 2010-04-14 14:33 -0700 ged
212
- Fixed a bug in Treequel.read_opts_from_config which caused
213
-
214
- 249 561646be1b80 2010-04-13 16:49 -0700 ged
215
- More YARD docs
216
-
217
- 248 94b428852c7a 2010-04-11 20:29 -0700 ged
218
- Fixed LDIF and highlighting in treequel shell
219
-
220
- 247 a42d7297577a 2010-04-10 09:24 -0700 ged
221
- Updated build system.
222
-
223
- 246 a039187fcbfd 2010-04-08 15:14 -0700 ged
224
- Updated build system, more YARDificiation.
225
-
226
- 245 b54fe9c1171d 2010-04-07 09:14 -0700 ged
227
- Updated build system.
228
-
229
- 244 96125f5e3297 2010-04-07 09:05 -0700 ged
230
- More specs, more YARD docs.
231
-
232
- 243 91486cbc9047 2010-04-06 18:52 -0700 ged
233
- New method Treequel::Branch#values_at, rewrote #delete to be consistent with Hash#delete.
234
-
235
- 242 bc24a82b0e9c 2010-03-23 15:11 -0700 ged
236
- Added NSS-style ldap.conf support.
237
-
238
- 241 2f756d5f12e2 2010-03-19 11:05 -0700 ged
239
- Converted hash-based schema tables to a case-insensitive Table class (fixes #1)
240
-
241
- 240 f8de798625ee 2010-03-18 15:18 -0700 ged
242
- Adding system-config methods to the Treequel methods
243
-
244
- 239 02660115ea46 2010-03-02 12:48 -0800 ged
245
- Finished specs for BranchCollection#empty?
246
-
247
- 238 cbdb4342dc46 2010-03-01 18:17 -0800 ged
248
- Treequel shell bugfixes, #empty? on Branchsets and BranchCollections
249
-
250
- 237 5af1ee6a7f6c 2010-02-17 18:18 -0800 ged
251
- Added an 'irb' command to the treequel shell, fixed build-number parsing.
252
-
253
- 236 8a43b642fd91 2010-02-09 16:37 -0800 ged
254
- Implemented the `-b bind_dn` option.
255
-
256
- 235:234,233 2a1bac85c038 2010-02-03 18:24 -0800 ged
257
- Merged 233:1d06d28159a6
258
-
259
- 234:232 e96bbf2e7325 2010-02-03 18:23 -0800 ged
260
- Adding the beginnings of ActiveDirectory support, treequel shell options, server introspection.
261
-
262
- 233:231,232 1d06d28159a6 2010-01-26 10:56 -0800 ged
263
- Merged with 230:b994d8d9d608
264
-
265
- 232:230 8b2fb7415412 2010-01-26 10:55 -0800 ged
266
- Initial (untested) implementation of the sorted results control.
267
-
268
- 231:229 b994d8d9d608 2010-01-24 12:57 -0800 ged
269
- Convert the option parsers to a class global instead of a constant
270
-
271
- 230 84087b01d473 2010-01-13 20:12 -0800 ged
272
- Make treequel shell's 'cat' command error for non-existant entries
273
-
274
- 229 669a09149f48 2010-01-13 11:36 -0800 ged
275
- Fix the 'grep' command in the Treequel shell.
276
-
277
- 228 ab2a2ff43b60 2010-01-12 10:12 -0800 ged
278
- Operational attributes propagation and treequel shell fixes.
279
-
280
- 227:226,225 14f5f723d0aa 2010-01-07 16:43 -0800 ged
281
- Merged with d77a0bf26034
282
-
283
- 226:223 00ac1bc4e917 2010-01-07 16:42 -0800 ged
284
- Updated build system
285
-
286
- 225 d77a0bf26034 2009-12-22 15:13 -0800 ged
287
- Reworked LDIF display colors in the shell to be more visible.
288
-
289
- 224:221 9aeccec1ee84 2009-12-22 15:02 -0800 ged
290
- Make the treequel shell fall back to plain connect (with a warning) if TLS fails.
291
-
292
- 223 5afefa230ef0 2010-01-07 16:41 -0800 ged
293
- Improvements to the treequel shell, fixes for 1.9.1.
294
-
295
- 222 83b178f0850e 2010-01-06 19:24 -0800 ged
296
- Eliminate duplicates when smushing RDN attributes on a Treequel::Directory#create
297
-
298
- 221:220,218 3bdd645530fe 2009-12-22 09:40 -0800 ged
299
- Automated merge with ssh://hg@deveiate/Treequel
300
-
301
- 220:219,217 9571c9d8e4dd 2009-12-18 10:23 -0800 ged
302
- Merged with 5fd4033e1556
303
-
304
- 219:216 ffc2ebacdfd0 2009-12-17 21:50 -0800 ged
305
- More controls work, started several more control modules.
306
-
307
- 218 31c326800cc6 2009-12-22 09:40 -0800 ged
308
- Treequel shell fix, splitting off the LDAP monitor example, version bump.
309
-
310
- 217 5fd4033e1556 2009-12-16 11:24 -0800 ged
311
- Updated build system, normalized comments in mixins.rb.
312
-
313
- 216 b04972837e63 2009-12-11 18:47 -0800 ged
314
- More work on controls,
315
-
316
- 215 d1ef2c0f53f2 2009-12-08 09:28 -0800 ged
317
- Finished initial Controls implementation, added PagedResultsControl.
318
-
319
- 214 b937fbec04ca 2009-12-07 17:11 -0800 mahlon
320
- Add scaffolding for Treequel::Control.
321
-
322
- 213 30f67c57d0bb 2009-12-07 16:41 -0800 ged
323
- Law of Demeter fix and more work on the controls spike.
324
-
325
- 212 014435b07b2d 2009-12-06 22:13 -0800 ged
326
- Fixed the shell 'edit' command, cleaned up LDIF output, dependency fixes.
327
-
328
- 211 b259ac7d021e 2009-12-06 14:59 -0800 ged
329
- Adding '+' mode to 'cat' (stolen from shelldap)
330
-
331
- 210 150d5cf819a9 2009-12-01 10:25 -0800 mahlon
332
- Heh heh heh, he said 'fem'
333
-
334
- 209 ff8226a744d8 2009-11-17 20:38 -0800 ged
335
- Added tag 1.0.1 for changeset 9c9993ba908e
336
-
337
- 208[1.0.1] 9c9993ba908e 2009-11-17 20:38 -0800 ged
338
- Added signature for changeset c5e4cb039999
339
-
340
- 207 c5e4cb039999 2009-11-17 20:35 -0800 ged
341
- Added Branchset#as, added 'yaml'/disabled 'edit' command in treequel shell
342
-
343
- 206 67502a7b9224 2009-11-17 15:58 -0800 ged
344
- Updated build system.
345
-
346
- 205 fd8e18e00cf5 2009-11-10 16:25 -0800 ged
347
- Ignore .orig files
348
-
349
- 204 e7d7f6b3c101 2009-11-10 16:13 -0800 ged
350
- Factored out generic utility code from the treequel binary; added color logging
351
-
352
- 203 8a309df5700a 2009-10-27 11:02 -0700 ged
353
- Fix a bug in #filter( String => String )
354
-
355
- 202 32cf480d20a5 2009-10-19 11:25 -0700 ged
356
- Fixing highlighting for wrapped LDIF values in the treequel shell.
357
-
358
- 201 ca660bd12f7f 2009-10-15 18:05 -0700 ged
359
- Version bump, build system updates, made 'treequel' gem-binary-friendly, and some experiments.
360
-
361
- 200 9e4ba9a59fd3 2009-10-14 18:48 -0700 ged
362
- Adding features to bin/treequel
363
-
364
- 199 b375e07370b2 2009-10-11 14:10 -0700 ged
365
- Factored out short- and long-ls output generation into separate methods
366
-
367
- 198 ac1efb8eea87 2009-10-02 18:20 -0700 ged
368
- * Fixed option parsing. Thanks to apeiros and dominikh on #Ruby-Pro @Freenode for their help.
369
-
370
- 197 311df09556e1 2009-10-02 05:46 -0700 ged
371
- * Trying a different strategy for option-parsing
372
-
373
- 196:123,195 59c98c071fc3 2009-10-01 19:51 -0700 ged
374
- Automated merge with ssh://hg@repo.deveiate.org/Treequel
375
-
376
- 195:194,122 186ab733dad9 2009-10-01 07:25 -0700 ged
377
- Merged 192 and 193
378
-
379
- 194:121,193 01e0025b7bdd 2009-09-30 22:16 -0700 ged
380
- Adding rebuilt terminfo gem and the beginnings of a spike to work out branch-control syntax
381
-
382
- 193 744c193e6f50 2009-08-13 17:10 -0700 ged
383
- Added tag 1.0.0 for changeset 300dd8a5aa24
384
-
385
- 192 f907b569dcbe 2009-08-13 17:10 -0700 ged
386
- Added signature for changeset a4e90241950d
387
-
388
- 191 af4cd38971b0 2009-08-13 17:10 -0700 ged
389
- Miscellaneous docs fixups.
390
-
391
- 190 98303f8ae4d2 2009-08-13 16:43 -0700 ged
392
- Adding Branchset#to_hash
393
-
394
- 189 3622b1711521 2009-08-13 16:16 -0700 ged
395
- Updated build system.
396
-
397
- 188 aeae86442cac 2009-08-13 15:57 -0700 ged
398
- Fixed the display in the company directory example template.
399
-
400
- 187 24d2ac287c7a 2009-08-13 15:53 -0700 ged
401
- * Adding some more examples, updating the README.
402
-
403
- 186 9f455dbd34ef 2009-08-13 13:28 -0700 ged
404
- Some cleanup and additions for release.
405
-
406
- 185 73f377edf18e 2009-08-13 11:06 -0700 ged
407
- Bumping version for release.
408
-
409
- 184 4c3e13d4e6c3 2009-08-13 09:35 -0700 ged
410
- Fixes for Ruby 1.9.1.
411
-
412
- 183 b4408d13d3c1 2009-08-13 07:38 -0700 ged
413
- More work on the ldap-monitor example.
414
-
415
- 182 da86adb16b81 2009-08-12 10:04 -0700 ged
416
- * Removing unused deveiate-theme stylesheet.
417
-
418
- 181 ec8f2af665c6 2009-08-12 08:02 -0700 ged
419
- Committing CSS I forgot to commit with the last rev
420
-
421
- 180 bfc759ec3d3a 2009-08-11 20:59 -0700 ged
422
- * Added another real-world example and added a bit more work to the web monitor app.
423
-
424
- 179 c9e2a6b28d39 2009-08-11 08:54 -0700 ged
425
- * Added my nascent LDAP web monitor sinatra app under examples/
426
-
427
- 178 83fc292048c9 2009-08-10 23:53 -0700 ged
428
- Stripped SVN constants and headers.
429
-
430
- 177 0b6835347c3b 2009-08-10 14:42 -0700 ged
431
- * More manual work
432
-
433
- 176 6b35527b9525 2009-08-10 08:11 -0700 ged
434
- Fixes for the manual footer
435
-
436
- 175 dfe7e7e17359 2009-08-10 07:59 -0700 ged
437
- * Removing Branch#order, since the client-library sort attribute and function don't do
438
-
439
- 174 21333d9653ff 2009-08-05 13:26 -0700 ged
440
- * Manual headings have a bit more top-margin.
441
-
442
- 173:171,172 b1aa9a5642f5 2009-08-03 14:18 -0700 ged
443
- Merged f9ac0e1fa95f
444
-
445
- 172:170 4b7381e4c35c 2009-08-03 08:41 -0700 ged
446
- * Adding a prompt mode to the .irbrc for manual example generation.
447
-
448
- 171 a0cbc5a505fb 2009-08-03 14:17 -0700 ged
449
- * Finished conversion of the manual to client-side syntax-highlighting instead of
450
-
451
- 170 1d45903c1750 2009-08-01 08:31 -0700 ged
452
- * Added details about Branchset#filter, #scope, #limit, and #select
453
-
454
- 169 a3aeb3c6c147 2009-07-31 08:29 -0700 ged
455
- Updated build system
456
-
457
- 168:166,167 0d8816a380da 2009-07-31 08:13 -0700 ged
458
- Merged. Someday I'll get the hang of this.
459
-
460
- 167:165 4ece63b2cc6e 2009-07-29 13:28 -0700 ged
461
- * Adding coverage cache to the ignorefile.
462
-
463
- 166:162,165 067907cead97 2009-07-28 06:11 -0700 ged
464
- Merged with 34cc97817266
465
-
466
- 165 109b2cbe661e 2009-07-27 12:06 -0700 ged
467
- Updated build system
468
-
469
- 164:163,161 e67354b564e1 2009-07-27 11:58 -0700 ged
470
- Merging work from gont
471
-
472
- 163:156 9c59112d9e42 2009-07-24 17:27 -0700 ged
473
- Unlinking the subrepo, as it doesn't behave well enough quite yet.
474
-
475
- 162 4c4abfba98e0 2009-07-28 06:10 -0700 ged
476
- Manual rewording, .hgignore updates
477
-
478
- 161:156,160 2e081686cd5d 2009-07-24 21:07 -0700 ged
479
- Merging build system fixes
480
-
481
- 160 dcf67ec9818a 2009-07-24 21:05 -0700 ged
482
- Updated build system
483
-
484
- 159 b8de99344904 2009-07-24 19:33 -0700 ged
485
- Removing subrepo, as it doesn't work quite the way I'd hoped.
486
-
487
- 158 5415543ce713 2009-07-24 11:22 -0700 ged
488
- Initial commit of Mercurial-based tasks
489
-
490
- 157 48d9fbeb2d3e 2009-07-23 08:51 -0700 ged
491
- Started converting svn-specific helpers and tasks to vcs-agnostic ones
492
-
493
- 156 ae447545aa01 2009-07-21 18:10 -0700 ged
494
- Adding experimental .hgsub for the rake tasklibs
495
-
496
- 155 7779841b6553 2009-07-21 15:44 +0000 mahlon
497
- Manual updates for Branches, Branchsets, and Directory.base.
498
-
499
- 154 9baa3aa59ac7 2009-07-21 12:51 +0000 ged
500
- * Treequel::Branch
501
-
502
- 153 d227d5d6f07e 2009-07-21 00:16 +0000 ged
503
- * Fixing Treequel::Branch#copy, which was mistakenly using a modrdn to copy.
504
-
505
- 152 7af3d5893bbe 2009-07-20 22:22 +0000 ged
506
- * Treequel::Branch: Don't freeze non-Arrays in the cached attribute values hash.
507
-
508
- 151 0f343c7bac68 2009-07-20 17:30 +0000 ged
509
- * Made the Hash merge function a module_function instead of a constant
510
-
511
- 150 88a37f71375a 2009-07-20 13:20 +0000 ged
512
- * Added the ability to include operational attributes in Treequel::Branch at the
513
-
514
- 149 741f1a399ca8 2009-07-19 18:36 +0000 ged
515
- Adding missing wrap.png for the manual
516
-
517
- 148 6f0e1d82faa4 2009-07-18 06:28 +0000 ged
518
- * Make ObjectClass#sup return the corresponding ObjectClass instance.
519
-
520
- 147 b470955b4277 2009-07-17 22:53 +0000 ged
521
- Cleaned up the manual syntax-highlighting a bunch. Red logo!
522
-
523
- 146 31ce6958889d 2009-07-17 17:59 +0000 ged
524
- Use client-side highlighting instead of Ultraviolet.
525
-
526
- 145 2f1b04aa4c88 2009-07-17 15:40 +0000 mahlon
527
- * Wrap branch rdn attributes in an array for easy mungin' and merging.
528
-
529
- 144 7fec5e5e47cf 2009-07-17 13:27 +0000 ged
530
- * Manual work.
531
-
532
- 143 4a9186101ea3 2009-07-17 05:14 +0000 ged
533
- * Logo and other manual work
534
-
535
- 142 eea6b8cff79a 2009-07-17 03:00 +0000 ged
536
- * Treequel::Branch
537
-
538
- 141 b27a0b79f367 2009-07-16 17:04 +0000 mahlon
539
- * Wrap branch rdn attributes in an array for easy mungin' and merging.
540
-
541
- 140 191820b894dc 2009-07-15 15:50 +0000 ged
542
- * Order attributes by their key when composing a multi-value RDN from a pair + a Hash for
543
-
544
- 139 9e3c3d925484 2009-07-15 00:41 +0000 ged
545
- Adding logo
546
-
547
- 138 aa1a22869419 2009-07-13 17:48 +0000 ged
548
- * Updated build system
549
-
550
- 137 4f3928271278 2009-07-08 17:38 +0000 ged
551
- * A bit more hacking on the OHM experiment.
552
-
553
- 136 878ce9a276b2 2009-07-03 00:57 +0000 ged
554
- * Treequel::Branch
555
-
556
- 135 f9b545b72c09 2009-07-02 15:22 +0000 ged
557
- * Adding experimental Arrow service that uses Treequel to return ou=People records.
558
-
559
- 134 a5b773de4514 2009-06-30 15:31 +0000 ged
560
- Removing the call to `Time.today` from the specs, as it requires the loading of 'time'.
561
-
562
- 133 9e88e5e2559c 2009-06-30 15:08 +0000 ged
563
- * Added Treequel::Branch#to_ufn
564
-
565
- 132 e34950351275 2009-06-29 17:00 +0000 ged
566
- * Adding the beginnings of an experimental object-mapping (tree-based ORM analogue) for LDAP
567
-
568
- 131 3bfc1759a408 2009-06-27 00:43 +0000 ged
569
- Updated HTML logger formatter to the latest.
570
-
571
- 130 ba8c0f6589c3 2009-06-25 18:49 +0000 ged
572
- * Renamed Treequel::Branch#modify to #merge
573
-
574
- 129 9fc34044d06a 2009-06-24 14:15 +0000 ged
575
- Fixed some LAIKA references in the manual.
576
-
577
- 128 79dbb11efb67 2009-06-23 19:34 +0000 ged
578
- * Fixed docs on the binding arguments for Treequel::Directory#initialize.
579
-
580
- 127 13c3ae870b11 2009-06-23 14:57 +0000 ged
581
- * Added delegation to the connection wrapper.
582
-
583
- 126 726aa7f95eb7 2009-06-22 17:09 +0000 ged
584
- * Fixed RDoc headers.
585
-
586
- 125 062424db136b 2009-06-18 18:45 +0000 ged
587
- * Updated the build system.
588
-
589
- 124:50 d175301aab61 2009-06-18 15:29 +0000 ged
590
- * Adding BranchCollection class.
591
-
592
- 123 a4acbdcb366e 2009-10-01 17:57 -0700 ged
593
- * More work on option-parsing
594
-
595
- 122 b1374ce2d79b 2009-09-30 18:35 -0700 ged
596
- Worked on the treequel shell, adding option-parsing and help
597
-
598
- 121 0de4d48e9b2d 2009-09-30 06:30 -0700 ged
599
- * Fixes for the treequel shell, which was very broken in the initial
600
-
601
- 120 104e3d7685c3 2009-08-13 17:10 -0700 ged
602
- Added tag 1.0.0 for changeset 300dd8a5aa24
603
-
604
- 119[1.0.0] 300dd8a5aa24 2009-08-13 17:10 -0700 ged
605
- Added signature for changeset a4e90241950d
606
-
607
- 118 a4e90241950d 2009-08-13 17:10 -0700 ged
608
- Miscellaneous docs fixups.
609
-
610
- 117 e98fb34df0c0 2009-08-13 16:43 -0700 ged
611
- Adding Branchset#to_hash
612
-
613
- 116 e18bfe831135 2009-08-13 16:16 -0700 ged
614
- Updated build system.
615
-
616
- 115 a8927110eaa6 2009-08-13 15:57 -0700 ged
617
- Fixed the display in the company directory example template.
618
-
619
- 114 dddcad307b99 2009-08-13 15:53 -0700 ged
620
- * Adding some more examples, updating the README.
621
-
622
- 113 c8fc81f20772 2009-08-13 13:28 -0700 ged
623
- Some cleanup and additions for release.
624
-
625
- 112 e352bc86498a 2009-08-13 11:06 -0700 ged
626
- Bumping version for release.
627
-
628
- 111 73775f828f6b 2009-08-13 09:35 -0700 ged
629
- Fixes for Ruby 1.9.1.
630
-
631
- 110 af19a52bb21a 2009-08-13 07:38 -0700 ged
632
- More work on the ldap-monitor example.
633
-
634
- 109 809044df70bd 2009-08-12 10:04 -0700 ged
635
- * Removing unused deveiate-theme stylesheet.
636
-
637
- 108 633687b023c4 2009-08-12 08:02 -0700 ged
638
- Committing CSS I forgot to commit with the last rev
639
-
640
- 107 f9551821eced 2009-08-11 20:59 -0700 ged
641
- * Added another real-world example and added a bit more work to the web monitor app.
642
-
643
- 106 85dadbaf70a9 2009-08-11 08:54 -0700 ged
644
- * Added my nascent LDAP web monitor sinatra app under examples/
645
-
646
- 105 c8c4db6916f1 2009-08-10 23:53 -0700 ged
647
- Stripped SVN constants and headers.
648
-
649
- 104 3624f71a141d 2009-08-10 14:42 -0700 ged
650
- * More manual work
651
-
652
- 103 1b0eaa8f5a64 2009-08-10 08:11 -0700 ged
653
- Fixes for the manual footer
654
-
655
- 102 72833e18e4f8 2009-08-10 07:59 -0700 ged
656
- * Removing Branch#order, since the client-library sort attribute and function don't do
657
-
658
- 101 bacf91784530 2009-08-05 13:26 -0700 ged
659
- * Manual headings have a bit more top-margin.
660
-
661
- 100:99,98 b53d391399ce 2009-08-03 14:18 -0700 ged
662
- Merged f9ac0e1fa95f
663
-
664
- 99:97 afeff031274d 2009-08-03 14:17 -0700 ged
665
- * Finished conversion of the manual to client-side syntax-highlighting instead of
666
-
667
- 98 f9ac0e1fa95f 2009-08-03 08:41 -0700 ged
668
- * Adding a prompt mode to the .irbrc for manual example generation.
669
-
670
- 97 1ddf7d4212c7 2009-08-01 08:31 -0700 ged
671
- * Added details about Branchset#filter, #scope, #limit, and #select
672
-
673
- 96 6b5358420802 2009-07-31 08:29 -0700 ged
674
- Updated build system
675
-
676
- 95:94,92 a5e715f5f877 2009-07-31 08:13 -0700 ged
677
- Merged. Someday I'll get the hang of this.
678
-
679
- 94:93,91 395b7bf6f248 2009-07-28 06:11 -0700 ged
680
- Merged with 34cc97817266
681
-
682
- 93:89 89f74035c67d 2009-07-28 06:10 -0700 ged
683
- Manual rewording, .hgignore updates
684
-
685
- 92 46e6dce0c011 2009-07-29 13:28 -0700 ged
686
- * Adding coverage cache to the ignorefile.
687
-
688
- 91 34cc97817266 2009-07-27 12:06 -0700 ged
689
- Updated build system
690
-
691
- 90:86,89 daf0e44c41ac 2009-07-27 11:58 -0700 ged
692
- Merging work from gont
693
-
694
- 89:83,88 b7a919b2ad5d 2009-07-24 21:07 -0700 ged
695
- Merging build system fixes
696
-
697
- 88 620807d4c6d5 2009-07-24 21:05 -0700 ged
698
- Updated build system
699
-
700
- 87:85 f631900a9ad8 2009-07-24 19:33 -0700 ged
701
- Removing subrepo, as it doesn't work quite the way I'd hoped.
702
-
703
- 86:83 fc3c3bac2c22 2009-07-24 17:27 -0700 ged
704
- Unlinking the subrepo, as it doesn't behave well enough quite yet.
705
-
706
- 85 65236b2101e5 2009-07-24 11:22 -0700 ged
707
- Initial commit of Mercurial-based tasks
708
-
709
- 84 76e4c3cc308b 2009-07-23 08:51 -0700 ged
710
- Started converting svn-specific helpers and tasks to vcs-agnostic ones
711
-
712
- 83 8be8e94f829d 2009-07-21 18:10 -0700 ged
713
- Adding experimental .hgsub for the rake tasklibs
714
-
715
- 82 7bd626d9f0cd 2009-07-21 15:44 +0000 mahlon
716
- Manual updates for Branches, Branchsets, and Directory.base.
717
-
718
- 81 8ca3428f711e 2009-07-21 12:51 +0000 ged
719
- * Treequel::Branch
720
-
721
- 80 15bfd9785019 2009-07-21 00:16 +0000 ged
722
- * Fixing Treequel::Branch#copy, which was mistakenly using a modrdn to copy.
723
-
724
- 79 74b7a9bca977 2009-07-20 22:22 +0000 ged
725
- * Treequel::Branch: Don't freeze non-Arrays in the cached attribute values hash.
726
-
727
- 78 3e4105c3ebaa 2009-07-20 17:30 +0000 ged
728
- * Made the Hash merge function a module_function instead of a constant
729
-
730
- 77 7a62ac4c346b 2009-07-20 13:20 +0000 ged
731
- * Added the ability to include operational attributes in Treequel::Branch at the
732
-
733
- 76 206b077875e5 2009-07-19 18:36 +0000 ged
734
- Adding missing wrap.png for the manual
735
-
736
- 75 1505adefc436 2009-07-18 06:28 +0000 ged
737
- * Make ObjectClass#sup return the corresponding ObjectClass instance.
738
-
739
- 74 12ec14055953 2009-07-17 22:53 +0000 ged
740
- Cleaned up the manual syntax-highlighting a bunch. Red logo!
741
-
742
- 73 8c8193c00a6a 2009-07-17 17:59 +0000 ged
743
- Use client-side highlighting instead of Ultraviolet.
744
-
745
- 72 1e2391e73329 2009-07-17 15:40 +0000 mahlon
746
- * Wrap branch rdn attributes in an array for easy mungin' and merging.
747
-
748
- 71 96e0654c8652 2009-07-17 13:27 +0000 ged
749
- * Manual work.
750
-
751
- 70 3e2835dbe859 2009-07-17 05:14 +0000 ged
752
- * Logo and other manual work
753
-
754
- 69 cf1c7d481519 2009-07-17 03:00 +0000 ged
755
- * Treequel::Branch
756
-
757
- 68 bf47d67f76f1 2009-07-16 17:04 +0000 mahlon
758
- * Wrap branch rdn attributes in an array for easy mungin' and merging.
759
-
760
- 67 7d8dc70f5fe1 2009-07-15 15:50 +0000 ged
761
- * Order attributes by their key when composing a multi-value RDN from a pair + a Hash for
762
-
763
- 66 f21be0277b19 2009-07-15 00:41 +0000 ged
764
- Adding logo
765
-
766
- 65 e434f63779e5 2009-07-13 17:48 +0000 ged
767
- * Updated build system
768
-
769
- 64 f2b47be064b6 2009-07-08 17:38 +0000 ged
770
- * A bit more hacking on the OHM experiment.
771
-
772
- 63 57360b9b8143 2009-07-03 00:57 +0000 ged
773
- * Treequel::Branch
774
-
775
- 62 1c3bd5a2a4f0 2009-07-02 15:22 +0000 ged
776
- * Adding experimental Arrow service that uses Treequel to return ou=People records.
777
-
778
- 61 1853efa345e2 2009-06-30 15:31 +0000 ged
779
- Removing the call to `Time.today` from the specs, as it requires the loading of 'time'.
780
-
781
- 60 e5a2a960c89d 2009-06-30 15:08 +0000 ged
782
- * Added Treequel::Branch#to_ufn
783
-
784
- 59 9759280f111a 2009-06-29 17:00 +0000 ged
785
- * Adding the beginnings of an experimental object-mapping (tree-based ORM analogue) for LDAP
786
-
787
- 58 bc236240ca46 2009-06-27 00:43 +0000 ged
788
- Updated HTML logger formatter to the latest.
789
-
790
- 57 35d0872f8b7f 2009-06-25 18:49 +0000 ged
791
- * Renamed Treequel::Branch#modify to #merge
792
-
793
- 56 30445a043298 2009-06-24 14:15 +0000 ged
794
- Fixed some LAIKA references in the manual.
795
-
796
- 55 6cc39e6befdb 2009-06-23 19:34 +0000 ged
797
- * Fixed docs on the binding arguments for Treequel::Directory#initialize.
798
-
799
- 54 3a204e54603e 2009-06-23 14:57 +0000 ged
800
- * Added delegation to the connection wrapper.
801
-
802
- 53 6defed90cfcc 2009-06-22 17:09 +0000 ged
803
- * Fixed RDoc headers.
804
-
805
- 52 cdbb80f015b6 2009-06-18 18:45 +0000 ged
806
- * Updated the build system.
807
-
808
- 51 6da5c8ac1752 2009-06-18 15:29 +0000 ged
809
- * Adding BranchCollection class.
810
-
811
- 50 8713fc4b41a9 2009-06-17 18:42 +0000 ged
812
- * Updated build system
813
-
814
- 49 d33d81ff8327 2009-06-11 22:17 +0000 ged
815
- Adding the beginnings of a manual.
816
-
817
- 48 99d1553532f1 2009-06-11 22:11 +0000 ged
818
- * Treequel::Branch:
819
-
820
- 47 3cf7a6589f40 2009-06-11 03:51 +0000 ged
821
- * Fetch the default baseDN from the directory's root DSE instead of just using
822
-
823
- 46 decd99bd99e9 2009-06-09 22:54 +0000 ged
824
- * Added Branch#to_ldif
825
-
826
- 45 b27a2eb78d02 2009-06-08 17:53 +0000 ged
827
- * Added datatype conversions for some of the default syntaxes to Directory.
828
-
829
- 44 4c2477eb2a68 2009-06-04 03:55 +0000 ged
830
- * Treequel::Branch
831
-
832
- 43 b02d86bf9162 2009-06-02 15:42 +0000 ged
833
- * Finished hooking up LDAPSyntax to AttributeType.
834
-
835
- 42 7617a4b44fd9 2009-06-01 16:17 +0000 ged
836
- * Finished implementation of matchingRuleUses and ldapSyntaxes.
837
-
838
- 41 99fd606993ac 2009-06-01 14:27 +0000 ged
839
- * Checkpoint commit of Treequel::Schema::LDAPSyntax class.
840
-
841
- 40 3dd18fa1c7fc 2009-05-29 20:57 +0000 ged
842
- * Adding Treequel::Schema::MatchingRule.
843
-
844
- 39 cb93500e5d98 2009-05-29 15:28 +0000 ged
845
- * Treequel::Branch -- Changed the 'value' and 'attribute' attributes to 'rdn_value' and
846
-
847
- 38 fb415faaeddb 2009-05-29 02:49 +0000 ged
848
- * Added custom #inspect methods for Schema and Directory.
849
-
850
- 37 aaef0c5c4703 2009-05-23 21:44 +0000 ged
851
- * Updated build system
852
-
853
- 36 3132d19804a1 2009-05-20 19:08 +0000 ged
854
- * Treequel::Branch
855
-
856
- 35 e43f57f0f04c 2009-05-19 08:01 +0000 ged
857
- Include the superior class's name in Treequel::Schema::ObjectClass#inspect output.
858
-
859
- 34 3ebeec1eacf6 2009-05-19 00:13 +0000 ged
860
- * Treequel::Branch
861
-
862
- 33 c615693a11e0 2009-05-18 21:10 +0000 ged
863
- * Finished up Treequel::Branch#[]=
864
-
865
- 32 72cd36c693ca 2009-05-18 14:56 +0000 mahlon
866
- * If a user/pass is supplied via the directory connect URI, bind immediately.
867
-
868
- 31 a9bcbecb60f3 2009-05-16 00:03 +0000 ged
869
- * Treequel::Branch
870
-
871
- 30 72ccdbdccd8d 2009-05-15 16:52 +0000 ged
872
- * Treequel::Branch:
873
-
874
- 29 34bce6d3ec1a 2009-05-14 18:43 +0000 ged
875
- * Finished the initial implementation of the Sequel::Schema::AttributeType class.
876
-
877
- 28 3a222b303870 2009-05-13 16:38 +0000 ged
878
- * Replaced the plain Treequel::Directory#schema method with the one that
879
-
880
- 27 4946985217e9 2009-05-13 01:00 +0000 ged
881
- * Renamed Treequel::Branch#attr_pair to #rdn.
882
-
883
- 26 da533735fb9f 2009-05-12 14:22 +0000 ged
884
- * Unified must/may oids into @must_oids and @may_oids to distinguish between them and
885
-
886
- 25 44a3834ff324 2009-05-11 23:09 +0000 ged
887
- * Added name, desc, kind, must, and may attribute normalization to
888
-
889
- 24 1d9b831d1579 2009-05-11 16:49 +0000 ged
890
- Checkpoint commit:
891
-
892
- 23 9a1ba6888856 2009-05-11 13:21 +0000 ged
893
- Checkpoint commit:
894
-
895
- 22 fc25616368b8 2009-05-08 01:08 +0000 ged
896
- More work on parsing objectClasses.
897
-
898
- 21 2378ca43e383 2009-05-07 19:44 +0000 ged
899
- Checkpoint commit -- converting schema regexps to match the BNF in RFC 4512 instead of the one from 2252.
900
-
901
- 20 feedf3cfda8b 2009-04-29 16:59 +0000 ged
902
- * Added more RFC2252 regexp patterns to constants.rb.
903
-
904
- 19 f2fef4dea785 2009-04-24 17:03 +0000 ged
905
- * Starting work on schema support.
906
-
907
- 18 fa68642a4c6b 2009-04-22 16:21 +0000 ged
908
- * Fixed .filter( :attribute => value )
909
-
910
- 17 d009a339d2cd 2009-04-22 13:24 +0000 ged
911
- * Started filter support for Sequel expressions
912
-
913
- 16 cb0752ae5ce9 2009-04-21 01:57 +0000 ged
914
- More filter work.
915
-
916
- 15 53fef8079a4e 2009-04-20 16:32 +0000 ged
917
- Finished up initial filter work.
918
-
919
- 14 621dbbe99418 2009-04-18 08:05 +0000 ged
920
- * Committing yesterday's work on substring filters before I fall asleep.
921
-
922
- 13 b71338a3b66f 2009-04-16 16:31 +0000 ged
923
- * Started work on substring item filter syntax and class.
924
-
925
- 12 27d7a681eb00 2009-04-16 01:08 +0000 ged
926
- Checkpoint of more filter work.
927
-
928
- 11 53cf56feaad8 2009-04-15 15:41 +0000 ged
929
- Committing this morning's work.
930
-
931
- 10 ba1440c71f01 2009-04-13 20:15 +0000 ged
932
- Checkpoint commit of this morning's work.
933
-
934
- 9 e8fd5884c22f 2009-04-10 16:01 +0000 ged
935
- Checkpoint commit.
936
-
937
- 8 6924adc0feb2 2009-04-09 15:58 +0000 ged
938
- Checkpoint commit.
939
-
940
- 7 0c1438a9105a 2009-03-30 15:27 +0000 ged
941
- Checkpoint commit.
942
-
943
- 6 5f3f334406cf 2009-03-18 00:54 +0000 ged
944
- * Finished Treequel::Branch.new_from_dn
945
-
946
- 5 83d533b2987d 2009-03-10 16:49 +0000 ged
947
- * Checkpoint of the morning's work.
948
-
949
- 4 27b230b291a3 2009-03-10 05:10 +0000 ged
950
- * Snapshot of today's work.
951
-
952
- 3 f73835204ddc 2009-03-09 20:05 +0000 ged
953
- * Committing the morning's work.
954
-
955
- 2 7709b9520686 2009-03-09 13:44 +0000 ged
956
- * Updated build system
957
-
958
- 1 d8e78b6b4088 2009-03-07 04:37 +0000 ged
959
- * Started an initial spike and installed build system.
960
-
961
- 0 b21f833298d6 2008-12-05 19:28 +0000 ged
962
- Creating repo
963
-