Skip to content

Commit

Permalink
Adapt the instance to the major Cache Sifo changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alombarte committed Apr 20, 2012
1 parent 776e8b4 commit 6eaf6e5
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 8 deletions.
File renamed without changes.
26 changes: 23 additions & 3 deletions config/classes.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,21 @@
array (
'Sifo' => 'libs/Sifo/Cache.php',
),
'CacheBase' =>
array (
'Sifo' => 'libs/Sifo/Cache/Base.php',
),
'CacheDisk' =>
array (
'Sifo' => 'libs/Sifo/CacheDisk.php',
'Sifo' => 'libs/Sifo/Cache/Disk.php',
),
'CacheMemcache' =>
array (
'Sifo' => 'libs/Sifo/Cache/Memcache.php',
),
'CacheMemcached' =>
array (
'Sifo' => 'libs/Sifo/Cache/Memcached.php',
),
'Client' =>
array (
Expand Down Expand Up @@ -100,6 +112,10 @@
array (
'Sifo' => 'libs/Sifo/JsPacker.php',
),
'Keyspace' =>
array (
'Sifo' => 'libs/Sifo/Keyspace.php',
),
'LoadBalancer' =>
array (
'Sifo' => 'libs/Sifo/LoadBalancer.php',
Expand Down Expand Up @@ -132,6 +148,10 @@
array (
'Sifo' => 'libs/Sifo/MysqlModel.php',
),
'PaypalNotifier' =>
array (
'Sifo' => 'libs/Sifo/PaypalNotifier.php',
),
'RedisModel' =>
array (
'Sifo' => 'libs/Sifo/RedisModel.php',
Expand Down Expand Up @@ -253,9 +273,9 @@
array (
'Common' => 'instances/common/controllers/shared/advertising.ctrl.php',
),
'SharedCommandLineControllerController' =>
'SharedCommandLineController' =>
array (
'Common' => 'instances/common/controllers/shared/commandLineController.ctrl.php',
'Common' => 'instances/common/controllers/shared/commandLine.ctrl.php',
),
'SharedFirstLevelController' =>
array (
Expand Down
3 changes: 2 additions & 1 deletion config/configuration_files.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
$config = array (
'301_rules' => 'instances/sifoweb/config/301_rules.config.php',
'ads' => 'instances/sifoweb/config/ads.config.php',
'cache' => 'instances/sifoweb/config/cache.config.php',
'classes' => 'instances/sifoweb/config/classes.config.php',
'css' => 'instances/sifoweb/config/css.config.php',
'db_profiles' => 'instances/sifoweb/config/db_profiles.config.php',
'domains' => 'instances/sifoweb/config/domains.config.php',
'forms/example.form' => 'instances/sifoweb/config/forms/example.form.config.php',
'js' => 'instances/sifoweb/config/js.config.php',
'keyspace' => 'instances/common/config/keyspace.config.php',
'lang/metadata_en_US' => 'instances/sifoweb/config/lang/metadata_en_US.config.php',
'lang/metadata_es_ES' => 'instances/sifoweb/config/lang/metadata_es_ES.config.php',
'lang/router_en_US' => 'instances/sifoweb/config/lang/router_en_US.config.php',
Expand All @@ -16,7 +18,6 @@
'libraries' => 'instances/sifoweb/config/libraries.config.php',
'locale' => 'instances/sifoweb/config/locale.config.php',
'mail' => 'instances/sifoweb/config/mail.config.php',
'memcache' => 'instances/sifoweb/config/memcache.config.php',
'openinviter' => 'instances/sifoweb/config/openinviter.config.php',
'redis' => 'instances/sifoweb/config/redis.config.php',
'router' => 'instances/sifoweb/config/router.config.php',
Expand Down
2 changes: 2 additions & 0 deletions config/locale.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
$config = array (
'messages_en_US' => 'instances/sifoweb/locale/messages_en_US.php',
'messages_es_ES' => 'instances/common/locale/messages_es_ES.php',
'urlparams_en_US' => 'instances/common/locale/urlparams_en_US.php',
'urlparams_es_ES' => 'instances/common/locale/urlparams_es_ES.php',
);
4 changes: 0 additions & 4 deletions templates/home/index.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
<div class="row">
<div class="span5 columns">
<img alt="SIFO logo" src="{$url.static}/css/images/logo.jpg" /><br/>
<a href="{$url.base}/in-loving-memory" title="In memory of Carlos Soriano">
<img alt="crespon" src="{$url.static}/css/images/crespon.jpeg" />
</a>

</div>
<div class="span11 columns">

Expand Down
2 changes: 2 additions & 0 deletions templates/shared/footer.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<p class="right"><a href="#">Back to top</a></p>
<p>
SIFO is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>. Download the source code of this site at <a href="https://github.com/alombarte/sifo-web" target="_blank">GitHub</a>
<br/>
In loving memory of <a href="{$url.base}/in-loving-memory" title="In memory of Carlos Soriano">Carlos Soriano</a>
</p>
</div>
</div>

0 comments on commit 6eaf6e5

Please sign in to comment.