Skip to main content

Diigo Home
Home/ Groups/ CMS-tech
Fuzbolero .

Fully packaged Drupal CMS distributions now deployed on drupal.org | drupal.org - 0 views

  • 3281d Consulting is very pleased to announce that a new era on drupal.org has begun: Drupal distributions (also known as "installation profiles") can now be automatically packaged with Drupal core and all of their required dependencies. When you download the distribution, you just unpack it into a web root directory, visit install.php, and you're done. This should vastly lower the barriers to getting a new Drupal site up and running. Please read on if you've ever considered installing a Drupal distribution or if you maintain one on drupal.org.
Fuzbolero .

Drupal wins best open source PHP CMS for second year in a row | drupal.org - 0 views

  • Drupal has won best open source PHP Content Management System for the second year in a row in the Packt Publishing 2009 Open Source CMS Awards. Drupal won by popular vote and a critical selection by a panel of judges. This award reflects the strong support of the Drupal community and our focus on quality which leads to critical acclaim and rapid adoption for large, high quality projects. Drupal won best overall open source CMS in 2007 and 2008.
Fuzbolero .

PortableApps.com Wins Big in the 2009 SourceForge Community Choice Awards at OSCON | Portab... - 0 views

  • SourceForge.net has announced the winners of the SourceForge.net Community Choice Awards and PortableApps.com is the big winner. Sweeping 4 of the 12 categories, a new record, PortableApps.com also closed the night by winning the coveted Best Project award at the awards party and ceremony at the annual O'Reilly Open Source Convention in San Jose, CA. In addition to Best Project, PortableApps.com also won Best Commercial Open Source Project, Best Visual Design and Most Likely to Change the Way You Do Everything.



    We would like to thank our designer, DJ Carey, our site admins (Marko Moeller and Ryan McCue), our developers (Chris Morgan, David Dixon II, Geoff Shearsmith, Jacob Mastel, Kevin Porter, Marko Moeller, Michon van Dooren, Nathan D., Oliver Krystal, Patrick Patience, powerjuce, Ryan McCue, Shawn Faucher, Simeon Kühl, Steve Lamerton, Travis Carrico, Zach Hudock, Zach Thibeau), our forum moderators, our translators, our 90,000 community members, our millions and millions of users worldwide, our fans, our friends, our families, SourceForge.net (for hosting our downloads and organizing the awards), Drupal (the open source CMS on which our site runs), all the projects that have worked with us to make their software portable, everyone we have worked with in the past and everyone we will work with in the future.

  • Fuzbolero .
     
    (2009-07-28)
  • Fuzbolero .
     
    (2009-07-28)
Fuzbolero .

Lullabot: Do It With Drupal 2009 | drupal.org - 0 views

  • The Do It With Drupal Seminar will feature the following highlights:


    • Examine and dissect successful Drupal sites
    • Discover new site-building strategies
    • Learn from Drupal's top developers
    • Hear from social media and social networking experts
    • Connect with other Drupal professionals
    • Expand your Drupal knowledge

    This commercially produced event takes place at the Marriott Hotel in New Orleans' French Quarter, December 9, 10, 11, 2009 and features sessions by many "big names" from both inside and outside of the Drupal community (see list of current speaker list below).

Fuzbolero .

Support Drupal by Voting in Packt Publishing's Open Source CMS Award Competition | drupal.o... - 0 views

Fuzbolero .

Drupal CMS contributed module: 2 Way Video Chat module | drupal.org - 0 views

  • 2 Way Video Chat (by VideoWhisper) is a premium high definition video communication software designed for instant 1 on 1 online video conferencing. It's a solution for conducting easy to setup face to face meetings without leaving your office or home. It's the easiest and most cost-effective way to meet somebody and discuss one on one.
Fuzbolero .

Drupal CMS and contributed modules: How to report a security issue | drupal.org - 0 views

  • If you discover a vulnerability in Drupal core or contributed module, keep it confidential. Mail us at security@drupal.org, do not post in the issue tracker. The security team will investigate your report and create a fix. When the issue is about a contributed module, the team coordinates with a module maintainer. When a fix is ready, an advisory urging users to upgrade is published.
  • Some bugs take time to correct and the process may involve a review of the codebase for similar problems. Coordinating across time zones and work schedules can be time-consuming.
  • Do not disclose the vulnerability to anyone before the advisory is issued.
  • ...2 more annotations...
  • Provide us with a detailed report. As a minimum:


    • Drupal version or module version.
    • Steps to reproduce.
  • If you report a previously unknown vulnerability to the Drupal security team, you will be credited in the security announcement.
Fuzbolero .

