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 | |
defined('_JEXEC') or die; | |
?> | |
<ul class="latestnews<?php echo $moduleclass_sfx; ?>"> | |
<?php foreach ($list as $item) : ?> | |
<?php | |
$db = JFactory::getDbo(); | |
$query = "SELECT `fulltext` FROM `#__content` WHERE `id` = ".$item->id; | |
$db->setQuery($query); | |
$item->fulltext = $db->loadResult(); |
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
#!/bin/bash | |
# | |
# apt-get install git | |
# apt-get install python-sphinx | |
# | |
# This script assumes you have am existing clone of each repo in $home_dir | |
home_dir=/home/zanardi | |
web_dir=/var/www/symfonyepub |
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
{ | |
"core":[ | |
], | |
"servers":[ | |
], | |
"plugins":[ | |
{ | |
"name":"collections", |
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
{ | |
"core":{ | |
"version":"3.4.15", | |
"new_version":null, | |
"last_available_version":"5.7.3" | |
}, | |
"servers":{ | |
"php":"7.0.30-0ubuntu0.16.04.1", | |
"web":"PHP 7.0.30-0ubuntu0.16.04.1 Development Server", | |
"mysql":"5.7.23-0ubuntu0.16.04.1" |