CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 07 Aug 2025 10:03:46 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090805075925
location: https://web.archive.org/web/20090805075925/https://github.com/Fingertips/form-san/tree/master
server-timing: captures_list;dur=0.814255, exclusion.robots;dur=0.026200, exclusion.robots.policy;dur=0.010896, esindex;dur=0.013968, cdx.remote;dur=102.339774, LoadShardBlock;dur=421.984419, PetaboxLoader3.datanode;dur=125.765026, PetaboxLoader3.resolve;dur=53.531926
x-app-server: wwwb-app224
x-ts: 302
x-tr: 572
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; 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: Thu, 07 Aug 2025 10:03:48 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Wed, 05 Aug 2009 07:59:25 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 178ms
x-archive-orig-etag: "fd873dcbb0f0bb386b5339a00fd95607"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 23840
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: windows-1250
memento-datetime: Wed, 05 Aug 2009 07:59:25 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 05 Aug 2009 07:59:25 GMT", ; rel="memento"; datetime="Wed, 05 Aug 2009 07:59:25 GMT", ; rel="last memento"; datetime="Wed, 05 Aug 2009 07:59:25 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_11_20090805052334_crawl100.gpg-c/52_11_20090805075820_crawl101.arc.gz
server-timing: captures_list;dur=0.538064, exclusion.robots;dur=0.019841, exclusion.robots.policy;dur=0.009160, esindex;dur=0.010921, cdx.remote;dur=121.651098, LoadShardBlock;dur=523.626769, PetaboxLoader3.datanode;dur=234.390188, PetaboxLoader3.resolve;dur=680.992182, load_resource;dur=437.337529
x-app-server: wwwb-app224
x-ts: 200
x-tr: 1151
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
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
Fingertips's form-san at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Run the following if you haven't already:
gem sources -a https://gems.github.com
Install the gem(s):
sudo gem install Fingertips-form-san
Description: | A form builder for ActionView. edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/Fingertips/form-san.git
Give this clone URL to anyone.
git clone git://github.com/Fingertips/form-san.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:Fingertips/form-san.git
|
form-san /
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Loading commit data... ![]() |
|
![]() |
LICENSE | ||
![]() |
README.rdoc | ||
![]() |
Rakefile | ||
![]() |
TODO | ||
![]() |
VERSION.yml | ||
![]() |
form-san.gemspec | ||
![]() |
lib/ | ||
![]() |
rails/ | ||
![]() |
test/ |
README.rdoc
Form-San
Form-San is a lean extension for the Rails form builder.
<% form_for(@member, :builder => FormSan::FormBuilder) do |f| %> <% f.fieldset do %> <% f.fields do %> <%= f.error_messages %> <% f.field(:email, :type => :text, :class => 'medium') do %> <p class="hint">You’ll log in using your email address.</p> <% end %> <%= f.field(:password, :type => :password) %> <% f.fields_for(@member.artist) do |a| %> <% a.field(:name, :type => :text, :class => 'medium') do %> <p class="hint">Shown on the site.</p> <% end %> <% end %> <% end %> <% end %> <div class="submit"> <%= f.submit 'Sign up' %> <%= link_to 'Cancel', root_path, :class => 'cancel' %> </div> <% end %>
This feature is coming soon. Sit tight!