add changed files on server 140.119.168.11

This commit is contained in:
nccu 2015-03-06 11:53:00 +08:00
parent 95da400843
commit 05c2465e48
21 changed files with 172 additions and 209 deletions

View File

@ -10,6 +10,8 @@ CKEDITOR.editorConfig = function( config ) {
config.resize_minHeight = 400;
config.toolbarCanCollapse = true;
config.allowedContent = true;
config.pasteFromWordRemoveFontStyles=false;
config.pasteFromWordRemoveStyles=false;
config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,resize,toolbar,elementspath,enterkey,entities,popup,filebrowser,find,image,fakeobjects,floatingspace,listblock,richcombo,font,format,horizontalrule,htmlwriter,iframe,wysiwygarea,indent,indentblock,indentlist,justify,menubutton,link,list,liststyle,magicline,maximize,newpage,pastetext,pastefromword,removeformat,selectall,showblocks,showborders,sourcearea,specialchar,scayt,stylescombo,tab,table,tabletools,undo,wsc,youtube,codemirror';

View File

@ -27,7 +27,7 @@ class PagesController < ApplicationController
def home
@manifest = @key
page = Page.first
impressionist(page)
# impressionist(page)
OrbitHelper.set_params params,current_user
OrbitHelper.set_site_locale locale
render :html => render_final_page("home",page,true).html_safe
@ -110,7 +110,7 @@ class PagesController < ApplicationController
layout = true
end
impressionist(page)
# impressionist(page)
render :html => render_final_page("#{module_app}/#{params[:target_action]}",page,layout).html_safe
else
render :file => "#{Rails.root}/public/404.html", :layout => false, :status => :not_found

View File

@ -100,7 +100,7 @@ module OrbitBackendHelper
end
def display_visitors(options={})
Impression.where(options).distinct(:request_hash).count
end
def display_visitors_today
@ -129,7 +129,7 @@ module OrbitBackendHelper
visits = Impression.where( created_at: {
'$gte' => Time.now.beginning_of_day-i.days,
'$lte' => Time.now.end_of_day-i.days}
).distinct(:request_hash).count
).count
site.month_traffic_cache['result'].push([ Time.now.beginning_of_day-i.days, visits])
end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@ -630,18 +630,18 @@ button, input, select, textarea {
}
html[lang="zh_tw"] .main_menu.expansion .page_menu.level_1 > li:last-child {
background-color: #ff9900;
// background-color: #ff9900;
}
html[lang="zh_tw"] .main_menu.expansion .page_menu.level_1 > li:last-child:hover {
background-color: #ff9900;
-moz-box-shadow: inset 0 -4px 0 #FF7A00;
-webkit-box-shadow: inset 0 -4px 0 #FF7A00;
box-shadow: inset 0 -4px 0 #FF7A00;
// background-color: #ff9900;
// -moz-box-shadow: inset 0 -4px 0 #FF7A00;
// -webkit-box-shadow: inset 0 -4px 0 #FF7A00;
// box-shadow: inset 0 -4px 0 #FF7A00;
}
html[lang="zh_tw"] .main_menu.expansion .page_menu.level_1 > li:last-child > a {
color: #FFF;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
// color: #FFF;
// text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.main_menu.expansion .page_menu.level_1 > li > a {

View File

@ -48,6 +48,7 @@
</ul>
</div>
</div>
<div class="extra" data-pp="7"></div>
</div>
</div>
</div>

View File

@ -4,7 +4,7 @@
-->
<div class="i-announcement annc-index-1 i-announcement--table">
<h3 class="i-announcement__widget-title">{{widget-title}}</h3>
<span class="search-result">搜尋標題有關 ' {{keyword}} ' 共搜尋到{{announcements_count}}筆資料</span>
<span class="search-result">{{keyword}}{{announcements_count}}</span>
<table class="i-announcement__table">
<tbody class="i-announcement__tbody" data-level="0" data-list="announcements">
<tr>

View File

@ -4,7 +4,7 @@
-->
<div class="i-announcement annc-index-2 i-announcement--table">
<h3 class="i-announcement__widget-title">{{widget-title}}</h3>
<span class="search-result">搜尋標題有關 ' {{keyword}} ' 共搜尋到{{announcements_count}}筆資料</span>
<span class="search-result">{{keyword}}{{announcements_count}}</span>
<table class="i-announcement__table">
<tbody class="i-announcement__tbody" data-level="0" data-list="announcements">
<tr>

View File

@ -11,6 +11,10 @@
<i class="fa fa-male fa-fw"></i>
<span class="author"><a href="{{dept_link}}">{{cache_dept}}</span></a>
</li>
<li class="metadata-view-count">
<i class="fa fa-eye">查看次數:</i>
<span class="view-count">{{view_count}}</span>
</li>
</ul>
<section class="post-section">
<p class="post-content">{{body}}</p>

View File

@ -26,7 +26,7 @@
<li>
<div class="news_img">
<a href="{{link_to_show}}">
<img src="{{img_src}}" alt="Announcement image">
<img src="{{img_src}}" alt="{{img_description}}">
</a>
</div>
<h3 class="h3 news_title">

View File

@ -5,7 +5,7 @@
<div class="news-wrap">
<div class="i-news news-index-1">
<h3 class="i-news__index-title">{{page-title}}</h3>
<span class="search-result">搜尋標題有關 ' {{keyword}} ' 共搜尋到{{news_count}}筆資料</span>
<span class="search-result">{{keyword}}{{news_count}}</span>
<ul class="i-news__list" data-level="0" data-list="news">
<li class="i-news__item">
<div class="i-news__pic-wrap">
@ -40,7 +40,7 @@
}
</script>
<form class="i-search" action="../news/" id="myform">
<input class="i-search__text-field" name="keywords" placeholder="搜尋公告" type="text" value="" />
<input class="i-search__text-field" name="keywords" placeholder="搜尋新聞" type="text" value="" />
<a class="i-search__submit" href="javascript: submitform()"><input type="submit" value="Search" /></a>
</form>
</div>

