将初始化过程修改为:中文语言

在/portal-master/portal-impl/src/system.properties文件中,有如下配置:

#
# Set the default locale used by Liferay. This locale is no longer set at
# the VM level. See LEP-2584.
#
user.country=US
user.language=en
#
# Set the default time zone used by Liferay. This time zone is no longer set
# at the VM level. See LEP-2584.
#
user.timezone=UTC

修改为:

#
# Set the default locale used by Liferay. This locale is no longer set at
# the VM level. See LEP-2584.
#
user.country=CN
user.language=zh
#
# Set the default time zone used by Liferay. This time zone is no longer set
# at the VM level. See LEP-2584.
#
user.timezone=Asia/Shanghai

  

修改默认图标:

替换/portal-master/portal-impl/src/com/liferay/portal/dependencies/company_logo.png文件即可;

将系统名称修改为:门户应用支撑平台;

默认语言修改为:中文

在/portal-master/portal-impl/src/portal.properties文件中,有如下配置:

##
## Company
##
company.default.name=Liferay
#
# This sets the default web id. Omniadmin users must belong to the company
# with this web id.
#
company.default.web.id=liferay.com
#
# This sets the default home URL of the portal.
#
company.default.home.url=/web/guest
#
# This sets the default locale of the portal, overriding the properties
# "user.language" and "user.country" specified in system.properties.
#
#company.default.locale=en_US
#
# This sets the default time zone of the portal.
#
company.default.time.zone=UTC

修改为:

##
## Company
##
company.default.name=门户应用支撑平台
#
# This sets the default web id. Omniadmin users must belong to the company
# with this web id.
#
company.default.web.id=g-soft.com.cn
#
# This sets the default home URL of the portal.
#
company.default.home.url=/web/guest
#
# This sets the default locale of the portal, overriding the properties
# "user.language" and "user.country" specified in system.properties.
#
company.default.locale=zh_CN
#
# This sets the default time zone of the portal.
#
company.default.time.zone=Asia/Shanghai

修改“例如,Liferay”为“例如,门户应用支撑平台”:

在/portal-master/portal-web/docroot/html/portal/setup_wizard.jsp文件中,将如下代码:

<aui:input helpTextCssClass="help-inline" label="portal-name" name="companyName" suffix='<%= LanguageUtil.format(pageContext, "for-example-x", "Liferay" %>' value="<%= PropsValues.COMPANY_DEFAULT_NAME %>" />

修改为:

<aui:input helpTextCssClass="help-inline" label="portal-name" name="companyName" suffix='<%= LanguageUtil.format(pageContext, "for-example-x", PropsValues.COMPANY_DEFAULT_NAME) %>' value="<%= PropsValues.COMPANY_DEFAULT_NAME %>" />

默认不选中添加测试数据:

在/portal-master/portal-web/docroot/html/portal/setup_wizard.jsp文件中,将如下代码:

<aui:input name="addSampleData" type="checkbox" value="<%= true %>" />

修改为:

<aui:input name="addSampleData" type="checkbox" value="<%= false %>" />

将默认管理员修改为:Admin

在/portal-master/portal-impl/src/portal.properties文件中,有如下配置:

##
## Default Admin
##
#
# Set the default admin password.
#
default.admin.password=test
#
# Set the default admin screen name prefix.
#
default.admin.screen.name=test
#
# Set the default admin email address prefix.
#
default.admin.email.address.prefix=test
#
# Set the default admin first name.
#
default.admin.first.name=Test
#
# Set the default admin middle name.
#
default.admin.middle.name=
#
# Set the default admin last name.
#
default.admin.last.name=Test

修改为:

##
## Default Admin
##
#
# Set the default admin password.
#
default.admin.password=123456
#
# Set the default admin screen name prefix.
#
default.admin.screen.name=admin
#
# Set the default admin email address prefix.
#
default.admin.email.address.prefix=admin
#
# Set the default admin first name.
#
default.admin.first.name=Admin
#
# Set the default admin middle name.
#
default.admin.middle.name=
#
# Set the default admin last name.
#
default.admin.last.name=

修改页脚信息:

在/portal-master/portal-impl/src/content/Language.properties文件中,增加如下代码:

powered-by-company=G-Soft

在/portal-master/portal-impl/src/content/Language_zh_CN.properties文件中,有如下代码: 

powered-by=由……支持

修改为:

powered-by=技术支持:
powered-by-company=中科天翔

在/portal-master/portal-web/docroot/html/portal/setup_wizard.jsp文件中,有如下代码:

<footer id="footer" role="contentinfo">
<p class="powered-by">
<liferay-ui:message key="powered-by" /> <a href="http://www.liferay.com" rel="external">Liferay</a>
</p>
</footer>

修改为:

