Feed aggregator

Acquia: Web services in Drupal 8 Core

Drupal Planet - Wed, 2014-09-10 16:13

Some of the great news in Drupal 8 development was the introduction of web services directly in core, allowing other applications to interact with Drupal to consume exposed information or services without the need to install contributed modules.

Let’s look at the list of modules that ship with D8 core related with web services:

drupal 8 1

Categories: Software

LightSky: Apple Watch is a Great Sign for Drupal

Drupal Planet - Wed, 2014-09-10 15:42

Earlier this summer Dries Buytaert, the original creator of Drupal, had a pretty visionary keynote at DrupalCon, which we talked about in pretty good detail in a podcast.  One of the things that we mentioned in our analysis of his keynote is that while what Dries was presenting was looking pretty far into the future, it showed that Drupal is being guided on the right path to be positioned well in the future of the web, and Apple's announcement yesterday of the new Apple Watch just supports this position.  The Apple Watch is exactly the type device that Dries is trying to position Drupal to be ready to feed content to.

Screen Size Could Make the Current Web Obsolete

Obviously anyone who has looked at the pictures or video of Apple's new watch can immediately see that you aren't going to be viewing a website on it.  Really in any form, a website as we know it won't be displayable on this type of device.  Even the best designers and front-end developers aren't going to be able to make a site responsive down to this size effectively, and the important thing to note is that this is totally ok.  But it is not just small screens that change the way content is going to have to be consumed, big screens cause just as much problem.  We aren't going to be displaying whole websites on billboards, or 6x4 signs found on the sidewalks in major cities, we have to be able to feed content to them.

Be Ready, Change is Coming

It probably isn't going to quickly eliminate web sites as we know it, but agencies and other organizations need to be ready for change in the way their content is consumed.  Whether it be how products are displayed to potential buyers, your store hours, notifications of sales and events, it doesn't matter what the content is, the way it is consumed will be different in just a matter of months even than it is now.  CMS frameworks need to be ready, and the reality is that many just aren't ready, and aren't headed in the right direction to be ready.  Drupal on the other hand, is on the right track.

For more tips like these, follow us on social media or subscribe for free to our RSS feed and newsletter. You can also contact us directly or request a consultation
Categories: Software

4Sitestudios.com Drupal Blog: BuildingRating.org Website Redesign

Drupal Planet - Wed, 2014-09-10 15:30
BuildingRating.org Website RedesignThe Challenge The Institute for Market Transformation (IMT) is a Washington, DC-based nonprofit organization promoting energy efficiency, green building, and environmental protection in the United States and abroad. They approached 4Site to redesign the BuildRating.org website, an international exchange for information on building rating disclosure policies and programs, from the ground up. Our Solution 4Site worked with IMT to develop a comprehensive strategy for the BuildRating.org redesign to ensure that the new site provided as many user friendly tools as possible to help visitors find the specific information they needed. We built a world map of jurisdictions with sustainability standards, a robust search with filters for locations, topics, and content types, and a policy comparison tool in which visitors can select jurisdictions and topics to compare in a custom populated table format. The Results Visit the BuildingRating.org WebsiteInstitute for Market TransformationService: DesignInfographics & Visual ContentWebsite ThemingDevelopmentData Visualization & MappingWebsite DevelopmentStrategyContent StrategyUser Experience
Categories: Software

Drupal Easy: DrupalEasy Podcast 138: Touch of Gray (Rick Manelius - PCI Compliance)

Drupal Planet - Wed, 2014-09-10 15:14
Download Podcast 138

Rick Manelius (rickmanelius), project architect at NEWMEDIA, and one of the leading minds in our community when it comes to PCI Compliance, joins Mike Anello to further demystify PCI Compliance and the role it plays in any site that involves credit card data. We also discuss two-factor authentication, when we might see a Drupal 8 beta, and Drupal’s persistence.

read more

Categories: Software

Cocomore: Meet us in Amsterdam

Drupal Planet - Wed, 2014-09-10 15:13

