Revision 76

View differences:

hci/trunk/eneraptor-web-app/grails-app/views/sysLog/live.gsp
21 21
			<label for="timeSpan">Time span</label>
22 22
			<g:select name="timeSpan" from="${1..60}" style="width:50px;" /><span>&nbsp;minutes</span>
23 23
			<br /><br />
24
			<label for="outputDevice">Actions to show</label>
25
			<g:select name="outputDevice" from="${outputDevices}" optionValue="friendlyName" optionKey="deviceId" value="${params.outputDevice}" style="width:300px;" noSelection="${['none':'- None -']}" />
26
			<br /><br />
24 27
			<g:submitButton name="liveGraphSubmit" value="Start" />
25 28
		</form>
26 29
		
......
28 31

  
29 32
	<erptr:box title="Live graph">
30 33
		<g:javascript>
34
			var plot;
31 35
			var running = false;
32 36
			var deviceId;
33 37
			var refreshRate;
34 38
			var timeSpan;
39
			var outputDevice;
35 40
			var data = [[]];
36 41
			var options = {
37 42
				lines: { show: true },
38 43
				points: { show: true },
39
				xaxis: { mode: "time", timeformat: "%y/%m/%d %H:%M" }
44
				xaxis: { mode: "time", timeformat: "%y/%m/%d %H:%M" },
45
				grid: {
46
					markings: []
47
				}
40 48
			};
41 49
		</g:javascript>
42 50
		<p name="textOut" id="textOut" style="font-family:monospace;">Ready.</p>
43 51
		<div class="chart">
44
			<flot:plot id="placeholder" style="width: 900px; height: 300px; padding:5px;" data="data" options="options" />
52
			<div id='placeholder' style='width: 900px; height: 300px; padding:5px;'></div>
53
			<script type='text/javascript'>
54
			jQuery(function (){ 
55
				plot = jQuery.plot(jQuery("#placeholder"),data, options);
56
			});
57
			</script>
45 58
		</div>
59
		
60
		<br />
61
		<p>Legend:</p>
62
		<div id="legendHolder" name="legendHolder"></div>
63
		
64
		<table name="actionLegendHolder" id="actionLegendHolder" width="100%">
65
			<p>A</p>
66
		</table>
67
		
46 68
	</erptr:box>
47 69
	
48 70
	<g:javascript>
......
52 74
		deviceId = $('deviceId').value;
53 75
		refreshRate = $('refreshRate').value * 1000;
54 76
		timeSpan = $('timeSpan').value;
77
		outputDevice = $('outputDevice').value;
55 78
		
56 79
		graphUpdate(deviceId,refreshRate,timeSpan);
57 80
		
58 81
	}
59 82
	
60 83
	function graphUpdate(deviceId,refreshRate,timeSpan) {
61
		var dataurl = '${g.createLink(action:'liveGraph')}?deviceId=' + deviceId + '&timeSpan=' + timeSpan;
84
		var dataurl = '${g.createLink(action:'liveGraph')}?deviceId=' + deviceId + '&timeSpan=' + timeSpan + '&outputDevice=' + outputDevice;
62 85
			
63 86
		function onDataReceived(series) {
87
		
64 88
			data = [];
65
		    data.push(series);
66
		    jQuery.plot(jQuery("#placeholder"), data, options);
67
		    $('textOut').innerHTML = "Refreshed on " + new Date() + ".";
89
		    data.push(series.data);
90
		    
91
		    var newInnerHTML = "";
92
		    options.grid.markings = [];
93
		    
94
		    jQuery.each(series.actionLog, function(iNum,iVal){
95
		    	options.grid.markings.push(
96
		    		{ color: 'red', lineWidth: 1, xaxis: { from: iVal[0], to: iVal[0]} }
97
		    	);
98
		    	newInnerHTML += "<tr><td style=\"width:20px;\"><p style=\"color:red;font-size:smaller;\">" + (iNum+1) + "</p></td><td style=\"width:150px;\">" + new Date(iVal[0]).toLocaleString() + "</td><td>" + iVal[1] + "</td></tr>"
99
		    });
100
		    
101
		    plot = jQuery.plot(jQuery("#placeholder"), data, options);
102
		    jQuery('#actionLegendHolder').html(newInnerHTML);
103
		    
104
		    var o;
105
			var num = 1;
106
			var placeholder = plot.getPlaceholder();
107
			var vertica = getMax(plot.getData()[0].datapoints.points);
108
			
109
			jQuery.each(series.actionLog, function(iNum,iVal){
110
				o = plot.pointOffset({ x: iVal[0], y: vertica});
111
				placeholder.append("<div style=\"position:absolute;left:" + (o.left + 10) + "px;top:" + o.top + "px;color:red;font-size:smaller\"><a href=\"#\" onclick=\"return false;\" title=\"" + iVal[1] + "\">" + num + "</a></div>");
112
				num++;
113
			});
114
			
68 115
		}
69 116
		
70 117
		jQuery.ajax({
......
75 122
        });
76 123
        
77 124
        if(running) {
125
       		$('textOut').innerHTML = "Refreshed on " + new Date() + ".";
78 126
        	setTimeout("graphUpdate(deviceId,refreshRate,timeSpan)",refreshRate);
79
        }
80
        
127
        } 
81 128
	}
129
	
130
	function getMax(points) {
131
		var max = points[1];
132
		for(i = 1; i < points.length; i += 2) {
133
			if(points[i] > max) max = points[i];
134
		}
135
		return max;
136
	}
