WPD2009_Plone3_theme-2.key

Size: px
Start display at page:

Download "WPD2009_Plone3_theme-2.key"

Transcription

1

2

3

4

5

6

7

8

9

10 $~/Plone-3.1/zinstance/buildout.cfg [instance] debug-mode = on $cd ~/Plone-3.1/zinstance $./bin/buildout $~/Plone-3.1

11 $ ~/Plone-3.1/zinstance/bin/instance fg ctrl+c.py ZMI [Plone ] > portal_css or portal_javascripts debug

12

13

14 $ cd ~/Plone-3.1/zinstance/src $../bin/paster create -t plone3_theme Enter project name: wpdj.theme Variables: egg: wpdj.theme package: wpdjtheme project: wpdj.theme Enter namespace_package (Namespace package (like plonetheme)) ['plonetheme']: wpdj /zinstance/src Enter package (The package contained namespace package (like example)) ['example']: theme Enter skinname (The skin selection to be added to 'portal_skins' (like 'My Theme')) ['']: wpdjskin

15 1. ~/Plone-3.1/zinstance/buildout.cfg [buildout] eggs = wpdj.theme develop = src/wpdj.theme [instance] zcml = wpdj.theme 2. buildout $cd ~/Plone-3.1/zinstance $./bin/buildout

16 ZMI /[Plone site]/portal_quickinstaller.xml.zcml install stylesheet => [your theme package]/skins/wpdj_theme_styles/ public.css.dtml portlets.css.dtml base.css.dtml

17

18 Plone 3 has switched to use Zope 3 viewlet components instead of the old macro include approach. Since Plone 3.0, main_template.pt calls viewlet managers instead of METAL macros

19

20 (1) xml ~/Plone-3.1/zinstance/src/wpdj.theme/wpdj/theme/profiles/default/viewlets.xml <object> <hidden manager="plone.portalheader" skinname="wpdjskin"> <viewlet name="plone.searchbox" /> </hidden> <hidden manager="plone.portaltop" skinname="wpdjskin"> <viewlet name="plone.personal_bar" /> </hidden> <hidden manager="plone.portalfooter" skinname="wpdjskin"> <viewlet name="plone.colophon" /> </hidden> </object>

21 (2) ZMI => viewlets.xml

22 (1) xml ~/Plone-3.1/zinstance/src/wpdj.theme/wpdj/theme/profiles/default/viewlets.xml <order> <manager> <viewlet> <order manager="plone.portalheader" skinname="wpdjskin" based-on="plone Default"> <viewlet name="plone.logo" insert-before="*" /> <viewlet name="plone.global_sections" insert-after="plone.logo" /> <viewlet name="plone.site_actions" insert-after="plone.global_sections" /> </order>

23

24

25 [my package]/browser/viewlets.py class (1) viewlet "plone.path_bar" (2) viewlet

26 /profiles/default/viewlets.xml [my package]/browser/viewlets.py class pathviewlet path_bar Path Bar (Portal Breadcrumbs) < #

27 [my package]/browser/viewlets.py # pt from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile # view class from plone.app.layout.viewlets.common import PathBarViewlet # viewlet # browser/configure.zcml class # PathBarViewlet wpdpath_bar.pt class pathviewlet(pathbarviewlet): render = ViewPageTemplateFile('wpdpath_bar.pt')

28 ZMI [site root] > portal_view_customizations path_bar plone.app.layout.viewlets/path_bar.pt [my package]/browser/wpdpath_bar.pt # html class

29 [my package]/browser/wpdpath_bar.pt <div id="portal-breadcrumbs" i18n:domain="plone"> <span id="breadcrumbs-you-are-here" i18n:translate="you_are_here">you are here:</span> <a i18n:translate="tabs_home" tal:attributes="href view/navigation_root_url">home</a> <span tal:condition="view/breadcrumbs" class="breadcrumbseparator"> <tal:ltr condition="not: view/is_rtl"> </tal:ltr> <tal:rtl condition="view/is_rtl">»</tal:rtl> </span> <span tal:repeat="crumb view/breadcrumbs" tal:attributes="dir python:view.is_rtl and 'rtl' or 'ltr'"> <tal:last tal:define="is_last repeat/crumb/end"> <a href="#" tal:omit-tag="not: crumb/absolute_url" tal:condition="python:not is_last" tal:attributes="href crumb/absolute_url" tal:content="crumb/title"> crumb </a> <span class="breadcrumbseparator" tal:condition="not: is_last"> <tal:ltr condition="not: view/is_rtl"> </tal:ltr> <tal:rtl condition="view/is_rtl">»</tal:rtl> </span> <span tal:condition="is_last" tal:content="crumb/title">crumb</span> </tal:last> </span> </div>

30 [my package]/browser/configure.zcml viewlet viewlet "wpdjskin.path_bar" class [my package]/browser/viewlets.py class [my package]/browser/configure.zcml <!-- --> <browser:viewlet name="wpdjskin.path_bar" manager="plone.app.layout.viewlets.interfaces.iportalfooter" class=".viewlets.pathviewlet" permission="zope2.view" />

