摘要:簡介關于的商標和,官方源碼中是這樣說的在行中文的意思是不要刪除標志或版權聲明。根據第節的通用公共許可證版本,這些適當的法律聲明必須保留顯示的標志和版權聲明。上面的這段進制字符串用相應的方法轉換成正常的字符串就可以看到了。
1:簡介
關于Zurmo的商標和Logo,官方源碼中是這樣說的:在 zurmo/app/protected/modules/zurmo/views/FooterView.php 48行
Do not remove the Zurmo logo or Zurmo Copyright notice.The interactive user interfaces in original and modified versions of this program must display Appropriate Legal Notices, as required under Section 5 of the GNU Affero General Public License version 3.In accordance with Section 7(b) of the GNU Affero General Public License version 3,these Appropriate Legal Notices must retain the display of the Zurmo logo and Zurmo copyright notice. If the display of the logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices must display the words "Copyright Zurmo Inc. 2015. All rights reserved".中文的意思是:
不要刪除Zurmo標志或Zurmo版權聲明。根據GNU Affero通用公共許可證版本3的第5節的要求,此程序的原始和修改版本中的交互式用戶界面必須顯示適當的法律聲明。根據第7節( b)的GNU Affero通用公共許可證版本3,這些適當的法律聲明必須保留顯示的Zurmo標志和Zurmo版權聲明。如果由于技術原因,徽標的顯示不合理,則適當的法律聲明必須顯示“版權Zurmo Inc. 2015保留所有權利”。
PS : 大概的意思是叫開發者不要改動,至于改與不改,就看大家的具體的需求了。
2:如果要修改的話,步驟如下:
在相同的文件中 zurmo/app/protected/modules/zurmo/views/FooterView.php 修改如下代碼:
protected function renderContent()
{
$copyrightHtml = "" . "Copyright © Zurmo Inc., 2015. All rights reserved."; $copyrightHtml .= $this->renderPerformance(); $content = ZurmoHtml::tag("div", array("class" => "container"), $copyrightHtml); return $content;
}
把 $copyrightHtml = "" . "Copyright © Zurmo Inc., 2015. All rights reserved."; 改成 $copyrightHtml = "";
去到 zurmo/app/protected/core/components/ClientScript.php里的85行
public function render(& $output)
{
if ($this->isAjaxMode()) { $this->removeAllPageLoadedScriptFilesWhenRenderingInAjaxMode(); } parent::render($output); if (!$this->isAjaxMode()) { cleanAndSanitizeScriptHeader($output); 注釋掉這一行,就可以了 }
}
刷新頁面,就可以把每個頁面底部的商標和Logo都清除了,PS:如果不行的話,清除緩存。
其實原理是:版權是由cleanAndSanitizeScriptHeader()函數實現,但是我們全局搜索又找不到這個函數的定義,其實是Zurmo 采用了十六進制加密,把那個函數編譯成一串16進制字符串,然后用eval()方法執行,從而隱藏了明文定義版權的作用。代碼位于 zurmo/yii/framework/web/CClientScript.php文件的最下面,如下:
eval("x66x75x6ex63x74x69x6fx6ex20x63x6cx65x61x6ex41x6ex64x53x61x6ex69x74x69x7ax65x53x63x72" . "x69x70x74x48x65x61x64x65x72x28x26x20x24x6fx75x74x70x75x74x29x0ax20x20x20x20x20x20x20" . "x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x7bx0ax20x20x20x20x20x20x20x20x20" . "x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x24x72x65x71x75x69x72x65x64" . "x4fx6ex65x20x3dx20x22x3cx73x70x61x6ex3ex43x6fx70x79x72x69x67x68x74x20x26x23x31x36x39" . "x3bx20x5ax75x72x6dx6fx20x49x6ex63x2ex2cx20x32x30x31x35x2ex20x41x6cx6cx20x72x69x67x68" . "x74x73x20x72x65x73x65x72x76x65x64x2ex3cx2fx73x70x61x6ex3ex22x3bx0ax09x09x09x20x20x20" . "x20x20x20x20x20x20x20x20x20x20x20x20x20x24x72x65x71x75x69x72x65x64x54x77x6fx20x3dx20" . "x27x3cx61x20x68x72x65x66x3dx22x68x74x74x70x3ax2fx2fx77x77x77x2ex7ax75x72x6dx6fx2ex63" . "x6fx6dx22x20x69x64x3dx22x63x72x65x64x69x74x2dx6cx69x6ex6bx22x20x63x6cx61x73x73x3dx22" . "x63x6cx65x61x72x66x69x78x22x3ex27x3bx0ax20x20x20x20x20x20x20x20x20x20x20x20x20x20x20" . "x20x20x20x20x20x20x20x20x20x20x20x20x20x57x33x43x56x61x6cx69x64x61x74x6fx72x53x65x72" . "x76x69x63x65x55x74x69x6cx3ax3ax72x65x73x6fx6cx76x65x43x6cx65x61x6ex28x24x6fx75x74x70" . "x75x74x2cx20x24x72x65x71x75x69x72x65x64x4fx6ex65x2cx20x24x72x65x71x75x69x72x65x64x54" . "x77x6fx29x3bx0ax20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20" . "x20x7d");。
上面的這段16進制字符串用相應的PHP方法轉換成正常的字符串就可以看到了。代碼就是cleanAndSanitizeScriptHeader 方法的定義。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/35886.html
摘要:簡介關于的商標和,官方源碼中是這樣說的在行中文的意思是不要刪除標志或版權聲明。根據第節的通用公共許可證版本,這些適當的法律聲明必須保留顯示的標志和版權聲明。上面的這段進制字符串用相應的方法轉換成正常的字符串就可以看到了。 1:簡介 關于Zurmo的商標和Logo,官方源碼中是這樣說的:在 zurmo/app/protected/modules/zurmo/views/FooterVie...
摘要:一簡介提供了一個命令行工具,以便于更新版本,修改密碼,安裝以及更新數據庫模式等等功能的快捷操作。最常用的是命令,要掌握。 一:簡介 1. Zurmo 提供了一個命令行工具,以便于更新版本,修改密碼,安裝以及更新數據庫模式等等功能的快捷操作。文件位于 ..app/protected/commands/ 下。 二:詳解 Zurmo一共有 15 條 zurmoc 命令,分別是: - hel...
摘要:一簡介提供了一個命令行工具,以便于更新版本,修改密碼,安裝以及更新數據庫模式等等功能的快捷操作。最常用的是命令,要掌握。 一:簡介 1. Zurmo 提供了一個命令行工具,以便于更新版本,修改密碼,安裝以及更新數據庫模式等等功能的快捷操作。文件位于 ..app/protected/commands/ 下。 二:詳解 Zurmo一共有 15 條 zurmoc 命令,分別是: - hel...
閱讀 853·2021-11-24 09:38
閱讀 1084·2021-10-08 10:05
閱讀 2577·2021-09-10 11:21
閱讀 2799·2019-08-30 15:53
閱讀 1826·2019-08-30 15:52
閱讀 1963·2019-08-29 12:17
閱讀 3417·2019-08-29 11:21
閱讀 1608·2019-08-26 12:17