CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 05 Aug 2025 21:40:48 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100311081611
location: https://web.archive.org/web/20100311081611/https://github.com/rails/acts_as_list
server-timing: captures_list;dur=0.726562, exclusion.robots;dur=0.023309, exclusion.robots.policy;dur=0.009671, esindex;dur=0.015581, cdx.remote;dur=9.455306, LoadShardBlock;dur=562.300883, PetaboxLoader3.datanode;dur=283.355583, PetaboxLoader3.resolve;dur=192.791076
x-app-server: wwwb-app215
x-ts: 302
x-tr: 605
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app215; 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: Tue, 05 Aug 2025 21:40:49 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 11 Mar 2010 08:16:10 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b5a7703ff6d9ea88aa712af1c58793cd"
x-archive-orig-x-runtime: 93ms
x-archive-orig-content-length: 20743
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: Thu, 11 Mar 2010 08:16:11 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 30 Jan 2009 15:04:06 GMT", ; rel="prev memento"; datetime="Wed, 03 Mar 2010 12:22:04 GMT", ; rel="memento"; datetime="Thu, 11 Mar 2010 08:16:11 GMT", ; rel="next memento"; datetime="Mon, 12 Apr 2010 09:25:58 GMT", ; rel="last memento"; datetime="Tue, 30 May 2023 14:12:23 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: 51_14_20100311062623_crawl100_IndexOnly-c/51_14_20100311080722_crawl101.arc.gz
server-timing: captures_list;dur=0.547826, exclusion.robots;dur=0.022028, exclusion.robots.policy;dur=0.009725, esindex;dur=0.013137, cdx.remote;dur=16.630031, LoadShardBlock;dur=303.593380, PetaboxLoader3.datanode;dur=228.534983, PetaboxLoader3.resolve;dur=216.169547, load_resource;dur=198.762290
x-app-server: wwwb-app215
x-ts: 200
x-tr: 595
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
rails's acts_as_list at master - GitHub
This service is courtesy of Pledgie.
rails / acts_as_list
- Source
- Commits
- Network (36)
- Issues (3)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
ActsAsList plugin — Read more
name | age | message | |
---|---|---|---|
![]() |
README | Sun Sep 09 21:23:59 -0700 2007 | Add a plugin for acts_as_list [josh] [NZKoz] |
![]() |
init.rb | Fri Oct 12 02:18:00 -0700 2007 | Ruby 1.9 forward compat [jeremy] |
![]() |
lib/ | Mon Oct 08 22:31:19 -0700 2007 | Make sure acts_as_list's remove_from_list and i... [NZKoz] |
![]() |
test/ | Mon Oct 08 22:31:19 -0700 2007 | Make sure acts_as_list's remove_from_list and i... [NZKoz] |
README
ActsAsList ========== This acts_as extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a +position+ column defined as an integer on the mapped database table. Example ======= class TodoList < ActiveRecord::Base has_many :todo_items, :order => "position" end class TodoItem < ActiveRecord::Base belongs_to :todo_list acts_as_list :scope => :todo_list end todo_list.first.move_to_bottom todo_list.last.move_higher Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license