Fehlermeldung
Warning : file_exists(): open_basedir restriction in effect. File(/simple_html_dom.php) is not within the allowed path(s): (/var/lib/nginx/tmp/client:/var/www:/usr/bin:/dev/urandom:/proc/meminfo:/var/log/php) in _simplhtmldom_get_library_path() (Zeile 27 von sites/all/modules/simplehtmldom/helper.inc ).
gradle - mercurial
2012-05
05
Sa, 2012-05-05 16:21 -- mig
apply plugin: 'java'
description 'Versioned Project with info-tokens in the manifest'
ext.mercurial = mercurial( '{node};{branch};{date|isodate};{tags}' ) .tokenize (link is external) ( ';' )
ext.revision = mercurial.get (link is external) ( 0 )
ext.tags = mercurial.get (link is external) ( 3 )
ext.date = mercurial.get (link is external) ( 2 )
ext.branch = mercurial.get (link is external) ( 1 )
jar {
manifest {
attributes(
'Implementation-Title' : description,
'Implementation-Version' : version,
'Implementation-Vendor' : 'XiLab by norics' ,
'Built-By' : System (link is external) .properties [ 'user.name' ] ,
'Revision' : revision,
'Revision-Branch' : branch,
'Revision-Tags' : tags,
'Revision-Date' : date
)
}
}
/**
* ask mercurial for revision infos.
*/
String (link is external) mercurial( tag) {
ext.stdout = new (link is external) ByteArrayOutputStream (link is external) ( )
exec {
commandLine( 'hg' , 'parent' , '--template' , "$tag" )
standardOutput = stdout
}
return (link is external) stdout as (link is external) String (link is external)
}