31 (1) viewlet "plone.path_bar" viewlet manager "plone.portaltop" "plone.path_bar" hidden [my package]/profiles/default/viewlets.xml <hidden manager="plone.portaltop" skinname="wpdjskin"> <viewlet name="plone.app.i18n.locales.languageselector" /> <viewlet name="plone.personal_bar" /> <viewlet name="plone.path_bar" /> </hidden>

32 (2) viewlet "wpdjskin.path_bar" viewlet manager "plone.portalfooter" "wpdjskin.path_bar" [my package]/profiles/default/viewlets.xml <order manager="plone.portalfooter" skinname="wpdjskin" based-on="plone Default"> <viewlet name="wpdjskin.path_bar" insert-before="*" /> <viewlet name="wpdjskin.footer" /> </order>

33 [my package]/browser/viewlets.py class logoviewlet Logo <

34 [my package]/browser/viewlets.py # pt from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile # view class from plone.app.layout.viewlets.common import LogoViewlet # viewlet # borower/configure.zcml class # class logoviewlet(logoviewlet): render = ViewPageTemplateFile('wpdlogo.pt')

35 ZMI [site root] > portal_view_customizations logo plone.app.layout.viewlets/logo.pt [my package]/browser/wpdlogo.pt

36 [my package]/browser/wpdlogo.pt <div id="logo-wrapper"> <a metal:define-macro="portal_logo" id="portal-logo" accesskey="1" tal:attributes="href view/navigation_root_url" i18n:domain="plone"> <img src="++resource++wpdj.theme.images/wpdlogo.jpg" alt="world Plone Day" title="world Plone Day" height="200" width="301" /> </a> </div> ++resource++wpdj.theme.images/[ ] [theme directry]/browser/images [theme directry]/browser/configure.zcml resource directory

37 [my package]/browser/configure.zcml viewlet viewlet "wpdjskin.logo" class [my package]/browser/viewlets.py class [my package]/browser/configure.zcml <!-- --> <browser:viewlet name="wpdjskin.logo" manager="plone.app.layout.viewlets.interfaces.iportalheader" class=".viewlets.logoviewlet" permission="zope2.view" />

38 (1) viewlet "plone.logo" viewlet manager "plone.portalheader" "plone.logo" hidden [my package]/profiles/default/viewlets.xml <hidden manager="plone.portalheader" skinname="wpdjskin"> <viewlet name="plone.site_actions" /> <viewlet name="plone.searchbox" /> <viewlet name="plone.logo" /> </hidden>

39 (2) viewlet "wpdjskin.logo" viewlet manager "plone.portalheader" "wpdjskin.logo" [my package]/profiles/default/viewlets.xml <order manager="plone.portalheader" skinname="wpdjskin" based-on="plone Default"> <viewlet name="wpdjskin.logo" insert-before="plone.global_sections" /> </order>

40 [my package]/browser/viewlets.py class footerviewlet # SiteActionsViewlet wpdfooter.pt : Site Actions <

41 [my package]/browser/viewlets.py # pt from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile # view class # site_actions from plone.app.layout.viewlets.common import SiteActionsViewlet # viewlet # class footerviewlet(siteactionsviewlet): render = ViewPageTemplateFile('wpdfooter.pt')

42 ZMI [site root] > portal_view_customizations footer site_actions plone.app.layout.viewlets/footer.pt plone.app.layout.viewlets/site_actions.pt [my package]/browser/wpdfooter.pt

