set svn property - svn:eol-style LF

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8253 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-04-01 06:51:30 +00:00
parent 9802eaa60a
commit 620b03d184
763 changed files with 114595 additions and 114595 deletions

View file

@ -1,36 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<widget version="0.2">
<title xml:lang="ko">언어 선택</title>
<title xml:lang="jp">言語選択</title>
<title xml:lang="zh-CN">多国语言切换</title>
<title xml:lang="en">Language</title>
<title xml:lang="vi">Ngôn ngữ</title>
<title xml:lang="es">Selcción del Idioma</title>
<title xml:lang="ru">Выбор языка</title>
<title xml:lang="zh-TW">語言選擇</title>
<title xml:lang="tr">Dil</title>
<description xml:lang="ko">사용자의 접속언어를 변경할 수 있는 select폼을 출력합니다.</description>
<description xml:lang="jp">言語を変更することが出来るセレクトselectフォームを表示します。</description>
<description xml:lang="zh-CN">可以实现多国语言相互切换。</description>
<description xml:lang="en">This widget displays a select form for change of users' language.</description>
<description xml:lang="vi">Widget này sẽ hiển thị ngôn ngữ cho người dùng lựa chọn.</description>
<description xml:lang="es">Este widget muestra la forma de cambiar el idioma del usuario.</description>
<description xml:lang="ru">Этот виджет отображает форму для выбора пользовательского языка.</description>
<description xml:lang="zh-TW">可選擇其他語言。</description>
<description xml:lang="tr">Bu görsel bileşen, kullanıcı dili değişikliğindeki mevcut şekli görüntüler.</description>
<version>0.1</version>
<date>2007-02-28</date>
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
<name xml:lang="ko">NHN</name>
<name xml:lang="jp">NHN</name>
<name xml:lang="vi">NHN</name>
<name xml:lang="zh-CN">NHN</name>
<name xml:lang="en">NHN</name>
<name xml:lang="es">NHN</name>
<name xml:lang="ru">NHN</name>
<name xml:lang="zh-TW">NHN</name>
<name xml:lang="tr">NHN</name>
</author>
</widget>
<?xml version="1.0" encoding="UTF-8"?>
<widget version="0.2">
<title xml:lang="ko">언어 선택</title>
<title xml:lang="jp">言語選択</title>
<title xml:lang="zh-CN">多国语言切换</title>
<title xml:lang="en">Language</title>
<title xml:lang="vi">Ngôn ngữ</title>
<title xml:lang="es">Selcción del Idioma</title>
<title xml:lang="ru">Выбор языка</title>
<title xml:lang="zh-TW">語言選擇</title>
<title xml:lang="tr">Dil</title>
<description xml:lang="ko">사용자의 접속언어를 변경할 수 있는 select폼을 출력합니다.</description>
<description xml:lang="jp">言語を変更することが出来るセレクトselectフォームを表示します。</description>
<description xml:lang="zh-CN">可以实现多国语言相互切换。</description>
<description xml:lang="en">This widget displays a select form for change of users' language.</description>
<description xml:lang="vi">Widget này sẽ hiển thị ngôn ngữ cho người dùng lựa chọn.</description>
<description xml:lang="es">Este widget muestra la forma de cambiar el idioma del usuario.</description>
<description xml:lang="ru">Этот виджет отображает форму для выбора пользовательского языка.</description>
<description xml:lang="zh-TW">可選擇其他語言。</description>
<description xml:lang="tr">Bu görsel bileşen, kullanıcı dili değişikliğindeki mevcut şekli görüntüler.</description>
<version>0.1</version>
<date>2007-02-28</date>
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
<name xml:lang="ko">NHN</name>
<name xml:lang="jp">NHN</name>
<name xml:lang="vi">NHN</name>
<name xml:lang="zh-CN">NHN</name>
<name xml:lang="en">NHN</name>
<name xml:lang="es">NHN</name>
<name xml:lang="ru">NHN</name>
<name xml:lang="zh-TW">NHN</name>
<name xml:lang="tr">NHN</name>
</author>
</widget>

View file

