community_engine 2.3.2 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +13 -5
- data/.travis.yml +5 -4
- data/CHANGELOG +43 -5
- data/Gemfile +1 -16
- data/README.markdown +22 -19
- data/UPGRADING.markdown +10 -0
- data/about.yml +1 -1
- data/app/assets/javascripts/community_engine.js +187 -18
- data/app/assets/javascripts/cropper.js +86 -565
- data/app/assets/javascripts/forum.js +26 -71
- data/app/assets/javascripts/jquery.migrate.js +521 -0
- data/app/assets/stylesheets/_colors.css.scss +100 -0
- data/app/assets/stylesheets/_font.css.scss +17 -0
- data/app/assets/stylesheets/_forms.css.scss +20 -0
- data/app/assets/stylesheets/_forum.css.scss +0 -0
- data/app/assets/stylesheets/_grid.css.scss +7 -0
- data/app/assets/stylesheets/_layers.css.scss +7 -0
- data/app/assets/stylesheets/_layout.css.scss +28 -0
- data/app/assets/stylesheets/community_engine.css.scss +18 -0
- data/app/assets/stylesheets/cropper.css +6 -182
- data/app/controllers/activities_controller.rb +10 -10
- data/app/controllers/admin_controller.rb +23 -23
- data/app/controllers/ads_controller.rb +16 -5
- data/app/controllers/albums_controller.rb +11 -5
- data/app/controllers/base_controller.rb +5 -8
- data/app/controllers/categories_controller.rb +31 -31
- data/app/controllers/clippings_controller.rb +18 -12
- data/app/controllers/comments_controller.rb +17 -8
- data/app/controllers/events_controller.rb +25 -21
- data/app/controllers/favorites_controller.rb +12 -12
- data/app/controllers/forums_controller.rb +20 -9
- data/app/controllers/friendships_controller.rb +41 -48
- data/app/controllers/homepage_features_controller.rb +11 -5
- data/app/controllers/invitations_controller.rb +15 -9
- data/app/controllers/messages_controller.rb +25 -19
- data/app/controllers/metro_areas_controller.rb +9 -3
- data/app/controllers/moderators_controller.rb +1 -1
- data/app/controllers/monitorships_controller.rb +2 -2
- data/app/controllers/pages_controller.rb +16 -4
- data/app/controllers/password_resets_controller.rb +0 -1
- data/app/controllers/photos_controller.rb +32 -30
- data/app/controllers/posts_controller.rb +33 -17
- data/app/controllers/rsvps_controller.rb +8 -4
- data/app/controllers/sb_posts_controller.rb +22 -18
- data/app/controllers/sessions_controller.rb +2 -1
- data/app/controllers/sitemap_controller.rb +8 -8
- data/app/controllers/statistics_controller.rb +9 -8
- data/app/controllers/tags_controller.rb +26 -24
- data/app/controllers/topics_controller.rb +10 -6
- data/app/controllers/users_controller.rb +63 -34
- data/app/helpers/base_helper.rb +119 -29
- data/app/helpers/friendships_helper.rb +3 -3
- data/app/helpers/posts_helper.rb +5 -7
- data/app/models/acts_as_taggable_on/tag.rb +12 -13
- data/app/models/ad.rb +2 -5
- data/app/models/album.rb +0 -2
- data/app/models/category.rb +6 -7
- data/app/models/clipping.rb +2 -5
- data/app/models/clipping_image.rb +5 -5
- data/app/models/comment.rb +4 -5
- data/app/models/country.rb +2 -4
- data/app/models/event.rb +1 -2
- data/app/models/favorite.rb +5 -10
- data/app/models/forum.rb +0 -2
- data/app/models/friendship.rb +3 -5
- data/app/models/friendship_status.rb +0 -2
- data/app/models/homepage_feature.rb +4 -6
- data/app/models/invitation.rb +6 -8
- data/app/models/message.rb +25 -26
- data/app/models/message_thread.rb +1 -1
- data/app/models/metro_area.rb +0 -2
- data/app/models/page.rb +0 -2
- data/app/models/photo.rb +8 -8
- data/app/models/poll.rb +7 -9
- data/app/models/post.rb +11 -15
- data/app/models/role.rb +1 -2
- data/app/models/rsvp.rb +0 -3
- data/app/models/sb_post.rb +14 -9
- data/app/models/state.rb +0 -2
- data/app/models/topic.rb +5 -6
- data/app/models/user.rb +50 -63
- data/app/models/vote.rb +1 -1
- data/app/views/activities/_activity.html.haml +9 -9
- data/app/views/activities/destroy.js.erb +1 -0
- data/app/views/activities/index.html.haml +13 -13
- data/app/views/activities/network.html.haml +10 -13
- data/app/views/admin/comments.html.haml +48 -70
- data/app/views/admin/events.html.haml +20 -27
- data/app/views/admin/messages.html.haml +2 -3
- data/app/views/admin/update.js.erb +1 -0
- data/app/views/admin/users.html.haml +51 -66
- data/app/views/ads/_form.html.haml +21 -0
- data/app/views/ads/edit.html.haml +6 -46
- data/app/views/ads/index.html.haml +25 -39
- data/app/views/ads/new.html.haml +4 -43
- data/app/views/ads/show.html.haml +18 -35
- data/app/views/albums/_form.html.haml +17 -12
- data/app/views/albums/edit.html.haml +12 -14
- data/app/views/albums/new.html.haml +8 -13
- data/app/views/albums/show.html.haml +25 -32
- data/app/views/base/_homepage_banner_message.html.haml +5 -19
- data/app/views/base/advertise.html.haml +5 -8
- data/app/views/base/site_index.html.haml +25 -27
- data/app/views/categories/_form.html.haml +8 -0
- data/app/views/categories/_menu_item.html.haml +13 -0
- data/app/views/categories/_tips.html.haml +2 -2
- data/app/views/categories/edit.html.haml +3 -33
- data/app/views/categories/index.html.haml +18 -28
- data/app/views/categories/new.html.haml +3 -8
- data/app/views/categories/show.html.haml +33 -36
- data/app/views/clippings/_clipping.html.haml +10 -17
- data/app/views/clippings/_favorite.html.haml +14 -0
- data/app/views/clippings/_form.html.haml +15 -0
- data/app/views/clippings/_images.html.haml +1 -1
- data/app/views/clippings/_menu_item.html.haml +6 -0
- data/app/views/clippings/edit.html.haml +12 -23
- data/app/views/clippings/index.html.haml +29 -30
- data/app/views/clippings/load_images_from_uri.js.erb +1 -0
- data/app/views/clippings/new.html.haml +9 -26
- data/app/views/clippings/new_clipping.html.haml +30 -77
- data/app/views/clippings/show.html.haml +48 -53
- data/app/views/clippings/site_index.html.haml +19 -32
- data/app/views/comments/_comment.html.haml +40 -40
- data/app/views/comments/_comment_form.html.haml +22 -46
- data/app/views/comments/_edit_form.html.haml +13 -28
- data/app/views/comments/create.js.erb +25 -0
- data/app/views/comments/destroy.js.erb +3 -0
- data/app/views/comments/edit.js.erb +11 -0
- data/app/views/comments/index.html.haml +12 -22
- data/app/views/comments/update.js.erb +14 -0
- data/app/views/events/_event.html.haml +26 -24
- data/app/views/events/_form.html.haml +18 -0
- data/app/views/events/_menu_item.html.haml +6 -0
- data/app/views/events/_subscribe.html.haml +1 -1
- data/app/views/events/edit.html.haml +7 -32
- data/app/views/events/index.html.haml +11 -19
- data/app/views/events/new.html.haml +2 -31
- data/app/views/events/show.html.haml +54 -24
- data/app/views/favorites/create.js.erb +10 -0
- data/app/views/favorites/destroy.js.erb +6 -0
- data/app/views/favorites/index.html.haml +6 -8
- data/app/views/forums/_form.html.haml +10 -20
- data/app/views/forums/_menu_item.html.haml +6 -0
- data/app/views/forums/edit.html.haml +8 -10
- data/app/views/forums/index.html.haml +56 -64
- data/app/views/forums/new.html.haml +5 -8
- data/app/views/forums/show.html.haml +65 -72
- data/app/views/friendships/_friendship.html.haml +14 -16
- data/app/views/friendships/accepted.html.haml +7 -11
- data/app/views/friendships/create.js.haml +1 -0
- data/app/views/friendships/denied.html.haml +4 -8
- data/app/views/friendships/pending.html.haml +4 -6
- data/app/views/friendships/show.html.haml +10 -11
- data/app/views/homepage_features/_form.html.haml +6 -0
- data/app/views/homepage_features/edit.html.haml +5 -30
- data/app/views/homepage_features/index.html.haml +22 -28
- data/app/views/homepage_features/new.html.haml +2 -30
- data/app/views/homepage_features/show.html.haml +27 -29
- data/app/views/invitations/index.html.haml +8 -0
- data/app/views/invitations/new.html.haml +21 -30
- data/app/views/kaminari/bootstrap/_first_page.html.erb +13 -0
- data/app/views/kaminari/bootstrap/_gap.html.erb +8 -0
- data/app/views/kaminari/bootstrap/_last_page.html.erb +13 -0
- data/app/views/kaminari/bootstrap/_next_page.html.erb +13 -0
- data/app/views/kaminari/bootstrap/_page.html.erb +12 -0
- data/app/views/kaminari/bootstrap/_paginator.html.erb +25 -0
- data/app/views/kaminari/bootstrap/_prev_page.html.erb +13 -0
- data/app/views/layouts/application.html.haml +26 -37
- data/app/views/messages/_form.html.haml +6 -12
- data/app/views/messages/_inbox.html.haml +34 -39
- data/app/views/messages/_menu_item.html.haml +11 -0
- data/app/views/messages/_sent.html.haml +22 -33
- data/app/views/messages/_sidebar_nav.html.haml +12 -9
- data/app/views/messages/index.html.haml +2 -2
- data/app/views/messages/new.html.haml +2 -9
- data/app/views/messages/show.html.haml +28 -36
- data/app/views/metro_areas/_form.html.haml +6 -0
- data/app/views/metro_areas/edit.html.haml +6 -14
- data/app/views/metro_areas/index.html.haml +19 -26
- data/app/views/metro_areas/new.html.haml +4 -14
- data/app/views/metro_areas/show.html.haml +13 -21
- data/app/views/moderators/_toggle.html.haml +6 -0
- data/app/views/moderators/create.js.erb +5 -0
- data/app/views/moderators/destroy.js.erb +1 -0
- data/app/views/monitorships/create.js.erb +1 -0
- data/app/views/monitorships/destroy.js.erb +1 -0
- data/app/views/pages/_form.html.haml +16 -23
- data/app/views/pages/edit.html.haml +2 -14
- data/app/views/pages/index.html.haml +32 -32
- data/app/views/pages/new.html.haml +5 -12
- data/app/views/pages/show.html.haml +4 -8
- data/app/views/password_resets/edit.html.haml +6 -14
- data/app/views/password_resets/new.html.haml +7 -11
- data/app/views/photo_manager/index.html.haml +45 -43
- data/app/views/photos/_form.html.haml +24 -0
- data/app/views/photos/_manage_photos.html.haml +14 -6
- data/app/views/photos/_show_image_list.html.haml +2 -2
- data/app/views/photos/create.js.erb +1 -0
- data/app/views/photos/edit.html.haml +10 -38
- data/app/views/photos/index.html.haml +20 -20
- data/app/views/photos/manage_photos.js.erb +5 -0
- data/app/views/photos/new.html.haml +11 -49
- data/app/views/photos/recent.html.haml +6 -6
- data/app/views/photos/show.html.haml +48 -52
- data/app/views/polls/_edit.html.haml +6 -10
- data/app/views/polls/_excerpt.html.haml +3 -4
- data/app/views/polls/_new.html.haml +10 -9
- data/app/views/polls/_poll_ui.html.haml +30 -34
- data/app/views/posts/_author_profile.html.haml +12 -11
- data/app/views/posts/_favorited_post.html.haml +8 -10
- data/app/views/posts/_form.html.haml +40 -0
- data/app/views/posts/_menu_item.html.haml +6 -0
- data/app/views/posts/_post.html.haml +27 -24
- data/app/views/posts/_send_to_friend.html.haml +26 -0
- data/app/views/posts/edit.html.haml +11 -48
- data/app/views/posts/featured.html.haml +7 -12
- data/app/views/posts/index.html.haml +14 -18
- data/app/views/posts/manage.html.haml +44 -59
- data/app/views/posts/new.html.haml +9 -64
- data/app/views/posts/popular.html.haml +25 -30
- data/app/views/posts/preview.html.haml +27 -26
- data/app/views/posts/recent.html.haml +20 -27
- data/app/views/posts/send_to_friend.js.erb +3 -0
- data/app/views/posts/show.html.haml +67 -76
- data/app/views/rsvps/_form.html.haml +3 -0
- data/app/views/rsvps/edit.html.haml +3 -9
- data/app/views/rsvps/new.html.haml +3 -9
- data/app/views/sb_posts/_dummy_forum_post.html.haml +13 -0
- data/app/views/sb_posts/_edit.html.haml +6 -0
- data/app/views/sb_posts/_edit_script.js.erb +14 -0
- data/app/views/sb_posts/_reply_form.html.haml +14 -35
- data/app/views/sb_posts/_reply_script.js.erb +13 -0
- data/app/views/sb_posts/_sb_post.html.haml +31 -33
- data/app/views/sb_posts/create.js.erb +30 -0
- data/app/views/sb_posts/destroy.js.erb +2 -0
- data/app/views/sb_posts/edit.html.erb +4 -4
- data/app/views/sb_posts/edit.js.erb +14 -0
- data/app/views/sb_posts/index.html.haml +3 -16
- data/app/views/sb_posts/monitored.html.erb +3 -9
- data/app/views/sb_posts/update.js.erb +11 -0
- data/app/views/sessions/_menu_item.html.haml +28 -0
- data/app/views/sessions/new.html.haml +19 -24
- data/app/views/shared/_add_friend_link.html.haml +9 -0
- data/app/views/shared/_admin_nav.html.haml +6 -8
- data/app/views/shared/_contact.html.haml +1 -1
- data/app/views/shared/_end_javascript.html.haml +4 -4
- data/app/views/shared/_explore.html.haml +7 -6
- data/app/views/shared/_footer_content.html.haml +12 -10
- data/app/views/shared/_footer_links.html.haml +18 -0
- data/app/views/shared/_friend_link.html.haml +25 -0
- data/app/views/shared/_header.html.haml +22 -42
- data/app/views/shared/_jumbotron.html.haml +3 -0
- data/app/views/shared/_load_tinymce.js.erb +15 -0
- data/app/views/shared/_location_chooser.html.haml +26 -17
- data/app/views/shared/_login_sidebar.html.haml +6 -5
- data/app/views/shared/_messages.html.haml +6 -8
- data/app/views/shared/_scripts_and_styles.html.haml +1 -2
- data/app/views/shared/_sidebar.html.haml +1 -0
- data/app/views/shared/_tag_auto_complete.html.haml +19 -0
- data/app/views/shared/_widget.html.haml +3 -0
- data/app/views/sitemap/index.html.haml +15 -20
- data/app/views/statistics/index.html.haml +32 -40
- data/app/views/tags/edit.html.haml +12 -19
- data/app/views/tags/index.html.haml +16 -25
- data/app/views/tags/manage.html.haml +24 -33
- data/app/views/tags/show.html.haml +52 -58
- data/app/views/topics/_form.html.haml +23 -25
- data/app/views/topics/_recent_topics_sidebar.haml +1 -1
- data/app/views/topics/edit.html.haml +7 -9
- data/app/views/topics/new.html.haml +6 -21
- data/app/views/topics/show.html.haml +48 -106
- data/app/views/user_notifier/follow_up_comment_notice.text.erb +1 -1
- data/app/views/user_notifier/message_notification.text.erb +1 -1
- data/app/views/user_notifier/new_forum_post_notice.text.erb +1 -1
- data/app/views/users/_dashboard_nav.html.haml +36 -39
- data/app/views/users/_menu_item.html.haml +6 -0
- data/app/views/users/_omniauth_connect.html.haml +4 -4
- data/app/views/users/_profile_completeness.html.haml +3 -3
- data/app/views/users/_profile_user_info_sidebar.html.haml +40 -43
- data/app/views/users/_search_options.html.haml +9 -7
- data/app/views/users/_sidebar_user.html.haml +1 -1
- data/app/views/users/_user.html.haml +27 -28
- data/app/views/users/crop_profile_photo.html.haml +30 -37
- data/app/views/users/dashboard.html.haml +37 -41
- data/app/views/users/edit.html.haml +53 -71
- data/app/views/users/edit_account.html.haml +44 -64
- data/app/views/users/forgot_username.html.haml +6 -12
- data/app/views/users/index.html.haml +4 -14
- data/app/views/users/invite.html.haml +14 -25
- data/app/views/users/new.html.haml +27 -48
- data/app/views/users/resend_activation.html.haml +7 -12
- data/app/views/users/show.html.haml +88 -90
- data/app/views/users/signup_completed.html.haml +7 -7
- data/app/views/users/statistics.html.haml +17 -18
- data/app/views/users/update.js.erb +1 -0
- data/app/views/users/upload_profile_photo.html.haml +10 -15
- data/app/views/users/welcome_about.html.haml +54 -61
- data/app/views/users/welcome_invite.html.haml +16 -25
- data/app/views/users/welcome_photo.html.haml +18 -27
- data/app/views/votes/create.js.erb +5 -0
- data/community_engine.gemspec +49 -41
- data/config/application_config.rb +13 -16
- data/config/initializers/mce_options.rb +9 -32
- data/config/initializers/recaptcha_constants.rb +2 -2
- data/config/locales/de-DE.yml +1 -17
- data/config/locales/en.yml +18 -32
- data/config/locales/es-AR.yml +2 -14
- data/config/locales/es-ES.yml +0 -6
- data/config/locales/es-MX.yml +1 -9
- data/config/locales/fr-FR.yml +3 -17
- data/config/locales/ja-JP.yml +2 -18
- data/config/locales/ru-RU.yml +3 -21
- data/config/locales/sr-CP.yml +0 -4
- data/config/locales/sv-SE.yml +3 -20
- data/config/routes.rb +37 -42
- data/db/migrate/016_add_metro_areas.rb +2 -2
- data/db/migrate/039_create_activities_table.rb +2 -2
- data/db/migrate/056_create_roles.rb +8 -6
- data/db/migrate/069_create_pages.rb +3 -3
- data/db/migrate/081_upgrade_to_friendly_id_5x.rb +25 -0
- data/db/migrate/082_upgrade_to_acts_as_commentable_4x.rb +29 -0
- data/lib/activity_tracker.rb +3 -0
- data/{vendor/plugins/activity_tracker/lib → lib/activity_tracker}/activity.rb +6 -6
- data/{vendor/plugins/activity_tracker/lib → lib/activity_tracker}/activity_tracker.rb +0 -0
- data/{vendor/plugins/acts_as_publishable/init.rb → lib/acts_as_publishable.rb} +1 -1
- data/{vendor/plugins/acts_as_publishable/lib → lib/acts_as_publishable}/acts_as_publishable.rb +3 -3
- data/lib/community_engine.rb +31 -9
- data/lib/community_engine/engine.rb +17 -1
- data/lib/community_engine/engines_extensions.rb +1 -3
- data/lib/community_engine/version.rb +3 -3
- data/{config/initializers → lib/paperclip_processors}/cropper.rb +3 -3
- data/lib/resource_feeder.rb +3 -0
- data/{vendor/plugins/resource_feeder/lib → lib}/resource_feeder/atom.rb +0 -0
- data/{vendor/plugins/resource_feeder/lib → lib}/resource_feeder/rss.rb +0 -0
- data/{vendor/plugins/white_list/init.rb → lib/white_list.rb} +1 -1
- data/{vendor/plugins/white_list/lib → lib/white_list}/white_list_helper.rb +0 -0
- data/test/fixtures/messages.yml +2 -2
- data/test/functional/admin_controller_test.rb +11 -11
- data/test/functional/ads_controller_test.rb +11 -11
- data/test/functional/albums_controller_test.rb +4 -4
- data/test/functional/categories_controller_test.rb +4 -4
- data/test/functional/clippings_controller_test.rb +4 -4
- data/test/functional/comments_controller_test.rb +20 -16
- data/test/functional/events_controller_test.rb +6 -6
- data/test/functional/forums_controller_test.rb +8 -8
- data/test/functional/friendships_controller_test.rb +13 -18
- data/test/functional/homepage_features_controller_test.rb +5 -5
- data/test/functional/messages_controller_test.rb +6 -2
- data/test/functional/metro_areas_controller_test.rb +7 -7
- data/test/functional/moderators_controller_test.rb +1 -1
- data/test/functional/pages_controller_test.rb +2 -2
- data/test/functional/password_reset_controller_test.rb +2 -2
- data/test/functional/photos_controller_test.rb +16 -15
- data/test/functional/posts_controller_test.rb +4 -4
- data/test/functional/rsvps_controller_test.rb +6 -6
- data/test/functional/sb_posts_controller_test.rb +53 -50
- data/test/functional/sessions_controller_test.rb +4 -1
- data/test/functional/tags_controller_test.rb +1 -1
- data/test/functional/topics_controller_test.rb +10 -10
- data/test/functional/users_controller_test.rb +32 -19
- data/test/functional/votes_controller_test.rb +1 -1
- data/test/test_helper.rb +3 -1
- data/test/testapp/config/application.rb +1 -9
- data/test/testapp/config/environments/development.rb +1 -2
- data/test/testapp/config/environments/production.rb +2 -0
- data/test/testapp/config/environments/test.rb +1 -2
- data/test/testapp/config/initializers/omniauth.rb +3 -3
- data/test/testapp/config/initializers/secret_token.rb +1 -0
- data/test/testapp/db/schema.rb +143 -152
- data/test/unit/category_test.rb +2 -2
- data/test/unit/comment_test.rb +64 -53
- data/test/unit/event_test.rb +4 -4
- data/test/unit/forum_test.rb +1 -1
- data/test/unit/message_test.rb +7 -1
- data/test/unit/page_test.rb +2 -2
- data/test/unit/post_test.rb +47 -47
- data/test/unit/sb_post_test.rb +24 -20
- data/test/unit/topic_test.rb +7 -6
- data/test/unit/user_test.rb +75 -52
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/javascripts/jcrop/jquery.Jcrop.js +1699 -0
- data/vendor/assets/javascripts/jcrop/jquery.color.js +661 -0
- data/vendor/assets/javascripts/tag-it/tag-it.js +597 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/assets/stylesheets/jcrop/Jcrop.gif +0 -0
- data/vendor/assets/stylesheets/jcrop/jquery.Jcrop.min.css +28 -0
- data/vendor/assets/stylesheets/tag-it/tag-it.css +69 -0
- data/vendor/assets/stylesheets/tag-it/tagit.ui-zendesk.css +107 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/README +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/Rakefile +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/generators/publishing/publishing_generator.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/generators/publishing/templates/migration.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/install.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/test/acts_as_publishable_test.rb +0 -0
- data/vendor/{plugins/activity_tracker → converted2.3plugins_to_lib_leftovers/acts_as_publishable}/uninstall.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/README +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/Rakefile +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/test/atom_feed_test.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/test/rss_feed_test.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/test/test_helper.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/white_list/README +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/white_list/Rakefile +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/white_list/test/white_list_test.rb +0 -0
- metadata +348 -302
- data/app/assets/images/bg_h6btn.gif +0 -0
- data/app/assets/images/bg_navbar.gif +0 -0
- data/app/assets/images/clearbits/bg_rounded.gif +0 -0
- data/app/assets/images/clearbits/comment.gif +0 -0
- data/app/assets/images/clearbits/lock.gif +0 -0
- data/app/assets/images/clearbits/smile.gif +0 -0
- data/app/assets/images/close.gif +0 -0
- data/app/assets/images/cropper/marqueeHoriz.gif +0 -0
- data/app/assets/images/cropper/marqueeVert.gif +0 -0
- data/app/assets/images/feed.png +0 -0
- data/app/assets/images/icons/31.png +0 -0
- data/app/assets/images/icons/52.png +0 -0
- data/app/assets/images/icons/accept.png +0 -0
- data/app/assets/images/icons/activity_default.png +0 -0
- data/app/assets/images/icons/add.png +0 -0
- data/app/assets/images/icons/book.png +0 -0
- data/app/assets/images/icons/bullet_arrow_down.png +0 -0
- data/app/assets/images/icons/bullet_arrow_down_50.png +0 -0
- data/app/assets/images/icons/clipping.png +0 -0
- data/app/assets/images/icons/comment.png +0 -0
- data/app/assets/images/icons/comments.png +0 -0
- data/app/assets/images/icons/date.png +0 -0
- data/app/assets/images/icons/delete.png +0 -0
- data/app/assets/images/icons/email.png +0 -0
- data/app/assets/images/icons/email_edit.png +0 -0
- data/app/assets/images/icons/email_go.png +0 -0
- data/app/assets/images/icons/email_open.png +0 -0
- data/app/assets/images/icons/group_go.png +0 -0
- data/app/assets/images/icons/heart.png +0 -0
- data/app/assets/images/icons/heart_add.png +0 -0
- data/app/assets/images/icons/heart_off.png +0 -0
- data/app/assets/images/icons/page_white.png +0 -0
- data/app/assets/images/icons/page_white_magnify.png +0 -0
- data/app/assets/images/icons/picture.png +0 -0
- data/app/assets/images/icons/poll.png +0 -0
- data/app/assets/images/icons/post.png +0 -0
- data/app/assets/images/icons/printer.png +0 -0
- data/app/assets/images/icons/rss.png +0 -0
- data/app/assets/images/icons/slides.png +0 -0
- data/app/assets/images/icons/tag_blue.png +0 -0
- data/app/assets/images/icons/user.png +0 -0
- data/app/assets/images/icons/user_add.png +0 -0
- data/app/assets/images/icons/user_edit.png +0 -0
- data/app/assets/images/icons/user_go.png +0 -0
- data/app/assets/images/icons/vote.png +0 -0
- data/app/assets/images/icons/world.png +0 -0
- data/app/assets/images/icons/wrench.png +0 -0
- data/app/assets/images/logo.gif +0 -0
- data/app/assets/images/reply_background.png +0 -0
- data/app/assets/images/search.gif +0 -0
- data/app/assets/images/thumb.gif +0 -0
- data/app/assets/javascripts/builder.js +0 -136
- data/app/assets/javascripts/calendarview.js +0 -839
- data/app/assets/javascripts/lightbox.js +0 -151
- data/app/assets/javascripts/prototip-min.js +0 -27
- data/app/assets/javascripts/rails.js +0 -202
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/css/advimage.css +0 -84
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/editor_plugin.js +0 -52
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/editor_plugin_src.js +0 -45
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/image.htm +0 -180
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/img/sample.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/js/functions.js +0 -508
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/langs/en.js +0 -3
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/langs/en_dlg.js +0 -43
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/editor_plugin.js +0 -8
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/editor_plugin_src.js +0 -1001
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress10.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress11.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress12.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress2.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress3.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress4.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress5.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress6.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress7.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress8.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress9.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/restore.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/restore.png +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/langs/da.js +0 -5
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/langs/en.js +0 -5
- data/app/assets/stylesheets/community_engine.css +0 -6
- data/app/assets/stylesheets/forum.css +0 -605
- data/app/assets/stylesheets/prototip.css +0 -73
- data/app/assets/stylesheets/reset-fonts-grids.css +0 -8
- data/app/assets/stylesheets/screen.css +0 -977
- data/app/helpers/monitorships_helper.rb +0 -2
- data/app/views/activities/_icon.html.haml +0 -14
- data/app/views/activities/destroy.js.rjs +0 -1
- data/app/views/clippings/_meta.html.haml +0 -26
- data/app/views/clippings/load_images_from_uri.js.rjs +0 -1
- data/app/views/comments/create.js.rjs +0 -20
- data/app/views/comments/edit.js.rjs +0 -7
- data/app/views/comments/update.js.rjs +0 -9
- data/app/views/favorites/create.js.rjs +0 -17
- data/app/views/favorites/destroy.js.rjs +0 -14
- data/app/views/favorites/show.html.haml +0 -13
- data/app/views/friendships/_friendships.html.erb +0 -14
- data/app/views/friendships/index.html.erb +0 -3
- data/app/views/friendships/index.xml.builder +0 -29
- data/app/views/invitations/index.html.erb +0 -16
- data/app/views/moderators/_toggle.html.erb +0 -14
- data/app/views/moderators/create.js.rjs +0 -5
- data/app/views/moderators/destroy.js.rjs +0 -1
- data/app/views/monitorships/create.js.rjs +0 -4
- data/app/views/monitorships/destroy.js.rjs +0 -4
- data/app/views/photos/manage_photos.js.rjs +0 -5
- data/app/views/polls/_polls_sidebar.html.haml +0 -8
- data/app/views/posts/_send_to_friend.html.erb +0 -29
- data/app/views/sb_posts/_dummy_forum_post.html.erb +0 -13
- data/app/views/sb_posts/_edit.html.erb +0 -31
- data/app/views/sb_posts/create.js.rjs +0 -16
- data/app/views/sb_posts/edit.js.rjs +0 -6
- data/app/views/sb_posts/update.js.rjs +0 -5
- data/app/views/shared/_user_menu.html.haml +0 -21
- data/app/views/votes/create.js.rjs +0 -6
- data/db/migrate/090_add_comment_role.rb +0 -15
- data/vendor/plugins/activity_tracker/README +0 -4
- data/vendor/plugins/activity_tracker/Rakefile +0 -22
- data/vendor/plugins/activity_tracker/generators/activity_migration/USAGE +0 -13
- data/vendor/plugins/activity_tracker/generators/activity_migration/activity_migration_generator.rb +0 -11
- data/vendor/plugins/activity_tracker/generators/activity_migration/templates/migration.rb +0 -17
- data/vendor/plugins/activity_tracker/init.rb +0 -1
- data/vendor/plugins/activity_tracker/install.rb +0 -1
- data/vendor/plugins/activity_tracker/tasks/activity_tracker_tasks.rake +0 -4
- data/vendor/plugins/activity_tracker/test/abstract_unit.rb +0 -47
- data/vendor/plugins/activity_tracker/test/activity_tracker_test.rb +0 -48
- data/vendor/plugins/activity_tracker/test/database.yml +0 -18
- data/vendor/plugins/activity_tracker/test/debug.log +0 -3329
- data/vendor/plugins/activity_tracker/test/fixtures/test_post.rb +0 -5
- data/vendor/plugins/activity_tracker/test/fixtures/test_posts.yml +0 -3
- data/vendor/plugins/activity_tracker/test/fixtures/test_user.rb +0 -4
- data/vendor/plugins/activity_tracker/test/fixtures/test_users.yml +0 -6
- data/vendor/plugins/activity_tracker/test/schema.rb +0 -21
- data/vendor/plugins/acts_as_list/README +0 -23
- data/vendor/plugins/acts_as_list/init.rb +0 -3
- data/vendor/plugins/acts_as_list/lib/active_record/acts/list.rb +0 -256
- data/vendor/plugins/acts_as_list/test/list_test.rb +0 -332
- data/vendor/plugins/acts_as_publishable/uninstall.rb +0 -1
- data/vendor/plugins/auto_complete/README +0 -23
- data/vendor/plugins/auto_complete/Rakefile +0 -22
- data/vendor/plugins/auto_complete/init.rb +0 -2
- data/vendor/plugins/auto_complete/lib/auto_complete.rb +0 -47
- data/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +0 -143
- data/vendor/plugins/auto_complete/test/auto_complete_test.rb +0 -67
- data/vendor/plugins/enumerations_mixin/.gitignore +0 -1
- data/vendor/plugins/enumerations_mixin/Gemfile +0 -1
- data/vendor/plugins/enumerations_mixin/LICENSE +0 -20
- data/vendor/plugins/enumerations_mixin/README.md +0 -120
- data/vendor/plugins/enumerations_mixin/README_ENUMERATIONS +0 -163
- data/vendor/plugins/enumerations_mixin/Rakefile +0 -14
- data/vendor/plugins/enumerations_mixin/VERSION +0 -1
- data/vendor/plugins/enumerations_mixin/enumerations_mixin.gemspec +0 -44
- data/vendor/plugins/enumerations_mixin/examples/virtual_enumerations_sample.rb +0 -76
- data/vendor/plugins/enumerations_mixin/init.rb +0 -21
- data/vendor/plugins/enumerations_mixin/lib/active_record/acts/enumerated.rb +0 -180
- data/vendor/plugins/enumerations_mixin/lib/active_record/aggregations/has_enumerated.rb +0 -60
- data/vendor/plugins/enumerations_mixin/lib/active_record/virtual_enumerations.rb +0 -68
- data/vendor/plugins/enumerations_mixin/lib/enumerations_mixin.rb +0 -12
- data/vendor/plugins/enumerations_mixin/virtual_enumerations_sample.rb +0 -76
- data/vendor/plugins/prototype_legacy_helper/README.markdown +0 -13
- data/vendor/plugins/prototype_legacy_helper/init.rb +0 -1
- data/vendor/plugins/prototype_legacy_helper/lib/prototype_legacy_helper.rb +0 -432
- data/vendor/plugins/prototype_legacy_helper/test/test_prototype_helper.rb +0 -297
- data/vendor/plugins/resource_feeder/init.rb +0 -2
- data/vendor/plugins/resource_feeder/lib/resource_feeder.rb +0 -2
- data/vendor/plugins/respond_to_parent/MIT-LICENSE +0 -20
- data/vendor/plugins/respond_to_parent/README +0 -47
- data/vendor/plugins/respond_to_parent/Rakefile +0 -22
- data/vendor/plugins/respond_to_parent/init.rb +0 -1
- data/vendor/plugins/respond_to_parent/install.rb +0 -1
- data/vendor/plugins/respond_to_parent/lib/responds_to_parent.rb +0 -70
- data/vendor/plugins/respond_to_parent/test/responds_to_parent_test.rb +0 -10
- data/vendor/plugins/respond_to_parent/test/test_helper.rb +0 -6
- data/vendor/plugins/respond_to_parent/uninstall.rb +0 -1
|
@@ -1,34 +1,4 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
1
|
+
-@page_title = :editing_category.l
|
|
2
|
+
= render :partial => 'shared/admin_nav'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
-box :class => "yui-b" do
|
|
6
|
-
%h3=:editing_category.l
|
|
7
|
-
= form_for(:category, :url => category_path(@category), :html => { :method => :put, :class => "MainForm" }) do |f|
|
|
8
|
-
|
|
9
|
-
%label
|
|
10
|
-
=:name.l
|
|
11
|
-
\:
|
|
12
|
-
= f.text_field :name
|
|
13
|
-
|
|
14
|
-
%label
|
|
15
|
-
=:posting_tips.l
|
|
16
|
-
\:
|
|
17
|
-
= f.text_area :tips, :rows => 3
|
|
18
|
-
|
|
19
|
-
%label
|
|
20
|
-
=:new_post_text.l
|
|
21
|
-
\:
|
|
22
|
-
= f.text_field :new_post_text
|
|
23
|
-
|
|
24
|
-
%label
|
|
25
|
-
=:navigation_menu_text.l
|
|
26
|
-
\:
|
|
27
|
-
= f.text_field :nav_text
|
|
28
|
-
|
|
29
|
-
%p
|
|
30
|
-
= submit_tag :update.l
|
|
31
|
-
|
|
32
|
-
= link_to :show.l, category_path(@category)
|
|
33
|
-
|
|
|
34
|
-
= link_to :back.l, categories_path
|
|
4
|
+
=render 'form'
|
|
@@ -1,30 +1,20 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
1
|
+
-@page_title=:categories.l
|
|
2
|
+
= render :partial => 'shared/admin_nav'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
%table.table.table-bordered.table-striped
|
|
5
|
+
%tr
|
|
6
|
+
%th=:name.l
|
|
7
|
+
%th
|
|
8
|
+
\#
|
|
9
|
+
=:posts.l
|
|
10
|
+
%th=:actions.l
|
|
8
11
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
%tr
|
|
19
|
-
%td= category.name
|
|
20
|
-
%td= category.posts.size
|
|
21
|
-
%td
|
|
22
|
-
= link_to :show.l, category_path(category)
|
|
23
|
-
|
|
|
24
|
-
= link_to :edit.l, edit_category_path(category)
|
|
25
|
-
|
|
|
26
|
-
= link_to :destroy.l, category_path(category), :confirm => :are_you_sure.l, :method => :delete
|
|
27
|
-
|
|
28
|
-
%br
|
|
29
|
-
|
|
30
|
-
= link_to :new_category.l, new_category_path
|
|
12
|
+
- for category in @categories
|
|
13
|
+
%tr
|
|
14
|
+
%td= category.name
|
|
15
|
+
%td= category.posts.size
|
|
16
|
+
%td
|
|
17
|
+
= link_to :show.l, category_path(category), :class => 'btn btn-default'
|
|
18
|
+
= link_to :edit.l, edit_category_path(category), :class => 'btn btn-warning'
|
|
19
|
+
= link_to :delete.l, category_path(category), data: { confirm: :are_you_sure.l }, :method => :delete, :class => 'btn btn-danger'
|
|
20
|
+
= link_to :new_category.l, new_category_path, :class => 'btn btn-success'
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
-@page_title= :new_category.l
|
|
2
|
+
= render :partial => 'shared/admin_nav'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
%label= :name.l
|
|
6
|
-
= f.text_field :name
|
|
7
|
-
%p= submit_tag :create.l
|
|
8
|
-
|
|
9
|
-
= link_to :back.l, categories_path
|
|
4
|
+
=render 'form'
|
|
@@ -1,45 +1,42 @@
|
|
|
1
1
|
- @meta = { :description => "#{@category.name} posts.",:keywords => "#{@category.name}"}
|
|
2
2
|
- @section = @category.name
|
|
3
3
|
|
|
4
|
-
.
|
|
5
|
-
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
%h3.signup= @category.display_new_post_text() || :write_new_post.l(:category=>@category.name)
|
|
12
|
-
%ul.list.checks
|
|
13
|
-
%li
|
|
14
|
-
%a{:href=>signup_url, :title=>:sign_up_for_a_.l+" #{configatron.community_name} "+:account.l}=:sign_up_for_an_account.l
|
|
15
|
-
%br
|
|
16
|
-
%small
|
|
17
|
-
=:have_an_account.l
|
|
18
|
-
%a{:href=>login_url, :title=>:log_in_to_your.l+" #{configatron.community_name} "+:account.l}
|
|
19
|
-
»
|
|
20
|
-
=:login.l
|
|
4
|
+
-unless @active_users.empty?
|
|
5
|
+
-widget do
|
|
6
|
+
%h4
|
|
7
|
+
.small=:top_writers.l
|
|
8
|
+
%ul.list-unstyled
|
|
9
|
+
- @active_users.each do |user|
|
|
10
|
+
= render :partial => "users/sidebar_user", :locals => {:user => user}
|
|
21
11
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-box :class => "alt" do
|
|
28
|
-
%h3=:popular_category.l(:name => @category.name)
|
|
29
|
-
%ul.list.page
|
|
12
|
+
-unless @popular_posts.empty?
|
|
13
|
+
-widget do
|
|
14
|
+
%h4
|
|
15
|
+
.small=:popular_category.l(:name => @category.name)
|
|
16
|
+
%ul.list-unstyled
|
|
30
17
|
- @popular_posts.each do |post|
|
|
31
18
|
=render :partial => 'posts/sidebar_post', :locals => {:post => post}
|
|
32
19
|
|
|
20
|
+
- if logged_in?
|
|
21
|
+
%h2.signup=:have_something_to_contribute.l
|
|
22
|
+
%ul.list-unstyled
|
|
23
|
+
%li=link_to fa_icon('check', :text => @category.display_new_post_text() || :write_new_post.l(:category=>@category.name)), new_user_post_path({:user_id => current_user, :category_id => @category.id})
|
|
24
|
+
- else
|
|
25
|
+
%h2.signup= @category.display_new_post_text() || :write_new_post.l(:category=>@category.name)
|
|
26
|
+
%ul.list-unstyled
|
|
27
|
+
%li
|
|
28
|
+
=link_to fa_icon('check', :text => :sign_up_for_an_account.l), signup_url
|
|
29
|
+
%li
|
|
30
|
+
%small
|
|
31
|
+
=:have_an_account.l
|
|
32
|
+
=link_to fa_icon('arrow-right', :text => :login.l), login_url
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
.
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
%ul.subnav
|
|
40
|
-
%li= link_to :recent.l, category_path(@category), {:class => (params[:popular] ? '' : 'active')}
|
|
41
|
-
%li= link_to :popular.l, category_path(@category, :popular => 'DESC'), {:class => (params[:popular] ? 'active' : '')}
|
|
34
|
+
%h2
|
|
35
|
+
=:show_category.l :category => @category.name
|
|
36
|
+
%ul
|
|
37
|
+
%li= link_to :recent.l, category_path(@category), {:class => (params[:popular] ? '' : 'active')}
|
|
38
|
+
%li= link_to :popular.l, category_path(@category, :popular => 'DESC'), {:class => (params[:popular] ? 'active' : '')}
|
|
42
39
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
40
|
+
= render :partial => 'posts/post', :collection => @posts
|
|
41
|
+
= paginate @posts, :theme => 'bootstrap'
|
|
42
|
+
|
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
%p
|
|
1
|
+
%div{ :id => "clipping_#{clipping.id}"}
|
|
2
|
+
=render :partial => 'clippings/favorite', :locals => {:clipping => clipping}
|
|
3
|
+
%a{:href=>"#{user_clipping_url(clipping.user, clipping)}", :title => h(truncate_words(clipping.description)) }
|
|
5
4
|
= h(truncate_words(clipping.description))
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
%small= link_to_remote '(un-favorite)', :url => favorite_path('clipping', clipping.id, favorite.id), :method => :delete, :loading => "new Effect.Fade($$('#clipping_#{clipping.id} .favorite img').first())", :title => :un_favorite_this.l if logged_in?
|
|
15
|
-
- else
|
|
16
|
-
.favorite
|
|
17
|
-
= link_to_remote image_tag('icons/heart.png', :plugin => 'community_engine'), :url => favorites_path('clipping', clipping.id), :loading => "new Effect.Pulsate($$('#clipping_#{clipping.id} .favorite img').first() )", :title => :un_favorite_this.l
|
|
18
|
-
= clipping.favorited_count
|
|
5
|
+
%br
|
|
6
|
+
= link_to image_tag( clipping.image_uri(:medium)), user_clipping_url(clipping.user, clipping), :class => 'thumbnail'
|
|
7
|
+
%br
|
|
8
|
+
-if clipping.user = current_user
|
|
9
|
+
=link_to :show.l, [current_user, clipping], :class => 'btn btn-xs btn-default'
|
|
10
|
+
=link_to :edit.l, edit_user_clipping_path(current_user, clipping), :class => 'btn btn-xs btn-warning'
|
|
11
|
+
=link_to :delete.l, [current_user, clipping], :method => 'delete', data: { confirm: :are_you_sure.l }, :class => 'btn btn-xs btn-danger'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
- if favorite = clipping.has_been_favorited_by(current_user, request.remote_ip)
|
|
2
|
+
.favorite
|
|
3
|
+
= link_to favorite_path('clipping', clipping.id, favorite.id), :method => :delete, :class => 'act-via-ajax', :id => 'favorite-clipping-'+clipping.id.to_s if logged_in? do
|
|
4
|
+
%span.badge.badge-info
|
|
5
|
+
=fa_icon("heart")
|
|
6
|
+
=clipping.favorited_count.to_s
|
|
7
|
+
%span.label.label-info
|
|
8
|
+
=:in_your_favorites.l
|
|
9
|
+
- else
|
|
10
|
+
.favorite
|
|
11
|
+
= link_to favorites_path('clipping', clipping.id), :method => :post, :class => 'act-via-ajax', :id => 'favorite-clipping-'+clipping.id.to_s do
|
|
12
|
+
%span.badge
|
|
13
|
+
=fa_icon("heart")
|
|
14
|
+
=clipping.favorited_count.to_s
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
-if @clipping.new_record?
|
|
2
|
+
-url = user_clippings_path(@user)
|
|
3
|
+
-object = @clipping
|
|
4
|
+
-else
|
|
5
|
+
-url = user_clipping_path(@user, @clipping)
|
|
6
|
+
-object = [@user, @clipping]
|
|
7
|
+
|
|
8
|
+
= bootstrap_form_for(object, :url => url, :layout => :horizontal) do |f|
|
|
9
|
+
= f.text_field :url
|
|
10
|
+
-if @clipping.new_record?
|
|
11
|
+
= f.text_field :image_url
|
|
12
|
+
= f.text_field :description
|
|
13
|
+
= f.text_field :tag_list
|
|
14
|
+
%p.help-block= :optional_keywords_describing_this_clipping_separated_by_commas.l
|
|
15
|
+
= f.primary :save.l
|
|
@@ -1,26 +1,15 @@
|
|
|
1
|
-
.
|
|
2
|
-
-box do
|
|
3
|
-
%h3= :help.l
|
|
4
|
-
%p= :tags_are_keywords_you_use_to_organize_your_clippings_separate_multiple_tags_with_commas.l
|
|
1
|
+
-@page_title = :editing_clipping.l
|
|
5
2
|
|
|
6
|
-
|
|
7
|
-
.
|
|
8
|
-
|
|
9
|
-
%h3= :editing_clipping.l
|
|
10
|
-
%img{"src"=>"#{h @clipping.image_uri(:large)}"}
|
|
11
|
-
= form_for(:clipping, :url => user_clipping_path(@user, @clipping), :html => { :method => :put, :class => "MainForm" }) do |f|
|
|
12
|
-
%label= :url.l
|
|
13
|
-
= f.text_field :url
|
|
14
|
-
|
|
15
|
-
%label= :description.l
|
|
16
|
-
= f.text_field :description
|
|
3
|
+
-widget do
|
|
4
|
+
%h3= :help.l
|
|
5
|
+
%p= :tags_are_keywords_you_use_to_organize_your_clippings_separate_multiple_tags_with_commas.l
|
|
17
6
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
7
|
+
%p
|
|
8
|
+
=link_to :back.l, user_clippings_path(@user), :class => 'btn btn-default'
|
|
9
|
+
=link_to :show.l, user_clipping_path(@user, @clipping), :class => 'btn btn-primary'
|
|
10
|
+
=link_to :delete.l, user_clipping_path(@user, @clipping), :method => 'delete', data: { confirm: :are_you_sure.l }, :class => 'btn btn-danger'
|
|
22
11
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
12
|
+
|
|
13
|
+
=image_tag @clipping.image_uri(:large), :class => 'thumbnail'
|
|
14
|
+
|
|
15
|
+
=render 'form'
|
|
@@ -1,35 +1,34 @@
|
|
|
1
1
|
-@section = 'my_clippings'
|
|
2
|
-
.yui-b
|
|
3
|
-
=render :partial => 'posts/author_profile', :locals => {:user => @user}
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
-box :class => 'alt', :id => 'clipping_tools' do
|
|
13
|
-
%h3=:bookmarklet.l
|
|
14
|
-
%p=:drag_this_to_your_bookmarks_toolbar.l
|
|
15
|
-
%p= link_to "#{configatron.community_name} it!", clippings_link, :style=>"border:1px solid #ccc; background:#efefef; padding: 5px;", :title=>"#{configatron.community_name} "+:scrapbook.l
|
|
3
|
+
- if @is_current_user
|
|
4
|
+
-widget :id => 'clipping_tools' do
|
|
5
|
+
%h4
|
|
6
|
+
.small=:bookmarklet.l
|
|
7
|
+
%p=:drag_this_to_your_bookmarks_toolbar.l
|
|
8
|
+
= link_to "Clip it!", clippings_link, :class => 'btn btn-primary', :title=>"#{configatron.community_name} "+:scrapbook.l
|
|
16
9
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
.pagination=paginating_links @clippings
|
|
10
|
+
-widget do
|
|
11
|
+
%h4
|
|
12
|
+
.small=:help.l
|
|
13
|
+
%p=:clippings_let_you_to_save_cool_images_from_around_the_web.l
|
|
14
|
+
%p=:drag_the_bookmarklet.l :site => 'Clip'
|
|
15
|
+
%p=:when_you_see_an_image_you_like_on_the_web.l :site => configatron.community_name
|
|
24
16
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
=render :partial => 'posts/author_profile', :locals => {:user => @user}
|
|
18
|
+
|
|
19
|
+
-widget :id => 'tag_list' do
|
|
20
|
+
%h4
|
|
21
|
+
.small=:tags.l
|
|
22
|
+
- tag_cloud @tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
|
|
23
|
+
- css_class = css_class + (name.eql?(params[:tag_name]) ? " selected": "")
|
|
24
|
+
= link_to name, user_clippings_path(:user_id => @user, :tag_name => name), :class => css_class
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
- if @clippings.any?
|
|
28
|
+
%ul.list-unstyled.thumbnails
|
|
29
|
+
- @clippings.each do |clipping|
|
|
30
|
+
%li.col-sm-3=render :partial => 'clippings/clipping', :locals => {:clipping => clipping}
|
|
31
|
+
=paginate @clippings, :theme => 'bootstrap'
|
|
32
|
+
- else
|
|
33
|
+
%p= @is_current_user ? :you_have_no_clippings_use_the_bookmarklet_on_the_right_to_add_some.l : :no_clippings_yet.l
|
|
30
34
|
|
|
31
|
-
-box :class => 'alt', :id => 'tag_list' do
|
|
32
|
-
%h3=:tags.l
|
|
33
|
-
- tag_cloud @tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
|
|
34
|
-
- css_class = css_class + (name.eql?(params[:tag_name]) ? " selected": "")
|
|
35
|
-
= link_to name, user_clippings_path(:user_id => @user, :tag_name => name), :class => css_class
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$('#clipping_image_list').html("<%= @images ? render(:partial => 'clippings/images', :formats => [:html], :locals => {:images => @images}).gsub('"', '\\"').gsub("\n", "").html_safe : "<h1>Sorry, there was an error fetching the images from the page you requested</h1><a href='#{params[:uri]}'>Go back...</a>" %>")
|
|
@@ -1,29 +1,12 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
-@page_title= :new_clipping.l
|
|
2
|
+
-widget do
|
|
3
|
+
%h3= :help.l
|
|
4
|
+
%p= :clippings_are_a_way_to_save_images_you_like_from_around_the_web.l
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
.
|
|
8
|
-
-box do
|
|
9
|
-
%h3= :new_clipping.l
|
|
10
|
-
%img{"src"=>"#{h @clipping.image_uri}"}
|
|
11
|
-
= form_for(:clipping, :url => user_clippings_path(@user), :html => { :class => "MainForm" }) do |f|
|
|
12
|
-
%label= :url.l
|
|
13
|
-
= f.text_field :url
|
|
6
|
+
%p
|
|
7
|
+
=link_to :back.l, user_clippings_path(@user), :class => 'btn btn-default'
|
|
14
8
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
%label= :description.l
|
|
19
|
-
= f.text_field :description
|
|
9
|
+
-if @clipping.image_uri
|
|
10
|
+
=image_tag @clipping.image_uri(:large), :class => 'thumbnail'
|
|
20
11
|
|
|
21
|
-
|
|
22
|
-
=:tags.l
|
|
23
|
-
%em="(#{:optional_keywords_describing_this_clipping_separated_by_commas.l})"
|
|
24
|
-
= text_field_tag 'tag_list', @clipping.tag_list
|
|
25
|
-
|
|
26
|
-
%p
|
|
27
|
-
= submit_tag :create.l
|
|
28
|
-
= :or.l
|
|
29
|
-
= link_to :cancel_and_go_back_to_my_clippings.l, user_clippings_path(@user)
|
|
12
|
+
=render 'form'
|
|
@@ -5,88 +5,41 @@
|
|
|
5
5
|
= configatron.community_name
|
|
6
6
|
\-
|
|
7
7
|
=:new_clipping.l
|
|
8
|
-
=
|
|
9
|
-
=
|
|
10
|
-
= stylesheet_link_tag '
|
|
11
|
-
%style{"type"=>"text/css"}
|
|
12
|
-
:plain
|
|
13
|
-
body {
|
|
14
|
-
font: 1em "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
|
|
15
|
-
background: none;
|
|
16
|
-
}
|
|
17
|
-
ul#clipping_image_list {
|
|
18
|
-
list-style:none;
|
|
19
|
-
padding:none;
|
|
20
|
-
width: 400px;
|
|
21
|
-
height: 400px;
|
|
22
|
-
overflow: auto;
|
|
23
|
-
}
|
|
24
|
-
ul#clipping_image_list li {
|
|
25
|
-
display:inline;
|
|
26
|
-
margin:1em;
|
|
27
|
-
}
|
|
28
|
-
ul#clipping_image_list li img {
|
|
29
|
-
cursor:pointer;
|
|
30
|
-
cursor: hand;
|
|
31
|
-
padding:3px;
|
|
32
|
-
border:1px solid #ccc;
|
|
33
|
-
width: 200px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
div#form_div {
|
|
37
|
-
width:550px;
|
|
38
|
-
padding:10px;
|
|
39
|
-
}
|
|
8
|
+
= javascript_include_tag 'community_engine'
|
|
9
|
+
= stylesheet_link_tag 'application'
|
|
10
|
+
= stylesheet_link_tag 'layout'
|
|
40
11
|
%body
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
%a{"href"=>"#{ params[:uri] }"}
|
|
56
|
-
=:cancel_and_go_back_to.l
|
|
57
|
-
= @clipping.url
|
|
58
|
-
#form_div{"style"=>"display:none;"}
|
|
59
|
-
= form_for(:clipping, :url => user_clippings_path(@user), :html => {:class => "MainForm"} ) do |f|
|
|
60
|
-
%label=:url.l
|
|
61
|
-
= f.text_field :url
|
|
12
|
+
.jumbotron
|
|
13
|
+
%h1
|
|
14
|
+
=:create_a_clipping.l
|
|
15
|
+
%p
|
|
16
|
+
=:click_on_an_image_below_to_clip_it.l
|
|
17
|
+
%ul#clipping_image_list.thumbnails
|
|
18
|
+
= image_tag 'spinner.gif', :plugin => "community_engine"
|
|
19
|
+
=:loading_images.l
|
|
20
|
+
%script{"type"=>"text/javascript"}
|
|
21
|
+
="$('#clipping_image_list').html($.post('#{load_images_from_uri_path(:uri => params[:uri]).html_safe}'));"
|
|
22
|
+
=link_to :cancel_and_go_back_to.l + ' ' + @clipping.url, params[:uri], :class => 'btn btn-xs btn-primary'
|
|
23
|
+
#lightbox.modal.fade{:role => 'dialog', "aria-hidden" => "true", :"aria-labelledby" => "send_to_friend_label", :tabindex => "-1", :style => 'padding-top: 60px;'}
|
|
24
|
+
= bootstrap_form_for(:clipping, :url => user_clippings_path(@user), :layout => :horizontal) do |f|
|
|
25
|
+
= f.text_field :url
|
|
62
26
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
%label=:image_url.l
|
|
66
|
-
= f.text_field :image_url
|
|
27
|
+
%img#clipping_preview{"src"=>nil, "width"=>"100px", "style"=>"float:right"}
|
|
67
28
|
|
|
68
|
-
|
|
69
|
-
=:tags.l
|
|
70
|
-
%em="(#{:optional_keywords_describing_this_clipping_separated_by_commas.l})"
|
|
71
|
-
= text_field_tag 'tag_list', @clipping.tag_list, {:autocomplete => "off",:id => 'clipping_tag_list'}
|
|
29
|
+
= f.text_field :image_url
|
|
72
30
|
|
|
73
|
-
|
|
74
|
-
= auto_complete_field 'clipping_tag_list', {:url => {:controller => "tags", :action => 'auto_complete_for_tag_name'}, :tokens => [','], :update => 'clipping_tag_list_auto_complete' }
|
|
31
|
+
= f.text_field :tag_list, {:help => :optional_keywords_describing_this_clipping_separated_by_commas.l, :autocomplete => "off",:id => 'clipping_tag_list'}
|
|
75
32
|
|
|
76
|
-
|
|
77
|
-
= f.text_field :description
|
|
33
|
+
= tag_auto_complete_field 'clipping_tag_list', {:url => {:controller => "tags", :action => 'auto_complete_for_tag_name'}, :tokens => [','] }
|
|
78
34
|
|
|
79
|
-
|
|
35
|
+
= f.text_field :description
|
|
80
36
|
|
|
81
|
-
:
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
90
|
-
return;
|
|
91
|
-
});
|
|
37
|
+
= f.primary :create.l
|
|
38
|
+
|
|
39
|
+
:javascript
|
|
40
|
+
$("#clipping_image_list img").on('click', function(){
|
|
41
|
+
$('#clipping_image_url').val($(this).attr('src'));
|
|
42
|
+
$('#clipping_preview').attr('src', $(this).attr('src'));
|
|
43
|
+
$('#lightbox').modal();
|
|
44
|
+
});
|
|
92
45
|
|