Skip to content

Commit

Permalink
Initial version.
Browse files Browse the repository at this point in the history
  • Loading branch information
usualoma committed Feb 27, 2011
0 parents commit d6c3136
Show file tree
Hide file tree
Showing 10 changed files with 431 additions and 0 deletions.
155 changes: 155 additions & 0 deletions Build.PL
@@ -0,0 +1,155 @@
use strict;
use warnings;
use Module::Build;
use File::Spec;
use File::Basename;
use YAML qw/ LoadFile /;

my $class = Module::Build->subclass(
class => 'MTToiplanPluginDirectoryBuilder',
code => q{
# Don't make blib
# sub ACTION_code {};
# Don't make blib
sub ACTION_docs {};
# Don't make META.yml
sub ACTION_distmeta {
# no warning on ACTION_distdir
$_[0]->{metafile} = 'MANIFEST';
};
# Don't add MEATA.yml to MANIFEST
sub ACTION_manifest {
$_[0]->{metafile} = 'MANIFEST',
$_[0]->SUPER::ACTION_manifest(@_);
};
sub ACTION_test {
my $p = $_[0]->{properties};
unshift(
@INC,
File::Spec->catdir($p->{base_dir}, 'extlib'),
File::Spec->catdir($p->{base_dir}, '../../lib'),
File::Spec->catdir($p->{base_dir}, '../../extlib'),
);
$_[0]->SUPER::ACTION_test(@_);
};
sub ACTION_google_upload {
my ($self) = @_;
my @info = `git svn info 2>/dev/null`;
if (! @info) {
@info = `svn info 2>/dev/null`;
}
if (! @info) {
die;
}
my $prj = join('', grep($_ =~ m/^Repository Root/, @info));
$prj =~ s{.*//|\.googlecode\.com.*}{}gi;
my $ver = $self->dist_version;
my $dist_dir = $self->dist_dir;
my $name = $self->dist_name;
$self->depends_on('dist');
#$self->_call_action('distdir');
$self->ACTION_distdir;
$self->depends_on('zipdist');
system(
"googlecode_upload.py -s 'Release $ver (TGZ)' -p $prj -l $name $dist_dir.tar.gz"
);
system(
"googlecode_upload.py -s 'Release $ver (ZIP)' -p $prj -l $name $dist_dir.zip"
);
unlink("$dist_dir.tar.gz");
unlink("$dist_dir.zip");
};
sub ACTION_github_upload {
my ($self) = @_;
my $repos = `git config --get remote.origin.url`;
$repos =~ s/^.*:|\.git[\r\n]*$//g;
my $token = `git config --get github.token`;
$token =~ s/\r|\n//g;
my $user = `git config --get github.user`;
$user =~ s/\r|\n//g;
my $ver = $self->dist_version;
my $dist_dir = $self->dist_dir;
my $name = $self->dist_name;
$self->depends_on('dist');
#$self->_call_action('distdir');
$self->ACTION_distdir;
$self->depends_on('zipdist');
require Net::GitHub::Upload;
my $github = Net::GitHub::Upload->new(
login => $user,
token => $token,
);
# upload a file
$github->upload(
repos => $repos,
name => undef,
description => "Release $ver (TGZ)",
file => "$dist_dir.tar.gz",
);
$github->upload(
repos => $repos,
name => undef,
description => "Release $ver (ZIP)",
file => "$dist_dir.zip",
);
unlink("$dist_dir.tar.gz");
unlink("$dist_dir.zip");
};
sub ACTION_zipdist {
my ($self) = @_;
my $dist_dir = $self->dist_dir;
$self->depends_on('distdir');
print "Creating $dist_dir.zip\n";
system("zip -r $dist_dir.zip $dist_dir") == 0 or die $?;
$self->delete_filetree($dist_dir);
}
sub ACTION_distdir {
my ($self) = @_;
$_[0]->SUPER::ACTION_distdir(@_);
my $dist_dir = $self->dist_dir;
rename($dist_dir, $self->{properties}{dist_name});
use File::Path;
use File::Spec;
use File::Basename;
my $plugins = File::Spec->catfile($dist_dir, 'plugins');
mkpath($plugins, 1, 0755);
my $new_dist_dir = File::Spec->catfile(
$plugins, $self->{properties}{dist_name}
);
rename($self->{properties}{dist_name}, $new_dist_dir);
foreach my $f (glob(File::Spec->catfile($new_dist_dir, 'LIC*'))) {
rename($f, File::Spec->catfile($dist_dir, basename($f)));
}
}
}
);

my $yaml = LoadFile(File::Spec->catfile(dirname(__FILE__), 'config.yaml'));

my $builder = $class->new(
dist_name => $yaml->{name},
dist_author => 'Taku Amano <taku@toi-planning.net>',
dist_version => $yaml->{version},
module_name => $yaml->{name} . '::App',
license => 'MIT License',
add_to_cleanup => [ $yaml->{name} . '-*' ],
);

$builder->create_build_script();
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
enhancedinclude-mtplugin

Copyright (c) 2011 ToI Inc. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
7 changes: 7 additions & 0 deletions MANIFEST
@@ -0,0 +1,7 @@
config.yaml
lib/EnhancedInclude.pm
lib/EnhancedInclude/L10N.pm
lib/EnhancedInclude/L10N/en_us.pm
lib/EnhancedInclude/L10N/ja.pm
LICENSE
README.md
49 changes: 49 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,49 @@
^MANIFEST
\bBuild.PL$
#^Makefile
#^META.yml$
#^blib/
#~$


# Avoid version control files.
\bRCS\b
\bCVS\b
,v$
\B\.svn\b
\B\.git\b
\B\.cvsignore$

# Avoid Makemaker generated and utility files.
\bMakefile$
\bblib
\bMakeMaker-\d
\bpm_to_blib$
\bblibdirs$
^MANIFEST\.SKIP$

# Avoid Module::Build generated and utility files.
\bBuild$
\bBuild.bat$
\b_build

# Avoid Devel::Cover generated files
\bcover_db

# Avoid temp and backup files.
~$
\.tmp$
\.old$
\.bak$
\#$
\.#
\.rej$

# Avoid OS-specific files/dirs
# Mac OSX metadata
\B\.DS_Store
# Mac OSX SMB mount metadata files
\B\._
# Avoid archives of this distribution
\bEnhancedInclude-[\d\.\_]+
^MYMETA.yml$
37 changes: 37 additions & 0 deletions README.md
@@ -0,0 +1,37 @@
# DESCRIPTION

A Plugin that add some modifiers to mt:Include.

## FEATURES/PROBLEMS

* Include, and cache execution result of command.
* Include, and cache other site's resource.

## SYNOPSIS
### execute
<mt:Include execute="php" params="$filename","$arg1","$arg2" ttl="3600" />
### url
<mt:Include url="http://localhost/some/part.php" ttl="3600" />

## LICENSE

Copyright (c) 2011 Taku AMANO

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18 changes: 18 additions & 0 deletions config.yaml
@@ -0,0 +1,18 @@
#plugin information
id: EnhancedInclude
name: EnhancedInclude
version: 0.1.0

#about this plugin
description: <__trans phrase="Extends mt:Include">
author_name: <__trans phrase="toi-planning">
author_link: http://tec.toi-planning.net/
plugin_link: http://tec.toi-planning.net/mt/enhancedinclude/
doc_link: http://tec.toi-planning.net/mt/enhancedinclude/manual

#Localization
l10n_class: EnhancedInclude::L10N

tags:
function:
Include: $EnhancedInclude::EnhancedInclude::_hdlr_include

0 comments on commit d6c3136

Please sign in to comment.