We were going DrupalCon Amsterdam 2014.There is the European DrupalCon happening from Sept. 29th to the Oct. 3rd in Amsterdam and a team of Cocomore - as one of the biggest Drupal shops in Germany and Spain - will of course attend.

read more

Categories: Software

DrupalCon Amsterdam: Training spotlight: Design, Prototype, and Style in Browser

Drupal Planet - Wed, 2014-09-10 14:31

Design, Prototype, and Style in Browser (formerly Advanced Sass and Compass for RWD) is back! One of our most popular courses returns, with even more great new content - and now is your chance to attend this training at DrupalCon Amsterdam!

With more mobile device activations per day than human births and full internet browsers coming to television sets and gaming consoles (both home and portable), the old techniques we have used to create pixel-perfect sites for desktop audiences have already become a thing of the past.

We will explore content strategy as a method for designing responsive websites, building separate components and layouts, and will emphasize creating DRY code. We will dive deep into the power of Sass and Compass and a handful of JavaScript tools and how they can be utilized for your growing website. These tools can ease much of the hard work related to creating truly awesome responsive websites.

Meet the Trainers from Four Kitchens

Chris Ruppel (rupl) and Ian Carrico (iamcarrico) are Frontend and Backend developers at Four Kitchens respectively. Both are well-known in the Drupal community as both RWD and Sass experts, having trained and spoken at numerous events around the world, including Portland, Denver, New York, Austin, San Francisco, and Munich, Germany.

Neither are strangers to community contribution: Ian maintains the Aurora base theme and Magic module and contributes to many RWD-related Compass extensions such as Toolkit, Singularity, and Breakpoint. Chris maintains the Modernizr module and has contributed to Modernizr, the Drupal 8 HTML5/Mobile initiatives, and the Drupal.org D7 upgrade.

Attend this Drupal Training

This training will be held on Monday, 29 September from 09:00-17:00 at the Amsterdam RAI during DrupalCon Amsterdam. The cost of attending this training is €400 and includes training materials, meals and coffee breaks. A DrupalCon ticket is not required to register to attend this event.

Register today

Categories: Software

Metal Toad: Simple password grants with OAuth 2.0 and Drupal

Drupal Planet - Wed, 2014-09-10 10:30

Like many Drupal developers, we have become big fans of decoupled front-ends using Drupal as a RESTful backend (a.k.a. "headless" Drupal). The myriad of authorization options can be confusing, however. We've settled on OAuth 2.0 for most situations. When OAuth is brought up, many people will think of the single-sign-on flow in a browser, with the associated redirects and permission dialogs. This flow is widely used, but not always a good fit for first-party applications, or machine-to-machine API interactions.

Categories: Software

Károly Négyesi: I AM GROOT

Drupal Planet - Wed, 2014-09-10 07:36

Or, languages are really hard.

So I was handing over some CSV export functionality to a client who loaded it into Excel as it is without using the import wizard. This resulted in misinterpreted UTF-8 as WIN-1252. I quickly wrote this little function (error handling omitted for brevity):
<?php
  function uconv($text) {
    $descriptorspec = array(array("pipe", "r"), array("pipe", "w"));
    $process = proc_open("/usr/bin/uconv --add-signature", $descriptorspec, $pipes);
    fwrite($pipes[0], $text);
    fclose($pipes[0]);
    $text = stream_get_contents($pipes[1]);
    fclose($pipes[1]);
    proc_close($process);
    return $text;
  }
?>
A quick test of the function showed it working, so I patched the CSV export to call it, deployed it on the dev server and... it died on the first accented character. I have checked on the dev server from command line and it worked. W.T.F. I compared the mbstring ini values, all the same. W.T.F, no, really, this can't be.

Well, there must be something different, right? What could be? Locale? But what's locale? Environment variables. Hrm, proc_open has environment variables too. Well then let's see whether my shell feeds something into this script that makes it work: env -i php x.php. It breaks! Yay! It's always such relief when I can reproduce a bug that refuses to be reproduced. The solution is always easy after -- the LANG environment variable is en_US.utf8 in the shell, and C in Apache:

