Project6 Base (p6_base) theme is meant to be used as a startup theme for your web projects. It comes with a sub-theme which should be the one to be used. Do not use the p6_base directly.
Installation
Read "Installing themes" at http://drupal.org/node/176045, if you are not familiar with installing themes, or need help installing.
Download the theme from the project page at http://drupal.org/project/p6_base to your themes folder. It is usually sites/all/themes directory.
There are two methods for creating a sub-theme for p6_base main theme. The easiest and safest way is using the Drush tool. You can also create a sub-theme manually.
Creating a sub-theme using Drush
Copy the downloaded theme into your site's themes directory.
i.e. sites/all/themes/p6_base
Empty Drush cache so the Drush command would be available. drush cache-clear drush
Run following command to see available options: drush help p6_base
Create a sub-theme, using the default options. drush p6_base "My theme name"
Or, create a sub-theme with the options you define: drush p6_base "My theme name" my_theme --description="My theme description..."
This module improves and extends functionality of the Batch API.
Features
Global batch jobs
Progress pages of global batches are reachable by multiple users. Access validation depends on the users permission to visit the batch source page. Only the batch owner pushes the process, other users only get the current batch state.
Session independence
The dependence of batch jobs on sessions will be released and bound to the user instead. So batch jobs are still available after re-login.
Unique non-concurrent batch jobs
Equal batch jobs will not be started twice if there is one already running.
Clean batch URLs
Use clean URLs for batch paths: '/batch/start/6' will be used instead of 'batch?op=start&id=6'.
Use source URL
Use batch source URL instead of default batch path. If a batch was started from admin/reports/updates/check this path will be used instead of 'batch?op=start&id=6'.
Modify default progress bar style
Change the color of the default progress bar animation (eg. green, red, gray, ..), use custom colors or a custom image.
This module integrates the PEAR BBCodeParser project into Drupal. Other than the existing bbcode module, which can be used as is, you will need the PHP PEAR extension and the parser installed on your server. Also your PHP include path must contain your PEAR directory (which is usually added during PEAR installation).
However, there are some differences I consider as advantages (this is why I started this different approach):
While bbcode module bases on simple regexes, the PEAR approach is better in dealing with nested structures, which is really helpful with e.g. quotes.
The PEAR project may be easily extended with custom filter classes which you may place in the filters directory (you need to understand the corresponding PEAR project documentation). It is planned that this module will recognize them and you can simply enable or disable them on a per-input format base.
That said, you may also easily clone and alter existing filter classes, while bbcode module lacks an override API and changes need to be done directly in the module code.
This module does not provide any graphical extensions such as toolbars for convenient editing. It simply parses BBcode as good as possible.