<footer id="footer" role="contentinfo">
<p class="powered-by">
<liferay-ui:message key="powered-by" /> <a href="http://www.g-soft.com.cn" rel="external"><liferay-ui:message key="powered-by-company" /></a>
</p>
</footer>

  

Liferay 6.2 改造系列之六:修改系统初始化信息的更多相关文章

  1. Liferay 6.2 改造系列之二十三:修改Liferay原始主题中"技术支持:Liferay"字样

    1.修改主题模板文件,具体位置如下 (1) portal-master\portal-web\docroot\html\themes\_unstyled\templates\portal_normal ...

  2. Liferay 6.2 改造系列之二:清理不需要的Portlet

    一.特殊Portlet: 以下Portlet数据特殊用途的Portlet,去除后会出现运行错误: 1.站点模版 通过com.liferay.portal.events.AddDefaultLayout ...

  3. Liferay 6.2 改造系列之十:修改系统登录相关配置

    1.关闭自动登录功能: 在/portal-master/portal-impl/src/portal.properties文件中,有如下配置: # # Set this to true to allo ...

  4. Liferay 6.2 改造系列之二十一:修改WebSphare下JSONWS服务不生效的BUG

    问题原因是WebSphare下,servletContext.getContextPath()获取到的值为“/”而非空字符串. 在/portal-master/portal-impl/src/com/ ...

  5. Liferay 6.2 改造系列之九:修改用户信息填写规则

    为了让用户信息更贴近实际需求,修改如下信息: 1.让登录名可以使用数字.“.”.“_”等 在/portal-master/portal-impl/src/portal.properties文件中,有如 ...

  6. Liferay 6.2 改造系列之五:修改默认站点的页面内容

    相关页面可以通过/portal-master/portal-impl/src/portal.properties文件配置进行修改: 登录页: ## ## Default Landing Page ## ...

  7. Liferay 6.2 改造系列之二十四:修改liferay密码的加密方式

    为了便于后期与Cas集成过程中使用数据库用户的方便,将liferay密码的加密方式改为SHA. 在/portal-master/portal-impl/src/portal.properties配置文 ...

  8. Liferay 6.2 改造系列之二十:修改默认添加用户权限及用户是否拥有个人站点的配置

    1.修改默认添加用户权限为User,而非Powers User: 在/portal-master/portal-impl/src/portal.properties文件中有如下配置: # # Inpu ...

  9. Liferay 6.2 改造系列之十九:修改站点设置的表单内容

    在/portal-master/portal-impl/src/portal.properties文件中,有如下配置: # # Input a list of sections that will b ...

随机推荐

  1. C Primer Plus_第一章_概览_复习题与编程练习

    REVIEW 1.就编程而言,可移植性表示什么? me 一个系统上编写的程序经过很少改动或者不需改动就可以在另一个系统上运行.如果修改是必须的,则通常只改变伴随主程序的一个头文件中的几项内容即可.(P ...

  2. Linux rpm 命令参数使用详解[介绍和应用]

    RPM是RedHat Package Manager(RedHat软件包管理工具)类似Windows里面的“添加/删除程序” rpm 执行安装包 二进制包(Binary)以及源代码包(Source)两 ...

  3. 打开VS2012的创建单元测试功能

    在VS2010中,在类中点击右键,有一个创建创建单元测试命令,可以很方便的生成单元测试项目和代码.但不知道为什么VS2012反而没有这个功能. 网上搜了一下,好在这个功能是可以通过配置打来的. 传送门 ...

  4. 【leetcode】Max Points on a Line(hard)☆

    Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. ...

  5. 页面上有两个元素id相同,js中如何取值

    页面上有两个table,id都是”cont2",现要在js中取到这两个table,改变样式. js实现: var tab2=document.all.cont2(1);var  tab=do ...

  6. iOS 日常工作之常用宏定义大全

    转自:http://www.jianshu.com/p/213b3b96cafe 前言: 在工作中, 很多小伙伴都会在PCH文件定义一些常用的宏,但是又怕写这些简单的宏浪费时间,又有时候忘记怎么定义了 ...

  7. iOS 本人必装插件

    本人觉得比较好用也实用的Xcode插件记录: 1. Alcatraz   插件通过它来管理 :    https://github.com/alcatraz/Alcatraz.git 2. Cocoa ...

  8. 苹果应用 Windows 申请 普通证书 和Push 证书 Hbuilder 个推(2)

    s上一篇 讲述了android 如何打包,这一篇 看一下如何IOS下打包 在苹果上申请证书,及其麻烦,我写下来,有需要的直接拿走即可: 首先 苹果的证书分两种 一种是 development 证书,另 ...

  9. ios Push证书 转换步骤

    1.将aps_developer_identity.cer转换成aps_developer_identity.pem格式openssl x509 -in aps_developer_identity. ...

  10. android app 内部文件路径

    public class MainActivity extends Activity { final String FILE_NAME = "crazyit.bin"; @Over ...