<?php
proc_open("/usr/bin/uconv --add-signature", $descriptorspec, $pipes, NULL, array('LANG' => 'en_US.utf8'));
?>

Ps. Curiously enough, -f utf-8 as an uconv argument didn't help -- but -f utf-8 -t utf-8 did. Morale of the story: uconv defaults to the value LANG both to and from. This is not documented and it's very hard to discover.

Categories: Software

Modules Unraveled: 118 Starting and Running a DrupalCamp in a Hobbiest Community with Adam Hill - Modules Unraveled Podcast

Drupal Planet - Wed, 2014-09-10 07:00
Photo of Adam HillPublished: Wed, 09/10/14Download this episodeStarting a local Drupal community
  • When did you start the DrupalCampNE meetups?
    • Started due to meeting a friend Richard at DrupalCons in Paris, Copenhagen and Denver and saying how crazy it was that we met at DrupalCons across the world but not in the North East where we’re both native. So we setup a meeting and promoted it on twitter and with some others we knew had at least dabbled with Drupal. We had 6 people at our first meeting and that happened in a pub which was to set the stage for the future meetups which have all been held in pubs.
  • I’ve thought about how cool it would be to start a local camp, but we don’t have a lot of people even coming to our meetups. What have you (or other organizers) done to get consistent attendance to events?
    • Consistency… Mixup of talks and social but always keep it social so expectations are not too high. For the camp we needed there to be a few people interested and then had backing from my company to allow us to dedicate time. Dedicated time has been vital.
  • How large is a typical meetup? What’s the average attendence?
    • We get anything from between 5 - 20 people attending but its really a mixup again, depends heavily on the day to some extend (holidays etc.) but also on if there is a talk. Our WP vs Drupal talk got a LOT of people :)
  • How far do people travel to get to your meetups?
    • We’ve had people doing a round trip of 100 miles before because there is no meetup in the North of the North West… but usually people come from Newcastle or there abouts. We lose a few people since its too far for them to come for sure.
DrupalCampNE
  • When did you start organizing a Drupal Camp for the North East of England?
    • August 2013 - started asking/checking about venue
    • Went to other camps in UK to promote and to share info
    • November 2013 - announced the date around DrupalCamp North West
  • What were some of the challenges you faced? Were there any unexpected ones that stick out to you?
    • Local attendees
    • Sponsors
    • Cancelled talks
    • Outsourcing - Venue
  • What went really well for you? How did you plan for it?
    • The feelings of collaborating - fresh eyes were really liberated.
    • The venue was loved
    • The talks by Morten and Holly Ross
  • What advice would you give to someone who’s planning a camp now? Or will be soon?
    • Plan really well in advance
    • Find a great venue and try to get it for free :)
    • Have the freedom to make decisions - keep a small team?
    • Get sponsors early!
    • Get speakers early!
Episode Links: Adam on drupal.orgAdam on TwitterConsult and DesignTags: Drupal Campsplanet-drupal
Categories: Software

Mediacurrent: How To Do A Combined Name Search

Drupal Planet - Tue, 2014-09-09 22:55

Recently I developed some functionality for a client that I realized might be useful to the greater Drupal community. This post describes how to set up a combined fields filter in Views to allow searching for terms and matching more than one field.

Categories: Software

Palantir: DrupalCon Amsterdam

Drupal Planet - Tue, 2014-09-09 20:59
DrupalCon Amsterdam logo

Each year the Drupal Association coordinates a few large-scale conferences for the global Drupal community. This time around the European conference is in Amsterdam, and we’ll be there to enjoy code sprints, meeting new members of the community, sessions, and, of course, presenting a few ourselves.

First, a few details: DrupalCon Amsterdam runs September 29 through October 3 and will have a couple thousand people from the Drupal community in attendance. Like the North American DrupalCon, sprints, events, and over 100 sessions will happen over the course of the conference.

Palantir will have a number of folks in attendance, including our CEO George DeMet, President Tiffany Farriss, Director of Development and Professional Services Ken Rickard, and Senior Architect and Community Lead Larry “Crell” Garfield.

