This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
2,152 additions
and
1,023 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
define('G_APP_NAME', 'Chevereto Free'); | ||
define('G_APP_VERSION', '1.1.0'); | ||
define('G_APP_VERSION', '1.1.1'); | ||
define('G_APP_GITHUB_OWNER', 'Chevereto'); | ||
define('G_APP_GITHUB_REPO', 'Chevereto-Free'); | ||
define('G_APP_GITHUB_REPO_URL', 'https://github.com/' . G_APP_GITHUB_OWNER . '/' . G_APP_GITHUB_REPO); | ||
define('CHEVERETO_INSTALLER_DOWNLOAD_URL', 'https://chevereto.com/download/file/installer'); | ||
define('CHEVERETO_INSTALLER_DOWNLOAD_URL', 'https://chevereto.com/download/file/installer'); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,24 +5,25 @@ | |
http://chevereto.com/ | ||
@author Rodolfo Berrios A. <http://rodolfoberrios.com/> | ||
<[email protected]> | ||
<[email protected]> | ||
Copyright (C) Rodolfo Berrios A. All rights reserved. | ||
BY USING THIS SOFTWARE YOU DECLARE TO ACCEPT THE CHEVERETO EULA | ||
http://chevereto.com/license | ||
--------------------------------------------------------------------- */ | ||
|
||
if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?> | ||
if (!defined('access') or !access) { | ||
die('This file cannot be directly accessed.'); | ||
} ?> | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title><?php echo $doctitle; ?></title> | ||
<link rel="stylesheet" href="<?php echo G\absolute_to_url(CHV_PATH_PEAFOWL . 'peafowl.css'); ?>"> | ||
<link rel="stylesheet" href="<?php echo G\absolute_to_url(CHV_APP_PATH_CONTENT_SYSTEM . 'style.css'); ?>"> | ||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic&subset=latin,greek,cyrillic"> | ||
<link rel="shortcut icon" href="<?php echo G\absolute_to_url(CHV_APP_PATH_CONTENT_SYSTEM . 'favicon.png'); ?>"> | ||
<script>(function(w,d,u){w.readyQ=[];w.bindReadyQ=[];function p(x,y){if(x=="ready"){w.bindReadyQ.push(y);}else{w.readyQ.push(x);}};var a={ready:p,bind:p};w.$=w.jQuery=function(f){if(f===d||f===u){return a}else{p(f)}}})(window,document);</script> | ||
</head> | ||
|
@@ -48,8 +49,8 @@ | |
PF.obj.l10n = <?php echo json_encode(CHV\get_translation_table()) ;?>; | ||
</script> | ||
<?php | ||
if(method_exists('CHV\Settings','getChevereto')) { | ||
echo '<script>var CHEVERETO = ' . json_encode(CHV\Settings::getChevereto()) . '</script>'; | ||
if (method_exists('CHV\Settings', 'getChevereto')) { | ||
echo '<script>var CHEVERETO = ' . json_encode(CHV\Settings::getChevereto()) . '</script>'; | ||
} | ||
?> | ||
<script src="<?php echo CHV\Render\versionize_src(G\Render\get_app_lib_file_url('chevereto.js')); ?>"></script> | ||
|
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
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
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
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
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
Oops, something went wrong.