impress/app/views
Emi Matchu d66f81c96b Remove support for old "Nebula (fake)" April Fools color
This hasn't worked for a while anyway! Let's remove the bits of code
where we deal with it, and the database field that signals it. (We also
make a corresponding change in Impress 2020, so it doesn't crash trying
to query based on the `prank` column.)

I also ran this snippet to clear out all the Nebula stuff in the db:

```rb
Color.transaction do
	nebula = Color.where(prank: true).find_by_name("Nebula")
	nebula.pet_types.includes(pet_states: :swf_assets).each do |pet_type|
		pet_type.pet_states.each do |pet_state|
			pet_state.parent_swf_asset_relationships.each do |psa|
				psa.swf_asset.destroy!
				psa.destroy!
			end
			pet_state.destroy!
		end
		pet_type.destroy!
	end
	nebula.destroy!
end
```
2024-09-27 19:38:53 -07:00
..
about Remove "About NeoPass" page, now that it's on the blog 2024-09-20 18:43:38 -07:00
alt_styles Remove outdated info from Alt Styles page 2024-05-29 18:47:06 -07:00
application Merge branch 'main' into simpler-item-previews 2024-08-31 12:50:56 -07:00
auth_users Update some stylesheets to use new page_stylesheet_link_tag helper 2024-05-14 16:10:09 -07:00
closet_hangers Don't show the list filter for petpage exports if you have no lists 2024-09-20 19:30:23 -07:00
closet_lists Add trade warning to closet list form 2024-04-16 16:53:30 -07:00
contributions Remove old record_tag_helper gem 2024-09-26 12:50:47 -07:00
devise Update some stylesheets to use new page_stylesheet_link_tag helper 2024-05-14 16:10:09 -07:00
fundraising Serve jquery and jquery.tmpl from our own codebase, instead of a CDN 2024-09-20 19:23:53 -07:00
item_trades Extract all the item pages' stylesheets into their own CSS files 2024-09-09 18:48:08 -07:00
items Remove support for old "Nebula (fake)" April Fools color 2024-09-27 19:38:53 -07:00
layouts Remove "About NeoPass" page, now that it's on the blog 2024-09-20 18:43:38 -07:00
neopets_page_import_tasks Remove some silly view template caching calls 2024-09-20 18:08:11 -07:00
outfits Remove FragmentLocalization and localized_cache helper 2024-09-20 20:10:04 -07:00
pets Serve jquery and jquery.tmpl from our own codebase, instead of a CDN 2024-09-20 19:23:53 -07:00
sitemap Update most URLs to use HTTPS 2023-10-25 15:22:57 -07:00
swf_assets Move JS libraries to vendor/javascript 2024-09-13 21:16:46 -07:00
users i18n for contributions#index 2013-01-24 18:23:18 -06:00