Larry “Crell” Garfield

Larry will be leading three sessions:

Ken Rickard

Ken dives into the consulting piece for dev shops.

George DeMet

George has been involved with several Drupal working groups for some time now and will be on two panels related to such goings on.

In addition to ours and all of the other sessions – and Amsterdam as a city, of course – we’re also excited for all of the other things that come with DrupalCon. Whether it's sprint days making progress on Drupal 8 core and contributed module development, or the the PHP track this year (which showcases a number of leading presenters from the PHP world at-large helping continue to build bridges between Drupal and the PHP community), meeting new contributors (especially from the Symfony community), or working with the Drupal Association its working groups to help plan the future of Drupal.org and DrupalCon, it's a chance for all of us to grow as members of this and other communities.

Are you headed to Amsterdam for DrupalCon? If so, say hello to Tiffany, George, Ken, and Larry. And let us know what you’re excited about in the comments, or on Twitter here. We can keep you up-to-date via our newsletter as well. Hope to see you there!

Categories: Software

Freelock : Ask Freelock: Why should I use "Media" links instead of just embedding, in Drupal?

Drupal Planet - Tue, 2014-09-09 19:36

Joaquin asks:

Sorry, John.

But when it comes to adding Youtube and Vimeo, you still haven't made the case for not going into the HTML.

Here is a test page I created.

The top video I used the "WEB" tab in the "Add Media" button (BTW, it is a little confusing that there is still that tab labeled "Youtube").

The bottom video I copy and pasted from the HTML that Youtube presents you when you click the "Embed" tab.

As you can see, pasting the HTML looks a lot better. And the first option doesn't seem to be working.

Thoughts?

DrupalDrupal PlanetMediaVideo
Categories: Software

Acquia: The future of PHP ... at a distance

Drupal Planet - Tue, 2014-09-09 15:55

The future of PHP ... at a distance

First a short disclaimer: It’s been quite a few years since I have last been subscribed to the internals mailing list. I still hang out in one of the popular core developer IRC channels, follow quite a few core developers on twitter, and chat with people at conferences--which allows me to still keep up with things to some degree. I do of course still work daily with PHP. So for better or for worse this lets me see PHP's future at a bit of distance from core development.

Categories: Software

Deeson Online: Part 2: Apache Solr - Manually Controlling a Custom Fields Bias

Drupal Planet - Tue, 2014-09-09 11:25

In part one of this post I showed you how to create a custom field to be added to Apache Solr index and altering the search based on this field. In this second part I will be showing you how you can define a custom field to be listed within the 'field bias' admin settings in the Apache Solr module.

Setting the field biases

Most of the time just setting a custom field to be added to your index is all you will need. But sometimes there is the need to be able to control the bias of your custom fields when Solr does the search.

Typically you would manage this in the Apache Solr admin pages by going to /admin/config/search/apachesolr/settings. This will show you a list of your Solr instances that you have configured for the site. To change the biases, click on the ‘bias’ link against the relevant instance.

Within this section if you choose the ‘Field Biases’ tab on the left hand site you can set the bias for fields within the site.  This will affect the what is more relevant when Apache Solr does a search.

This is fine if you just want to set the bias on the standard fields that are available, but what if you want to be able to control the bias of the new custom field that you have just created?

Allowing manual field biases control on your custom field

Looking at the Apachesolr module in more detail shows that this list of bias fields is made up of ‘default’ fields (e.g. content, h1, h2 etc.) and any fields that are ‘text’ fields.

If you have created a custom field and your field is a string (e.g. 'ss_my_field') then you would think that this would then show up as it is a string field which is text - right?

Well no ..... after looking at the field definitions in more details (as shown in part 1), string fields are different to text fields, which is why the custom string field wasn't showing in the list.

Therefore in order for your custom field to appear in the list of 'bias fields', you need to define your custom field as a 'text' field rather than a 'string' field (e.g. ‘ts_my_field’). Having done this, re-index the content and the custom field now shows in this list of field biases.