@ -1,29 +1,29 @@
<?php
/**
* @class language_select
* @author NHN (developers@xpressengine.com)
* @brief 언어선택기
* @version 0.1
**/
class language_select extends WidgetHandler {
/**
* @brief 위젯의 실행 부분
*
* ./widgets/위젯/conf/info.xml 선언한 extra_vars를 args로 받는다
* 결과를 만든후 print가 아니라 return 해주어야 한다
**/
function proc($args) {
// 템플릿의 스킨 경로를 지정 (skin, colorset에 따른 값을 설정)
$tpl_path = sprintf('%sskins/%s', $this->widget_path, $args->skin);
$tpl_file = 'language_select';
Context::set('colorset', $args->colorset);
// 템플릿 컴파일
$oTemplate = &TemplateHandler::getInstance();
return $oTemplate->compile($tpl_path, $tpl_file);
}
}
?>
<?php
/**
* @class language_select
* @author NHN (developers@xpressengine.com)
* @brief 언어선택기
* @version 0.1
**/
class language_select extends WidgetHandler {
/**
* @brief 위젯의 실행 부분
*
* ./widgets/위젯/conf/info.xml 선언한 extra_vars를 args로 받는다
* 결과를 만든후 print가 아니라 return 해주어야 한다
**/
function proc($args) {
// 템플릿의 스킨 경로를 지정 (skin, colorset에 따른 값을 설정)
$tpl_path = sprintf('%sskins/%s', $this->widget_path, $args->skin);
$tpl_file = 'language_select';
Context::set('colorset', $args->colorset);
// 템플릿 컴파일
$oTemplate = &TemplateHandler::getInstance();
return $oTemplate->compile($tpl_path, $tpl_file);
}
}
?>

View file

