Looking for Drupal Module Developer - Immediate Hire - Potential for additional work
Hello,
I’m looking for a Drupal developer to enhance an existing Drupal site: www.canddil.org Most of the tasks are simple (adding new modules and customizing them per requirements). One task in particular might take some time. I would like someone to build a custom module. The Open Archives Metadata Harvester Module should pull content from these sources:
• @rchiveSIC : Sciences de l'Information et de la Communication at http://archivesic.ccsd.cnrs.fr/perl/oai20
• ALIA e-prints at http://e-prints.alia.org.au/perl/oai2
• arXiv at http://export.arXiv.org/oai2
• Caltech Library System Papers and Publications at http://caltechlib.library.caltech.edu/perl/oai2
• Digital Library of the Commons at http://dlc.dlib.indiana.edu/perl/oai2
• DLIST at http://dlist.sir.arizona.edu/perl/oai2
• Documentation Research and Training Centre at http://drtc.isibang.ac.in/oai/
• DSpace at UNC SILS at http://etd.ils.unc.edu/dspace-oai/request
• E-LIS at http://eprints.rclis.org/perl/oai2
• ERPAePRINTS Service at http://eprints.erpanet.org/perl/oai2
• Metadata of LIS Journals at http://drtc.isibang.ac.in:9080/oaid/provider
• OCLC Research Publications at http://errol.oclc.org/orpubs.oclc.org.srw2oai
• OpenMED@NIC at http://openmed.nic.in/perl/oai2
• WWW Conferences Archive at http://wwwconf.ecs.soton.ac.uk/perl/oai2
3-site directory solution RFP
Good morning.
We are in the process of 'blueskying' a niche industry 'yellow pages' - style directory webring. Our first venture will be three related websites offering listings for three areas of a single industry, with practicioners in the retail, service, and supply side of this industry to be represented.
We have looked at PHPMyDirectory, and it has a number of positive attributes. However, it is not diverse enough to meet all our (at this point theoretical) needs.. and we are certain that Drupal would be. However, we have been unable at this point to find a 'directory' module, per se, so are coming here in hopes of gaining some interest.
At it's most basic, the solution would have 3-5 levels of subscription, ranging from free to premium, with increasing levels of service at higher levels (completely conventional) At the highest levels, however, we would allow content creation outside the actual 'customer record'... news, blog, contribute to the "book". Not a bonafide admin position, but certainly an über-subsriber.
Read moreCode integration,
Dear All,
We intend to develop a complex site and we are keen to use Drupal as a base engine for our project. We recognize a number of advantages of using Drupal, such as light-weight, consistent code base, implementation flexibility, as well as the well-established community. We primarily want to use Drupal for user/session handling and convenient content management. Now, there are some relevant questions that we would need to have answered before we would enter the development process:
1) We would preferably have our content (nodes) and user-base stored in a different database than Drupal configuration data. In other words, we would like to separate critical business data from the the system-specific information that determines the way Drupal core and related modules operate. Is it workable, and if so, sensible at all? What would be alternate solutions to achieve this?
2) We want to keep our site simple to browse and navigate. Indeed, Drupal comes handy to meet that purpose, however, for our future users' convenience we would like to develop a mini application - a content browser that would make search for a specific piece of content easy and seamless process, based on a set of specific criteria (we already have a data model in mind that would become a foundation for our MVC approach here).
Read moreDecreasing number of queries with drupal_lookup_path patch
Hello.
Now our team works on the project that is built on Drupal 5.3 with many modules plugged in and has a lot of content.
A lot of functionality is already implemented and now I'm researching performance problem.
Number of queries is a real problem.
I implemented some caching for several modules but number of queries still to high.
I'm using devel module for researching.
I found that drupal_lookup_path executed very often so I wrote some enhancement for this Drupal core function.
Drupal code (in includes/path.inc):
if ($action == 'alias') {
if (isset($map[$path])) {
return $map[$path];
}
$alias = db_result(db_query("SELECT dst FROM {url_alias} WHERE src = '%s'", $path));
$map[$path] = $alias;
return $alias;
}with my changes:
// in the static variables definition part
static $searched = array();
if ($action == 'alias') {
if (isset($map[$path])) return $map[$path];
$last_symbol = substr($path, -1, 1);
if ($last_symbol >= '0' && $last_symbol <= '9') {
$path_mask = substr($path, 0, -1);
if (!isset($searched[$path_mask])) {
$searched[$path_mask] = true;
$result = db_query("SELECT src, dst FROM {url_alias} WHERE src LIKE '%s_' LIMIT 10", substr($path, 0, -1));
Standard CSS for Drupal
hi,
Is there a standard css for drupal, I mean drupan specific classes and ids?
how to create a blog entry queue (auto-publish with future timestamps)?
Everyone tells me it's simply not possible to have a "queue" in Drupal -- like the sort of blog queue you have in WordPress and other blogging systems. Is there really no way to trigger publication of a blog entry based on the timestamp?
I have tried to search this forum and the web generally but haven't found anything except requests for the feature.
I am looking for a way, any way, to make blog entries auto-publish, without having to babysit the blog all day and click Published each time. Thanks for any help you can offer!