Hooray I hear you shout .... well almost.  The field shows in the list but the label of this custom field shows as the field name (e.g. ‘ts_my_field’) - not very readable or friendly.

Helpfully there is a hook provided by the ApacheSolr module to map fields to a label for display:

/** * Implements hook_apachesolr_field_name_map_alter(). */ function MY_MODULE_apachesolr_field_name_map_alter(&$map) { $map['ts_my_field'] = t('This is the label for my custom field'); }

Now your new custom field shows in the list of 'bias fields' and has a nice friendly label for it. So you can now set the relevant value you would like for it to alter your search - happy days!

Read morePart 2: Apache Solr - Manually Controlling a Custom Fields BiasBy Mike Davis | 9th September 2014
Categories: Software

Urban Insight: Building a Drupal Module for Research Papers in Economics (RePEc)

Drupal Planet - Tue, 2014-09-09 01:19

Working with the USC Lusk Center for Real Estate, we recently had the opportunity to automate how the Center's research papers are submitted to a popular repository of research about economics. This post discusses how we created a software module that others who use the open source Drupal web content management system can reuse and enhance.
 

Categories: Software

Zivtech: Upcoming Zivtech Events, September 2014

Drupal Planet - Mon, 2014-09-08 19:10

September is a busy month over here at Zivtech as we embark on Drupaldelphia, a training on Panels and a handful of meetups. We will be out and about throughout the month, so be sure to catch up with us at some of our upcoming events:

Node.js Meetup at Zivtech HQ

Our Involvement: Hosting, Attending

What: This is an installment of the second-Tuesday Philly node.js meetup group. We start things out informally and anyone that has something to share shows off what they've been doing with node.js.

When: Tuesday, September 9, 2014 from 6:00 - 8:00 pm

Where: 1315 Walnut St, Suite 1500, Philadelphia, PA 19107

PHIT Circle Presents: Aging in Place

Our Involvement: Sponsors, attending

What: Please join us on Thursday, September 11th  to learn about "Aging in Place". John Whitman, a Wharton Health Care Management faculty member and leading national consultant on aging and long-term care is assembling a panel of experts to discuss how innovation is enabling our seniors to receive the medical monitoring and care they need to safely continue living in their own homes. We will both define what it means to age in place and how it's different depending upon socioeconomic status, and what innovations and technologies are available and needed for aging in place to happen. Special emphasis will be placed on not just what is currently available, but also what is needed for the future.

When: Thursday, September 11, 2014 from 5:30 - 8:30 pm

Where: 4801 S. Broad St., Suite 100, Building 100 Innovation Center, Philadelphia, PA 19112

Drupaldelphia 2014

Our Involvement: Sponsors, presentors, attending

What: Drupaldelphia is an annual camp held in Philadelphia for the open source content management platform, Drupal. The event attracts developers, site-builders, content administrators, designers, and anyone interested in using Drupal in their organization or upcoming project. This year will again be hosted in the Pennsylvania Convention Center at 1101 Arch St  Philadelphia, PA 19107.

When: Friday, September 12, 2014 from 8:00 am - 4:30 pm

Where: The Philadelphia Convention Center, 1101 Arch St, Philadelphia, PA 19107

Philadelphia Drupal Meetup at Zivtech HQ

Our Involvement: Hosting, attending

What: We'll be talking Drupal, eating pizza, and drinking various beverages (some alcoholic, others not) from 6:30-9pm at Zivtech Headquarters in Old City. The pizza and drinks will be provided by the hosts (that's us!).

When: Tuesday, September 16, 2014 from 6:30 - 9:30 pm

Where: 1315 Walnut St, Suite 1500, Philadelphia, PA 19107

Drupal Training: Layout and Site Building with Panels

Our Involvement: Hosting, facilitating

What: Panels is a tool for creating advanced layouts and data displays in Drupal. In our day-long intermediate level training, we look at the full range of the Panels toolset and cover the following topics: understanding the Panels interface, tricks to make editing Panels easier, creating custom Panels layouts, styling techniques, building advanced data displays, helpful Panels features that many site builders miss.