View File

@ -75,7 +75,7 @@
}
</script>
<form class="i-search" action="../news/" id="myform">
<input class="i-search__text-field" name="keywords" placeholder="搜尋公告" type="text" value="" />
<input class="i-search__text-field" name="keywords" placeholder="搜尋新聞" type="text" value="" />
<a class="i-search__submit" href="javascript: submitform()"><input type="submit" value="Search" /></a>
</form>
</div>

View File

@ -1,5 +1,5 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<%= favicon_link_tag (current_site.favicon.blank? ? 'favicon.ico' : current_site.favicon.url) %>
<title><%= render_site_title %></title>

View File

@ -1,20 +0,0 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<%= favicon_link_tag (current_site.favicon.blank? ? 'favicon.ico' : current_site.favicon.url) %>
<title><%= render_site_title %></title>
<%= stylesheet_link_tag "fontawesome/font-awesome"%>
<%= stylesheet_link_tag "bootstrap/bootstrap"%>
<%= stylesheet_link_tag "template/template"%>
<%= javascript_include_tag "lib/jquery-1.11.0.min"%>
<%= javascript_include_tag "bootstrap"%>
<%= javascript_include_tag "plugin/modernizr"%>
<%= javascript_include_tag "plugin/jquery-bullseye-min"%>
<%= javascript_include_tag "plugin/jquery.cycle2.min"%>
<%= javascript_include_tag "app"%>
<%= javascript_include_tag "#{@dataApi}" if @dataApi != nil%>
<%= render_google_analytics %>
<!--[if lt IE 9]>
<%= javascript_include_tag "plugin/html5shiv" %>
<%= javascript_include_tag "plugin/response.min" %>
<![endif]-->

View File

@ -16,7 +16,7 @@
<small class="muted"><%= @member.email %></small>
<div class="btn-group">
<%= link_to("<i class='icon-edit'></i> #{t(:edit)}".html_safe,edit_admin_member_path(@member),:class=>"btn btn-mini" ) if has_access? %>
<%= link_to("<i class='icons-cycle'></i> #{t("users.change_passwd")}".html_safe,admin_member_edit_passwd_path(@member),:class=>"btn btn-mini" ) if has_access? %>
<!-- <%= link_to("<i class='icons-cycle'></i> #{t("users.change_passwd")}".html_safe,admin_member_edit_passwd_path(@member),:class=>"btn btn-mini" ) if has_access? %> -->
<%= link_to("<i class='icons-lock-open'></i> #{t("users.setting_privilege")}".html_safe,admin_member_edit_privilege_path(@member),:class=>"btn btn-mini" ) if current_user.is_admin? %>
</div>
</div>

