Monday, December 17, 2012

Developing for Drupal on your Mac while running Drupal on Ubuntu

Recently, I stumbled upon a situation where I needed to made some trivial adjustments in the theme files of a complex Drupal site. A custom shell script was responsible for re-creating the site by collecting information and stuff from several repositories. The script was written for Ubuntu. Since the adjustments needed were so trivial there was no reason to spend time in order to modify the script so as to have it working on any of our MacOS X boxes.



Once the job done I summarize my dev setup in this More than Themes blog post.

Sunday, November 18, 2012

Corporate Clean 2 - The most installed Corporate Drupal theme becomes responsive

15'000 installations is a huge number. Corporate Clean is actually the most installed Corporate Drupal theme out there. In addition of this, there were so many community members that helped us so far, by reporting issues and features requests, in order to make Corporate Clean even better. We would like to say a BIG THANK YOU to all of them and contribute back a major update.

Corporate Clean becomes responsive!




CORPORATE CLEAN 2.0

FREE RESPONSIVE
BUSINESS THEME FOR DRUPAL

A perfect solution for responsive
corporate websites.


Photofolio - Among the most powerful Drupal theme ever relesed now rebuilt


I'm really very proud to announce our totally rebuild Photofolio Drupal theme. More features, fine tuned design and responsive layout is what comes with this new release.


PHOTOFOLIO

AMONG THE MOST POWERFUL
DRUPAL THEMES EVER RELEASED.
REBUILT. REVAMPED. RESPONSIVE.

Ideal for showcasing art, work, products
and services. On all kinds of devices.


Friday, July 20, 2012

Tophit - Gorgeous yet lightweight, responsive Premium Drupal theme

After months of really hard work we are proud to unveil our first responsive corporate theme. Tophit !


Turn your website into a TopHit


TOPHIT

TURN YOUR WEBSITE INTO A TOP-HIT

Gorgeous yet lightweight. Responsive.Easy to use. Even easier to customize.

Monday, May 21, 2012

Skeleton our brand new, responsive & free Drupal theme


This is the time again we contribute back to the Drupal community. Skeleton is an amazing solution for corporate websites. A modern, clean, and responsive Drupal theme.

Save an extra 25%

Το celebrate Skeleton's release, we are announcing a special, time-limited 25% discount on all our Theme Packs

Just browse to our Themes page and pick the Pack you are interested in: the Corporate Pack for Business websites and online shops, the Blogger's Pack for personal websites, blogs and portfolios or the Complete Pack including every theme.  

After you click on the Buy Now button, simply enter "skeleton" on the checkout page and hit update to get the discount!

*the offer ends May 22nd!


Saturday, April 28, 2012

PressBlog 3.0 - Multi color and Responsive

The stylish workhorse for presenting content premium Drupal theme, PressBlog, becomes responsive. The new 3rd major release of PressBlog comes also in multiple color.

Find more about the PressBlog theme, see it live and choose the color scheme you prefer or test it's responsive behavior.



Saturday, March 10, 2012

Selecta - Superb Drupal theme




Selecta for Drupal by More than (just) Themes is based on the WordPress' Selecta theme, which was designed by Obox design.
Selecta has been ported to Drupal and is supported by More than (just) Themes, as part of our ongoing effort to bring quality themes to Drupal.

Thursday, February 16, 2012

Chique, our 6th and the most beautiful premium Drupal theme just released.


CHIQUE

SPICE UP YOUR ONLINE PRESENCE
WITH UNLIMITED OPTIONS.

With multiple color schemes and typographic styles, unparalleled automations and unmatched ease of use.


Thursday, February 2, 2012

Shell script - load multiple SVN .dump files at once


References
Original script
http://www.unix.com/shell-programming-scripting/143304-create-repositories-dump-filetype.html

Read part of the filename
http://www.linuxquestions.org/questions/linux-newbie-8/shell-script-to-read-part-of-filename-652549/


#!/bin/bash
for dump in *.dump
do
    repo=$( basename $dump '-201210012330.svn.dump' )
    echo svnadmin create $repo
    ( echo "svnadmin load $repo < /var/tmp/201210012330/$dump" && echo "$(date) $repo restore done" ) &
done

Wednesday, February 1, 2012

Shell script to backup all of your SVN repositoriesShell script to backup all of your SVN repositories



The script does very basic backup job. Here are the tasks done by this backup script:
  • svnrepos - absolute path of SVN repository root (where all the svn repos are created)
  • bakdest - absolute path of directory where you would like to save all SVN dumps
  • baktousb - absolute path of additional folder path to copy SVN dump (could be connected USB drive)
Read the original article