When: Wednesday, September 17, 2014 from 10:00 am - 5:00 pm

Where: 1315 Walnut St, Suite 1500, Philadelphia, PA 19107

Comics are Magic: How Words and Images Create Content That Can’t Be Ignored

Our Involvement: Hosting, attending

What: Comic and cartoons aren't new, but it took the Internet to unlock their full potential. Find out how technology no more complicated than a jpeg can grab viewer's attention and deliver a message before they even realize they're receiving it.

When: Wednesday, September 17, 2014 from 6:00 - 8:00 pm

Where: 1315 Walnut St, Suite 1500, Philadelphia, PA 19107

PACT Thursday Networking Series

Our Involvement: Attending

What: Get back to basics and make new connections as PACT welcomes in summer. PACT invites its fellow members and guests from Technology and Healthcare Corporations, Entrepreneurs, Investors and Professional Advisors for an evening of networking. Come learn more about each others businesses & exchange business cards while enjoying cocktails and hors ‘d’ oeuvres.

When: Thursday, September 18, 2014 from 5:30- 7:30 pm

Where: Prime Stache, 110 Chestnut St, Philadelphia, PA 19107

These are just a handful of the events we will be attending, hosting, and sponsoring this September, so be sure to keep your eyes and ears open for more as we continue to update this list.

We can't wait to see you around!

Will you be attending any of our upcoming events? Let us know in the comments.

 

Terms: Eventsupcoming eventsZivtechSponsorattendhostMeetupDrupal PlanetDrupalNode.jsPACTContent MarketingTrainingsdrupal trainingdrupaldelphiaDrupalCon
Categories: Software

DrupalCon Amsterdam: Training spotlight: Drupal 8 for Drupalistas

Drupal Planet - Mon, 2014-09-08 17:21

Are you a site builder, themer, or backend developer who is comfortable with Drupal 7 (or 6) and worried about gearing up for Drupal 8?

Want a headstart?

Drupal 8 for Drupalistas at DrupalCon Amsterdam will save you self-study time by walking you through D8 in a day. You'll build a site, getting a hands on experience of the anticipated Drupal 8 changes, and dive deeper into your own speciality.

At the end of the day, you will be ready to dive deeper into Drupal 8 and start building projects. Our goal is to make your transition as smooth as possible. While we won't dive too deeply into coding (Sorry, all ye who seek Symphony training!) we will break into small, specialty groups at the end of the day so you can focus on one area; site building, theming, or coding.

Meet the Trainers from Amazee Labs

Long-time DrupalCon trainer Diana Dupuis (dianadupis), Site Building track chair Michael Schmid (Schnitzel), and DevOps track chair Bastian Widmer (dasrecht) of Amazee Labs have presented this training three times, including once at DrupalCon Austin to a sold-out room.

Attend this Drupal Training

This training will be held on Monday, 29 September from 09:00-17:00 at the Amsterdam RAI during DrupalCon Amsterdam. The cost of attending this training is €400 and includes training materials, meals and coffee breaks. A DrupalCon ticket is not required to register to attend this event.

Register today

Categories: Software

Acquia: Perspectives on the future of PHP

Drupal Planet - Mon, 2014-09-08 16:38
Announcing the Future of PHP guest blog series

Categories: Software

PreviousNext: DrupalGov Canberra 2014: The new Front-end work-flow from ticketing to building

Drupal Planet - Mon, 2014-09-08 09:26

John Albin Wilkins recently gave a session on The new Front-end work-flow from ticketing to building at DrupalGov Canberra. 

This session will outline our current mistakes and then introduce the basic techniques for CSS layering and using design components, the heart of any front-end CSS project. We will also discuss ticket structure, project organization, and tricks to implement components when you can't change Drupal's classes.

Categories: Software

PreviousNext: DrupalGov Canberra 2014: Drupal 8 for Sitebuilders

Drupal Planet - Mon, 2014-09-08 09:16

Find out what's install for Site Builders in Drupal 8 from my recent DrupalGov Canberra session.

Categories: Software

Pages