View File

@ -7,7 +7,7 @@ rails_env = ENV['RAILS_ENV'] || 'production'
cpu_cores = %x(cat /proc/cpuinfo | grep processor | wc -l).sub("\n",'').to_i rescue 2
worker_processes (rails_env == 'production' ? 4 : 1)
worker_processes (rails_env == 'production' ? 16 : 1)
# preload_app true

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -5,396 +5,372 @@
<subtitle>本月最新活動</subtitle>
<dc:language>zh-tw</dc:language>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141107" />
<title>2015「徵才實料」企業說明會--遠雄建設</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4308&amp;key2=20150302" />
<author>
<name />
</author>
<summary type="text">2014/11/07 08:00</summary>
<summary type="text">2015/03/02 12:30</summary>
</entry>
<entry>
<title>國家發展「教育創新」論壇</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4241&amp;key2=20141107" />
<title>2015「徵才實料」企業說明會--IBM</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4311&amp;key2=20150302" />
<author>
<name />
</author>
<summary type="text">2014/11/07 10:30</summary>
<summary type="text">2015/03/02 18:30</summary>
</entry>
<entry>
<title>信義講座居家系列二:「用建築師的眼光挑房子」</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4159&amp;key2=20141107" />
<title>2015「徵才實料」企業說明會--匯豐銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4310&amp;key2=20150303" />
<author>
<name />
</author>
<summary type="text">2014/11/07 12:15</summary>
<summary type="text">2015/03/03 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141108" />
<title>2015「徵才實料」企業說明會--陽明海運</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4312&amp;key2=20150303" />
<author>
<name />
</author>
<summary type="text">2014/11/08 08:00</summary>
<summary type="text">2015/03/03 18:30</summary>
</entry>
<entry>
<title>中國政治學會2014年會暨「國際政經劇變與民主治理挑戰」學術研討會</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4212&amp;key2=20141108" />
<title>2015「徵才實料」企業說明會--富邦金控</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4341&amp;key2=20150304" />
<author>
<name />
</author>
<summary type="text">2014/11/08 09:00</summary>
<summary type="text">2015/03/04 12:30</summary>
</entry>
<entry>
<title>學期報告攻略班-學術資源利用指導(週六班)</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4088&amp;key2=20141108" />
<title>2015「徵才實料」企業說明會--Unilever</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4314&amp;key2=20150304" />
<author>
<name />
</author>
<summary type="text">2014/11/08 13:00</summary>
<summary type="text">2015/03/04 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141109" />
<title>2015「徵才實料」企業說明會--Morgan Stanley</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4315&amp;key2=20150305" />
<author>
<name />
</author>
<summary type="text">2014/11/09 08:00</summary>
<summary type="text">2015/03/05 12:30</summary>
</entry>
<entry>
<title>中國政治學會2014年會暨「國際政經劇變與民主治理挑戰」學術研討會</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4212&amp;key2=20141109" />
<title>2015「徵才實料」企業說明會--龍巖股份有限公司</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4316&amp;key2=20150305" />
<author>
<name />
</author>
<summary type="text">2014/11/09 09:00</summary>
<summary type="text">2015/03/05 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141110" />
<title>2015「徵才實料」企業說明會--台新金控</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4317&amp;key2=20150306" />
<author>
<name />
</author>
<summary type="text">2014/11/10 08:00</summary>
<summary type="text">2015/03/06 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展開幕儀式</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4246&amp;key2=20141110" />
<title>★2015「徵才實料」企業參訪--玉山銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4359&amp;key2=20150306" />
<author>
<name />
</author>
<summary type="text">2014/11/10 10:30</summary>
<summary type="text">2015/03/06 13:00</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141111" />
<title>2015「徵才實料」企業說明會--華碩電腦</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4318&amp;key2=20150309" />
<author>
<name />
</author>
<summary type="text">2014/11/11 08:00</summary>
<summary type="text">2015/03/09 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141112" />
<title>2015「徵才實料」講座--職場LinkedIn教你掌握網路時代的求職新趨勢</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4342&amp;key2=20150309" />
<author>
<name />
</author>
<summary type="text">2014/11/12 08:00</summary>
<summary type="text">2015/03/09 19:00</summary>
</entry>
<entry>
<title>國際金融專家-沈平先生講座台灣產業將來會由服務業而非製造業掛帥yes or no?</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4250&amp;key2=20141112" />
<title>2015「徵才實料」企業說明會--第一銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4319&amp;key2=20150310" />
<author>
<name />
</author>
<summary type="text">2014/11/12 12:20</summary>
<summary type="text">2015/03/10 12:30</summary>
</entry>
<entry>
<title>政大企管CEO論壇(策略與領導-系列6-5 )全球運營領導/與機器共舞</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4176&amp;key2=20141112" />
<title>2015「徵才實料」企業說明會--L'OREAL</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4320&amp;key2=20150310" />
<author>
<name />
</author>
<summary type="text">2014/11/12 19:00</summary>
<summary type="text">2015/03/10 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141113" />
<title>2015「徵才實料」企業說明會--元大金控</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4321&amp;key2=20150311" />
<author>
<name />
</author>
<summary type="text">2014/11/13 08:00</summary>
<summary type="text">2015/03/11 12:30</summary>
</entry>
<entry>
<title>百年講座【陳芳明教授:一位文學研究者如何與社會對話】</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4150&amp;key2=20141113" />
<title>2015「徵才實料」企業說明會--大潤發</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4322&amp;key2=20150311" />
<author>
<name />
</author>
<summary type="text">2014/11/13 12:20</summary>
<summary type="text">2015/03/11 18:30</summary>
</entry>
<entry>
<title>藝文中心工作坊:從"戀愛巴士"談劇場與生活</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4116&amp;key2=20141113" />
<title>2015「徵才實料」企業說明會--大眾銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4323&amp;key2=20150312" />
<author>
<name />
</author>
<summary type="text">2014/11/13 19:00</summary>
<summary type="text">2015/03/12 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141114" />
<title>2015「徵才實料」企業說明會--廣達電腦</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4324&amp;key2=20150312" />
<author>
<name />
</author>
<summary type="text">2014/11/14 08:00</summary>
<summary type="text">2015/03/12 18:30</summary>
</entry>
<entry>
<title>研究生論文研究三部曲:引用文獻資料庫查詢與利用</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4084&amp;key2=20141114" />
<title>2015「徵才實料」企業說明會--Dell(戴爾電腦)</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4325&amp;key2=20150313" />
<author>
<name />
</author>
<summary type="text">2014/11/14 14:00</summary>
<summary type="text">2015/03/13 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141115" />
<title>★2015「徵才實料」企業參訪--LINE</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4358&amp;key2=20150313" />
<author>
<name />
</author>
<summary type="text">2014/11/15 08:00</summary>
<summary type="text">2015/03/13 14:00</summary>
</entry>
<entry>
<title>教職員羽球賽</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4228&amp;key2=20141115" />
<title>與CEO有約-如何建構職場競爭力</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4305&amp;key2=20150313" />
<author>
<name />
</author>
<summary type="text">2014/11/15 08:00</summary>
<summary type="text">2015/03/13 14:00</summary>
</entry>
<entry>
<title>第五屆翻譯與跨文化國際學術研討會,主題:移動、互動與運動:開拓多元文化空間</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4189&amp;key2=20141115" />
<title>2015「徵才實料」企業說明會--資誠聯合會計師事務所</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4326&amp;key2=20150316" />
<author>
<name />
</author>
<summary type="text">2014/11/15 08:45</summary>
<summary type="text">2015/03/16 12:30</summary>
</entry>
<entry>
<title>研究生論文研究五部曲書目管理軟體EndnoteX7書目應用班(週六場)</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4086&amp;key2=20141115" />
<title>2015「徵才實料」企業說明會--長榮海運公司/長榮國際公司</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4327&amp;key2=20150316" />
<author>
<name />
</author>
<summary type="text">2014/11/15 13:00</summary>
<summary type="text">2015/03/16 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141116" />
<title>2015「徵才實料」企業說明會--遠東商業銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4328&amp;key2=20150317" />
<author>
<name />
</author>
<summary type="text">2014/11/16 08:00</summary>
<summary type="text">2015/03/17 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141117" />
<title>2015「徵才實料」企業說明會--點晶科技</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4329&amp;key2=20150317" />
<author>
<name />
</author>
<summary type="text">2014/11/17 08:00</summary>
<summary type="text">2015/03/17 18:30</summary>
</entry>
<entry>
<title>2014年台灣選舉分析與預測</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4247&amp;key2=20141117" />
<title>2015 政大資管系徵才系列講座(一)台積電,《天下雜誌》「台灣最佳聲望標竿企業」龍頭</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4303&amp;key2=20150318" />
<author>
<name />
</author>
<summary type="text">2014/11/17 10:00</summary>
<summary type="text">2015/03/18 11:00</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141118" />
<title>2015「徵才實料」企業說明會--中國信託</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4330&amp;key2=20150318" />
<author>
<name />
</author>
<summary type="text">2014/11/18 08:00</summary>
<summary type="text">2015/03/18 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141119" />
<title>2015「徵才實料」講座--全民賣家GO! Yahoo教你掌握電子商務新趨勢</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4343&amp;key2=20150318" />
<author>
<name />
</author>
<summary type="text">2014/11/19 08:00</summary>
<summary type="text">2015/03/18 19:00</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141120" />
<title>2015「徵才實料」企業說明會--德碩管理(ABeam Consulting)</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4331&amp;key2=20150319" />
<author>
<name />
</author>
<summary type="text">2014/11/20 08:00</summary>
<summary type="text">2015/03/19 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141121" />
<title>打開圖書館資訊寶盒-善用圖書館資源與資訊工具</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4360&amp;key2=20150319" />
<author>
<name />
</author>
<summary type="text">2014/11/21 08:00</summary>
<summary type="text">2015/03/19 13:00</summary>
</entry>
<entry>
<title>政治大學數位史料與研究論壇2014人權運動與台灣政治發展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4237&amp;key2=20141121" />
<title>★2015「徵才實料」企業參訪--台灣微軟</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4357&amp;key2=20150319" />
<author>
<name />
</author>
<summary type="text">2014/11/21 08:30</summary>
<summary type="text">2015/03/19 14:00</summary>
</entry>
<entry>
<title>研究生論文研究五部曲書目管理軟體EndnoteX7書目應用班(晚上場)</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4087&amp;key2=20141121" />
<title>2015「徵才實料」企業說明會--帝國菸草</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4332&amp;key2=20150319" />
<author>
<name />
</author>
<summary type="text">2014/11/21 19:00</summary>
<summary type="text">2015/03/19 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141122" />
<title>2015「徵才實料」企業說明會--蘇黎世產險</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4333&amp;key2=20150320" />
<author>
<name />
</author>
<summary type="text">2014/11/22 08:00</summary>
<summary type="text">2015/03/20 12:30</summary>
</entry>
<entry>
<title>EMBA籃球賽</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4229&amp;key2=20141122" />
<title>2015「徵才實料」企業說明會--玉山銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4334&amp;key2=20150323" />
<author>
<name />
</author>
<summary type="text">2014/11/22 12:00</summary>
<summary type="text">2015/03/23 12:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141123" />
<title>學術資源探索系統-掌握雲端文獻集中索引</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4361&amp;key2=20150323" />
<author>
<name />
</author>
<summary type="text">2014/11/23 08:00</summary>
<summary type="text">2015/03/23 13:00</summary>
</entry>
<entry>
<title>EMBA籃球賽</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4229&amp;key2=20141123" />
<title>2015「徵才實料」企業說明會--威富品牌</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4335&amp;key2=20150323" />
<author>
<name />
</author>
<summary type="text">2014/11/23 12:00</summary>
<summary type="text">2015/03/23 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141124" />
<title>2015「徵才實料」企業說明會--UNIQLO</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4336&amp;key2=20150324" />
<author>
<name />
</author>
<summary type="text">2014/11/24 08:00</summary>
<summary type="text">2015/03/24 12:30</summary>
</entry>
<entry>
<title>【外語學院導師制文化講座】卡夫卡的奇幻世界</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4188&amp;key2=20141124" />
<title>Google Scholar學術搜尋工具揭密</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4362&amp;key2=20150324" />
<author>
<name />
</author>
<summary type="text">2014/11/24 12:30</summary>
<summary type="text">2015/03/24 13:00</summary>
</entry>
<entry>
<title>藝文中心:導演工作坊--《七種靜默:饕餮》</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4110&amp;key2=20141124" />
<title>2015「徵才實料」企業說明會--遠傳電信</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4337&amp;key2=20150324" />
<author>
<name />
</author>
<summary type="text">2014/11/24 19:00</summary>
<summary type="text">2015/03/24 18:30</summary>
</entry>
<entry>
<title>土耳其共和國國父--凱墨爾生平及成就展</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4245&amp;key2=20141125" />
<title>2015 政大資管系徵才系列講座(二)HTC宏達電Interbrand 2011全球百大品牌</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4353&amp;key2=20150325" />
<author>
<name />
</author>
<summary type="text">2014/11/25 08:00</summary>
<summary type="text">2015/03/25 11:00</summary>
</entry>
<entry>
<title>【一人獨角 兩人上戲】七種靜默:饕餮</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4144&amp;key2=20141126" />
<title>2015 政大資管系徵才系列講座(二)HTC宏達電Interbrand 2011全球百大品牌</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4345&amp;key2=20150325" />
<author>
<name />
</author>
<summary type="text">2014/11/26 19:30</summary>
<summary type="text">2015/03/25 11:00</summary>
</entry>
<entry>
<title>【外語學院導師制文化講座】藝術家系列之一:追逐光影色彩的永恆—莫內的畫</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4190&amp;key2=20141128" />
<title>2015「徵才實料」企業說明會--研華科技</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4338&amp;key2=20150325" />
<author>
<name />
</author>
<summary type="text">2014/11/28 12:15</summary>
<summary type="text">2015/03/25 12:30</summary>
</entry>
<entry>
<title>外語學院運動會</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4230&amp;key2=20141130" />
<title>2015「徵才實料」企業說明會--永豐銀行</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4339&amp;key2=20150325" />
<author>
<name />
</author>
<summary type="text">2014/11/30 08:00</summary>
<summary type="text">2015/03/25 18:30</summary>
</entry>
<entry>
<title>103學年校園馬拉松</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4232&amp;key2=20141201" />
<title>2015「徵才實料」企業說明會--信義房屋</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4340&amp;key2=20150326" />
<author>
<name />
</author>
<summary type="text">2014/12/01 09:00</summary>
<summary type="text">2015/03/26 12:30</summary>
</entry>
<entry>
<title>百年講座【林鎮國教授:全球話語台灣人文學科的挑戰】</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4132&amp;key2=20141203" />
<title>資訊檢索技巧精進班</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4363&amp;key2=20150326" />
<author>
<name />
</author>
<summary type="text">2014/12/03 12:20</summary>
<summary type="text">2015/03/26 13:00</summary>
</entry>
<entry>
<title>藝文中心:導演工作坊--《一桌二椅X四物》</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4112&amp;key2=20141204" />
<title>★2015「徵才實料」講座--興趣真能當飯吃嗎? DA VILLAGE籃球部落用熱血籃球夢創業</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4344&amp;key2=20150326" />
<author>
<name />
</author>
<summary type="text">2014/12/04 19:00</summary>
</entry>
<entry>
<title>【外語學院導師制文化講座】藝術家系列之二:悲憫的靈魂-梵谷的畫</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4191&amp;key2=20141205" />
<author>
<name />
</author>
<summary type="text">2014/12/05 12:15</summary>
</entry>
<entry>
<title>北法盃籃球賽</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4231&amp;key2=20141206" />
<author>
<name />
</author>
<summary type="text">2014/12/06 08:00</summary>
</entry>
<entry>
<title>北法盃籃球賽</title>
<link rel="alternate" href="http://events.nccu.edu.tw/more.do?key=4231&amp;key2=20141207" />
<author>
<name />
</author>
<summary type="text">2014/12/07 08:00</summary>
<summary type="text">2015/03/26 19:00</summary>
</entry>
</feed>