
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
refinerycms-image_slideshows
Advanced tools
Image Slideshows allows you to create groups of images for use by a JavaScript image slider.
Suggested image slider: Nivo Slider
Refinery CMS "core" engine version 2.0.0 or later.
Include the latest gem into your Refinery CMS application's Gemfile:
gem "refinerycms-image_slideshows", '~> 2.0.1'
Then type the following at the command line inside your Refinery CMS application's root directory:
bundle install
rails generate refinery:image_slideshows
rake db:migrate
rake db:seed
<body>
<% main_slideshow = Refinery::ImageSlideshows::ImageSlideshow.find_by_title('Demo') %>
<div id="wrapper">
<div class="slider-wrapper theme-default">
<div id="slider" class="nivoSlider">
<% main_slideshow.image_slides.each do |image_slide| %>
<%= link_to image_slide.link_url do %>
<%= image_tag image_slide.image.url, :alt => image_slide.title, :title => image_slide.caption %>
<% end %>
<% end %>
</div>
</div>
</div>
<script type="text/javascript" src="/javascripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="/javascripts/jquery.nivo.slider.js"></script>
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider({
<%= raw main_slideshow.js_config %>
});
});
</script>
</body>
FAQs
Unknown package
We found that refinerycms-image_slideshows demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.