This file contains hidden or 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
| {use $compte, $tableau} | |
| <table> | |
| <thead> | |
| <tr><th>Débit</th><th colspan="4">{$compte}</th><th>Crédit</th></tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <th>Dates</th><th>Libellés</th><th>Sommes</th> | |
| <th>Dates</th><th>Libellés</th><th>Sommes</th> | |
| </tr> |
This file contains hidden or 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
| 71 | 71A2FE8DBBBD2B7C60083CFFC4714FAE6860D668 | |
|---|---|---|
| F7 | F70F565F1FD894CCD0FC9F9CD3BB327C83603A89 | |
| 89 | 899DF47D3C425BFA64FF0CB46139BA639FC1E348 | |
| DF | DFD7BEE64B0882557415C95B803F0EBFC5D4E31C | |
| 22 | 22EE2B60CB7FEF3D6FFF9F2E7E81574DBCB52CC7 | |
| B2 | B2270E7BFBCD9FCEF5DFDB5FABAB6694E1FF9BE8 | |
| D9 | D99D4328DAA150B2D0C0846B0217BF0BADDBBAB2 | |
| 39 | 39BA9D49DBFF3C56A3E3FEFC9B89BF8F4A07D084 | |
| 0C | 0C1812FC972EE469A6822DAEB8E43626ADBD5297 | |
| 08 | 086C7549AC945C681A4848C6CD679998D8B76B78 |
This file contains hidden or 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
| namespace :db do | |
| desc 'Loads one of the backup made with the db:export:remote task' | |
| task :import_to_local do | |
| end | |
| desc 'Creates a backup from a remote database server' | |
| task :backup, :roles => :db do | |
| end |
This file contains hidden or 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 ezcPersistentXmlManager extends ezcPersistentDefinitionManager | |
| { | |
| private $file; | |
| public function __construct( $file ) | |
| { | |
| if( file_exists($file) ) | |
| $this->file = $file; | |
| } |
This file contains hidden or 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
| document.onmousemove = function(e){ | |
| var rect = document.getElementById('r'); | |
| rect.setAttribute('x',e.clientX-(rect.getAttribute('width')/2)); | |
| rect.setAttribute('y',e.clientY-(rect.getAttribute('height')/2)); | |
| }; | |
| document.onclick = function(e){ | |
| var point = document.createElementNS("http://www.w3.org/2000/svg",'rect'); | |
| var rect = document.getElementById('r'); |
This file contains hidden or 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
| <w:p> | |
| <w:pPr> | |
| <w:pStyle w:val="Corpsdetexte"/> | |
| <w:numPr> | |
| <w:ilvl w:val="0"/> | |
| <w:numId w:val="15"/> | |
| </w:numPr> | |
| <w:tabs> | |
| <w:tab w:val="left" w:pos="0" w:leader="none"/> | |
| </w:tabs> |
This file contains hidden or 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
| login = "<login>" | |
| password = "<password>" | |
| directory = "<directory>" | |
| organization = "<organization>" | |
| casper = require('casper').create | |
| verbose: true | |
| logLevel: "debug" | |
| getLinks = -> |
This file contains hidden or 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 hidden or 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 hidden or 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 ) | |
| ) | |
| ); |
OlderNewer