2010-11-30 13:52:38 -08:00
|
|
|
- hide_home_link
|
2011-07-01 12:38:13 -07:00
|
|
|
|
2015-02-25 11:49:18 -08:00
|
|
|
= advertise_campaign_progress @campaign
|
2011-07-01 12:38:13 -07:00
|
|
|
|
2014-04-04 13:53:53 -07:00
|
|
|
%p#pet-not-found.alert= t 'pets.load.not_found'
|
|
|
|
|
2024-09-06 11:47:17 -07:00
|
|
|
- if show_announcement?
|
|
|
|
%section.announcement
|
2024-11-06 11:55:05 -08:00
|
|
|
= image_tag "/images/error-grundo.png", width: 70, height: 70,
|
|
|
|
srcset: {"/images/error-grundo.png": "2x"}
|
2024-09-06 11:47:17 -07:00
|
|
|
.content
|
2024-05-02 13:28:37 -07:00
|
|
|
%p
|
|
|
|
%strong
|
2024-11-06 11:55:05 -08:00
|
|
|
Modeling is down, and some items are broken!
|
|
|
|
For the first time in One Million Years, we made some changes to our
|
|
|
|
modeling code—and it looks like we goofed it, and some items are losing
|
|
|
|
data!
|
2024-09-20 18:02:58 -07:00
|
|
|
%p
|
2024-11-06 11:55:05 -08:00
|
|
|
We've turned off modeling while we work to restore a backup, and then
|
|
|
|
we'll fix the mistake and turn it back on. Sorry about this!
|
2024-04-11 07:29:01 -07:00
|
|
|
|
2010-11-05 15:45:05 -07:00
|
|
|
#outfit-forms
|
2024-09-20 18:08:11 -07:00
|
|
|
#pet-preview
|
|
|
|
= image_tag 'default_preview.png', :alt => ''
|
|
|
|
%span
|
|
|
|
%h1= t 'app_name'
|
|
|
|
%h2= t '.tagline'
|
2014-09-17 20:47:29 -07:00
|
|
|
|
2023-10-12 22:30:16 -07:00
|
|
|
= form_tag load_pet_path, method: 'POST', class: 'primary load-pet-to-wardrobe' do
|
|
|
|
= hidden_field_tag 'destination', 'wardrobe'
|
|
|
|
%fieldset
|
|
|
|
%legend= t '.load_pet'
|
|
|
|
= pet_name_tag class: 'main-pet-name'
|
|
|
|
%button{:type => "submit"}
|
|
|
|
= t '.submit.primary'
|
|
|
|
|
|
|
|
= form_tag wardrobe_path, method: 'GET', class: 'secondary start-from-scratch', authenticity_token: false do
|
|
|
|
%fieldset
|
|
|
|
%legend= t '.start_from_scratch'
|
|
|
|
= pet_attribute_select 'color', @colors, 8
|
|
|
|
= pet_attribute_select 'species', @species
|
|
|
|
%button{:type => "submit"}
|
|
|
|
= t('.submit.secondary')
|
2011-07-01 12:38:13 -07:00
|
|
|
|
2012-08-07 14:32:51 -07:00
|
|
|
%ul#sections
|
2024-09-09 21:33:05 -07:00
|
|
|
%li
|
|
|
|
%h3= link_to t('your_items'), your_items_path
|
|
|
|
= link_to image_tag('your_items.png'), your_items_path
|
|
|
|
.section-info
|
|
|
|
%strong= t '.your_items.tagline'
|
|
|
|
%p= t '.your_items.description'
|
|
|
|
= form_tag users_path, :method => 'get' do
|
|
|
|
= text_field_tag 'name', '', :type => 'search',
|
|
|
|
:placeholder => t('.your_items.user_search.placeholder')
|
|
|
|
= submit_tag t('.your_items.user_search.submit')
|
2011-07-31 15:45:53 -07:00
|
|
|
|
2024-09-09 21:33:05 -07:00
|
|
|
%li
|
|
|
|
%h3= link_to t('infinite_closet'), items_path
|
|
|
|
= link_to image_tag('items.png'), items_path
|
|
|
|
.section-info
|
|
|
|
%strong= t '.infinite_closet.tagline'
|
|
|
|
%p= t '.infinite_closet.description'
|
|
|
|
= form_tag items_path, :method => 'get' do
|
|
|
|
= text_field_tag 'q', '', :type => 'search',
|
|
|
|
:placeholder => t('.infinite_closet.item_search.placeholder')
|
|
|
|
= submit_tag t('.infinite_closet.item_search.submit')
|
2012-08-01 12:11:08 -07:00
|
|
|
|
2012-08-07 14:32:51 -07:00
|
|
|
%li
|
2024-10-11 15:27:36 -07:00
|
|
|
%h3= link_to t('rainbow_pool'), pet_types_path
|
2024-10-12 14:17:49 -07:00
|
|
|
= link_to pet_types_path do
|
2024-10-11 15:27:36 -07:00
|
|
|
= image_tag 'rainbow_pool.png'
|
2024-09-09 21:33:05 -07:00
|
|
|
.section-info
|
2024-10-11 15:27:36 -07:00
|
|
|
%strong= t('.rainbow_pool.tagline')
|
|
|
|
%p= t('.rainbow_pool.description')
|
|
|
|
= form_with url: pet_types_path, method: 'GET' do |form|
|
|
|
|
= form.select :color, @colors.map(&:human_name),
|
|
|
|
include_blank: t('.rainbow_pool.filters.color')
|
|
|
|
= form.select :species, @species.map(&:human_name),
|
|
|
|
include_blank: t('.rainbow_pool.filters.species')
|
|
|
|
= form.submit t('.rainbow_pool.filters.submit'), name: nil
|
2012-08-01 12:11:08 -07:00
|
|
|
|
2023-08-02 12:04:09 -07:00
|
|
|
- if @latest_contribution # will be nil for a fresh copy of the site ;P
|
|
|
|
#latest-contribution
|
|
|
|
= link_to t('.latest_contribution.header'), contributions_path, :id => 'recent-contributions-link'
|
|
|
|
= latest_contribution_description(@latest_contribution)
|
|
|
|
%abbr#latest-contribution-created-at{:title => @latest_contribution.created_at.getutc.iso8601}
|
2012-08-01 12:11:08 -07:00
|
|
|
|
Update missing body ID prediction to handle, say, the Maraquan Mynci.
It turns out that some pets for seemingly nonstandard colors have the
standard body type anyway, and vice-versa. This implies that we should
stop relying on a color's standardness, but, for the time being, we've
just revised the prediction model:
Old model:
* If I see a body_id, I find the corresponding color_ids, and it's wearable
by all pet types with those color_ids.
New model:
* If I see a body_id,
* If it also belongs to a basic pet type, it's a standard body ID.
* It therefore fits all pet types of standard color (if there's
more than one body ID modeled already). (Not really,
because of weird exceptions like Orange Chia. Should that be
standard or not?)
* If it doesn't also belong to a basic pet type, it's a nonstandard
body ID.
* It therefore only belongs to one color, and therefore the item
fits all pet types of the same color.
2014-01-20 13:29:01 -08:00
|
|
|
#whats-new
|
|
|
|
- if @newest_unmodeled_items.present?
|
|
|
|
%h3= t '.newest_items.unmodeled.header'
|
|
|
|
%ul#newest-unmodeled-items
|
|
|
|
- @newest_unmodeled_items.each do |item|
|
2024-10-02 18:26:49 -07:00
|
|
|
%li{'data-item-id' => item.id}
|
|
|
|
= link_to image_tag(item.thumbnail_url), item, :class => 'image-link'
|
|
|
|
= link_to item, :class => 'header' do
|
|
|
|
%h2= item.name
|
|
|
|
%span.meter{style: "width: #{@newest_unmodeled_items_predicted_modeled_ratio[item]*100}%"}
|
|
|
|
.missing-bodies
|
|
|
|
= render_predicted_missing_species_by_color(@newest_unmodeled_items_predicted_missing_species_by_color[item])
|
|
|
|
.models
|
Update missing body ID prediction to handle, say, the Maraquan Mynci.
It turns out that some pets for seemingly nonstandard colors have the
standard body type anyway, and vice-versa. This implies that we should
stop relying on a color's standardness, but, for the time being, we've
just revised the prediction model:
Old model:
* If I see a body_id, I find the corresponding color_ids, and it's wearable
by all pet types with those color_ids.
New model:
* If I see a body_id,
* If it also belongs to a basic pet type, it's a standard body ID.
* It therefore fits all pet types of standard color (if there's
more than one body ID modeled already). (Not really,
because of weird exceptions like Orange Chia. Should that be
standard or not?)
* If it doesn't also belong to a basic pet type, it's a nonstandard
body ID.
* It therefore only belongs to one color, and therefore the item
fits all pet types of the same color.
2014-01-20 13:29:01 -08:00
|
|
|
- if @newest_modeled_items.present?
|
|
|
|
%h3= t '.newest_items.modeled.header'
|
|
|
|
%ul#newest-modeled-items
|
|
|
|
- @newest_modeled_items.each do |item|
|
|
|
|
%li.object
|
|
|
|
= link_to item, title: item.name, alt: item.name do
|
2023-11-11 08:24:08 -08:00
|
|
|
= image_tag item.thumbnail_url
|
Update missing body ID prediction to handle, say, the Maraquan Mynci.
It turns out that some pets for seemingly nonstandard colors have the
standard body type anyway, and vice-versa. This implies that we should
stop relying on a color's standardness, but, for the time being, we've
just revised the prediction model:
Old model:
* If I see a body_id, I find the corresponding color_ids, and it's wearable
by all pet types with those color_ids.
New model:
* If I see a body_id,
* If it also belongs to a basic pet type, it's a standard body ID.
* It therefore fits all pet types of standard color (if there's
more than one body ID modeled already). (Not really,
because of weird exceptions like Orange Chia. Should that be
standard or not?)
* If it doesn't also belong to a basic pet type, it's a nonstandard
body ID.
* It therefore only belongs to one color, and therefore the item
fits all pet types of the same color.
2014-01-20 13:29:01 -08:00
|
|
|
= nc_icon_for(item)
|
2013-12-13 18:54:02 -08:00
|
|
|
|
2024-09-20 18:08:11 -07:00
|
|
|
%script#pet-query-notice-template{:type => 'text/x-jquery-tmpl'}
|
|
|
|
.notice
|
|
|
|
%img.inline-image{:src => '${pet_image_url}'}
|
|
|
|
= t '.pet_query.notice_html', :pet_name => '${pet_name}'
|
2012-08-01 12:11:08 -07:00
|
|
|
|
2024-09-20 18:08:11 -07:00
|
|
|
%script#preview-pet-type-not-found-template{:type => 'text/x-jquery-tmpl'}
|
|
|
|
= t '.preview.pet_type_not_found', :color_name => '${color_name}',
|
|
|
|
:species_name => '${species_name}'
|
|
|
|
|
|
|
|
%script#preview-pet-not-found-template{:type => 'text/x-jquery-tmpl'}
|
|
|
|
= t '.preview.pet_not_found'
|
2013-01-10 14:47:46 -08:00
|
|
|
|
2010-12-06 15:50:13 -08:00
|
|
|
- content_for :javascripts do
|
2024-09-20 19:22:03 -07:00
|
|
|
= javascript_include_tag 'jquery', 'jquery.tmpl', 'jquery.timeago',
|
|
|
|
defer: true
|
2024-03-13 21:26:22 -07:00
|
|
|
|
|
|
|
- content_for :javascripts_body do
|
2024-09-06 11:47:17 -07:00
|
|
|
= javascript_include_tag 'outfits/new', defer: true
|