82 137
	</g:javascript>
83 138

  
84 139
</body>
hci/trunk/eneraptor-web-app/grails-app/views/sysLog/liveGraph.gsp
1 1
{
2
    data: ${data}
2
    data: ${data},
3
    actionLog: [
4
    <g:each in="${actionLog}" var="al">
5
    	<g:if test="${al == actionLog[-1]}">
6
    		[${al[0]},"${al[1]}"]
7
    	</g:if>
8
    	<g:else>
9
    		[${al[0]},"${al[1]}"],
10
    	</g:else>
11
    </g:each>
12
    ]
3 13
}
hci/trunk/eneraptor-web-app/grails-app/controllers/com/eneraptor/hci/SysLogController.groovy
334 334
	}
335 335
	
336 336
	def live = {
337
		
338
		List outputDevices = new ArrayList()
339
		
340
		def crit1 = DeviceInfo.createCriteria()
341
		outputDevices = crit1 {
342
			and {
343
				eq("outputDevice",true)
344
				eq("hwSet",session.hwSet)
345
			}
346
			order("friendlyName","asc")
347
		}
348
		outputDevices << new DeviceInfo(deviceId: 'all',friendlyName: 'All')
337 349
	
338 350
		List devices = new ArrayList()
339 351
		
340
		def crit1 = DeviceInfo.createCriteria()
341
		devices = crit1 {
352
		def crit2 = DeviceInfo.createCriteria()
353
		devices = crit2 {
342 354
			and {
343 355
				eq("inputDevice",true)
344 356
				eq("hwSet",session.hwSet)
......
346 358
			order("friendlyName","asc")
347 359
		}
348 360
		
349
		[devices: devices]
361
		[devices: devices,outputDevices:outputDevices]
350 362
		
351 363
	}
352 364
	
353 365
	def liveGraph = {
354 366
		
355 367
		List data = new ArrayList()
368
		
356 369
		java.util.Date now = new java.util.Date()
370
		java.util.Date beforeNMinutes = new java.util.Date(
371
			now.time - (60000 * (params.timeSpan as int))
372
		)
357 373
		
374
		List actionLog = new ArrayList()
375
		List actionData = new ArrayList()
376
		
358 377
		if(params['deviceId'] && params['timeSpan']) {
359 378
			
360
			java.util.Date beforeNMinutes = new java.util.Date(
361
				now.time - (60000 * (params.timeSpan as int))
362
			)
363
			
364 379
			def c = LoggedData.createCriteria()
365 380
			def results = c {
366 381
				and {
......
376 391
			
377 392
		}
378 393
		
379
		[params:params, data:data]
394
		if(params.outputDevice != 'none') {
380 395
			
396
			if(params.outputDevice != 'all') {
397
				def crit2 = LoggedData.createCriteria()
398
				actionData = crit2 {
399
					and {
400
						eq("deviceId",params.outputDevice)
401
						between("dateRecieved",beforeNMinutes,now)
402
					}
403
					order("dateRecieved","asc")
404
				}
405
			} else {
406
			
407
				List allOutputDevices = new ArrayList()
408
				allOutputDevices = DeviceInfo.findAllByOutputDevice(true)
409
				
410
				def crit3 = LoggedData.createCriteria()
411
				actionData = crit3 {
412
					and {
413
						"in"("deviceId",allOutputDevices*.deviceId)
414
						between("dateRecieved",beforeNMinutes,now)
415
					}
416
					order("dateRecieved","asc")
417
				}
418
			}
419
			
420
			actionData.each {
421
				actionLog << [it.dateRecieved.getTime(),it.reportedData]
422
			}
423
			
424
		}
425
		
426
		[params:params, data:data, actionLog:actionLog]
427
			
381 428
	}
382 429
	
383 430
}
presentation/prezi/prezi.app/Contents/Info.plist
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
<plist version="1.0">
4
<dict>
5
	<key>CFBundleDevelopmentRegion</key>
6
	<string>en_US</string>
7
	<key>CFBundleDocumentTypes</key>
8
	<array>
9
		<dict>
10
			<key>CFBundleTypeExtensions</key>
11
			<array>
12
				<string>swf</string>
13
				<string>spl</string>
14
			</array>
15
			<key>CFBundleTypeIconFile</key>
16
			<string>document</string>
17
			<key>CFBundleTypeName</key>
18
			<string>Shockwave Flash Movie</string>
19
			<key>CFBundleTypeOSTypes</key>
20
			<array>
21
				<string>SWFL</string>
22
			</array>
23
			<key>CFBundleTypeRole</key>
24
			<string>Viewer</string>
25
		</dict>
26
		<dict>
27
			<key>CFBundleTypeExtensions</key>
28
			<array>
29
				<string>flv</string>
30
			</array>
31
			<key>CFBundleTypeIconFile</key>
32
			<string>mflv</string>
33
			<key>CFBundleTypeName</key>
34
			<string>Macromedia Flash Video</string>
35
			<key>CFBundleTypeOSTypes</key>
36
			<array>
37
				<string>MFLV</string>
38
			</array>
39
			<key>CFBundleTypeRole</key>
40
			<string>None</string>
41
		</dict>
42
		<dict>
43
			<key>CFBundleTypeExtensions</key>
44
			<array>
45
				<string>f4v</string>
46
			</array>
47
			<key>CFBundleTypeIconFile</key>
48
			<string>document_f4v.icns</string>
49
			<key>CFBundleTypeMIMETypes</key>
50
			<array>
51
				<string>video/mp4</string>
52
			</array>
53
			<key>CFBundleTypeName</key>
54
			<string>Video for Adobe Flash Player</string>
55
			<key>CFBundleTypeOSTypes</key>
56
			<array>
57
				<string>F4V</string>
58
			</array>
59
			<key>CFBundleTypeRole</key>
60
			<string>None</string>
61
		</dict>
62
		<dict>
63
			<key>CFBundleTypeExtensions</key>
64
			<array>
65
				<string>f4p</string>
66
			</array>
67
			<key>CFBundleTypeIconFile</key>
68
			<string>document_f4p.icns</string>
69
			<key>CFBundleTypeMIMETypes</key>
70
			<array>
71
				<string>video/mp4</string>
72
			</array>
73
			<key>CFBundleTypeName</key>
74
			<string>Protected Media for Adobe Flash Player</string>
75
			<key>CFBundleTypeOSTypes</key>
76
			<array>
77
				<string>F4P</string>
78
			</array>
79
			<key>CFBundleTypeRole</key>
80
			<string>Viewer</string>
81
		</dict>
82
		<dict>
83
			<key>CFBundleTypeExtensions</key>
84
			<array>
85
				<string>f4a</string>
86
			</array>
87
			<key>CFBundleTypeIconFile</key>
88
			<string>document_f4a.icns</string>
89
			<key>CFBundleTypeMIMETypes</key>
90
			<array>
91
				<string>audio/mp4</string>
92
			</array>
93
			<key>CFBundleTypeName</key>
94
			<string>Audio for Adobe Flash Player</string>
95
			<key>CFBundleTypeOSTypes</key>
96
			<array>
97
				<string>F4A</string>
98
			</array>
99
			<key>CFBundleTypeRole</key>
100
			<string>Viewer</string>
101
		</dict>
102
	</array>
103
	<key>CFBundleExecutable</key>
104
	<string>Flash Player</string>
105
	<key>CFBundleGetInfoString</key>
106
	<string>prezi.com offline player r846 Copyright (c) Prezi.com. All rights reserved</string>
107
	<key>CFBundleIconFile</key>
108
	<string>prezi.icns</string>
109
	<key>CFBundleIdentifier</key>
110
	<string>com.prezi.Prezi.app</string>
111
	<key>CFBundleInfoDictionaryVersion</key>
112
	<string>6.0</string>
113
	<key>CFBundleLongVersionString</key>
114
	<string>prezi.com r846</string>
115
	<key>CFBundleName</key>
116
	<string>prezi.com</string>
117
	<key>CFBundlePackageType</key>
118
	<string>APPL</string>
119
	<key>CFBundleShortVersionString</key>
120
	<string>r846</string>
121
	<key>CFBundleSignature</key>
122
	<string>SWF2</string>
123
	<key>CFBundleVersion</key>
124
	<string>2.0</string>
125
	<key>CSResourcesFileMapped</key>
126
	<true/>
127
	<key>LSPrefersCarbon</key>
128
	<string>YES</string>
129
	<key>NSAppleScriptEnabled</key>
130
	<string>YES</string>
131
	<key>NSHumanReadableCopyright</key>
132
	<string>Copyright prezi.com. All Rights Reserved.</string>
133
</dict>
134
</plist>
presentation/prezi/prezi.app/Contents/PkgInfo
1
APPLSWF2
presentation/prezi/data/content.xml
1
<?xml version='1.0' encoding='UTF-8'?>
2
<zuiprezi>
3
  <version>1</version>
4
  <zui-table>
5
    <settings>
6
      <autoplay>
7
        <delay>4000</delay>
8
      </autoplay>
9
      <bounds height="276660.33105360443" width="276660.33105360443" x="-123605.09179502979" y="-50810.86875128363" />
10
    </settings>
11
    <object class="circle" id="11_6591075" r="0" s="367.7037963867187" type="button" x="14724.95" y="87520.5">
12
      <type>circle<url /></type>
13
      <size>
14
        <w>752.4</w>
15
        <h>752.4</h>
16
      </size>
17
    </object>
18
    <object class="invisible" id="2_6582810" r="0" s="139.8888268753491" type="button" x="-1022.25" y="1337.35">
19
      <type>invisible<url /></type>
20
      <size>
21
        <w>582</w>
22
        <h>182</h>
23
      </size>
24
    </object>
25
    <object class="head" id="0_6573036" r="0" s="414.9975280761719" type="label" x="5595.85" y="-1958.55">
26
      <textfield>
27
        <x>-49.25</x>
28
        <y>-15.25</y>
29
        <text>Eneraptor</text>
30
        <htmlText>
31
          <P ALIGN="LEFT">
32
            <FONT COLOR="#000000" FACE="LiberationSerif-Regular" KERNING="0" LETTERSPACING="0" SIZE="24">Eneraptor</FONT>
33
          </P>
34
        </htmlText>
35
      <url /></textfield>
36
    </object>
37
    <object class="strong" id="1_6573036" r="0" s="146.4212188720703" type="label" x="-3.4" y="6374.8">
38
      <textfield>
39
        <x>-255.6</x>
40
        <y>-15.25</y>
41
        <text>Making your data center greener on a low budget</text>
42
        <htmlText>
43
          <P ALIGN="LEFT">
44
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">Making your data center greener on a low budget</FONT>
45
          </P>
46
        </htmlText>
47
      <url /></textfield>
48
    </object>
49
    <object class="invisible" id="4_6582810" r="0" s="7.003204345703125" type="button" x="19392.8" y="-887.55">
50
      <type>invisible<url /></type>
51
      <size>
52
        <w>306.15</w>
53
        <h>359.55</h>
54
      </size>
55
    </object>
56
    <object class="body" id="2_6573036" r="0" s="4.575653076171875" type="label" x="19362.85" y="-1913">
57
      <textfield>
58
        <x>-164.1</x>
59
        <y>-16.4</y>
60
        <text>University of Ljubljana, Slovenia</text>
61
        <htmlText>
62
          <P ALIGN="LEFT">
63
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">University of Ljubljana, Slovenia</FONT>
64
          </P>
65
        </htmlText>
66
      <url /></textfield>
67
    </object>
68
    <object class="body" id="3_6573036" r="0" s="4" type="label" x="19412.85" y="-1676.95">
69
      <textfield>
70
        <x>-232.75</x>
71
        <y>-16.4</y>
72
        <text>Faculty of Computer and Information Science</text>
73
        <htmlText>
74
          <P ALIGN="LEFT">
75
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Faculty of Computer and Information Science</FONT>
76
          </P>
77
        </htmlText>
78
      <url /></textfield>
79
    </object>
80
    <object id="1_6574273" r="0" s="2.6007606983184814" type="image" x="13780.9" y="-2169.7">
81
      <source h="76" w="176">26472757.gif<url>26472757.gif</url>
82
      </source>
83
    <resource><id>
84
        26472757
85
        </id><url>http://0103.static.prezi.com.s3.amazonaws.com/media/8/2/6/274c2ecf168388718464824ac1300d6f2f964.gif</url></resource></object>
86
    <object class="body" id="2_6574273" r="0" s="4" type="label" x="19410.15" y="-1272.05">
87
      <textfield>
88
        <x>-85.65</x>
89
        <y>-16.4</y>
90
        <text>Aleksander Beลกir</text>
91
        <htmlText>
92
          <P ALIGN="LEFT">
93
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Aleksander Beลกir</FONT>
94
          </P>
95
        </htmlText>
96
      <url /></textfield>
97
    </object>
98
    <object class="body" id="3_6574273" r="0" s="4" type="label" x="19412.85" y="-1102.35">
99
      <textfield>
100
        <x>-67.9</x>
101
        <y>-16.4</y>
102
        <text>David Boลพjak</text>
103
        <htmlText>
104
          <P ALIGN="LEFT">
105
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">David Boลพjak</FONT>
106
          </P>
107
        </htmlText>
108
      <url /></textfield>
109
    </object>
110
    <object class="body" id="4_6574273" r="0" s="4" type="label" x="19410.1" y="-910.1">
111
      <textfield>
112
        <x>-63.5</x>
113
        <y>-16.4</y>
114
        <text>Janez Barbiฤ</text>
115
        <htmlText>
116
          <P ALIGN="LEFT">
117
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Janez Barbiฤ</FONT>
118
          </P>
119
        </htmlText>
120
      <url /></textfield>
121
    </object>
122
    <object class="body" id="5_6574273" r="0" s="4" type="label" x="19410.1" y="-708.85">
123
      <textfield>
124
        <x>-65.65</x>
125
        <y>-16.4</y>
126
        <text>Vanฤ Levstik</text>
127
        <htmlText>
128
          <P ALIGN="LEFT">
129
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Vanฤ Levstik</FONT>
130
          </P>
131
        </htmlText>
132
      <url /></textfield>
133
    </object>
134
    <object class="body" id="6_6574273" r="0" s="4" type="label" x="19410.1" y="-283.15">
135
      <textfield>
136
        <x>-48.05</x>
137
        <y>-16.4</y>
138
        <text>Mentors:</text>
139
        <htmlText>
140
          <P ALIGN="LEFT">
141
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Mentors:</FONT>
142
          </P>
143
        </htmlText>
144
      <url /></textfield>
145
    </object>
146
    <object class="body" id="7_6574273" r="0" s="4" type="label" x="19409.85" y="-80">
147
      <textfield>
148
        <x>-131.45</x>
149
        <y>-16.4</y>
150
        <text>Prof. PhD Andrej Brodnik</text>
151
        <htmlText>
152
          <P ALIGN="LEFT">
153
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Prof. PhD Andrej Brodnik</FONT>
154
          </P>
155
        </htmlText>
156
      <url /></textfield>
157
    </object>
158
    <object class="body" id="8_6574273" r="0" s="4" type="label" x="19409.9" y="45.75">
159
      <textfield>
160
        <x>-98.3</x>
161
        <y>-16.4</y>
162
        <text>and helpful helpers</text>
163
        <htmlText>
164
          <P ALIGN="LEFT">
165
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">and helpful helpers</FONT>
166
          </P>
167
        </htmlText>
168
        <w>196.65</w>
169
        <h>32.8</h>
170
      <url /></textfield>
171
    </object>
172
    <object class="circle" id="9_6574273" r="29.732110479792684" s="134.83971886568423" type="button" x="68885.9" y="29728.25">
173
      <type>circle<url /></type>
174
      <size>
175
        <w>445.4</w>
176
        <h>445.4</h>
177
      </size>
178
    </object>
179
    <object class="strong" id="10_6574273" r="29.73211025049964" s="286.33396479776894" type="label" x="72641.2" y="7836.1">
180
      <textfield>
181
        <x>-68.2</x>
182
        <y>-15.25</y>
183
        <text>The problem</text>
184
        <htmlText>
185
          <P ALIGN="LEFT">
186
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">The problem</FONT>
187
          </P>
188
        </htmlText>
189
      <url /></textfield>
190
    </object>
191
    <object class="body" id="11_6574273" r="21.109948850394392" s="128.00000005397487" type="label" x="67455.25" y="16643.45">
192
      <textfield>
193
        <x>-148.75</x>
194
        <y>-16.4</y>
195
        <text>Enormous amounts of power</text>
196
        <htmlText>
197
          <P ALIGN="LEFT">
198
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Enormous amounts of power</FONT>
199
          </P>
200
        </htmlText>
201
      <url /></textfield>
202
    </object>
203
    <object class="body" id="12_6574273" r="36.09427665403288" s="128.00000781202857" type="label" x="75549.6" y="36585.6">
204
      <textfield>
205
        <x>-186.8</x>
206
        <y>-16.4</y>
207
        <text>A problem in corporate environment</text>
208
        <htmlText>
209
          <P ALIGN="LEFT">
210
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">A problem in corporate environment</FONT>
211
          </P>
212
        </htmlText>
213
      <url /></textfield>
214
    </object>
215
    <object class="body" id="13_6574273" r="29.603606987978846" s="127.6399994109724" type="label" x="58303" y="40282.6">
216
      <textfield>
217
        <x>-199</x>
218
        <y>-30.8</y>
219
        <text>Redundant triple-safe
220
air conditioning systems</text>
221
        <htmlText>
222
          <P ALIGN="CENTER">
223
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Redundant triple-safe</FONT>
224
          </P>
225
          <P ALIGN="CENTER">
226
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">air conditioning systems</FONT>
227
          </P>
228
        </htmlText>
229
        <w>398</w>
230
        <h>61.6</h>
231
      <url /></textfield>
232
    </object>
233
    <object class="circle" id="14_6574273" r="65.00592401321998" s="210.4085682106821" type="button" x="101122.45" y="85026.7">
234
      <type>circle<url /></type>
235
      <size>
236
        <w>232.5</w>
237
        <h>232.5</h>
238
      </size>
239
    </object>
240
    <object class="strong" id="15_6574273" r="57.39653602958223" s="220.86878122223231" type="label" x="114127.8" y="70323.7">
241
      <textfield>
242
        <x>-65.55</x>
243
        <y>-15.25</y>
244
        <text>The solution</text>
245
        <htmlText>
246
          <P ALIGN="LEFT">
247
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">The solution</FONT>
248
          </P>
249
        </htmlText>
250
      <url /></textfield>
251
    </object>
252
    <object class="body" id="16_6574273" r="65.00592385787756" s="127.99999577204788" type="label" x="112549.1" y="87680.45">
253
      <textfield>
254
        <x>-126.6</x>
255
        <y>-30.8</y>
256
        <text>Automatic regulation of
257
system parameters</text>
258
        <htmlText>
259
          <P ALIGN="CENTER">
260
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Automatic regulation of</FONT>
261
          </P>
262
          <P ALIGN="CENTER">
263
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">system parameters</FONT>
264
          </P>
265
        </htmlText>
266
        <w>253.2</w>
267
        <h>61.6</h>
268
      <url /></textfield>
269
    </object>
270
    <object class="body" id="17_6574273" r="65.00592401321998" s="128" type="label" x="130309.7" y="102212.8">
271
      <textfield>
272
        <x>-56.05</x>
273
        <y>-16.4</y>
274
        <text>Eneraptor!</text>
275
        <htmlText>
276
          <P ALIGN="LEFT">
277
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Eneraptor!</FONT>
278
          </P>
279
        </htmlText>
280
      <url /></textfield>
281
    </object>
282
    <object id="22_6574273" r="65.00592401321998" s="45.78219108960145" type="arrow" x="124255.7" y="89691.6">
283
      <sp x="2789.1" y="-1642"><url /></sp>
284
      <ep x="3037.5" y="-1641.8" />
285
    </object>
286
    <object class="body" id="23_6574273" r="57.4200217407712" s="127.8092323813571" type="label" x="97846.6" y="81781.55">
287
      <textfield>
288
        <x>-140.2</x>
289
        <y>-30.8</y>
290
        <text>Centralised system control
291
and supervision</text>
292
        <htmlText>
293
          <P ALIGN="CENTER">
294
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Centralised system control</FONT>
295
          </P>
296
          <P ALIGN="CENTER">
297
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">and supervision</FONT>
298
          </P>
299
        </htmlText>
300
        <w>280.4</w>
301
        <h>61.6</h>
302
      <url /></textfield>
303
    </object>
304
    <object class="body" id="25_6574273" r="46.77740143489188" s="109.71429011596312" type="label" x="87504.5" y="84825.9">
305
      <textfield>
306
        <x>-57.1</x>
307
        <y>-16.4</y>
308
        <text>Ease of use</text>
309
        <htmlText>
310
          <P ALIGN="LEFT">
311
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Ease of use</FONT>
312
          </P>
313
        </htmlText>
314
      <url /></textfield>
315
    </object>
316
    <object class="body" id="26_6574273" r="65.00592225790123" s="109.71428712617944" type="label" x="92527.75" y="97800.1">
317
      <textfield>
318
        <x>-53.2</x>
319
        <y>-16.4</y>
320
        <text>Scalability</text>
321
        <htmlText>
322
          <P ALIGN="LEFT">
323
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Scalability</FONT>
324
          </P>
325
        </htmlText>
326
      <url /></textfield>
327
    </object>
328
    <object class="body" id="27_6574273" r="65.0059240634789" s="109.71428551437612" type="label" x="84155.15" y="91932.7">
329
      <textfield>
330
        <x>-70.6</x>
331
        <y>-16.4</y>
332
        <text>Upgradability</text>
333
        <htmlText>
334
          <P ALIGN="LEFT">
335
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Upgradability</FONT>
336
          </P>
337
        </htmlText>
338
      <url /></textfield>
339
    </object>
340
    <object id="1_6582810" r="88.20816023408335" s="70.00406369215861" type="image" x="90489.25" y="138724.55">
341
      <source h="327" w="562">26480004.swf<url>26480004.swf</url>
342
      </source>
343
    <resource><id>
344
        26480004
345
        </id><url>http://0103.static.prezi.com.s3.amazonaws.com/converted/a/c/7/22f39652995cce46f3cdf6a0ceffbb84613be.swf</url></resource></object>
346
    <object class="circle" id="28_6574273" r="88.08462073514731" s="178.0283161648268" type="button" x="90494.15" y="138952.1">
347
      <type>circle<url /></type>
348
      <size>
349
        <w>207.8</w>
350
        <h>207.8</h>
351
      </size>
352
    </object>
353
    <object class="strong" id="29_6574273" r="88.08462066684582" s="211.2440943260427" type="label" x="103730.55" y="142277.35">
354
      <textfield>
355
        <x>-56.2</x>
356
        <y>-15.25</y>
357
        <text>Bottom up</text>
358
        <htmlText>
359
          <P ALIGN="LEFT">
360
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">Bottom up</FONT>
361
          </P>
362
        </htmlText>
363
      <url /></textfield>
364
    </object>
365
    <object class="invisible" id="7_6582810" r="88.08462073514731" s="51.62352363536516" type="button" x="91115" y="131247.1">
366
      <type>invisible<url /></type>
367
      <size>
368
        <w>332</w>
369
        <h>131</h>
370
      </size>
371
    </object>
372
    <object class="invisible" id="8_6582810" r="88.08462073514731" s="51.62352363536516" type="button" x="90790.4" y="144958.9">
373
      <type>invisible<url /></type>
374
      <size>
375
        <w>457</w>
376
        <h>407</h>
377
      </size>
378
    </object>
379
    <object class="circle" id="9_6582810" r="124.83647075163222" s="339.07379741465843" type="button" x="66803.35" y="166401.85">
380
      <type>circle<url /></type>
381
      <size>
382
        <w>54</w>
383
        <h>54</h>
384
      </size>
385
    </object>
386
    <object class="strong" id="10_6582810" r="124.83298819954668" s="107.76538063135378" type="label" x="72230.5" y="167499.2">
387
      <textfield>
388
        <x>-53.6</x>
389
        <y>-15.25</y>
390
        <text>Top down</text>
391
        <htmlText>
392
          <P ALIGN="LEFT">
393
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">Top down</FONT>
394
          </P>
395
        </htmlText>
396
      <url /></textfield>
397
    </object>
398
    <object id="12_6582810" r="124.8329606457391" s="11.392736555169666" type="image" x="67607.55" y="164481">
399
      <source h="619" w="892">26482046.png<url>26482046.png</url>
400
      </source>
401
    <resource><id>
402
        26482046
403
        </id><url>http://0103.static.prezi.com.s3.amazonaws.com/media/a/c/6/778d7e0bf1c838df1a1405024eac58e88ca18.png</url></resource></object>
404
    <object id="16_6582810" r="124.83296629883674" s="10.15570608619735" type="image" x="62112.45" y="166235.35">
405
      <source h="576" w="889">26485863.PNG<url>26485863.PNG</url>
406
      </source>
407
    <resource><id>
408
        26485863
409
        </id><url>http://0103.static.prezi.com.s3.amazonaws.com/media/6/e/1/bf7c3debebf34af480133dd088b0ab0303bab.PNG</url></resource></object>
410
    <object class="circle" id="17_6582810" r="154.12014046012288" s="90.13500760403478" type="button" x="46134.05" y="171905.6">
411
      <type>circle<url /></type>
412
      <size>
413
        <w>130.1</w>
414
        <h>130.1</h>
415
      </size>
416
    </object>
417
    <object id="1_6591075" r="0" s="138.07330322265625" type="image" x="-54441.05" y="124151.45">
418
      <source h="676" w="822">26488213.png<url>26488213.png</url>
419
      </source>
420
    <resource><id>
421
        26488213
422
        </id><url>http://0103.static.prezi.com.s3.amazonaws.com/media/5/d/9/08f4ec60011e8aef513b923157c0491b86685.png</url></resource></object>
423
    <object class="strong" id="2_6591075" r="154.12013989805558" s="49.678820418707545" type="label" x="46769.35" y="176046.35">
424
      <textfield>
425
        <x>-85.85</x>
426
        <y>-15.25</y>
427
        <text>Proof of concept</text>
428
        <htmlText>
429
          <P ALIGN="LEFT">
430
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">Proof of concept</FONT>
431
          </P>
432
        </htmlText>
433
      <url /></textfield>
434
    </object>
435
    <object class="body" id="3_6591075" r="147.90984164559538" s="31.958617049960136" type="label" x="47435.15" y="173419.1">
436
      <textfield>
437
        <x>-133.05</x>
438
        <y>-16.4</y>
439
        <text>Medium-sized data center</text>
440
        <htmlText>
441
          <P ALIGN="LEFT">
442
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Medium-sized data center</FONT>
443
          </P>
444
        </htmlText>
445
      <url /></textfield>
446
    </object>
447
    <object class="body" id="4_6591075" r="147.90984262409975" s="20.621944822131727" type="label" x="49746.15" y="171012.5">
448
      <textfield>
449
        <x>-48.25</x>
450
        <y>-16.4</y>
451
        <text>11 servers</text>
452
        <htmlText>
453
          <P ALIGN="LEFT">
454
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">11 servers</FONT>
455
          </P>
456
        </htmlText>
457
      <url /></textfield>
458
    </object>
459
    <object class="body" id="5_6591075" r="147.90984262409975" s="20.621944822131727" type="label" x="47422.85" y="172468.3">
460
      <textfield>
461
        <x>-39.2</x>
462
        <y>-16.4</y>
463
        <text>20 days</text>
464
        <htmlText>
465
          <P ALIGN="LEFT">
466
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">20 days</FONT>
467
          </P>
468
        </htmlText>
469
      <url /></textfield>
470
    </object>
471
    <object class="body" id="6_6591075" r="139.87903421684993" s="24.445417411932223" type="label" x="49009.5" y="169317.5">
472
      <textfield>
473
        <x>-72.5</x>
474
        <y>-16.4</y>
475
        <text>from 835 kWh</text>
476
        <htmlText>
477
          <P ALIGN="LEFT">
478
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">from 835 kWh</FONT>
479
          </P>
480
        </htmlText>
481
      <url /></textfield>
482
    </object>
483
    <object class="body" id="7_6591075" r="139.87903361888894" s="38.897213329154155" type="label" x="42431.25" y="171684.35">
484
      <textfield>
485
        <x>-57.8</x>
486
        <y>-16.4</y>
487
        <text>to 525 kWh</text>
488
        <htmlText>
489
          <P ALIGN="LEFT">
490
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">to 525 kWh</FONT>
491
          </P>
492
        </htmlText>
493
      <url /></textfield>
494
    </object>
495
    <object id="8_6591075" r="116.46358418475128" s="27.58434983991589" type="arrow" x="46257.4" y="169697.5">
496
      <sp x="2156.15" y="-7296.85"><url /></sp>
497
      <ep x="2231" y="-7225.1" />
498
    </object>
499
    <object class="invisible" id="10_6591075" r="154.12014201619132" s="42.70912809406795" type="button" x="46160.95" y="168653.45">
500
      <type>invisible<url /></type>
501
      <size>
502
        <w>252</w>
503
        <h>99</h>
504
      </size>
505
    </object>
506
    <object class="strong" id="9_6591075" r="161.21632875748827" s="24.420723679464658" type="label" x="46284.35" y="168670.75">
507
      <textfield>
508
        <x>-76.9</x>
509
        <y>-15.25</y>
510
        <text>40% decrease!</text>
511
        <htmlText>
512
          <P ALIGN="LEFT">
513
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">40% decrease!</FONT>
514
          </P>
515
        </htmlText>
516
      <url /></textfield>
517
    </object>
518
    <object class="strong" id="12_6591075" r="16.5412151658035" s="801.7815585658437" type="label" x="244.55" y="57759.7">
519
      <textfield>
520
        <x>-58.55</x>
521
        <y>-15.25</y>
522
        <text>Questions?</text>
523
        <htmlText>
524
          <P ALIGN="LEFT">
525
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">Questions?</FONT>
526
          </P>
527
        </htmlText>
528
      <url /></textfield>
529
    </object>
530
    <object id="13_6591075" r="-38.72341610205686" s="330.4070629763186" type="curveline" x="-10722.55" y="71386.2">
531
      <p x="-16.3" y="165.95"><url /></p>
532
      <p x="-14.276190476190475" y="165.4738095238095" />
533
      <p x="-12.262471655328795" y="165.19943310657595" />
534
      <p x="-10.255938883489902" y="165.06877766979807" />
535
      <p x="-6.3242566111856675" y="164.53037031895144" />
536
      <p x="-2.7353602910407937" y="164.2263668185483" />
537
      <p x="0.5688760518853364" y="164.08160324692776" />
538
      <p x="4.668512405659683" y="163.53647773663226" />
539
      <p x="8.311196383647468" y="163.22927511268202" />
540
      <p x="11.619617325546413" y="162.6067976727057" />
541
      <p x="14.766484440736384" y="162.26276079652652" />
542
      <p x="17.36023068606494" y="161.6227432364412" />
543
      <p x="19.9" y="160.95" />
544
      <p x="21.95" y="160.95" />
545
    </object>
546
    <object id="14_6591075" r="0" s="18.08370780944824" type="image" x="-22221.95" y="-1958.45">
547
      <source h="676" w="822">26488213.png<url>26488213.png</url>
548
      </source>
549
    <resource><id>
550
        26488213
551
        </id><url>http://0103.static.prezi.com.s3.amazonaws.com/media/5/d/9/08f4ec60011e8aef513b923157c0491b86685.png</url></resource></object>
552
    <object class="circle" id="15_6591075" r="-167.82872206200508" s="29.18212750068184" type="button" x="36062.2" y="165787.65">
553
      <type>circle<url /></type>
554
      <size>
555
        <w>250.2</w>
556
        <h>250.2</h>
557
      </size>
558
    </object>
559
    <object class="strong" id="16_6591075" r="-174.91336269069225" s="28.68782167828605" type="label" x="35867.7" y="168161">
560
      <textfield>
561
        <x>-106.75</x>
562
        <y>-15.25</y>
563
        <text>Vision for the future</text>
564
        <htmlText>
565
          <P ALIGN="LEFT">
566
            <FONT COLOR="#007918" FACE="LiberationSerif-Bold" KERNING="0" LETTERSPACING="0" SIZE="24">Vision for the future</FONT>
567
          </P>
568
        </htmlText>
569
      <url /></textfield>
570
    </object>
571
    <object class="body" id="17_6591075" r="-167.82872229866334" s="21.215319894098982" type="label" x="34823.35" y="166500.45">
572
      <textfield>
573
        <x>-113.7</x>
574
        <y>-16.4</y>
575
        <text>Manufacturer support</text>
576
        <htmlText>
577
          <P ALIGN="LEFT">
578
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Manufacturer support</FONT>
579
          </P>
580
        </htmlText>
581
      <url /></textfield>
582
    </object>
583
    <object class="body" id="19_6591075" r="-174.91336293612918" s="24.44541754421972" type="label" x="37910.1" y="165976.4">
584
      <textfield>
585
        <x>-56.55</x>
586
        <y>-16.4</y>
587
        <text>Other uses</text>
588
        <htmlText>
589
          <P ALIGN="LEFT">
590
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Other uses</FONT>
591
          </P>
592
        </htmlText>
593
      <url /></textfield>
594
    </object>
595
    <object class="body" id="20_6591075" r="-167.9486852486614" s="15.995264649380877" type="label" x="34830.2" y="165131">
596
      <textfield>
597
        <x>-64.95</x>
598
        <y>-16.4</y>
599
        <text>Smart house</text>
600
        <htmlText>
601
          <P ALIGN="LEFT">
602
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Smart house</FONT>
603
          </P>
604
        </htmlText>
605
      <url /></textfield>
606
    </object>
607
    <object class="body" id="21_6591075" r="-167.9486845980052" s="14.053635065854497" type="label" x="37806.65" y="164815.05">
608
      <textfield>
609
        <x>-62.8</x>
610
        <y>-16.4</y>
611
        <text>Greenhouse</text>
612
        <htmlText>
613
          <P ALIGN="LEFT">
614
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Greenhouse</FONT>
615
          </P>
616
        </htmlText>
617
      <url /></textfield>
618
    </object>
619
    <object id="22_6591075" r="-167.82872157654023" s="15.604759504358913" type="curveline" x="37994" y="165323.85">
620
      <p x="-5160.85" y="-11086.5"><url /></p>
621
      <p x="-5160.8761904761905" y="-11085.02380952381" />
622
      <p x="-5160.8648526077095" y="-11083.963718820862" />
623
      <p x="-5161.047548860814" y="-11082.432723248028" />
624
      <p x="-5161.1535946956255" y="-11080.651296784774" />
625
      <p x="-5161.013616521726" y="-11079.27918894513" />
626
      <p x="-5161.118388819869" y="-11077.106756640538" />
627
      <p x="-5161.1873280094605" y="-11074.972265066925" />
628
      <p x="-5161.2201561949805" y="-11072.90822146044" />
629
      <p x="-5161.235788664276" y="-11070.40153402878" />
630
      <p x="-5161.243232697273" y="-11068.1126352518" />
631
      <p x="-5161.246777474892" y="-11066.45125488181" />
632
      <p x="-5161.248465464234" y="-11064.66012137229" />
633
      <p x="-5160.773078792492" y="-11062.759581605853" />
634
      <p x="-5160.499085139281" y="-11061.283134098025" />
635
      <p x="-5159.7019453044195" y="-11060.12768290382" />
636
      <p x="-5159.2556882402" y="-11059.060801382771" />
637
      <p x="-5158.85" y="-11058" />
638
      <p x="-5158.85" y="-11057" />
639
    </object>
640
    <object id="23_6591075" r="172.36418789930167" s="13.90506274707436" type="curveline" x="36169.4" y="165559.8">
641
      <p x="-5055.1" y="-11110.9"><url /></p>
642
      <p x="-5053.6238095238095" y="-11108.423809523809" />
643
      <p x="-5051.397052154194" y="-11106.149433106577" />
644
      <p x="-5047.812881978188" y="-11103.066396717417" />
645
      <p x="-5043.010896180089" y="-11099.02685557972" />
646
      <p x="-5038.8909029429" y="-11095.127074085582" />
647
      <p x="-5035.345668068047" y="-11092.143844802658" />
648
      <p x="-5032.562222889546" y="-11090.175640382218" />
649
      <p x="-5030.689153756926" y="-11088.693162086767" />
650
      <p x="-5029.251977979488" y="-11087.484839088938" />
651
      <p x="-5027.993799037852" y="-11086.745161470924" />
652
      <p x="-5026.75" y="-11086.05" />
653
      <p x="-5025.75" y="-11084.95" />
654
    </object>
655
    <object class="body" id="24_6591075" r="-174.97642723773134" s="14.053635351865559" type="label" x="34988.6" y="163725.6">
656
      <textfield>
657
        <x>-86.25</x>
658
        <y>-45.2</y>
659
        <text>Renewable
660
energy
661
sources</text>
662
        <htmlText>
663
          <P ALIGN="CENTER">
664
            <FONT COLOR="#3F0C00" FACE="calluna-regular" KERNING="0" LETTERSPACING="0" SIZE="24">Renewable</FONT>
665
          </P>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff