This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
node [shape = "record"] | |
edge [arrowhead = "empty"] | |
Animal [label = "{Animal|+ name : string\l+ age : int\l|+ die() : void\l}"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cache: | |
php bin/php/ezcache.php --clear-all --purge | |
autoloads: | |
php bin/php/ezpgenerateautoloads.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class My\Query extends Query | |
{ | |
$this->criterion = new Criterion\LogicalAND( | |
array( | |
new Criterion\Subtree( $root->pathString ), | |
new Criterion\ContentTypeId( $ids ), | |
new Criterion\Visibility( Criterion\Visibility::VISIBLE ) | |
) | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$output = new ezcConsoleOutput(); | |
$options = array( | |
'successChar' => $output->formatText( '+', 'success' ), | |
'failureChar' => $output->formatText( '-', 'failure' ), | |
); | |
$status = new ezcConsoleStatusbar( $output, $options ); | |
$script = eZScript::instance(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title></title> | |
<link href="style.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<form method="post" action="/"> | |
<fieldset> | |
<legend>Login</legend> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// | |
// Definition of ezjscServerFunctionsJs class | |
// | |
// Created on: <16-Jun-2008 00:00:00 ar> | |
// | |
// ## BEGIN COPYRIGHT, LICENSE AND WARRANTY NOTICE ## | |
// SOFTWARE NAME: eZ JSCore extension for eZ Publish | |
// SOFTWARE RELEASE: 4.3.0 | |
// COPYRIGHT NOTICE: Copyright (C) 1999-2010 eZ Systems AS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// see http://www.creativejuiz.fr/blog/tutoriels/jquery-effet-smooth-scroll-defilement-fluide | |
$('a[href^="#"]').click(function(){ | |
var the_id = $(this).attr("href"); | |
$('html, body').animate({ | |
scrollTop:$(the_id).offset().top | |
}, 'slow'); | |
return false; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function( $ ) { | |
$.fn.show_hide = function(bloc1, bloc2, text1, text2, text3, u1, u2, u3, nodeId) { | |
return this.each(function(){ | |
var bouton = $(this); | |
var parent = $(bloc1); | |
var bloc = parent.find(bloc2); |
OlderNewer