43 [my package]/browser/wpdfooter.pt ( <div id="portal-footer" metal:define-macro="portal_footer" i18n:domain="plone"> <ul id="portal-siteactions" tal:define="accesskeys python: {'sitemap' : '3', 'accessibility' : '0', 'contact' : '9'};" tal:condition="view/site_actions" i18n:domain="plone"> <li tal:repeat="saction view/site_actions" tal:attributes="id string:siteaction-${saction/id}"><a href="" tal:define="title saction/title; id saction/id; accesskey python: accesskeys.get(id, '');"

44 [my package]/browser/wpdfooter.pt ( i18n:attributes="title" i18n:translate="" tal:content="title" tal:attributes="href saction/url; title title; accesskey accesskey;" >Site action</a></li> </ul> <!-- --> <p>world Plone Day 2008 Tokyo Theme <span tal:omit-tag="" tal:define="now modules/datetime/datetime" tal:content="now/year" /> Plone </p> </div>

45 [my package]/browser/configure.zcml viewlet viewlet "wpdjskin. footer" class [my package]/browser/viewlets.py class [my package]/browser/configure.zcml <!-- --> <browser:viewlet name="wpdjskin.footer" manager="plone.app.layout.viewlets.interfaces.iportalfooter" class=".viewlets.footerviewlet" permission="zope2.view" />

46 (1) viewlet "plone.logo" viewlet manager "plone.portalfooter" "plone.footer" hidden [my package]/profiles/default/viewlets.xml <hidden manager="plone.portalfooter" skinname="wpdjskin"> <viewlet name="plone.footer" /> <viewlet name="plone.colophon" /> </hidden>

47 (2) viewlet "wpdjskin.footer" viewlet manager "plone.portalfooter" "wpdjskin.footer" [my package]/profiles/default/viewlets.xml <order manager="plone.portalfooter" skinname="wpdjskin" based-on="plone Default"> <viewlet name="wpdjskin.path_bar" insert-before="*" /> <viewlet name="wpdjskin.footer" /> </order>

48

49 [your package]/profiles/default/cssregistry.xml <stylesheet title="" id="++resource++wpdj.theme.stylesheets/main.css" media="screen" rel="stylesheet" rendering="import" cacheable="true" compression="safe" cookable="true" enabled="1" expression=""/>

50 Resources Plone Theme Reference < Create new eggs and packages quickly with paster < paster egg < Customizing the viewlets in main_template < Where is What in Plone 3 <

Network Computing の基礎

Network Computing の基礎 CSS Cascading Style Sheets Cascading = Style Sheets = CSS WEB HTML CSS 2 HTML h1 p CSS 3 CSS CSS HTML sample1.html CSS HTML sample2.html CSS CSS sample2.css CSS

More information

3 top#index 1 web router.ex web/router.ex 12 scope "/", NanoPlanner do 13 pipe_through browser get "/", TopController, index 16 end URL / to

3 top#index 1 web router.ex web/router.ex 12 scope /, NanoPlanner do 13 pipe_through browser get /, TopController, index 16 end URL / to 3 NanoPlanner SASS Bootstrap Font Awesome 3.1 RAVT 6 RAVT route action view template Phoenix top index top index top#index RAVT URL / top#index top#index top 23 3 top#index 1 web router.ex web/router.ex

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 3 Webデザイナーに求められる知識 優秀な HTML, CSS, 画像編集, JavaScript, jquery, XML, 色 彩理論, LL, データベース, SEO, SMO, EFO, コピーラ イティング, テキストライティング, イラストレー ション, Flash, ディレクション能力, プロジェクトマ ネジメント, Logo作成, Typography, サーバ管理, PHP, Perl,

More information

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

More information

untitled

untitled 2007 IT G Google Map API WEB2.0 2007 8 23 GoogleMapAPI GoogleMapAPI Google Web URL XHTML JavaScript GoogleMAP LHACA FFFTP TeraPad Haruhiro Unno Japan Electronics College 1 GoogleMapAPI Web Google GMail

More information

_勉強会_丸山さつき_v3

_勉強会_丸山さつき_v3 CSS 2019/6/21 1 CSS CSS CSS!2 CSS Web!3 CSS HTML CSS CSS!4 CSS!5 !6 Id class id class CSS!7 !8 body 16px p 16px px, rem, em, %!9 !10 body 16px p 16px 1 CSS!11 !12 CSS CSS!13 CSS 4 CSS 1. OOCSS 2. SMACSS

More information

第3回_416.ppt

第3回_416.ppt 3 3 2010 4 IPA Web http://www.ipa.go.jp/security/awareness/vendor/programming Copyright 2010 IPA 1 3-1 3-1-1 SQL #1 3-1-2 SQL #2 3-1-3 3-1-4 3-2 3-2-1 #2 3-2-2 #1 3-2-3 HTTP 3-3 3-3-1 3-3-2 Copyright 2010

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

6 (1) app.html.eex 28 lib/nano_planner_web/templates/layout/app.html.eex 27 <footer> Oiax Inc <%= this_year() %> Oiax Inc. 29 </footer>

6 (1) app.html.eex 28 lib/nano_planner_web/templates/layout/app.html.eex 27 <footer> Oiax Inc <%= this_year() %> Oiax Inc. 29 </footer> 6 (1) of_today 6.1 Copyright 2017 lib/nano_planner_web/views layout_view.ex this_year/0 lib/nano_planner_web/views/layout_view.ex 1 defmodule NanoPlannerWeb.LayoutView do 2 use NanoPlannerWeb, view 3 +

More information

cssnitelp47_hasegawa_v02.key

cssnitelp47_hasegawa_v02.key 本当に利用は必要か デザイナーにとっての jquery と JavaScript フレームワーク HIROMU HASEGAWA " " show hide

More information

Web

Web Web 1 1 1........................... 1 2 Web...................... 1 3...................... 3 4........................ 4 5........................... 5 i............................ 5 ii iii..........................

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

0720

0720 DRM SNS WP WP UG Width of the Flash tag cloud Height of the Flash tag cloud Color of the tags 000000 Background color FFFFFF Use compatibility mode? WEB - HTML Color Names http://www.joomler.net/download/131-wordpress/890-wordpress-wp-cumulus-49kb.html

More information

日 http://microformats.org/ 西 class class id class id title class id title rel class id 工 title rel

More information

2

2 http://msyk.net/im Develop Simply, Realize Conceived 1 2 3 4 5 6 7 8 9 10 11 Page File HTML Referencing with "SCRIPT" tag Call the templating method Definition

More information

11 Bootstrap Font Awesome $ cd ~/projects/modest_greeter $ npm install --save jquery popper.js tether --save package.json depen

11 Bootstrap Font Awesome $ cd ~/projects/modest_greeter $ npm install --save jquery popper.js tether --save package.json depen 11 Bootstrap Font Awesome Bootstrap Font Awesome Modest- Greeter 11.1 Bootstrap Phoenix Bootstrap CSS/JavaScript Bootstrap PC Web ModestGreeter Bootstrap Bootstrap 4 Bootstrap 4 2017 11 Bootstrap4 87 11

More information

Gartner Day

Gartner Day J2EE 1 J2EE C AP 2 J2EE AP DD java *.class java *.class java *.class *.class DD EAR, WAR, JAR orionapplicationclient.xmweb.xmapplication.jar.xml orion- orion-ejb- ml Oracle Application Server 10g *.jsp

More information

PowerPoint Presentation

PowerPoint Presentation HTML5 Level.1 Markup Professional HTML5 Level.2 Application Development Professional http://www.html5exam.jp/ @html5cert https://www.facebook.com/html5exam

More information

S1Šû‘KŒâ‚è

S1Šû‘KŒâ‚è are you? I m thirteen years old. do you study at home every day? I study after dinner. is your cat? It s under the table. I leave for school at seven in Monday. I leave for school at seven on Monday. I

More information

Atlassian サポートツールの使い方 はじめに 弊社ヘルプデスクにお問い合わせいただいたときに ログファイルをお送りくださいとお願いさせていただくことがあります Atlassian 製品には ログファイルをはじめサポートに必要な情報を収集するための Atlassian サポートツールが用意されています これを利用すると必要な情報を簡単に用意できます ここでは 製品別に Atlassian サポートツールの使い方をご説明します

More information

キャリアワークショップ教師用

キャリアワークショップ教師用 iii v vi vii viii ix x xi xii 1 2 3 4 1.1 CYCLE OF SELF-RELIANCE GOALS SUCCESS INTERACTION RESOURCES 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2.1 MY RESOURCES FOR THE EARTH IS FULL, AND THERE IS ENOUGH AND

More information

橡点検記録(集約).PDF

橡点検記録(集約).PDF 942.8.8.8.7 671 86 11 1 9 9 9 1 1,792 7,23 2,483 1,324 2,198 7,23 82 7,23 6,327 9,22 9,713 8,525 8,554 9,22. 8,554. 1,79 9,713 95 947 8,525.. 944 671 81 7 17 1,29 1,225 1,241 1,25 1,375 9.3 23,264 25,

More information

ABSTRACT The "After War Phenomena" of the Japanese Literature after the War: Has It Really Come to an End? When we consider past theses concerning criticism and arguments about the theme of "Japanese Literature

More information

8 4 end 5 6 private def message 7 'Hello' 8 end 9 end g = Greeting.new 12 g.hello $ ruby lib/lessons/greeting.rb Hello Ruby public method protec

8 4 end 5 6 private def message 7 'Hello' 8 end 9 end g = Greeting.new 12 g.hello $ ruby lib/lessons/greeting.rb Hello Ruby public method protec 8 Rails 8.1 PicoPlanner Ruby lib lessons $ mkdir -p lib/lessons lib/lessons greeting.rb lib/lessons/greeting.rb (New) 1 class Greeting 2 def hello 3 puts message 87 8 4 end 5 6 private def message 7 'Hello'

More information

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name = "" => "" > item.valid? => true valid? true false

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name =  =>  > item.valid? => true valid? true false 10 (1) 16 7 PicoPlanner validations 10.1 PicoPlanner Web Web invalid values validations Rails validates validate 107 10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #

More information

CSSNite-LP54-kubo-ito.key

CSSNite-LP54-kubo-ito.key div { div { width: ; div { width: 100%; div { width: 100%; div { width: 100%!important; a { color: #000!important; .box { padding: 20px; border: 4px solid #666; h1 { color:

More information

Ł½’¬24flNfix+3mm-‡½‡¹724

Ł½’¬24flNfix+3mm-‡½‡¹724 571 0.0 31,583 2.0 139,335 8.9 310,727 19.7 1,576,352 100.0 820 0.1 160,247 10.2 38,5012.4 5,7830.4 9,5020.6 41,7592.7 77,8174.9 46,425 2.9 381,410 24.2 1,576,352 100.0 219,332 13.9 132,444 8.4 173,450

More information

Blue Asterisk template

Blue Asterisk template IBM Content Analyzer V8.4.2 TEXT MINER の新機能 大和ソフトウェア開発 2008 IBM Corporation 目次 UI カスタマイズ機能 検索条件の共有 柔軟な検索条件の設定 2 UI カスタマイズ機能 アプリケーションをカスタマイズするために Java Script ファイルおよびカスケーディングスタイルシート (CSS) ファイルの読み込み機能が提供されています

More information

STEP 02 Memo: Self-Introduction Self-Introduction About your family About your school life (your classes, club/juku, and so on.) Questions to your Pen

STEP 02 Memo: Self-Introduction Self-Introduction About your family About your school life (your classes, club/juku, and so on.) Questions to your Pen Eigo Ganbare!! Class ( ) No. ( ) Name ( ) 全員参加で楽しくガンバロウ The Pen Pal Exchange Project 2nd year This will be your first time to write a pen pal letter. There are schools from abroad and these students are

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

Microsoft Word - OL購入補足資料-pdf.docx

Microsoft Word - OL購入補足資料-pdf.docx オンラインコース ご購入に関しての補足資料 登録情報はすべて ローマ字 で記載してください!! オンラインコース1 購入の流れ 1, オンラインコースを選択 2, 個人アカウントを作成する ( 住所 氏名を含む情報はすべてローマ字で記載してください!) 3, 支払い手続き アカウント記載情報などを含め 英語でのお手続きが不安なかた は 本編資料と合わせて下記の資料も確認ください http://bit.ly/2dwhbro

More information

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr Eclipse 1,a) 1,b) 1,c) ( IDE) IDE Graphical User Interface( GUI) GUI GUI IDE View Eclipse Development of Eclipse Plug-in to present an Object Diagram to Debug Environment Kubota Yoshihiko 1,a) Yamazaki

More information

PowerGres on Linux HAマニュアル

PowerGres on Linux HAマニュアル PowerGres R on Linux HA 2006 11 SteelEye LifeKeeper SteelEye Technology, Inc. Linux Linus Torvalds TM R 1 2 2 PowerGres on Linux HA 2 2.1 PowerGres on Linux HA.................................. 2 2.2..............................................

More information

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200,

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, WEB DB PRESS Vol.1 79 3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, http://www.postgresql.org/http://www.jp.postgresql.org/ 80 WEB DB PRESS

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

Hi. Hello. My name is What s your name? Nice to meet you. How are you? I m OK. Good morning. How are you? I am fine, thank you. My name is. Nice to me

Hi. Hello. My name is What s your name? Nice to meet you. How are you? I m OK. Good morning. How are you? I am fine, thank you. My name is. Nice to me - 8 - English Day 10 Discover Japan 11 12 Hi. Hello. My name is What s your name? Nice to meet you. How are you? I m OK. Good morning. How are you? I am fine, thank you. My name is. Nice to meet you. ere

More information

To the Conference of District 2652 It is physically impossile for Mary Jane and me to attend the District Conferences around the world. As a result, we must use representatives for that purpose. I have

More information

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML 6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 3 1.1 HTML Web HTML(Hyper Text Markup Language)

More information

com.ibm.etools.egl.jsfsearch.tutorial.doc.ps

com.ibm.etools.egl.jsfsearch.tutorial.doc.ps EGL JSF ii EGL JSF EGL JSF.. 1................. 1 1:.... 3 Web.......... 3........... 3........ 4......... 7 2:...... 7..... 7 SQL.... 8 JSF.... 10 Web.... 12......... 13 3: OR....... 14 OR... 14.15 OR.....

More information

BC4J...4 BC4J Association JSP BC4J JSP OC4J

BC4J...4 BC4J Association JSP BC4J JSP OC4J lê~åäévá=gaéîéäçééê= 9.0.3/9.0.4 BC4J Creation Date: Oct 08, 2003 Last Update: Feb 27, 2004 Version 1.0 ...3... 3 BC4J...4 BC4J...4... 4... 5... 6...7... 8... 9 Association... 13... 15... 20... 22... 25

More information

RHEA key

RHEA key 2 P (k, )= k e k! 3 4 Probability 0.4 0.35 0.3 0.25 Poisson ( λ = 1) Poisson (λ = 3) Poisson ( λ = 10) Poisson (λ = 20) Poisson ( λ = 30) Gaussian (µ = 1, s = 1) Gaussian ( µ = 3, s = 3) Gaussian (µ =

More information

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2. 1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.......................... 4 3......................

More information

Microsoft Word - jpluginmanual.doc

Microsoft Word - jpluginmanual.doc TogoDocClient TogoDocClient... i 1.... 1 2. TogoDocClient... 1 2.1.... 1 2.1.1. JDK 5.0... 1 2.1.2. Eclipse... 1 2.1.3.... 1 2.1.4.... 2 2.2.... 3 2.2.1.... 3 2.2.2.... 4 2.3. Eclipse Commands... 5 2.3.1....

More information

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML Web 工学博士大堀隆文 博士 ( 工学 ) 木下正博 共著 World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML ii HTML CSS CSS HTML HTML HTML HTML Eclipse Eclipse Eclipse

More information

HTML CSS CSS CSS A LIST APART Fluid Grid Fluid Image Media Queries Fluid Grid Grid Design Fluid Grid 60px 20px 620px 300px 960px 620 960 100 300 960 100 =64.58333% =31.25% 960px 60px 20px 960px 1 =60px

More information

29 28 39 1936 Acquiring technique and forming character in physical education after 1936 Analysis of articles of Kenji Shinozaki FUJIKAWA Kazutoshi The United Graduate School of Education Tokyo Gakugei

More information

2

2 1 2 3 4 5 6 7 ) N 8 9 10 11 12 ( ) 13 ``Anna Ivanovna, don t you understand that I loved you from the first moment I saw you, nay, before I saw you, when I read your letters? I love you not as a friend-no,

More information

untitled

untitled -1- -2- -3- -4- -5- OPERATION 44.4% 20.4% 14.8% 20.4% RECEIVING OPERATION CALLING OTHERS -6- (Evaluation) (Synthesis) (Analysis) (Application) (Comprehension) (Knowledge) -7- Level 3 Level 2 Level 1 Level

More information

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

Microsoft Word - Live Meeting Help.docx

Microsoft Word - Live Meeting Help.docx 131011 101919 161719 19191110191914 11191417 101919 1915101919 Microsoft Office Live Meeting 2007 191714191412 1913191919 12 151019121914 19151819171912 17191012151911 17181219 1610121914 19121117 12191517

More information

manual.dvi

manual.dvi oscommerce 2002 9 6 oscommerce oscommerce 2.2 1 1 1.1................................................. 1 1.1.1......................................... 1 1.2.................................................

More information

Read the following text messages. Study the names carefully. 次のメッセージを読みましょう 名前をしっかり覚えましょう Dear Jenny, Iʼm Kim Garcia. Iʼm your new classmate. These ar

Read the following text messages. Study the names carefully. 次のメッセージを読みましょう 名前をしっかり覚えましょう Dear Jenny, Iʼm Kim Garcia. Iʼm your new classmate. These ar LESSON GOAL: Can read a message. メッセージを読めるようになろう Complete the conversation using your own information. あなた自身のことを考えて 会話を完成させましょう 1. A: Whatʼs your name? B:. 2. A: Whatʼs your phone number, (tutor says studentʼs

More information

Windowsユーザーの為のOracle Database セキュリティ入門

Windowsユーザーの為のOracle Database セキュリティ入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

BlueJ 2.0.1 BlueJ 2.0.x Michael Kölling Mærsk Institute University of Southern Denmark Toin University of Yokohama Alberto Palacios Pawlovsky 17 4 4 3 1 5 1.1 BlueJ.....................................

More information

Xen入門 ppt

Xen入門 ppt http://begi.net/ Xen Xen 2 Fedora Core 5 IP IP IP 192.168.1.10/24 server.example.com HDD Web Disabled SELinux Disabled 3 Xen Virtual Machine Monitor 4 Hypervisor Xenoserver 5 6 Xen OS VT AMD-V OSWindows

More information

Xen入門 ppt

Xen入門 ppt http://begi.net/ Xen Xen 2 1 Fedora Core 5 IP IP IP 192.168.1.10/24 server.example.com HDD Web Disabled SELinux Disabled 3 Xen Virtual Machine Monitor 4 Hypervisor Xenoserver 2 5 6 Xen OS VT AMD-V OSWindows

More information

Cisco ASA Firepower ASA Firepower

Cisco ASA Firepower ASA Firepower Cisco ASA Firepower ASA Firepower 1 2 3 4 1 1-1 Cisco ASA Cisco ASA Firepower Cisco ASA with Firepower Services Cisco Adaptive Security Device Manager ASDM MEMO Cisco ASA with Firepower Services Application

More information

2 3 4 5 6 7 8 9 10 11 Licca is always with you 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 30 30 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31

More information

Insert VERITAS™ White Paper Title Here

Insert VERITAS™ White Paper Title Here WHITE PAPER Microsoft SharePoint Portal Server 2003 VERITAS Backup Exec 10 for Windows Servers Microsoft SharePoint Portal Server ...3...3 SharePoint Portal Server...4...4...4...5 Backup Exec 10...5 Backup

More information

Introduction Purpose The course describes library configuration and usage in the High Performance Embedded Workshop (HEW), which speeds development of

Introduction Purpose The course describes library configuration and usage in the High Performance Embedded Workshop (HEW), which speeds development of Introduction Purpose The course describes library configuration and usage in the High Performance Embedded Workshop (HEW), which speeds development of software for embedded systems. Objectives Learn the

More information

untitled

untitled ( ) ( ) ( ) ( ) ( ) ( ) 20 60 40 80 5-5 5-5 30 30 ALT Michael Brown Hello, everyone. My name is Michael Brown. Please call me Mike. I m twenty-five years old. I m from Ottawa in Canada. Do you know Ottawa?

More information

AN 100: ISPを使用するためのガイドライン

AN 100: ISPを使用するためのガイドライン ISP AN 100: In-System Programmability Guidelines 1998 8 ver.1.01 Application Note 100 ISP Altera Corporation Page 1 A-AN-100-01.01/J VCCINT VCCINT VCCINT Page 2 Altera Corporation IEEE Std. 1149.1 TCK

More information

_bodik.key

_bodik.key RDF Gnavi() WWW 4 www Resource Description Framework rdfs:type schema:website http://city.fukuoka.lg.jp schema:about schema:lastreviewed rdfs:label db:fukuoka "2015-2-1"^^xsd:date rdfs:label

More information

JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4.

JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4. http://www1.iwate-ed.jp/ JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4.d 5.4.e 5.5.a 5.5.b 5.5.c

More information

橡ボーダーライン.PDF

橡ボーダーライン.PDF 1 ( ) ( ) 2 3 4 ( ) 5 6 7 8 9 10 11 12 13 14 ( ) 15 16 17 18 19 20 ( ) 21 22 23 24 ( ) 25 26 27 28 29 30 ( ) 31 To be or not to be 32 33 34 35 36 37 38 ( ) 39 40 41 42 43 44 45 46 47 48 ( ) 49 50 51 52

More information

- 2 -

- 2 - - 1 - - 2 - - 3 - - 4 - - 5 - ( ) - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - What is your hobby? - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27

More information

2 2 2 6 9 9 10 14 18 19 21 22 22 Java 23 24 25 25 26 30 31 32 39 46 53 55 58 2 2.0 2.0R Ver.2.0R Java Java 2.0 2.0R 2.0R 2.0 Ver2.0 2.0R Ver2.0R 19 Sun Sun Microsystems Java Java Sun Microsystems, Inc.

More information

untitled

untitled -1- -2- -3- TV Guess My dream -4- NHK My dream -5- 1213 It's summer in ~ now./ It's winter in ~ now. /Where do you want to go ~? / I want to go to ~./ China is large. /America is large. America /Australia/

More information

388-356697252-2.pdf

388-356697252-2.pdf 専修大学 ネットワーク情報学部 2012年度 特殊演習 (Webプログラミング) 新居雅行 / Masayuki Nii 2 HTML/CSS 2012 4 23 1 2-1 Web 2 2-1 80 SSL Apache WindowsIIS Internet Information Server HTTP HyperText Transfer Protocol HTML HTML 1 1 [ URI]

More information

10 2000 11 11 48 ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) CU-SeeMe NetMeeting Phoenix mini SeeMe Integrated Services Digital Network 64kbps 16kbps 128kbps 384kbps

More information

HP Server tc2120 Microsoft Windows 2000 Server SP3 HP P

HP Server tc2120 Microsoft Windows 2000 Server SP3 HP P HP Server tc2120 Microsoft Windows 2000 ServerSP3 HP P312977-191 200210 Hewlett-Packard Company Hewlett- Packard Company Hewlett-Packard Company Intel Corporation MicrosoftMS-DOSWindows Windows NT Microsoft

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

untitled

untitled Caché Agenda InterSystems Caché 2009.1.NET Gateway (2009.1) Truncate Caché Databases ( ( Studio Caché ObjectScript SQL Object Security InterSystems (200x.1, 200x.2) 5.2 : 2006/6 2007.1 : 2007/6 2008.1

More information

"lmportance of Community Work Function in Care-management Practice" OWADA Takesi The essence of care-management and the duty of care manag:ers are to support home care with making fu1i use of the social

More information

Emacs Hacking CVS Emacs GDB + Elscreen ( ) makoto/e/emacs-gdb.pdf Emacs Hacking p.1/23

Emacs Hacking CVS Emacs GDB + Elscreen ( )   makoto/e/emacs-gdb.pdf Emacs Hacking p.1/23 Emacs Hacking CVS Emacs GDB + Elscreen ( ) http://www.ki.nu/ makoto/e/emacs-gdb.pdf Emacs Hacking p.1/23 Introduction Emacs Hacking c-mode Emacs Hacking p.2/23 Introduction Emacs Hacking c-mode M-x gdb

More information

Complex Lab – Operating Systems - Graphical Console

Complex Lab – Operating Systems - Graphical Console Complex Lab Operating Systems Graphical Console Martin Küttler Last assignment Any questions? Any bug reports, whishes, etc.? 1 / 13 We are here Pong Server Paddle Client 1 Paddle Client 2 Memory Management

More information

2 : Open Clip Art Library [4] 2 3 4 5 6 2. 2 2. 1 Microsoft Office PowerPoint Web PowerPoint 2 Yahoo! Web [5] SlideShare 2. 1. 1 Yahoo! Web Yahoo! Web

2 : Open Clip Art Library [4] 2 3 4 5 6 2. 2 2. 1 Microsoft Office PowerPoint Web PowerPoint 2 Yahoo! Web [5] SlideShare 2. 1. 1 Yahoo! Web Yahoo! Web DEWS2008 E4-4 606-8501 E-mail: {hsato,oyama,tanaka}@dl.kuis.kyoto-u.ac.jp.. Supporting the Selection of Images Based on Referential Semantics from Surrounding Information of the Image in Presentation Files

More information

取説_KX-PW101CL_PW102CW

取説_KX-PW101CL_PW102CW See pages 270 and 271 for English Guide. KX-PW101CL KX-PW102CW Ni-Cd F1 F1 F2 F4 F1 F2 F4 F1 F2 F4 2 1 2 Ni-Cd Ni-Cd NTT NTT F1 F1 F1 F1 F1 F1 F1 F1 F4 F4 F4 F1 F4 F1

More information

untitled

untitled Dell PowerEdgeDell EMC CX500BakBone NetVault VMware ESX Server 2.5 & NetVault... 2... 2... 3 OS... 4 VMWARE ESX SERVER 2.5 SERVICE CONSOLE... 5 VMWARE ESX SERVER 2.5 NETVAULT... 6... 7 OS... 7 OS... 8

More information

ウェブデザイン技能検定学科試験 2 級 1. 各設問において 正しいものは 1 を 間違っているものは 2 を 該当設問の解答欄に記せ 第 1 問 文字実体参照の は 改行しない半角スペースを表示する 第 2 問 HTML 5.2 では コメントの中に連続したハイフンを入れることができる 第 3 問

ウェブデザイン技能検定学科試験 2 級 1. 各設問において 正しいものは 1 を 間違っているものは 2 を 該当設問の解答欄に記せ 第 1 問 文字実体参照の は 改行しない半角スペースを表示する 第 2 問 HTML 5.2 では コメントの中に連続したハイフンを入れることができる 第 3 問 1. 各設問において 正しいものは 1 を 間違っているものは 2 を 該当設問の解答欄に記せ 第 1 問 文字実体参照の は 改行しない半角スペースを表示する 第 2 問 HTML 5.2 では コメントの中に連続したハイフンを入れることができる 第 3 問 HTTP 通信において GET は HTTP メッセージヘッダの第 2 行目に記される 第 4 問 HTML 5.2 では hgroup 要素を使用できる

More information

STEP 02 Memo: Momijigari and New Year s in Japan About Momijigari in Japan About New Year s in Japan Others Questions to your Pen Pal STEP 03 Final: W

STEP 02 Memo: Momijigari and New Year s in Japan About Momijigari in Japan About New Year s in Japan Others Questions to your Pen Pal STEP 03 Final: W Eigo Ganbare!! Class ( ) No. ( ) Name ( ) The Pen Pal Exchange Project 2nd year You received your pen pal letter! You are excited. Did you get souvenirs from your pen pal? Now, you re going introduce your

More information

052-XML04/fiÁ1-part3-’ÓŠ¹

052-XML04/fiÁ1-part3-’ÓŠ¹ & XML Data Store Part 3 Feature*1 AKIMOTO, Shougo i i i i i i inter 52 XML Magazine 04 i i i i i i i i P a r t 3 i i i i i XML Magazine 04 53 & XML Data Store Feature*1 i i inter i inter i inter inter

More information

6 50G5S 3 34 47 56 63 http://toshibadirect.jp/room048/ 74 8 9 3 4 5 6 3446 4755 566 76373 7 37 3 8 8 3 3 74 74 79 8 30 75 0 0 4 4 0 7 63 50 50 3 3 6 3 5 4 4 47 7 48 48 48 48 7 36 48 48 3 36 37 6 3 3 37

More information

6 3 34 50G5 47 56 63 74 8 9 3 4 5 6 3446 4755 566 76373 7 37 3 8 8 3 3 74 74 79 8 30 75 0 0 4 4 0 7 63 50 50 3 3 6 3 5 4 4 47 7 48 48 48 48 7 36 48 48 3 36 37 6 3 3 37 9 00 5 45 3 4 5 5 80 8 8 74 60 39

More information

取説_KX-PW38CL_PW48CL

取説_KX-PW38CL_PW48CL KX-PW38CL KX-PW48CL See pages 260 and 261 for English Guide. 2 3 1 2 NTT NTT Ni-Cd Ni-Cd 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 0 6 1 2 3

More information

CONTENTS 3 5 10 12 13 Public relations brochure of Higashikawa 10 2015 October No.744 14 15 16 24 25 26 2

CONTENTS 3 5 10 12 13 Public relations brochure of Higashikawa 10 2015 October No.744 14 15 16 24 25 26 2 10 2015 October No.744 CONTENTS 3 5 10 12 13 Public relations brochure of Higashikawa 10 2015 October No.744 14 15 16 24 25 26 2 3 4 HIGASHIKAWA TOWN NEWS 5 HIGASHIKAWA TOWN NEWS HIGASHIKAWA TOWN NEWS

More information

InfoPros13_digest.key

InfoPros13_digest.key ! CSS sample2.css h1 h1 { color : blue ; } : ; { } : 14 : : p { font-size: 14pt; } p { font-style: italic; } p { text-decoration: underline; } p { font-size:

More information

_IMv2.key

_IMv2.key 飯島基 文 customb2b@me.com $ ssh ladmin@im.example.com $ cd /Library/Server/Web/Data/Sites/Default/ $ git clone https://github.com/msyk/inter-mediator.git

More information

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker Centric Manager IT Service

More information

Microsoft Word - j201drills27.doc

Microsoft Word - j201drills27.doc Drill 1: Giving and Receiving (Part 1) [Due date: ] Directions: Describe each picture using the verb of giving and the verb of receiving. E.g.) (1) (2) (3) (4) 1 (5) (6) Drill 2: Giving and Receiving (Part

More information

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information