Coding standards | drupal.org - 0 views

  • The Drupal Coding Standards applies to code within Drupal and its contributed modules. This document is loosely based on the PEAR Coding standards.
  • Use an indent of 2 spaces, with no tabs.


    Lines should have no trailing whitespace at the end.


    Files should be formatted with \n as the line ending (Unix line endings), not \r\n (Windows line endings).

  • All binary operators (operators that come between two values), such as +, -, =, !=, ==, >, etc. should have a space before and after the operator, for readability. For example, an assignment should be formatted as $foo = $bar; rather than $foo=$bar;. Unary operators (operators that operate on only one value), such as ++, should not have a space between the operator and the variable or number they are operating on.
  • ...23 more annotations...
  • Control structures include if, for, while, switch, etc.
  • Control statements should have one space between the control keyword and opening parenthesis, to distinguish them from function calls.
  • You are strongly encouraged to always use curly braces even in situations where they are technically optional. Having them increases readability and decreases the likelihood of logic errors being introduced when new lines are added.
  • Functions should be called with no spaces between the function name, the opening parenthesis, and the first parameter; spaces between commas and each parameter, and no space between the last parameter, the closing parenthesis, and the semicolon.
  • Arguments with default values go at the end of the argument list. Always attempt to return a meaningful value from a function if one is appropriate.
  • Arrays should be formatted with a space separating each element (after the comma), and spaces around the => key association operator, if applicable
  • Drupal does not have a hard standard for the use of single quotes vs. double quotes. Where possible, keep consistency within each module, and respect the personal style of other developers.
  • With that caveat in mind: single quote strings are known to be faster because the parser doesn't have to look for in-line variables. Their use is recommended except in two cases
  • Always use a space between the dot and the concatenated parts to improve readability.
  • When using the concatenating assignment operator ('.='), use a space on each side as with the assignment operator
  • Inline documentation for source files should follow the Doxygen formatting conventions.
  • Non-documentation comments are strongly encouraged. A general rule of thumb is that if you look at a section of code and think "Wow, I don't want to try and describe that", you need to comment it before you forget how it works.


    Non-documentation comments should use capitalized sentences with punctuation. Sentences should be separated by single spaces. All caps are used in comments only when referencing constants, for example TRUE. Comments should be on a separate line immediately before the code line or block they reference.

  • Always use <?php ?> to delimit PHP code, not the shorthand, <? ?>. This is required for Drupal compliance and is also the most portable way to include PHP code on differing operating systems and set-ups.
  • The PHP language requires semicolons at the end of most lines, but allows them to be omitted at the end of code blocks. Drupal coding standards require them, even at the end of code blocks.
  • All source code files in the core Drupal distribution should contain the following comment block in the header:
  • This tag will be expanded by CVS to contain useful information
  • Functions should be named using lowercase, and words should be separated with an underscore. Functions should in addition have the grouping/module name as a prefix, to avoid name collisions between modules.
  • Constants should always be all-uppercase, with underscores to separate words.
  • If you need to define global variables, their name should start with a single underscore followed by the module/theme name and another underscore.
  • Classes should be named using "CamelCase."
  • Class methods and properties should use "lowerCamelCase"
  • All documentation files should have the file name extension ".txt" to make viewing them on Windows systems easier. Also, the file names for such files should be all-caps (e.g. README.txt instead of readme.txt) while the extension itself is all-lowercase (i.e. txt instead of TXT).
  • There is a helper command line script included with Drupal to check your code for style compliance. The code-style.pl file is located in the /scripts directory. To use the script just give your file as an argument when you execute the script (make sure the script is executable):


    ./code-style.pl path/to/file/example.module


    This will output a list of suggestions for where to improve your code.

Fuzbolero .

Disable RSS Feed? | drupal.org - 0 views

  • well that seems to be a nice solution. but it only removes the link to the rss feed -> the xml file still exists and so it gets indexed by search engines.
  • I too am creating a private site.. I would assume you could use HTACCESS to stop search engines indexing the site..
  • surely that just disables the icons?
  • ...3 more annotations...
  • i agree with the feature, but posting it here and leaving random forum notes to "drupal developers" is a complete waste of time.
  • In Drupal 6 you can use hook_menu_alter to remove the rss.xml menu item:


    <?php
    function mymodule_menu_alter(&$items) {
       unset(
    $items['rss.xml']);
    }
    ?>
  • Forgive me if I'm wrong, but RSS articles will only be included in the feed if the Anonymous role has access to them. For Drupal 6, there's the Content Access module that lets you limit access by role to each content type.
Fuzbolero .

Dreditor for Firefox greasemonkey - script for drupal cms development | drupal.org - 0 views

  • Awesome user scripts for drupal.org going on here. This is no Drupal module, and you can only install the script in your browser.
Fuzbolero .

jCarousel - Riding carousels with jQuery - sorgalla.com - 0 views

  • jCarousel is a jQuery plugin for controlling
    a list of items in horizontal or vertical order. The items, which can be static
    HTML content or loaded with (or without) AJAX, can be scrolled back and forth
    (with or without animation).
Fuzbolero .

Comparison of Rotator / Slider modules | drupal.org handbook - 0 views

  • This page came about as a result of this post in the Duplicated Modules Hall of Shame group. The linked post lists several modules that provide either tabbed content or rotating content.
  • Available Modules


    There are many modules that provide some sort of slideshow / rotator functionality.


    • Dynamic display block - Enables you to create and present blocks of content in a dynamic way. Uses the jQuery Cycle Plug-in.
    • Views Rotator - a Views style plugin using the Cycle jQuery plugin with a small number of options for controlling transition behaviour.
    • Views Cycle - a Views style plugin using the Cycle jQuery plugin, with an option for tabs, several transition effect options and other transition behavior settings.
    • Views Slideshow - a Views style plugin using its own JavaScript for the rotation, also including a tabs option and a small number of transition behavior options. The Drupal 6 (dev) version is an extensible API that allows other cycles, rotators, and carousels to plug into the module, so they don't need to recreate the Views functionality.
    • Views Slideshow: ImageFlow - offers an ImageFlow option to Views Slideshow, similar to Apple's CoverFlow.
    • Slideshow Creator - adds an input format filter to allow you to add slideshow creation code to the body of a node. This module has been deprecated
    • Featured Content Slider - select nodes based on content type and create up to 3 blocks of featured content.
    • Slider - create a "slider" content type with a multi-value nodereference field to create carousel-style sliders of the referenced nodes.
    • EasySlider - create a list-style view with a block display and the view results are displayed in a carousel style slider.
    • Node Carousel - create carousels of nodes based on nodequeue or custom values using a hook in your own module.
    • Views Carousel - a Views style plugin using the jCarousel jQuery plugin for the rotation, suitable for e.g. a scrollable thumbnail viewer.
1 - 20 of 396 Next › Last »
Showing 20 items per page