@ -1,18 +1,18 @@
jQuery(function(){
jQuery('.language_selector','div.widgetLanguage').click(function(){
var c = jQuery(this).parent();
var langList = c.next('ul.langList');
langList.toggle();
jQuery(this).parents('[id^=ex_]:first').css('overflow','').css('position','relative').css('zoom','1');
if(langList.css('top')){
if(jQuery('body').height() <= c.offset().top + langList.height()) {
langList.css('top',-(langList.height()+17));
}else{
langList.css('top','26px');
}
}
return false;
});
jQuery(function(){
jQuery('.language_selector','div.widgetLanguage').click(function(){
var c = jQuery(this).parent();
var langList = c.next('ul.langList');
langList.toggle();
jQuery(this).parents('[id^=ex_]:first').css('overflow','').css('position','relative').css('zoom','1');
if(langList.css('top')){
if(jQuery('body').height() <= c.offset().top + langList.height()) {
langList.css('top',-(langList.height()+17));
}else{
langList.css('top','26px');
}
}
return false;
});
});

View file

@ -1,18 +1,18 @@
<!--%import("./js/language_select.js")-->
<!--@if($colorset == "black" || $colorset == "white")-->
<!--%import("./css/widget.css")-->
<!--@end-->
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
<div class="widgetLanguage">
<p><a href="#" class="cafeXeA language_selector">Language:{$lang_supported[$lang_type]}</a></p>
<ul class="langList" style="right: 3px;">
<!-- class="" | class="open" -->
<!--@foreach($lang_supported as $key => $val)-->
<!--@if($key != $lang_type)-->
<li><a href="#" onclick="doChangeLangType('{$key}');return false;">{$val}</a></li>
<!--@end-->
<!--@end-->
</ul>
</div>
</div>
<!--%import("./js/language_select.js")-->
<!--@if($colorset == "black" || $colorset == "white")-->
<!--%import("./css/widget.css")-->
<!--@end-->
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
<div class="widgetLanguage">
<p><a href="#" class="cafeXeA language_selector">Language:{$lang_supported[$lang_type]}</a></p>
<ul class="langList" style="right: 3px;">
<!-- class="" | class="open" -->
<!--@foreach($lang_supported as $key => $val)-->
<!--@if($key != $lang_type)-->
<li><a href="#" onclick="doChangeLangType('{$key}');return false;">{$val}</a></li>
<!--@end-->
<!--@end-->
</ul>
</div>
</div>

View file

@ -1,60 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<skin version="0.2">
<title xml:lang="ko">언어 출력</title>
<title xml:lang="jp">言語選択</title>
<title xml:lang="zh-CN">多国语言切换</title>
<title xml:lang="en">Display Language</title>
<title xml:lang="vi">Hiển thị ngôn ngữ</title>
<title xml:lang="zh-TW">語言選擇</title>
<title xml:lang="tr">Dili Görüntüle</title>
<description xml:lang="ko">스킨 기능이 없습니다</description>
<description xml:lang="jp">スキン機能がありません。</description>
<description xml:lang="zh-CN">不支持皮肤。</description>
<description xml:lang="en">There is no skin function</description>
<description xml:lang="vi">Đây không phải chức năng của Skin</description>
<description xml:lang="zh-TW">不支援面板。</description>
<description xml:lang="tr">Dış görünüm özelliği yok.</description>
<version>0.1</version>
<date>2007-02-28</date>
<link>http://xpressengine.com/</link>
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
<name xml:lang="ko">NHN</name>
<name xml:lang="jp">NHN</name>
<name xml:lang="zh-CN">NHN</name>
<name xml:lang="en">NHN</name>
<name xml:lang="vi">NHN</name>
<name xml:lang="zh-TW">NHN</name>
<name xml:lang="tr">NHN</name>
</author>
<colorset>
<color name="layout">
<title xml:lang="ko">레이아웃에 맞춤</title>
<title xml:lang="jp">レイアウトに合わせる</title>
<title xml:lang="zh-CN">随布局</title>
<title xml:lang="en">레이아웃에 맞춤</title>
<title xml:lang="vi">Tùy chỉnh giao diện</title>
<title xml:lang="zh-TW">隨版面</title>
<title xml:lang="tr">Yerleşim Düzeni</title>
</color>
<color name="white">
<title xml:lang="ko">하얀색(기본)</title>
<title xml:lang="jp">白(デフォルト)</title>
<title xml:lang="zh-CN">白色(默认)</title>
<title xml:lang="en">White (default)</title>
<title xml:lang="vi">White (Mặc định)</title>
<title xml:lang="zh-TW">白色(預設)</title>
<title xml:lang="tr">Beyaz (varsayılan)</title>
</color>
<color name="black">
<title xml:lang="ko">검은색</title>
<title xml:lang="jp"></title>
<title xml:lang="en">Black</title>
<title xml:lang="vi">Black</title>
<title xml:lang="zh-CN">黑色</title>
<title xml:lang="zh-TW">黑色</title>
<title xml:lang="tr">Siyah</title>
</color>
</colorset>
</skin>
<?xml version="1.0" encoding="UTF-8"?>
<skin version="0.2">
<title xml:lang="ko">언어 출력</title>
<title xml:lang="jp">言語選択</title>
<title xml:lang="zh-CN">多国语言切换</title>
<title xml:lang="en">Display Language</title>
<title xml:lang="vi">Hiển thị ngôn ngữ</title>
<title xml:lang="zh-TW">語言選擇</title>
<title xml:lang="tr">Dili Görüntüle</title>
<description xml:lang="ko">스킨 기능이 없습니다</description>
<description xml:lang="jp">スキン機能がありません。</description>
<description xml:lang="zh-CN">不支持皮肤。</description>
<description xml:lang="en">There is no skin function</description>
<description xml:lang="vi">Đây không phải chức năng của Skin</description>
<description xml:lang="zh-TW">不支援面板。</description>
<description xml:lang="tr">Dış görünüm özelliği yok.</description>
<version>0.1</version>
<date>2007-02-28</date>
<link>http://xpressengine.com/</link>
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
<name xml:lang="ko">NHN</name>
<name xml:lang="jp">NHN</name>
<name xml:lang="zh-CN">NHN</name>
<name xml:lang="en">NHN</name>
<name xml:lang="vi">NHN</name>
<name xml:lang="zh-TW">NHN</name>
<name xml:lang="tr">NHN</name>
</author>
<colorset>
<color name="layout">
<title xml:lang="ko">레이아웃에 맞춤</title>
<title xml:lang="jp">レイアウトに合わせる</title>
<title xml:lang="zh-CN">随布局</title>
<title xml:lang="en">레이아웃에 맞춤</title>
<title xml:lang="vi">Tùy chỉnh giao diện</title>
<title xml:lang="zh-TW">隨版面</title>
<title xml:lang="tr">Yerleşim Düzeni</title>
</color>
<color name="white">
<title xml:lang="ko">하얀색(기본)</title>
<title xml:lang="jp">白(デフォルト)</title>
<title xml:lang="zh-CN">白色(默认)</title>
<title xml:lang="en">White (default)</title>
<title xml:lang="vi">White (Mặc định)</title>
<title xml:lang="zh-TW">白色(預設)</title>
<title xml:lang="tr">Beyaz (varsayılan)</title>
</color>
<color name="black">
<title xml:lang="ko">검은색</title>
<title xml:lang="jp"></title>
<title xml:lang="en">Black</title>
<title xml:lang="vi">Black</title>
<title xml:lang="zh-CN">黑色</title>
<title xml:lang="zh-TW">黑色</title>
<title xml:lang="tr">Siyah</title>
</color>
</colorset>
</skin>