CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 22 Aug 2025 09:16:45 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100212223227
location: https://web.archive.org/web/20100212223227/https://github.com/automatthew/ambitious_activeldap
server-timing: captures_list;dur=1.180490, exclusion.robots;dur=0.037774, exclusion.robots.policy;dur=0.015596, esindex;dur=0.017501, cdx.remote;dur=7.161343, LoadShardBlock;dur=485.186582, PetaboxLoader3.resolve;dur=312.330399, PetaboxLoader3.datanode;dur=98.739859
x-app-server: wwwb-app212
x-ts: 302
x-tr: 536
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app212; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 22 Aug 2025 09:16:46 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 12 Feb 2010 22:32:27 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "ec574e2537d2414745a060edc0b33dd3"
x-archive-orig-x-runtime: 162ms
x-archive-orig-content-length: 23617
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 12 Feb 2010 22:32:27 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 12 Feb 2010 22:32:27 GMT", ; rel="memento"; datetime="Fri, 12 Feb 2010 22:32:27 GMT", ; rel="next memento"; datetime="Sun, 14 Feb 2010 15:34:47 GMT", ; rel="last memento"; datetime="Fri, 25 Jun 2010 17:25:19 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_14_20100212210614_crawl100-c/52_14_20100212223147_crawl101.arc.gz
server-timing: captures_list;dur=0.556048, exclusion.robots;dur=0.022573, exclusion.robots.policy;dur=0.012591, esindex;dur=0.010388, cdx.remote;dur=24.339028, LoadShardBlock;dur=274.385000, PetaboxLoader3.datanode;dur=188.124647, PetaboxLoader3.resolve;dur=235.349260, load_resource;dur=205.768716
x-app-server: wwwb-app212
x-ts: 200
x-tr: 554
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
automatthew's ambitious_activeldap at master - GitHub
This service is courtesy of Pledgie.
automatthew / ambitious_activeldap
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Ambition adapter for ActiveLdap — Read more

Matthew King (author)
Thu Jan 31 12:22:53 -0800 2008
name | age | message | |
---|---|---|---|
![]() |
LICENSE | Wed Jan 30 17:42:57 -0800 2008 | updated license and Rakefile author info; chang... [Matthew King] |
![]() |
Manifest | Wed Jan 30 17:44:51 -0800 2008 | updated manifest [Matthew King] |
![]() |
README | Sun Mar 09 11:31:09 -0700 2008 | gotta add the file in question, yep [defunkt] |
![]() |
Rakefile | Thu Jan 31 12:22:53 -0800 2008 | version fix [Matthew King] |
![]() |
lib/ | Thu Jan 31 12:00:11 -0800 2008 | adjusted query kick to actually match spec, hey! [Matthew King] |
![]() |
test/ | Wed Jan 30 12:06:34 -0800 2008 | copied from ambition [Matthew King] |
README
h2. An Ambitious ActiveLdap Adapter Write LDAP search filters in Ruby. Awesomeness courtesy of Chris Wanstrath's Ambition library. You must be using ActiveLdap 0.9 or greater. h2. Get It @$ sudo gem install ambitious-activeldap@ <pre> require 'rubygems' require 'ambition/adapters/active_ldap' </pre> h2. Examples Let @User@ be a subclass of @ActiveLdap::Base@ <ruby> User.select { |u| u.givenName == 'Severian' }.each do |user| puts user.name end </ruby> Queries don't run until you kick them. This adapter supports only the basic kicker methods: @each@, @each_with_index@, @map@, @entries@, @to_a@. This adapter also doesn't support the methods that require sorting, slicing, or counting, because OpenLDAP effectively doesn't support such things. ActiveLdap lets you request sorted and sliced result sets, but it does the work in Ruby, so you might as well do it yourself. You can call @to_s@, but not @to_hash@ on a query. @to_s@ returns the LDAP search filter as a string. <ruby> >> User.select { |m| m.givenName == 'Jonas' }.to_s => "(givenName=Jonas)" </ruby> h2. Issues.find(:all, :filter => "(type=bug)") Found a bug? Sweet. Add it at "the Lighthouse":https://err.lighthouseapp.com/projects/466-plugins/tickets/new. More information on Ambition: * "https://ambition.rubyforge.org":https://ambition.rubyforge.org * "https://groups.google.com/group/ambition-rb/":https://groups.google.com/group/ambition-rb/