Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 2 of 5

Will allow integration of drupal with any SAML 2.0 or Shibboleth IdP. Documentation: https://ow.feide.no/simplesamlphp:drupal The download code is for drupal 5.x, and the version in subversion is for 6.x. Join the mailinglist for questions or discussion.

0
 
  0 reviews  |  0 users  |  1,127 lines of code  |  6 current contributors  |  Analyzed 1 day ago
 
 

This module intends to leverage both taxonomy.module and menu.module and acts like a glue between the two. After choosing a vocabulary, this module can be used to dump a taxonomy tree into a menu. This menu remains totally configurable using menu.module, so links can be modified, deleted, or ... [More] added. The module gives two ways of updating the menu based on a vocabulary: 'Populate' and 'Back-to-Back' for which two options apply: 'Add new terms' and 'Delete old terms'. 'Add new terms' intends to add terms present in the chosen vocabulary that don't have a counterpart in the menu. 'Delete old terms' intends to delete menu links that don't have a counterpart in the chosen vocabulary. The 'Populate' action will simply update the menu depending on any combination of the two options above. Example: if the two options are selected, the new menu tree will be strictly identical to the vocabulary tree. The 'Back-to-Back' action gives a more fine-grained control over the process. It gives a combined representation of the taxonomy and menu trees in a table similar to taxonomy terms overview and menu customize overview. Links that need to be added or deleted can then be selected individually, giving a real time preview of what the menu will look like upon submission. When a link is inserted it is given a link_path of 'taxonomy/term/n' or 'taxonomy/term/n/all' depending on the user choice. However the most important aspect of this module is that it doesn't have to stay like that, the user is totally free to customize links using menu.module. All that this module cares about is term names for taxonomy and link titles for menu links. Example of usage: After dumping all the categories of a site into a taxonomy vocabulary this module can be used as a one time thing for creating a menu for use in 'primary links'/'secondary links'. More advanced usage is using it to track changes in taxonomy that aren't reflected in the menu and making the changes if wanted. What this module is not: taxonomy_menu.module While there might be some similarities in the goal they are trying to reach, these two modules are fundamentally different: taxonomy_menu.module creates a tree in the navigation menu that is synchronous with a given vocabulary. taxonomy_links.module creates a new menu (which can therefore be used as primary/secondary links among other things) that is voluntarily asynchronous. The module assists in reflecting changes when we want them, but the rest of the time the menu should be dealt with like any other menu using menu.module. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 6 days ago
 
 

The Guild module extends the current Drupal base to provide essential functions for a guild leader to easily manage a guild website. This module provides basic tools to create and manage guild members on your website. It also includes pages to display guild and member information such as a guild ... [More] roster and statistics. Loot management is another major segment of the Guild module. Events such as raids and item purchases can all be recorded for use with any implemented loot system. A basic DKP system is already included, but others can be added to your configuration. Preview release coming soon! [Less]

0
 
  0 reviews  |  0 users  |  4,292 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 
Compare

Drupal中文汉化项目Druapl是这个星球上最迷人的CMS 之一,以无以伦比的开放性和扩展性著称。这里提供了一些Drupal第三方模块的业余汉化项目,尽量弥补Drupal中文支持较少和门槛较高的不足。 ... [More] 这里的内容可能有些凌乱,更详细的模块汉化文件可以到我的站点找到,如果你有兴趣,也可以加入到DPCN 。 另外更多更官方的汉化文件推荐参考Druapl中文社区 (简体 | 繁体) 任何需求或者希望联系我,可以直接到这里给我发邮件 [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Enpor Project 发布WordPress 以及 Drupal 主题

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 9 days ago
 
 

Update: I've abandoned support of this project in favour of using drush. Check it out. You'll love it I sometimes use Drupal for my web development work. As part of my development workflow, I pull any Drupal Core and Contributed source from Drupal CVS. I call the resulting collection of ... [More] code my local Drupal source tree and use make in my various Drupal projects to build in the Core and Contrib that I need from this tree. This way I can keep everything in one place, control updates, and use SVN for my Drupal projects without effecting the CVS control of the source tree. dstm is a simple bash script I created some time ago to manage this Drupal source tree. dstm can update the entire tree using one command. I can keep a dstm profile for any version dependencies of Contrib projects within specific Drupal branches (versions) and dstm will find the latest version of a module without having to look up the CVS Tag that controls module versioning. dstm also generates a sample Makefile for new Drupal projects. Due to interest from others who wanted to use dstm in their own workflow, I decided to clean up the script and release it. Please use it if you think it useful. Note: I am aware of the drush project. At the time I used it, drush was really great but dtsm solved a few different problem for me. However, you should also check it out. More documentation to come. Usagedstm init = dstm clean; dstm get profile; dstm build dstm build = dstm get core; dstm get module; dstm get theme dstm get core | C branch dstm get module | M project branch version dstm get theme | T project branch version dstm update = dstm update all dstm update profile dstm update core | C branch | all dstm update module | M project | all branch dstm update theme | T project | all branch dstm delete = dstm delete all dstm delete profile dstm delete core | C branch | all dstm delete module | M project | all branch dstm delete theme | T project | all branch dstm info = dstm info all dstm info profile dstm info core | C branch | all dstm info module| M project | all branch dstm info theme| T project | all branch Options-q | --quiet -v | --verbose -f | --force ExamplesTo automatically create a Drupal source tree for your development environment: dstm initTo view what Drupal core items are in your tree: dstm info coreTo view what Drupal 6 modules are in your tree: dstm info module 6Edit the profile: dstm update profileTo retrieve the most recent Views module for all branches defined in the profile and use the verbose option to see what version is actually retrieved: dstm -v get module viewTo retrieve a specific version of the Date module for Drupal 5: dstm get module date 5 1.8To delete all Drupal 5 core and contrib modules from your source tree: dstm del C 5; dstm del M 5;EnvironmentDSTM_BASE DSTM_CVS_REPO DSTM_CVS_CONTRIB_REPO DSTM_CVS_CONTRIB_REPO_DIR DSTM_TREE_CORE DSTM_TREE_MODULE DSTM_TREE_THEME DSTM_PROFILE DSTM_ERROR_LOG EDITOR [Less]

0
 
  0 reviews  |  0 users  |  1,738 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

Starter modules, layout frameworks and icons to build a consistent workflow with Drupal CMS projects. Extract to web root.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 6 days ago
 
 

A drupal 6 plugin providing 'portals' that can be used to embed content into pages. Includes an inital user homepage module that uses the funtionality of portals to provided a site wide user and none-user homepage.

0
 
  0 reviews  |  0 users  |  1,029 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

A pre-registration system for science fiction/anime/furry conventions that I am releasing to the community under the GNU Public License. Drupal 6 is required. If you want to use Authorize.net for charging credit cards, a module for that is included. Otherwise, you'll have to roll your own ... [More] charging solution. (or contact me and we'll talk :-) ) The first Drupal 6 release is r293. The final Drupal 5 version is r254. This code can be found in actual use on both Anthrocon's website and Furry Connection North's website: http://www.anthrocon.org/registration http://www.furryconnectionnorth.com/registration Real World Usage: This software was used to take pre-registrations and on-site registration for the Anthrocon 2009 convention, and brought in over $225,000 in revenue. [Less]

0
 
  0 reviews  |  0 users  |  11,605 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

The BookKeep Drupal module designed to help contractors and small companies keep track on there invoices. The module allows your customers to log in an view there invoices. The project is currently supported at www.aprium.net

0
 
  0 reviews  |  0 users  |  4,008 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.