1 <?xml version=
"1.0" encoding=
"utf-8"?>
2 <rss version='
2.0' xmlns:lj='http://www.livejournal.org/rss/lj/
1.0/'
>
4 <title>Petter Reinholdtsen - Entries tagged standard
</title>
5 <description>Entries tagged standard
</description>
6 <link>https://people.skolelinux.org/pere/blog/
</link>
10 <title>ONVIF IP camera management tool finally in Debian
</title>
11 <link>https://people.skolelinux.org/pere/blog/ONVIF_IP_camera_management_tool_finally_in_Debian.html
</link>
12 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/ONVIF_IP_camera_management_tool_finally_in_Debian.html
</guid>
13 <pubDate>Sat,
24 Dec
2022 08:
00:
00 +
0100</pubDate>
14 <description><p
>Merry Christmas to you all. Here is a small gift to all those with
15 IP cameras following the
<a href=
"https://www.onvif.org/
">ONVIF
16 specification
</a
>. There is finally a nice command line and GUI tool
17 in Debian to manage ONVIF IP cameras. After working with upstream for
18 a few months and sponsoring the upload, I am very happy to report that
19 the
<a href=
"https://tracker.debian.org/libonvif
">libonvif package
</a
>
20 entered Debian Sid last night.
</p
>
22 <p
>The package provide a C library to communicate with such cameras, a
23 command line tool to locate and update settings of (like password) the
24 cameras and a GUI tool to configure and control the units as well as
25 preview the video from the camera. Libonvif is available on Both
26 Linux and Windows and the GUI tool uses the Qt library. The main
27 competitors are non-free software, while libonvif is GNU GPL licensed.
28 I am very glad Debian users in the future can control their cameras
29 using a free software system provided by Debian. But the ONVIF world
30 is full of slightly broken firmware, where the cameras pretend to
31 follow the ONVIF specification but fail to set some configuration
32 values or refuse to provide video to more than one recipient at the
33 time, and the onvif project is quite young and might take a while
34 before it completely work with your camera. Upstream seem eager to
35 improve the library, so handling any broken camera might be just
<a
36 href=
"https://github.com/sr99622/libonvif/
">a bug report away
</a
>.
</p
>
38 <p
>The package just cleared NEW, and need a new source only upload
39 before it can enter testing. This will happen in the next few
42 <p
>As usual, if you use Bitcoin and want to show your support of my
43 activities, please send Bitcoin donations to my address
44 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
49 <title>Managing and using ONVIF IP cameras with Linux
</title>
50 <link>https://people.skolelinux.org/pere/blog/Managing_and_using_ONVIF_IP_cameras_with_Linux.html
</link>
51 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Managing_and_using_ONVIF_IP_cameras_with_Linux.html
</guid>
52 <pubDate>Wed,
19 Oct
2022 12:
30:
00 +
0200</pubDate>
53 <description><p
>Recently I have been looking at how to control and collect data
54 from a handful IP cameras using Linux. I both wanted to change their
55 settings and to make their imagery available via a free software
56 service under my control. Here is a summary of the tools I found.
</p
>
58 <p
>First I had to identify the cameras and their protocols. As far as
59 I could tell, they were using some SOAP looking protocol and their
60 internal web server seem to only work with Microsoft Internet Explorer
61 with some proprietary binary plugin, which in these days of course is
62 a security disaster and also made it impossible for me to use the
63 camera web interface. Luckily I discovered that the SOAP looking
64 protocol is actually following
<a href=
"https://www.onvif.org/
">the
65 ONVIF specification
</a
>, which seem to be supported by a lot of IP
66 cameras these days.
</p
>
68 <p
>Once the protocol was identified, I was able to find what appear to
69 be the most popular way to configure ONVIF cameras, the free software
71 <a href=
"https://sourceforge.net/projects/onvifdm/
">ONVIF Device
72 Manager
</a
>. Lacking any other options at the time, I tried
73 unsuccessfully to get it running using Wine, but was missing a dotnet
74 40 library and I found no way around it to run it on Linux.
</p
>
76 <p
>The next tool I found to configure the cameras were a non-free Linux Qt
77 client
<a href=
"https://www.lingodigit.com/onvif_nvcdemo.html
">ONVIF
78 Device Tool
</a
>. I did not like its terms of use, so did not spend
79 much time on it.
</p
>
81 <p
>To collect the video and make it available in a web interface, I
82 found the Zoneminder tool in Debian. A recent version was able to
83 automatically detect and configure ONVIF devices, so I could use it to
84 set up motion detection in and collection of the camera output. I had
85 initial problems getting the ONVIF autodetection to work, as both
86 Firefox and Chromium
<a href=
"https://bugs.debian.org/
1001188">refused
87 the inter-tab communication
</a
> being used by the Zoneminder web
88 pages, but managed to get konqueror to work. Apparently the
"Enhanced
89 Tracking Protection
" in Firefox cause the problem. I ended up
90 upgrading to the Bookworm edition of Zoneminder in the process to try
91 to fix the issue, and believe the problem might be solved now.
</p
>
93 <p
>In the process I came across the nice Linux GUI tool
94 <a href=
"https://gitlab.com/caspermeijn/onvifviewer/
">ONVIF Viewer
</a
>
95 allowing me to preview the camera output and validate the login
96 passwords required. Sadly its author has grown tired of maintaining
97 the software, so it might not see any future updates. Which is sad,
98 as the viewer is sightly unstable and the picture tend to lock up.
99 Note, this lockup might be due to limitations in the cameras and not
100 the viewer implementation. I suspect the camera is only able to
101 provide pictures to one client at the time, and the Zoneminder feed
102 might interfere with the GUI viewer. I have
103 <a href=
"https://bugs.debian.org/
1000820">asked for the tool to be
104 included in Debian
</a
>.
</p
>
106 <p
>Finally, I found what appear to be very nice Linux free software
107 replacement for the Windows tool, named
108 <a href=
"https://github.com/sr99622/libonvif/
">libonvif
</a
>. It
109 provide a C library to talk to ONVIF devices as well as a command line
110 and GUI tool using the library. Using the GUI tool I was able to change
111 the admin passwords and update other settings of the cameras. I have
112 <a href=
"https://bugs.debian.org/
1021980">asked for the package to be
113 included in Debian
</a
>.
</p
>
115 <p
>As usual, if you use Bitcoin and want to show your support of my
116 activities, please send Bitcoin donations to my address
117 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
119 <p
><strong
>Update
2022-
10-
20</strong
>: Since my initial publication of
120 this text, I got several suggestions for more free software Linux
121 tools. There is
<a href=
"https://github.com/quatanium/python-onvif
">a
122 ONVIF python library
</a
> (already
123 <a href=
"https://bugs.debian.org/
824240">requested into Debian
</a
>) and
124 <a href=
"https://github.com/FalkTannhaeuser/python-onvif-zeep
">a python
3
125 fork
</a
> using a different SOAP dependency. There is also
126 <a href=
"https://www.home-assistant.io/integrations/onvif/
">support for
127 ONVIF in Home Assistant
</a
>, and there is an alternative to Zoneminder
128 called
<a href=
"https://www.shinobi.video/
">Shinobi
</a
>. The latter
129 two are not included in Debian either. I have not tested any of these
135 <title>Playing and encoding AV1 in Debian Bullseye
</title>
136 <link>https://people.skolelinux.org/pere/blog/Playing_and_encoding_AV1_in_Debian_Bullseye.html
</link>
137 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Playing_and_encoding_AV1_in_Debian_Bullseye.html
</guid>
138 <pubDate>Sat,
16 Apr
2022 08:
40:
00 +
0200</pubDate>
139 <description><p
>Inspired by the recent news of
140 <a href=
"https://slashdot.org/story/
22/
04/
03/
2039219/intel-beats-amd-and-nvidia-with-arc-gpus-full-av1-support
">AV1
141 hardware encoding support from Intel
</a
>, I decided to look into
142 the state of AV1 on Linux today. AV1 is a
143 <a href=
"https://web.archive.org/web/
20160618103850/http://www.digistan.org/open-standard:definition
">free
144 and open standard
</a
> as defined by Digistan without any royalty
145 payment requirement, unlike its much used competitor encoding
146 H
.264. While looking, I came across an
5 year
147 <a href=
"https://askubuntu.com/questions/
1061908/how-to-encode-and-playback-video-with-the-av1-codec-on-bionic-beaver-
18-
04">old
148 question on askubuntu.com
</a
> which in turn inspired me to check out
149 how things are in Debian Stable regarding AV1. The test file listed
150 in the question (askubuntu_test_aom.mp4) did not exist any more, so I
151 tracked down a different set of test files on
152 <a href=
"https://av1.webmfiles.org/
">av1.webmfiles.org
</a
> to test them
153 with the various video tools I had installed on my machine. I was
154 happy to discover that AV1 decoding and playback worked with almost
157 <table align=
"center
">
158 <tr
><td
>mediainfo
</td
> <td
>ok
</td
></tr
>
159 <tr
><td
>dragonplayer
</td
> <td
>ok
</td
></tr
>
160 <tr
><td
>ffmpeg / ffplay
</td
> <td
>ok
</td
></tr
>
161 <tr
><td
>gnome-mplayer
</td
> <td
>fail
</td
></tr
>
162 <tr
><td
>mplayer
</td
> <td
>ok
</td
></tr
>
163 <tr
><td
>mpv
</td
> <td
>ok
</td
></tr
>
164 <tr
><td
>parole
</td
> <td
>ok
</td
></tr
>
165 <tr
><td
>vlc
</td
> <td
>ok
</td
></tr
>
166 <tr
><td
>firefox
</td
> <td
>ok
</td
></tr
>
167 <tr
><td
>chromium
</td
> <td
>ok
</td
></tr
>
170 <p
>AV1 encoding is available in Debian Stable from the aom-tools
171 version
1.0.0.errata1-
3 package, using the aomenc tool. The encoding
172 using the package in Debian Stable is quite slow, with the frame rate
173 for my
10 second test video at around
0.25 fps. My
10 second video
174 test took
16 minutes and
11 seconds on my test machine.
</p
>
176 <p
>I tested by first running ffmpeg and then aomenc using the recipe
177 provided by the askubuntu recipe above. I had to remove the
178 '--row-mt=
1' option, as it was not supported in my
1.0.0 version. The
179 encoding only used a single thread, according to
<tt
>top
</tt
>.
</p
>
181 <blockquote
><pre
>
182 ffmpeg -i some-old-video.ogv -t
10 -pix_fmt yuv420p video.y4m
183 aomenc --fps=
24/
1 -u
0 --codec=av1 --target-bitrate=
1000 \
184 --lag-in-frames=
25 --auto-alt-ref=
1 -t
24 --cpu-used=
8 \
185 --tile-columns=
2 --tile-rows=
2 -o output.webm video.y4m
186 </pre
></blockquote
>
188 <p
>As version
1.0.0 currently have several
189 <a href=
"https://security-tracker.debian.org/tracker/source-package/aom
">unsolved
190 security issues in Debian Stable
</a
>, and to see if the recent
191 backport
<a href=
"https://tracker.debian.org/pkg/aom
">provided in
192 Debian
</a
> is any quicker, I ran
<tt
>apt -t bullseye-backports install
193 aom-tools
</tt
> to fetch the backported version and re-encoded the
194 video using the latest version. This time the
'--row-mt=
1' option
195 worked, and the encoding was done in
46 seconds with a frame rate of
196 around
5.22 fps. This time it seem to be using all my four cores to
197 encode. Encoding speed is still too low for streaming and real time,
198 which would require frame rates above
25 fps, but might be good enough
199 for offline encoding.
</p
>
201 <p
>I am very happy to see AV1 playback working so well with the
202 default tools in Debian Stable. I hope the encoding situation improve
203 too, allowing even a slow old computer like my
10 year old laptop to
204 be used for encoding.
</p
>
206 <p
>As usual, if you use Bitcoin and want to show your support of my
207 activities, please send Bitcoin donations to my address
208 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
213 <title>Nikita version
0.6 released - free software archive API server
</title>
214 <link>https://people.skolelinux.org/pere/blog/Nikita_version_0_6_released___free_software_archive_API_server.html
</link>
215 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Nikita_version_0_6_released___free_software_archive_API_server.html
</guid>
216 <pubDate>Thu,
10 Jun
2021 17:
10:
00 +
0200</pubDate>
217 <description><p
>I am very pleased to be able to share with you
218 <a href=
"https://lists.nuug.no/pipermail/nikita-noark/
2021-June/
000576.html
">the
219 announcement of a new version of the archiving system Nikita
</a
>
220 published by its lead developer Thomas Sødring:
</p
>
222 <p
><blockquote
>
224 <p
>It is with great pleasure that we can announce a new release of
226 (
<a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core
">https://gitlab.com/OsloMet-ABI/nikita-noark5-core
</a
>). This
227 release makes new record keeping functionality available. This really
228 is a maturity release. Both in terms of functionality but also code.
229 Considerable effort has gone into refactoring the codebase and
230 simplifying the code. Notable changes for this release include:
</p
>
234 <li
>Significantly improved OData parsing
</li
>
235 <li
>Support for business specific metadata and national identifiers
</li
>
236 <li
>Continued implementation of domain model and endpoints
</li
>
237 <li
>Improved testing
</li
>
238 <li
>Ability to export and import from arkivstruktur.xml
</li
>
242 <p
>We are currently in the process of reaching an agreement with an
243 archive institution to publish their picture archive using nikita with
244 business specific metadata and we hope that we can share this with you
245 soon. This is an interesting project as it allows the organisation to
246 bring an older picture archive back to life while using the original
247 metadata values stored as business specific metadata. Combined with
248 OData means the scope and use of the archive is significantly
249 increased and will showcase both the flexibility and power of
252 <p
>I really think we are approaching a version
1.0 of nikita, even
253 though there is still a lot of work to be done. The notable work at
254 the moment is to implement access-control and full text indexing of
257 <p
>My sincere thanks to everyone who has contributed to this
260 <p
>- Thomas
</p
>
262 <p
><strong
>Release
0.6 2021-
06-
10 (d1ba5fc7e8bad0cfdce45ac20354b19d10ebbc7b)
</strong
></p
>
266 <li
>Refactor metadata entity search
</li
>
267 <li
>Remove redundant security configuration
</li
>
268 <li
>Make OpenAPI documentation work
</li
>
269 <li
>Change database structure / inheritance model to a more sensible approach
</li
>
270 <li
>Make it possible to move entities around the fonds structure
</li
>
271 <li
>Implemented a number of missing endpoints
</li
>
272 <li
>Make sure yml files are in sync
</li
>
273 <li
>Implemented/finalised storing and use of
275 <li
>Business Specific Metadata
</li
>
276 <li
>Norwegian National Identifiers
</li
>
277 <li
>Cross Reference
</li
>
278 <li
>Keyword
</li
>
279 <li
>StorageLocation
</li
>
280 <li
>Author
</li
>
281 <li
>Screening for relevant objects
</li
>
282 <li
>ChangeLog
</li
>
283 <li
>EventLog
</li
>
284 </ul
></li
>
285 <li
>Make generation of updated docker image part of successful CI pipeline
</li
>
286 <li
>Implement pagination for all list requests
288 <li
>Refactor code to support lists
</li
>
289 <li
>Refactor code for readability
</li
>
290 <li
>Standardise the controller/service code
</li
>
291 </ul
></li
>
292 <li
>Finalise File-
>CaseFile expansion and Record-
>registryEntry/recordNote
294 <li
>Improved Continuous Integration (CI) approach via gitlab
</li
>
295 <li
>Changed conversion approach to generate tagged PDF documents
</li
>
296 <li
>Updated dependencies
298 <li
>For security reasons
</li
>
299 <li
>Brought codebase to spring-boot version
2.5.0</li
>
300 <li
>Remove import of necessary dependencies
</li
>
301 <li
>Remove non-used metrics classes
</li
>
302 </ul
></li
>
303 <li
>Added new analysis to CI including
</li
>
304 <li
>Implemented storing of Keyword
</li
>
305 <li
>Implemented storing of Screening and ScreeningMetadata
</li
>
306 <li
>Improved OData support
308 <li
>Better support for inheritance in queries where applicable
</li
>
309 <li
>Brought in more OData tests
</li
>
310 <li
>Improved OData/hibernate understanding of queries
</li
>
311 <li
>Implement $count, $orderby
</li
>
312 <li
>Finalise $top and $skip
</li
>
313 <li
>Make sure
& is used between query parameters
</li
>
314 </ul
></li
>
315 <li
>Improved Testing in codebase
317 <li
>A new approach for integration tests to make test more readable
</li
>
318 <li
>Introduce tests in parallel with code development for TDD approach
</li
>
319 <li
>Remove test that required particular access to storage
</li
>
320 </ul
></li
>
321 <li
>Implement case-handling process from received email to case-handler
323 <li
>Develop required GUI elements (digital postroom from email)
</li
>
324 <li
>Introduced leader, quality control and postroom roles
</li
>
325 </ul
></li
>
326 <li
>Make PUT requests return
200 OK not
201 CREATED
</li
>
327 <li
>Make DELETE requests return
204 NO CONTENT not
200 OK
</li
>
328 <li
>Replaced
'oppdatert*
' with
'endret*
' everywhere to match latest spec
</li
>
329 <li
>Upgrade Gitlab CI to use python
> 3 for CI scripts
</li
>
332 <li
>Fix missing ALLOW
</li
>
333 <li
>Fix reading of objects from jar file during start-up
</li
>
334 <li
>Reduce the number of warnings in the codebase
</li
>
335 <li
>Fix delete problems
</li
>
336 <li
>Make better use of cascade for
"leaf
" objects
</li
>
337 <li
>Add missing annotations where relevant
</li
>
338 <li
>Remove the use of ETAG for delete
</li
>
339 <li
>Fix missing/wrong/broken rels discovered by runtest
</li
>
340 <li
>Drop unofficial convertFil (konverterFil) end point
</li
>
341 <li
>Fix regex problem for dateTime
</li
>
342 <li
>Fix multiple static analysis issues discovered by coverity
</li
>
343 <li
>Fix proxy problem when looking for object class names
</li
>
344 <li
>Add many missing translated Norwegian to English (internal)
345 attribute/entity names
</li
>
346 <li
>Change UUID generation approach to allow code also set a value
</li
>
347 <li
>Fix problem with Part/PartParson
</li
>
348 <li
>Fix problem with empty OData search results
</li
>
349 <li
>Fix metadata entity domain problem
</li
>
350 </ul
></li
>
351 <li
>General Improvements
353 <li
>Makes future refactoring easier as coupling is reduced
</li
>
354 <li
>Allow some constant variables to be set from property file
</li
>
355 <li
>Refactor code to make reflection work better across codebase
</li
>
356 <li
>Reduce the number of @Service layer classes used in @Controller
358 <li
>Be more consistent on naming of similar variable types
</li
>
359 <li
>Start printing rels/href if they are applicable
</li
>
360 <li
>Cleaner / standardised approach to deleting objects
</li
>
361 <li
>Avoid concatenation when using StringBuilder
</li
>
362 <li
>Consolidate code to avoid duplication
</li
>
363 <li
>Tidy formatting for a more consistent reading style across
364 similar class files
</li
>
365 <li
>Make throw a log.error message not an log.info message
</li
>
366 <li
>Make throw print the log value rather than printing in multiple
368 <li
>Add some missing pronom codes
</li
>
369 <li
>Fix time formatting issue in Gitlab CI
</li
>
370 <li
>Remove stale / unused code
</li
>
371 <li
>Use only UUID datatype rather than combination String/UUID for systemID
</li
>
372 <li
>Mark variables final and @NotNull where relevant to indicate
374 </ul
></li
>
375 <li
>Change Date values to DateTime to maintain compliance with Noark
5
377 <li
>Domain model improvements using Hypersistence Optimizer
379 <li
>Move @Transactional from class to methods to avoid borrowing the JDBC Connection unnecessarily
</li
>
380 <li
>Fix OneToOne performance issues
</li
>
381 <li
>Fix ManyToMany performance issues
</li
>
382 <li
>Add missing bidirectional synchronization support
</li
>
383 <li
>Fix ManyToMany performance issue
</li
>
384 </ul
></li
>
385 <li
>Make List
<> and Set
<> use final-keyword to avoid potential problems
386 during update operations
</li
>
387 <li
>Changed internal URLs, replaced
"hateoas-api
" with
"api
".
</li
>
388 <li
>Implemented storing of Precedence.
</li
>
389 <li
>Corrected handling of screening.
</li
>
390 <li
>Corrected _links collection returned for list of mixed entity types
391 to match the specific entity.
</li
>
392 <li
>Improved several internal structures.
</li
>
395 </blockquote
></p
>
397 <p
>If free and open standardized archiving API sound interesting to
398 you, please contact us on IRC
399 (
<a href=
"irc://irc.oftc.net/%
23nikita
">#nikita on
400 irc.oftc.net
</a
>) or email
401 (
<a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">nikita-noark
402 mailing list
</a
>).
</p
>
404 <p
>As usual, if you use Bitcoin and want to show your support of my
405 activities, please send Bitcoin donations to my address
406 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
411 <title>Nikita version
0.5 released - updated free software archive API server
</title>
412 <link>https://people.skolelinux.org/pere/blog/Nikita_version_0_5_released___updated_free_software_archive_API_server.html
</link>
413 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Nikita_version_0_5_released___updated_free_software_archive_API_server.html
</guid>
414 <pubDate>Mon,
2 Mar
2020 19:
00:
00 +
0100</pubDate>
415 <description><p
>Today, after many months of development, a new release of
416 <ahref=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">Nikita
417 Noark
5 core project
</a
> was finally
418 <ahref=
"https://lists.nuug.no/pipermail/nikita-noark/
2020-March/
000519.html
">announced
419 on the project mailing list
</a
>. The Nikita free software solution is
420 an implementation of the Norwegian archive standard Noark
5 used by
421 government offices in Norway. These were the changes in version
0.5
422 since version
0.4, see the email link above for links to a demo
427 <li
>Updated to Noark
5 versjon
5.0 API specification.
429 <li
>Changed formatting of _links from [] to {} to match IETF draft
430 on JSON HAL.
</li
>
431 <li
>Merged Registrering og Basisregistrering in version
4 to
432 combined Registrering.
</li
>
433 <li
>DokumentObjekt is now subtype of ArkivEnhet.
</li
>
434 <li
>Introducing new entity Arkivnotat.
</li
>
435 <li
>Changed all relation keys to use /v5/ instead of /v4/.
</li
>
436 <li
>Corrected to use new official relation keys when possible.
</li
>
437 <li
>Renamed Sakspart to Part and connect it to Mappe, Registrering
438 and Dokumentbeskrivelse instead of only Saksmappe.
</li
>
439 <li
>Moved Korrespondansepart connection from Journalpost to
440 Registrering.
</li
>
441 <li
>Moved Part and Korrespondansepart from package sakarkiv to
442 arkivstruktur.
</li
>
443 <li
>Renamed presedensstatus to presedensStatus.
</li
>
444 <li
>Use new JSON content-type
"application/vnd.noark5+json
".
</li
>
445 <li
>Updated prepopulated format list to use PRONOM codes.
</li
>
446 <li
>Implemented endpoint for system information.
</li
>
447 <li
>Implemented national identifiers for both file and record.
</li
>
448 <li
>Implemented comments.
</li
>
449 <li
>implemented sign off.
</li
>
450 <li
>implemented conversion.
</li
>
451 </ul
></li
>
452 <li
>Improved/implemented OData search and paging support for more entities.
</li
>
453 <li
>No longer exposes attribute Dokumentobjekt.referanseDokumentfil,
454 one should use the relation in _links instead.
</li
>
455 <li
>Corrected relation keys under
456 https://rel.arkivverket.no/noark5/v5/api/administrasjon/, replacing
457 'administrasjon
' with
'admin
'.
</li
>
458 <li
>Fixed several security and stability issues discovered by Coverity.
</li
>
459 <li
>Corrected handling ETag errors, now return code
409.
</li
>
460 <li
>Improved handling of Kryssreferanse.
</li
>
461 <li
>Changed internal database model to use UUID/SystemID as primary keys
462 in tables.
</li
>
463 <li
>Changed internal database table names to use package prefix.
</li
>
464 <li
>Changed time zone handling for date and datetime attributes, to be
465 more according to the new definition in the API specification.
</li
>
466 <li
>Change revoke-token to only drop token on POST requests, not GET.
</li
>
467 <li
>Updated to newer Spring version.
</li
>
468 <li
>Changed primary key and URL component for metadata code lists to
469 use the
'kode
' value instead of a SystemID.
</li
>
470 <li
>Corrected implementation of Part and Sakspart.
</li
>
471 <li
>Changed instance lists with subtypes (like .../registrering/ and
472 .../mappe/) to include the attributes and _links entries for the
473 subtype in the supertype lists.
</li
>
474 <li
>Adjusted _links relations to make it possible to figure out the
475 entity of an instance using the self-
>href-
>relation key lookup
477 <li
>Fixed several end points to make sure GET, PUT, POST and DELETE
478 match each other.
</li
>
479 <li
>Updated DELETE endpoints to work with UUID based entity
480 identifiers.
</li
>
481 <li
>Restructured code to use more common URL related constants in entry
482 point values and replace @RequestMapping with method specific
483 annotations.
</li
>
484 <li
>Added first unit test code.
</li
>
485 <li
>Updated web GUI to work with the updated API.
</li
>
486 <li
>Changed integer fields, enforce them as numeric.
</li
>
487 <li
>Rewrote and simplify metadata handling to use common service and
488 controller code instead of duplicating for each type.
</li
>
489 <li
>Implemented the remaining metadata types.
</li
>
490 <li
>Changed Country list source from Wikipedia to Debian iso-codes and
491 updated the list of Countries.
</li
>
492 <li
>Many many corrections and improvements.
</li
>
496 <p
>If free and open standardized archiving API sound interesting to
497 you, please contact us on IRC
498 (
<a href=
"irc://irc.freenode.net/%
23nikita
">#nikita on
499 irc.freenode.net
</a
>) or email
500 (
<a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">nikita-noark
501 mailing list
</a
>).
</p
>
503 <p
>As usual, if you use Bitcoin and want to show your support of my
504 activities, please send Bitcoin donations to my address
505 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
510 <title>Redaksjon på plass for Noark
5 tjenestegrensesnitt
</title>
511 <link>https://people.skolelinux.org/pere/blog/Redaksjon_p__plass_for_Noark_5_tjenestegrensesnitt.html
</link>
512 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Redaksjon_p__plass_for_Noark_5_tjenestegrensesnitt.html
</guid>
513 <pubDate>Wed,
5 Feb
2020 14:
45:
00 +
0100</pubDate>
514 <description><p
>Arbeidet med å lage et godt, fritt og åpent standardisert maskinelt
515 grensesnitt for arkivering, med tilhørende fri
516 programvareimplementasjon fortsetter. Jeg snakker om
517 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard
">Noark
518 5 Tjenestegrensesnitt
</a
> og
519 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">Nikita
</a
>.
521 <a href=
"https://www.nuug.no/aktiviteter/
20200127-noark-seminar/
">seminaret
522 for noen dager siden
</a
>, er vi i Nikita-prosjektet har fått beskjed
523 fra Arkivverket at det blir satt ned en redaksjon for å videreutvikle
524 spesifikasjonen. Redaksjonen består av Mona Danielsen og Anne Sofie
525 Knutsen ved arkivverket, Thomas Sødring ved OsloMet, og meg selv fra
526 NUUG. De to sistenevnte tar seg av de åpenbare forbedringene, mens
527 hele redaksjonen diskuterer tvilstilfeller. Jeg håper dette vil bidra
528 til at vi lykkes i å gjøre denne protokollspesifikasjonen så entydig
529 og klar at den vil bidra til et velfungerende marked for
530 arkivsystemer, og sikre at programmer som trenger å snakke med
531 arkivsystemet kan snakke med enhver implementasjon av
532 API-spesifikasjonen. Nikita er den første implementasjonen, men det
533 bør blir flere.
</p
>
535 <p
>Det gjenstår riktig nok endel før vi er i mål, selv om svært mye
536 allerede er på plass. Med innspill og forslag til forbedringer fra
537 alle som vil ha et leverandøruavhengig og fullstendig
538 datamaskinlesbart grensesnitt til arkivet, så tror jeg vi vil
541 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
542 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
544 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
545 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>
550 <title>Artikkel om Noark
5 Tjenestegrensesnitt og Nikita i Arkivråd nummer
3 for
2019</title>
551 <link>https://people.skolelinux.org/pere/blog/Artikkel_om_Noark_5_Tjenestegrensesnitt_og_Nikita_i_Arkivr_d_nummer_3_for_2019.html
</link>
552 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Artikkel_om_Noark_5_Tjenestegrensesnitt_og_Nikita_i_Arkivr_d_nummer_3_for_2019.html
</guid>
553 <pubDate>Thu,
26 Dec
2019 08:
00:
00 +
0100</pubDate>
554 <description><p
>Like før julaften ble en artikkel jeg har skrevet om vedlikehold av
555 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard
">Noark
556 5 Tjenestegrensesnitt
</a
> og Nikita publisert i
<a
557 href=
"https://www.arkivrad.no/arkivrad
">tidsskriftet Arkivråd
</a
>.
559 <a href=
"http://people.skolelinux.org/pere/blog/_pen_og_gjennomsiktig_vedlikehold_av_spesifikasjonen_for_Noark_5_Tjenestegrensesnitt.html
">min bloggpost
560 om samme tema
</a
> som ble publisert
2019-
03-
11. Jeg oppdaget nettopp
561 at nettsiden til tidsskriftet Arkivråd er oppdatert med siste utgave,
562 og artikkelen dermed er tilgjengelig for alle. Du finner den i
563 <a href=
"https://www.arkivrad.no/sites/arkivrad/files/arkivrad_03_2019_nett.pdf
">PDF-en
564 til nummer
2019/
3 på side
30-
33</a
>. Jeg håper leserne av
565 tidsskriftet får lyst til å sjekke ut tjenestegrensesnittet og at
566 artikkelen vil gjøre det enklere for flere å bidra til en enda bedre,
567 klarere og mer entydig API-spesifikasjon. Det kan gjøre at
568 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">arkivsystemet
569 Nikita
</a
> kan bli enda bedre når spesifikasjonen forbedres.
</p
>
571 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
572 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
574 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
575 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>
580 <title>Artikkel om Nikita i Arkheion nummer
2019/
2</title>
581 <link>https://people.skolelinux.org/pere/blog/Artikkel_om_Nikita_i_Arkheion_nummer_2019_2.html
</link>
582 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Artikkel_om_Nikita_i_Arkheion_nummer_2019_2.html
</guid>
583 <pubDate>Mon,
9 Dec
2019 15:
05:
00 +
0100</pubDate>
584 <description><p
>Jeg hadde i dag gleden av å oppdage at en artikkel om
585 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">arkivsystemet
586 Nikita
</a
> som vi skrev i sommer, nå er publisert i
587 <a href=
"http://www.arkheion.no/
">Arkheion, fagtidsskrift for kommunial
588 arkivsektor
</a
>. Du finner artikkelen på side
30-
33 i nummer
2019/
2,
589 PDF kan lastes ned fra nettstedet til tidsskriftet. Kanskje
590 publiseringen kan føre til at noen flere får øynene opp for verdien av
591 et åpent standardisert API for arkivering og søk i arkivet.
</p
>
593 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
594 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
596 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
597 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>
602 <title>Oppdatert Noark
5 Tjenestegrenesnitt versjon
1.0 for Noark
5.5.0</title>
603 <link>https://people.skolelinux.org/pere/blog/Oppdatert_Noark_5_Tjenestegrenesnitt_versjon_1_0_for_Noark_5_5_0.html
</link>
604 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Oppdatert_Noark_5_Tjenestegrenesnitt_versjon_1_0_for_Noark_5_5_0.html
</guid>
605 <pubDate>Fri,
5 Jul
2019 17:
20:
00 +
0200</pubDate>
606 <description><p
>Jeg er veldig glad for å kunne fortelle at i går ble ny versjon av
607 <a href=
"https://www.arkivverket.no/forvaltning-og-utvikling/noark-standarden/noark-
5/tjenestegrensesnitt-noark5
">API-spesifikasjonen
608 for Noark
5 Tjenestegrensesnitt
</a
> gitt ut. Det så lenge mørkt ut
609 for sjansene for å få inn nødvendige korreksjoner i
610 spesifikasjonsteksten innen rimelig tid, men takket være intens og god
611 innsats fra Mona og Anne Sofie hos Arkivverket de siste ukene, så ble
612 resultatet som ble gitt ut på USAs uavhengighetsdag mye bedre enn jeg
615 <p
>Spesifikasjonen er
616 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
">tilgjengelig
617 som markdown-filer i Arkivverkets github-prosjekt for dette
</a
>, og de
618 aller fleste av forslagene til forbedringer fra oss som holder på med
619 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core
">Nikita-prosjektet
</a
>
620 kom med i denne nye og oppdaterte spesifikasjonsteksten. Det er
621 fortsatt mye som gjenstår før den er entydig, klar og sikrer samvirke
622 på tvers av leverandører, men utgangspunktet er veldig mye bedre enn
623 forrige versjon fra
2016. Ta gjerne en titt.
</p
>
625 <p
>Ellers må jeg jo si at det var hyggelig å se at min forrige
626 bloggpost om tjenestegrensesnittet fikk en
627 <a href=
"https://beta.arkivverket.no/post/
186020592045/noark-
5-versjon-
50-tjenestegrensesnitt-
10">lenke
628 fra Arkivverket Beta
</a
>.
</p
>
630 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
631 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
633 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
634 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>
639 <title>Nikita og Noark
5 tjenestegrensesnittet tilbyr ny måte å tenke arkivering
</title>
640 <link>https://people.skolelinux.org/pere/blog/Nikita_og_Noark_5_tjenestegrensesnittet_tilbyr_ny_m_te___tenke_arkivering.html
</link>
641 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Nikita_og_Noark_5_tjenestegrensesnittet_tilbyr_ny_m_te___tenke_arkivering.html
</guid>
642 <pubDate>Fri,
21 Jun
2019 11:
30:
00 +
0200</pubDate>
643 <description><p
><em
>av Thomas Sødring (OsloMet) og Petter Reinholdtsen (foreningen
644 NUUG)
</em
></p
>
646 <p
>Nikita Noark
5-kjerne er et fri programvareprosjekt som tar i bruk
647 Arkivverkets spesifikasjonen for Noark
5 Tjenestegrensesnitt og tilbyr
648 et maskinlesbart grensesnitt (arkiv-API) til datasystemer som trenger å
649 arkivere dokumenter og informasjon. I tillegg tilbyr Nikita et
650 nettleserbasert brukergrensesnitt for brukere av arkivet. Dette
651 brukergrensesnittet benytter det maskinlesbare grensesnittet. Noark
5
652 Tjenestegrensesnitt er en ny måte å tenke arkivering, med fokus på
653 automatisering og maskinell behandling av arkivmateriale, i stedet for
654 å fokusere på brukergrensesnitt. En kan tenke på
655 tjenestegrensesnittet som arkivet uten brukergrensesnitt, der flere
656 aktører kan koble til ulike brukergrensesnitt, tilpasset ulike
659 <p
>Historisk sett gjorde Noark standarden en veldig bra jobb med
661 papir til digital saksbehandling, men det har kommet til kort på andre
662 områder. Den teknologiske utviklingen har brakt oss ditt at vi kan og
663 skal forvente langt mer fra en arkivkjerne enn før, men det offentlig
664 er ofte konservativ når det gjelder nytenking. For lengst skulle
665 begreper som samvirke mellom datasystemer, metadata, prosess og
666 tjenestegrensesnitt (API) vært dominerende når systemer kjøpes
667 inn. Dessverre er det slik at ikke alle ønsker samvirke mellom
668 datasystemer velkommen, og det kan være trygt å kjøpe «svarte bokser»
669 der du slipper å ta stilling til hvordan man skal få flere systemer
670 til å virke sammen. Men IT-arkitektur er et begrep arkivfolk også
671 begynner å ta inn over seg.
</p
>
673 <p
>Slike systemer for å organisere metadata bør ha nettbaserte
674 tjenestegrensesnitt der brukergrensesnitt er tydelig adskilt fra
675 bakenforliggende system. Det finnes mange rapporter som snakker om å
676 bryte ned siloer i forvaltningen og standardiserte tjenestegrensesnitt
677 er det viktigste virkemiddel mot datasiloer og legger til rette for
678 økt samvirke mellom systemer. Et standardisert tjenestegrensesnitt er
679 et viktig middel for å få systemer til å samhandle da det sikrer at
680 ulike produsenters systemer kan snakke sammen på tvers. Samfunnet
681 fungerer ikke uten standardisering. Vi har alle samme strømstyrke og
682 kontakter i veggene og kjører alle på høyre side av veien i Norge. Det er i en slik
683 sammenheng at prosjektet «Noark
5 Tjenestegrensesnitt» er veldig
684 viktig. Hvis alle leverandører av arkivsystemer forholdt seg til et
685 standardisert tjenestegrensesnitt kunne kostnadene for arkivering
686 reduseres. Tenk deg at du er en kommune som ønsker et fagsystem integrert
687 med arkivløsningen din. I dag må fagsystemleverandøren vite og
688 tilpasse seg den spesifikke versjonen og varianten av arkivløsningen
689 du har. Hvis vi antar at alle leverandører av arkivkjerner har solgt
690 inn enten SOAP eller REST-grensesnitt til kunder de siste
10 årene og
691 det kommer endret versjon av grensesnittet innimellom, så gir det
692 veldig mange forskjellige tjenestegrensesnitt en fagsystemleverandør
693 må forholde seg til. Med
12 leverandører og kvartalsvise oppdateringer
694 kan det potensielt bli
96 ulike varianter hvert eneste år. Det sier
695 seg selv at det blir dyrt. Men det blir faktisk verre. Hvis du senere
696 ønsker å bytte ut arkivsystemet med et annet så er du avhengig å få
697 alle integrasjonene dine laget på nytt. Dette kan gjøre at du velger å
698 forbli hos en dårlig leverandør framfor å skaffe nytt system, fordi
699 det blir for vanskelig og dyrt å bytte. Dermed etableres det «små»
700 monopolsituasjoner som er vanskelig å bryte ut av. Dårlige valg i dag
701 kan ha uante kostander på sikt. I Nikita-prosjektet har vi kun jobbet
702 opp mot Noark
5 Tjenestegrensesnittet. Det har tatt en god del
703 ressurser å sette seg inn i spesifikasjonen og ta den i bruk, spesielt
704 på grunn av uklarheter i spesifikasjonen. Hvis vi måtte gjøre det
705 samme for alle versjoner og varianter av de forskjellige
706 tjenestegrensesnittene ville det blitt veldig tidkrevende og
709 <p
>For deg som arkivar er digitalisering og systemer som skal virke
710 sammen en del av den nye hverdagen. Du har kanskje blitt skånet for
711 det ved å kjøpe svarte bokser, men du risikerer at du gjør deg selv en
712 bjørnetjeneste. Det kan oppleves som kjedelig å fortelle kolleger at
713 du skal sette deg inn i et tjenestegrensesnitt, men dette er faktisk
714 veldig spennende. Tjenestegrensesnittet er på en måte blitt levende og
715 det er spesielt et begrep du bør merke deg: OData. Å trekke inn deler
716 av OData-standarden som en måte å filtrere entitetsøk i et arkivsystem
717 var et nyttig trekk i prosjektet. Følgende eksempel er en
718 OData-spørring det går an å sende inn til en standardisert
719 arkivkjerne:
</p
>
721 <p
><blockquote
>
722 .../sakarkiv/journalpost?filter=contains(tittel,
'nabovarsel
')
723 </blockquote
></p
>
725 <p
>Spørringen over vil hente en liste av alle dine journalposter der
726 tittelen til journalposten inneholder ordet
'nabovarsel
'. Alle
727 leverandører som implementerer tjenestegrensesnittet vil måtte tilby
728 dette. Det betyr at hvis du lærer dette språket for et system, vil det
729 være gjeldende for alle. Dette er egentlig en ny måte å søke i
730 arkivdatabasen på og vil være svært nyttig, for eksempel kan søk i
731 tjenestegrensesnittet antagelig brukes til å hente ut offentlig
732 postjournal. I arkivverden pleier vi å like teknologier som er
733 menneskelesbart, da vet vi det er enkelt og nyttig! OData er også
734 viktig fordi det kan bli en ny måte å svare innsynsforespørsler på i
735 tråd med offentlighetsloven §
9, der retten til å kreve innsyn i
736 sammenstilling fra databaser er nedfelt. I dag ser vi
737 forvaltningsorganer som avviser slike krav fordi det «ikke kan gjøres
738 med enkle framgangsmåter». Bruken av OData i tjenestegrensesnittet,
739 sammen med maskinlesbar markeringsformater kan være et viktig bidrag
740 til å åpne arkivene i tråd med prinsippene om en åpen og transparent
741 forvaltning.
</p
>
743 <p
>Standardisering er viktig fordi det
<em
>kan
</em
> sikre samvirke.
744 Men den effekten kommer kun hvis standardiseringen sikrer at alle
745 forstår standarden på samme måte, dvs. at den er entydig og klar. En
746 god måte å sikre en entydig og klar spesifikasjon er ved å kreve at
747 det finnes minst to ulike implementasjoner som følger spesifikasjonen
748 og som kan snakke sammen, det vil si at de snakker samme språk, slik
749 IETF krever for alle sine standarder, før spesifikasjonen anses å være
750 ferdig. Tilbakemelding fra miljøet forteller at både leverandører og
751 kunder har et avslappet forhold til Noark
5 Tjenestegrensesnitt og det
752 er så langt kun Evry som har visst offentlig at de har en
753 implementasjon av tjenestegrensesnittet. Evry, HK Data og Fredrikstad
754 kommune er igang med et pilotprosjekt på Noark
5
755 Tjenestegrensesnitt. For å redusere kostnadene for samvirkende
756 datasystemer betraktelig, er det veldig viktig at vi kommer i en
757 situasjon der alle leverandører har sine egne implementasjoner av
758 tjenestegrensesnittet, og at disse oppfører seg likt og i tråd med det
759 som er beskrevet i spesifikasjonen.
</p
>
761 <p
>Det er her fri programvare spiller en viktig rolle. Med en uklar
762 standard blir det som en polsk riksdag, der ingenting fungerer. Nikita
763 er en fri programvareimplementasjon av tjenestegrensesnitt og kan
764 fungere som teknisk referanse slik at leverandører enklere kan se og
765 forstå hvordan standarden skal tolkes. Vi har i Nikitaprosjektet
766 erfart å ende opp med vidt forskjellige tolkninger når
767 prosjektmedlemmene leser spesifikasjonsteksten, en effekt av en uklar
768 spesifikasjon. Men Nikitaprosjektet har også utviklet et test-program
769 som sjekker om et tjenestegrensesnitt er i samsvar med standarden, og
770 prosjektet bruker det hele tiden for å sikre at endringer og
771 forbedringer fungerer. Egenerklæringsskjemaenes dager kan være talte!
772 Snart vil du selv kunne teste hver oppdatering av arkivsystemet med en
773 uavhengig sjekk.
</p
>
775 <p
>Fri programvare representerer en demokratisering av kunnskap der
776 tolkning- og innlåsingsmakt flyttes fra leverandør til allmenheten.
777 Med fri programvare har du en litt annerledes verdikjede, der selve
778 produktet ikke holdes hemmelig for å tjene penger, slik en gjør med
779 ufri programvare og skytjenester som ikke bruker fri programvare, men
780 du kan tjene penger på andre deler av verdikjeden. Med fri programvare
781 kan samfunnet betale for å videreutvikle nyttig
782 fellesfunksjonalitet.
</p
>
784 <p
>Nikita er en fri programvareimplementasjon av tjenestegrensesnittet og
785 kan fungere som en referanseimplementasjon dersom det er ønskelig.
786 Alle har lik tilgang til koden og det koster ingenting å ta den i bruk
787 og utforske det. Nikitaprosjektet ønsker tjenestegrensesnittet
788 velkommen og stiller veldig gjerne opp i diskusjoner om tolkning av
789 tjenestegrensesnittet. Nikita er bygget på moderne
790 programmeringsrammeverk og utviklet i full åpenhet. Men Nikita er ikke
791 noe du kan kjøpe. Nikita er først og fremst et verktøy for forsking og
792 utvikling laget for å fremme forskning på arkivfeltet. Systemer som
793 virker sammen har alltid vært hovedfokus og vil være det fremover.
794 Det brukes som undervisningsverktøy der studentene ved OsloMet lærer
795 om administrativt oppsett, saksbehandling, uttrekk og samvirkende
796 datasystemer. Det brukes også som forskningsobjekt der vi ser på
797 import av dokumentsamlinger, bruk av blokkjede og andre nyskapende
798 måter å tenke arkiv på. Det er dog helt greit om andre tar Nikita og
799 pakker det for å selge det som produkt. Forvaltningsorganer med
800 sterke drift- og utviklingsmiljøer kan også se på Nikita og utforske
801 hva som er mulig. Dette kan de gjøre uten å måtte betale for
802 bruksrettigheter eller tilgang til konsulenter. Men arkivering blir
803 ikke gratis på grunn av Nikita. Det trengs fortsatt folk med
804 kompetanse og tid til å ta i bruk Nikita.
</p
>
806 <p
>Nikita har nylig kommet med en ny utgave, den sjette i rekken.
807 Systemet er ikke ferdig, mest på grunn av at API-spesifikasjonen for
808 Noark
5 Tjenestegrensesnitt ikke er ferdig, men allerede i dag kan en
809 bruke Nikita som arkiv. Vi har laget eksempelsystem for å importere
810 data fra deponi-XML og slik gjøre eksisterende arkivdata tilgjengelig
811 via et API. Vi har også laget en testklient som importerer epost inn
812 i arkivet med vedlegg der epostenes trådinformasjon brukes til å legge
813 eposttråder i samme arkivmappe, og en annen testklient som henter
814 epost ut av en arkivmappe på mbox-format slik at en vanlig epostklient
815 kan brukes til å lese igjennom og svare på epostene i en
816 arkivmappe. De som vil ta en titt på Nikita kan besøke
817 <a href=
"https://nikita.oslomet.no
">https://nikita.oslomet.no
</a
> og
818 logge inn med brukernavn «admin@example.com» og passord «password».
819 Dette gir tilgang til det forenklede brukergrensesnittet som brukes
820 til undervisning. De som heller vil ta en titt under panseret kan
822 <a href=
"https://nikita.oslomet.no/browse.html
">https://nikita.oslomet.no/browse.html
</a
>
823 og der se hvordan API-et fungerer mer i detalj. Innloggingsdetaljer
824 her er det samme som for brukergrensesnittet.
</p
>
826 <p
>Fremover er fokuset på forbedring av spesifikasjonen Noark
5
827 Tjenestegrensesnitt. De som skrev tjenestegrensesnittet gjorde et
828 interessant og framtidsrettet grep, de skilte sak fra arkiv.
829 Tjenestegrensesnittet består av flere
"pakker
", der noen er
830 grunnleggende mens andre bygger på de grunnleggende pakkene. Pakkene
831 som er beskrevet så langt heter «arkivstruktur», «sakarkiv»,
832 «administrasjon», «loggogsporing» og «moeter» (dessverre
833 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/pull/
120">planlagt
834 fjernet
</a
> i første utgave). Etter hvert håper vi å utforske
835 prosses- og metadatabeskrivelser til flere fagområder og bidra til at
836 tjenestegrensesnittet kan legge til flere pakker som «byggarkiv»,
837 «barnevern», «personal», «barnehage», der arkivfaglig metadata- og
838 dokumentasjonsbehov er kartlagt og standardisert.
</p
>
840 <p
>Nikita utvikles av en liten prosjektgruppe, og vi er alltid
841 interessert å bli flere. Hvis en åpen, fri og standardisert tilnærming
842 til arkivering høres interessant ut, bli med oss på veien videre. Vi
843 er tilstede på IRC-kanalen #nikita hos FreeNode (tilgjengelig via
845 <a href=
"https://webchat.freenode.net?channels=#nikita
">https://webchat.freenode.net?channels=#nikita
</a
>),
846 og har en e-postliste nikita-noark@nuug.no hos NUUG (tilgjengelig for
847 påmelding og arkiv på
848 <a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">https://lists.nuug.no/mailman/listinfo/nikita-noark
</a
>)
849 der en kan følge med eller være med oss på den spennende veien videre.
850 Spesifikasjonen for Noark
5 Tjenestegrensesnitt vedlikeholdes på
852 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
">https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
</a
>.
</p
>
854 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
855 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
857 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
862 <title>Official MIME type
"text/vnd.sosi
" for SOSI map data
</title>
863 <link>https://people.skolelinux.org/pere/blog/Official_MIME_type__text_vnd_sosi__for_SOSI_map_data.html
</link>
864 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Official_MIME_type__text_vnd_sosi__for_SOSI_map_data.html
</guid>
865 <pubDate>Tue,
4 Jun
2019 09:
20:
00 +
0200</pubDate>
866 <description><p
>Just
15 days ago,
867 <ahref=
"http://people.skolelinux.org/pere/blog/MIME_type__text_vnd_sosi__for_SOSI_map_data.html
">I
868 mentioned
</a
> my submission to IANA to register an official MIME type
869 for the SOSI vector map format. This morning, just an hour ago, I was
871 <a href=
"https://www.iana.org/assignments/media-types/text/vnd.sosi
">the
872 MIME type
"text/vnd.sosi
"</a
> is registered for this format. In
873 addition to this registration, my
874 <a href=
"https://github.com/file/file/blob/master/magic/Magdir/sosi
">file(
1)
875 patch for a pattern matching rule for SOSI files
</a
> has been accepted
876 into the official source of that program (pending a new release), and
877 I
've been told by the team behind
878 <a href=
"https://www.nationalarchives.gov.uk/PRONOM/
">PRONOM
</a
> that
879 the SOSI format will be included in the next release of PRONOM, which
880 they plan to release this summer around July.
</p
>
882 <p
>I am very happy to see all of this fall into place, for use by
883 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
">the
884 Noark
5 Tjenestegrensesnitt
</a
> implementations.
</p
>
886 <p
>As usual, if you use Bitcoin and want to show your support of my
887 activities, please send Bitcoin donations to my address
888 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
893 <title>Nikita version
0.4 released - free software archive API server
</title>
894 <link>https://people.skolelinux.org/pere/blog/Nikita_version_0_4_released___free_software_archive_API_server.html
</link>
895 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Nikita_version_0_4_released___free_software_archive_API_server.html
</guid>
896 <pubDate>Wed,
22 May
2019 11:
30:
00 +
0200</pubDate>
897 <description><p
>This morning, a new release of
898 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">Nikita
899 Noark
5 core project
</a
> was
900 <a href=
"https://lists.nuug.no/pipermail/nikita-noark/
2019-May/
000468.html
">announced
901 on the project mailing list
</a
>. The Nikita free software solution is
902 an implementation of the Norwegian archive standard Noark
5 used by
903 government offices in Norway. These were the changes in version
0.4
904 since version
0.3, see the email link above for links to a demo site:
</p
>
908 <li
>Roll out OData handling to all endpoints where applicable
</li
>
909 <li
>Changed the relation key for
"ny-journalpost
" to the official one.
</li
>
910 <li
>Better link generation on outgoing links.
</li
>
911 <li
>Tidy up code and make code and approaches more consistent throughout
912 the codebase
</li
>
913 <li
>Update rels to be in compliance with updated version in the
914 interface standard
</li
>
915 <li
>Avoid printing links on empty objects as they can
't have links
</li
>
916 <li
>Small bug fixes and improvements
</li
>
917 <li
>Start moving generation of outgoing links to @Service layer so access
918 control can be used when generating links
</li
>
919 <li
>Log exception that was being swallowed so it
's traceable
</li
>
920 <li
>Fix name mapping problem
</li
>
921 <li
>Update templated printing so templated should only be printed if it
922 is set true. Requires more work to roll out across entire
923 application.
</li
>
924 <li
>Remove Record-
>DocumentObject as per domain model of n5v4
</li
>
925 <li
>Add ability to delete lists filtered with OData
</li
>
926 <li
>Return NO_CONTENT (
204) on delete as per interface standard
</li
>
927 <li
>Introduce support for ConstraintViolationException exception
</li
>
928 <li
>Make Service classes extend NoarkService
</li
>
929 <li
>Make code base respect X-Forwarded-Host, X-Forwarded-Proto and
930 X-Forwarded-Port
</li
>
931 <li
>Update CorrespondencePart* code to be more in line with Single
932 Responsibility Principle
</li
>
933 <li
>Make package name follow directory structure
</li
>
934 <li
>Make sure Document number starts at
1, not
0</li
>
935 <li
>Fix isues discovered by FindBugs
</li
>
936 <li
>Update from Date to ZonedDateTime
</li
>
937 <li
>Fix wrong tablename
</li
>
938 <li
>Introduce Service layer tests
</li
>
939 <li
>Improvements to CorrespondencePart
</li
>
940 <li
>Continued work on Class / Classificationsystem
</li
>
941 <li
>Fix feature where authors were stored as storageLocations
</li
>
942 <li
>Update HQL builder for OData
</li
>
943 <li
>Update OData search capability from webpage
</li
>
947 <p
>If free and open standardized archiving API sound interesting to
948 you, please contact us on IRC
949 (
<a href=
"irc://irc.freenode.net/%
23nikita
">#nikita on
950 irc.freenode.net
</a
>) or email
951 (
<a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">nikita-noark
952 mailing list
</a
>).
</p
>
954 <p
>As usual, if you use Bitcoin and want to show your support of my
955 activities, please send Bitcoin donations to my address
956 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
961 <title>MIME type
"text/vnd.sosi
" for SOSI map data
</title>
962 <link>https://people.skolelinux.org/pere/blog/MIME_type__text_vnd_sosi__for_SOSI_map_data.html
</link>
963 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/MIME_type__text_vnd_sosi__for_SOSI_map_data.html
</guid>
964 <pubDate>Mon,
20 May
2019 08:
35:
00 +
0200</pubDate>
965 <description><p
>As part of my involvement in the work to
966 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard
">standardise
967 a REST based API for Noark
5</a
>, the Norwegian archiving standard, I
968 spent some time the last few months to try to register a
969 <a href=
"https://www.iana.org/assignments/media-types/
">MIME type
</a
>
970 and
<a href=
"https://www.nationalarchives.gov.uk/PRONOM/
">PRONOM
971 code
</a
> for the SOSI file format. The background is that there is a
972 set of formats approved for long term storage and archiving in Norway,
973 and among these formats, SOSI is the only format missing a MIME type
974 and PRONOM code.
</p
>
976 <p
>What is SOSI, you might ask? To quote Wikipedia: SOSI is short for
977 Samordnet Opplegg for Stedfestet Informasjon (literally
"Coordinated
978 Approach for Spatial Information
", but more commonly expanded in
979 English to Systematic Organization of Spatial Information). It is a
980 text based file format for geo-spatial vector information used in
981 Norway. Information about the SOSI format can be found in English
982 from
<a href=
"https://en.wikipedia.org/wiki/SOSI
">Wikipedia
</a
>. The
983 specification is available in Norwegian from
984 <a href=
"https://www.kartverket.no/geodataarbeid/Standarder/SOSI/
">the
985 Norwegian mapping authority
</a
>. The SOSI standard, which originated
986 in the beginning of nineteen eighties, was the inspiration and formed the
987 basis for the XML based
988 <a href=
"https://en.wikipedia.org/wiki/Geography_Markup_Language
">Geography
989 Markup Language
</a
>.
</p
>
991 <p
>I have so far written
992 <a href=
"https://github.com/file/file/pull/
67">a pattern matching
993 rule
</a
> for the file(
1) unix tool to recognize SOSI files, submitted
994 a request to the PRONOM project to have a PRONOM ID assigned to the
995 format (reference TNA1555078202S60), and today send a request to IANA
996 to register the
"text/vnd.sosi
" MIME type for this format (referanse
997 <a href=
"https://tools.iana.org/public-view/viewticket/
1143144">IANA
998 #
1143144</a
>). If all goes well, in a few months, anyone implementing
999 the Noark
5 Tjenestegrensesnitt API spesification should be able to
1000 use an official MIME type and PRONOM code for SOSI files. In
1001 addition, anyone using SOSI files on Linux should be able to
1002 automatically recognise the format and web sites handing out SOSI
1003 files can begin providing a more specific MIME type. So far, SOSI
1004 files has been handed out from web sites using the
1005 "application/octet-stream
" MIME type, which is just a nice way of
1006 stating
"I do not know
". Soon, we will know. :)
</p
>
1008 <p
>As usual, if you use Bitcoin and want to show your support of my
1009 activities, please send Bitcoin donations to my address
1010 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1015 <title>PlantUML for text based UML diagram modelling - nice free software
</title>
1016 <link>https://people.skolelinux.org/pere/blog/PlantUML_for_text_based_UML_diagram_modelling___nice_free_software.html
</link>
1017 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/PlantUML_for_text_based_UML_diagram_modelling___nice_free_software.html
</guid>
1018 <pubDate>Mon,
25 Mar
2019 09:
35:
00 +
0100</pubDate>
1019 <description><p
>As part of my involvement with the
1020 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">Nikita
1021 Noark
5 core project
</a
>, I have been proposing improvements to the
1022 API specification created by
<a href=
"https://www.arkivverket.no/
">The
1023 National Archives of Norway
</a
> and helped migrating the text from a
1024 version control system unfriendly binary format (docx) to Markdown in
1025 git. Combined with the migration to a public git repository (on
1026 github), this has made it possible for anyone to suggest improvement
1027 to the text.
</p
>
1029 <p
>The specification is filled with UML diagrams. I believe the
1030 original diagrams were modelled using Sparx Systems Enterprise
1031 Architect, and exported as EMF files for import into docx. This
1032 approach make it very hard to track changes using a version control
1033 system. To improve the situation I have been looking for a good text
1034 based UML format with associated command line free software tools on
1035 Linux and Windows, to allow anyone to send in corrections to the UML
1036 diagrams in the specification. The tool must be text based to work
1037 with git, and command line to be able to run it automatically to
1038 generate the diagram images. Finally, it must be free software to
1039 allow anyone, even those that can not accept a non-free software
1040 license, to contribute.
</p
>
1042 <p
>I did not know much about free software UML modelling tools when I
1043 started. I have used dia and inkscape for simple modelling in the
1044 past, but neither are available on Windows, as far as I could tell. I
1046 <a href=
"https://modeling-languages.com/text-uml-tools-complete-list/
">list
1047 of text mode uml tools
</a
>, and tested out a few of the tools listed
1048 there.
<a href=
"http://plantuml.com/
">The PlantUML tool
</a
> seemed
1049 most promising. After verifying that the packages
1050 <a href=
"https://tracker.debian.org/pkg/plantuml
">is available in
1051 Debian
</a
> and found
<a href=
"https://github.com/plantuml/plantuml
">its
1052 Java source
</a
> under a GPL license on github, I set out to test if it
1053 could represent the diagrams we needed, ie the ones currently in
1054 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
">the
1055 Noark
5 Tjenestegrensesnitt specification
</a
>. I am happy to report
1056 that it could represent them, even thought it have a few warts here
1057 and there.
</p
>
1059 <p
>After a few days of modelling I completed the task this weekend. A
1060 temporary link to the complete set of diagrams (original and from
1061 PlantUML) is available in
1062 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/issues/
76">the
1063 github issue discussing the need for a text based UML format
</a
>, but
1064 please note I lack a sensible tool to convert EMF files to PNGs, so
1065 the
"original
" rendering is not as good as the original was in the
1066 publised PDF.
</p
>
1068 <p
>Here is an example UML diagram, showing the core classes for
1069 keeping metadata about archived documents:
</p
>
1073 skinparam classAttributeIconSize
0
1075 !include media/uml-class-arkivskaper.iuml
1076 !include media/uml-class-arkiv.iuml
1077 !include media/uml-class-klassifikasjonssystem.iuml
1078 !include media/uml-class-klasse.iuml
1079 !include media/uml-class-arkivdel.iuml
1080 !include media/uml-class-mappe.iuml
1081 !include media/uml-class-merknad.iuml
1082 !include media/uml-class-registrering.iuml
1083 !include media/uml-class-basisregistrering.iuml
1084 !include media/uml-class-dokumentbeskrivelse.iuml
1085 !include media/uml-class-dokumentobjekt.iuml
1086 !include media/uml-class-konvertering.iuml
1087 !include media/uml-datatype-elektronisksignatur.iuml
1089 Arkivstruktur.Arkivskaper
"+arkivskaper
1..*
" <-o
"+arkiv
0..*
" Arkivstruktur.Arkiv
1090 Arkivstruktur.Arkiv o--
> "+underarkiv
0..*
" Arkivstruktur.Arkiv
1091 Arkivstruktur.Arkiv
"+arkiv
1" o--
> "+arkivdel
0..*
" Arkivstruktur.Arkivdel
1092 Arkivstruktur.Klassifikasjonssystem
"+klassifikasjonssystem [
0.
.1]
" <--o
"+arkivdel
1..*
" Arkivstruktur.Arkivdel
1093 Arkivstruktur.Klassifikasjonssystem
"+klassifikasjonssystem [
0.
.1]
" o--
> "+klasse
0..*
" Arkivstruktur.Klasse
1094 Arkivstruktur.Arkivdel
"+arkivdel
0.
.1" o--
> "+mappe
0..*
" Arkivstruktur.Mappe
1095 Arkivstruktur.Arkivdel
"+arkivdel
0.
.1" o--
> "+registrering
0..*
" Arkivstruktur.Registrering
1096 Arkivstruktur.Klasse
"+klasse
0.
.1" o--
> "+mappe
0..*
" Arkivstruktur.Mappe
1097 Arkivstruktur.Klasse
"+klasse
0.
.1" o--
> "+registrering
0..*
" Arkivstruktur.Registrering
1098 Arkivstruktur.Mappe --
> "+undermappe
0..*
" Arkivstruktur.Mappe
1099 Arkivstruktur.Mappe
"+mappe
0.
.1" o--
> "+registrering
0..*
" Arkivstruktur.Registrering
1100 Arkivstruktur.Merknad
"+merknad
0..*
" <--* Arkivstruktur.Mappe
1101 Arkivstruktur.Merknad
"+merknad
0..*
" <--* Arkivstruktur.Dokumentbeskrivelse
1102 Arkivstruktur.Basisregistrering -|
> Arkivstruktur.Registrering
1103 Arkivstruktur.Merknad
"+merknad
0..*
" <--* Arkivstruktur.Basisregistrering
1104 Arkivstruktur.Registrering
"+registrering
1..*
" o--
> "+dokumentbeskrivelse
0..*
" Arkivstruktur.Dokumentbeskrivelse
1105 Arkivstruktur.Dokumentbeskrivelse
"+dokumentbeskrivelse
1" o-
> "+dokumentobjekt
0..*
" Arkivstruktur.Dokumentobjekt
1106 Arkivstruktur.Dokumentobjekt *-
> "+konvertering
0..*
" Arkivstruktur.Konvertering
1107 Arkivstruktur.ElektroniskSignatur -[hidden]-
> Arkivstruktur.Dokumentobjekt
1111 <p
><a href=
"http://plantuml.com/class-diagram
">The format
</a
> is quite
1112 compact, with little redundant information. The text expresses
1113 entities and relations, and there is little layout related fluff. One
1114 can reuse content by using include files, allowing for consistent
1115 naming across several diagrams. The include files can be standalone
1116 PlantUML too. Here is the content of
1117 <tt
>media/uml-class-arkivskaper.iuml
</tt
>:
</p
>
1121 class Arkivstruktur.Arkivskaper
<Arkivenhet
> {
1122 +arkivskaperID : string
1123 +arkivskaperNavn : string
1124 +beskrivelse : string [
0.
.1]
1129 <p
>This is what the complete diagram for the PlantUML notation above
1130 look like:
</p
>
1132 <p
><img width=
"80%
" src=
"http://people.skolelinux.org/pere/blog/images/
2019-
03-
25-noark5-plantuml-diagrameksempel.png
"></p
>
1134 <p
>A cool feature of PlantUML is that the generated PNG files include
1135 the entire original source diagram as text. The source (with include
1136 statements expanded) can be extracted using for example
1137 <tt
>exiftool
</tt
>. Another cool feature is that parts of the entities
1138 can be hidden after inclusion. This allow to use include files with
1139 all attributes listed, even for UML diagrams that should not list any
1140 attributes.
</p
>
1142 <p
>The diagram also show some of the warts. Some times the layout
1143 engine place text labels on top of each other, and some times it place
1144 the class boxes too close to each other, not leaving room for the
1145 labels on the relationship arrows. The former can be worked around by
1146 placing extra newlines in the labes (ie
"\n
"). I did not do it here
1147 to be able to demonstrate the issue. I have not found a good way
1148 around the latter, so I normally try to reduce the problem by changing
1149 from vertical to horizontal links to improve the layout.
</p
>
1151 <p
>All in all, I am quite happy with PlantUML, and very impressed with
1152 how quickly its lead developer responds to questions. So far I got an
1153 answer to my questions in a few hours when I send an email. I
1154 definitely recommend looking at PlantUML if you need to make UML
1155 diagrams. Note, PlantUML can draw a lot more than class relations.
1156 Check out the documention for a complete list. :)
</p
>
1158 <p
>As usual, if you use Bitcoin and want to show your support of my
1159 activities, please send Bitcoin donations to my address
1160 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1165 <title>Release
0.3 of free software archive API system Nikita announced
</title>
1166 <link>https://people.skolelinux.org/pere/blog/Release_0_3_of_free_software_archive_API_system_Nikita_announced.html
</link>
1167 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Release_0_3_of_free_software_archive_API_system_Nikita_announced.html
</guid>
1168 <pubDate>Sun,
24 Mar
2019 14:
30:
00 +
0100</pubDate>
1169 <description><p
>Yesterday, a new release of
1170 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">Nikita
1171 Noark
5 core project
</a
> was
1172 <a href=
"https://lists.nuug.no/pipermail/nikita-noark/
2019-March/
000451.html
">announced
1173 on the project mailing list
</a
>. The free software solution is an
1174 implementation of the Norwegian archive standard Noark
5 used by
1175 government offices in Norway. These were the changes in version
0.3
1176 since version
0.2.1 (from NEWS.md):
</p
>
1179 <li
>Improved ClassificationSystem and Class behaviour.
</li
>
1180 <li
>Tidied up known inconsistencies between domain model and hateaos links.
</li
>
1181 <li
>Added experimental code for blockchain integration.
</li
>
1182 <li
>Make token expiry time configurable at upstart from properties file.
</li
>
1183 <li
>Continued work on OData search syntax.
</li
>
1184 <li
>Started work on pagination for entities, partly implemented for Saksmappe.
</li
>
1185 <li
>Finalise ClassifiedCode Metadata entity.
</li
>
1186 <li
>Implement mechanism to check if authentication token is still
1187 valid. This allow the GUI to return a more sensible message to the
1188 user if the token is expired.
</li
>
1189 <li
>Reintroduce browse.html page to allow user to browse JSON API using
1190 hateoas links.
</li
>
1191 <li
>Fix bug in handling file/mappe sequence number. Year change was
1192 not properly handled.
</li
>
1193 <li
>Update application yml files to be in sync with current development.
</li
>
1194 <li
>Stop
'converting
' everything to PDF using libreoffice. Only
1195 convert the file formats doc, ppt, xls, docx, pptx, xlsx, odt, odp
1197 <li
>Continued code style fixing, making code more readable.
</li
>
1198 <li
>Minor bug fixes.
</li
>
1202 <p
>If free and open standardized archiving API sound interesting to
1203 you, please contact us on IRC
1204 (
<a href=
"irc://irc.freenode.net/%
23nikita
">#nikita on
1205 irc.freenode.net
</a
>) or email
1206 (
<a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">nikita-noark
1207 mailing list
</a
>).
</p
>
1209 <p
>As usual, if you use Bitcoin and want to show your support of my
1210 activities, please send Bitcoin donations to my address
1211 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1216 <title>Åpen og gjennomsiktig vedlikehold av spesifikasjonen for Noark
5 Tjenestegrensesnitt
</title>
1217 <link>https://people.skolelinux.org/pere/blog/_pen_og_gjennomsiktig_vedlikehold_av_spesifikasjonen_for_Noark_5_Tjenestegrensesnitt.html
</link>
1218 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/_pen_og_gjennomsiktig_vedlikehold_av_spesifikasjonen_for_Noark_5_Tjenestegrensesnitt.html
</guid>
1219 <pubDate>Mon,
11 Mar
2019 16:
00:
00 +
0100</pubDate>
1220 <description><p
>Et virksomhetsarkiv for meg, er et arbeidsverktøy der en enkelt kan
1221 finne informasjonen en trenger når en trenger det, og der
1222 virksomhetens samlede kunnskap er tilgjengelig. Det må være greit å
1223 finne frem i, litt som en bibliotek. Men der et bibliotek gjerne tar
1224 vare på offentliggjort informasjon som er tilgjengelig flere steder,
1225 tar et arkiv vare på virksomhetsintern og til tider personlig
1226 informasjon som ofte kun er tilgjengelig fra et sted.
</p
>
1228 <p
>Jeg mistenker den eneste måten å sikre at arkivet inneholder den
1229 samlede kunnskapen i en virksomhet, er å bruke det som virksomhetens
1230 kunnskapslager. Det innebærer å automatisk kopiere (brev, epost,
1231 SMS-er etc) inn i arkivet når de sendes og mottas, og der filtrere
1232 vekk det en ikke vil ta vare på, og legge på metadata om det som er
1233 samlet inn for enkel gjenfinning. En slik bruk av arkivet innebærer at
1234 arkivet er en del av daglig virke, ikke at det er siste hvilested for
1235 informasjon ingen lenger har daglig bruk for. For å kunne være en del
1236 av det daglige virket må arkivet enkelt kunne integreres med andre
1237 systemer. I disse dager betyr det å tilby arkivet som en
1238 nett-tjeneste til hele virksomheten, tilgjengelig for både mennesker
1239 og datamaskiner. Det betyr i tur å både tilby nettsider og et
1240 maskinlesbart grensesnitt.
</p
>
1242 <p
>For noen år siden erkjente visjonære arkivarer fordelene med et
1243 standardisert maskinlesbart grensesnitt til organisasjonens arkiv. De
1244 gikk igang med å lage noe de kalte
1245 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
">Noark
1246 5 Tjenestegrensesnitt
</a
>. Gjort riktig, så åpner slike maskinlesbare
1247 grensesnitt for samvirke på tvers av uavhengige programvaresystemer.
1248 Gjort feil, vil det blokkere for samvirke og bidra til
1249 leverandørinnlåsing. For å gjøre det riktig så må grensesnittet være
1250 klart og entydig beskrevet i en spesifikasjon som gjør at
1251 spesifikasjonen tolkes på samme måte uavhengig av hvem som leser den,
1252 og uavhengig av hvem som tar den i bruk.
</p
>
1254 <p
>For å oppnå klare og entydige beskrivelser i en spesifikasjon, som
1255 trengs for å kunne få en fri og åpen standard (se
1256 <a href=
"http://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html
">Digistan-definisjon
</a
>),
1257 så trengs det en åpen og gjennomsiktig inngangsport med lav terskel,
1258 der de som forsøker å ta den i bruk enkelt kan få inn korreksjoner,
1259 etterlyse klargjøringer og rapportere uklarheter i spesifikasjonen.
1260 En trenger også automatiserte datasystemer som måler og sjekker at et
1261 gitt grensesnitt fungerer i tråd med spesifikasjonen.
</p
>
1263 <p
>For Noark
5 Tjenestegrensesnittet er det nå etablert en slik åpen
1264 og gjennomsiktig inngangsport på prosjekttjenesten github. Denne
1265 inngangsporten består først og fremst av en åpen portal som lar enhver
1266 se hva som er gjort av endringer i spesifikasjonsteksten over tid, men
1267 det hører også med et åpent
&quot;diskusjonsforum
&quot; der en kan
1268 komme med endringsforslag og forespørsler om klargjøringer. Alle
1269 registrerte brukere på github kan bidra med innspill til disse
1270 henvendelsene.
</p
>
1272 <p
>I samarbeide med Arkivverket har jeg fått opprettet et git-depot
1273 med spesifikasjonsteksten for tjenestegrensesnittet, der det er lagt
1274 inn historikk for endringer i teksten de siste årene, samt lagt inn
1275 endringsforslag og forespørsler om klargjøring av teksten. Bakgrunnen
1276 for at jeg bidro med dette er at jeg er involvert i
1277 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core
">Nikita-prosjektet
</a
>,
1278 som lager en fri programvare-utgave av Noark
5 Tjenestegrensesnitt.
1279 Det er først når en forsøker å lage noe i tråd med en spesifikasjon at
1280 en oppdager hvor mange detaljer som må beskrives i spesifikasjonen for
1281 å sikre samhandling.
</p
>
1283 <p
>Spesifikasjonen vedlikeholdes i et rent tekstformat, for å ha et
1284 format egnet for versjonskontroll via versjontrollsystemet git. Dette
1285 gjør det både enkelt å se konkret hvilke endringer som er gjort når,
1286 samt gjør det praktisk mulig for enhver med github-konto å sende inn
1287 endringsforslag med formuleringer til spesifikasjonsteksten. Dette
1288 tekstformatet vises frem som nettsider på github, slik at en ikke
1289 trenger spesielle verktøy for å se på siste utgave av
1290 spesifikasjonen.
</p
>
1292 <p
>Fra dette rene tekstformatet kan det så avledes ulike formater, som
1293 HTML for websider, PDF for utskrift på papir og ePub for lesing med
1294 ebokleser. Avlednings-systemet (byggesystemet) bruker i dag
1295 verktøyene pandoc, latex, docbook-xsl og GNU make til
1296 transformasjonen. Tekstformatet som brukes dag er
1297 <a href=
"https://www.markdownguide.org/
">Markdown
</a
>, men det vurderes
1299 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/issues/
9">endre
1300 til formatet RST
</a
> i fremtiden for bedre styring av utseende på
1301 PDF-utgaven.
</p
>
1303 <p
>Versjonskontrollsystemet git ble valgt da det er både fleksibelt,
1304 avansert og enkelt å ta i bruk. Github ble valgt (foran f.eks. Gitlab
1305 som vi bruker i Nikita), da Arkivverket allerede hadde tatt i bruk
1306 Github i andre sammenhenger.
</p
>
1308 <p
>Enkle endringer i teksten kan gjøres av priviligerte brukere
1309 direkte i nettsidene til Github, ved å finne aktuell fil som skal
1310 endres (f.eks. kapitler/
03-konformitet.md), klikke på den lille
1311 bokstaven i høyre hjørne over teksten. Det kommer opp en nettside der
1312 en kan endre teksten slik en ønsker. Når en er fornøyd med endringen
1313 så må endringen
&quot;sjekkes inn
&quot; i historikken. Det gjøres ved
1314 å gi en kort beskrivelse av endringen (beskriv helst hvorfor endringen
1315 trengs, ikke hva som er endret), under overskriften
&quot;Commit
1316 changes
&quot;. En kan og bør legge inn en lengre forklaring i det
1317 større skrivefeltet, før en velger om endringen skal sendes direkte
1318 til
'master
'-grenen (dvs. autorativ utgave av spesifikasjonen) eller
1319 om en skal lage en ny gren for denne endringen og opprette en
1320 endringsforespørsel (aka
&quot;Pull Request
&quot;/PR). Når alt dette
1321 er gjort kan en velge
&quot;Commit changes
&quot; for å sende inn
1322 endringen. Hvis den er lagt inn i
&quot;master
&quot;-grenen så er den
1323 en offisiell del av spesifikasjonen med en gang. Hvis den derimot er
1324 en endringsforespørsel, så legges den inn i
1325 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/pulls
">listen
1326 over forslag til endringer
</a
> som venter på korrekturlesing og
1327 godkjenning.
</p
>
1329 <p
>Større endringer (for eksempel samtidig endringer i flere filer)
1330 gjøres enklest ved å hente ned en kopi av git-depoet lokalt og gjøre
1331 endringene der før endringsforslaget sendes inn. Denne prosessen er
1332 godt beskrivet i dokumentasjon fra github. Git-prosjektet som skal
1333 &quot;klones
&quot; er
1334 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
">https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/
</a
>.
</p
>
1336 <p
>For å registrere nye utfordringer (issues) eller kommentere på
1337 eksisterende utfordringer benyttes nettsiden
1338 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/issues
">https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/issues
</a
>.
1339 I skrivende stund er det
48 åpne og
11 avsluttede utfordringer. Et
1340 forslag til hva som bør være med når en beskriver en utfordring er
1341 tilgjengelig som utfordring
1342 <a href=
"https://github.com/arkivverket/noark5-tjenestegrensesnitt-standard/issues/
14">#
14</a
>.
</p
>
1344 <p
>For å bygge en PDF-utgave av spesifikasjonen så bruker jeg i dag en
1345 Debian GNU/Linux-maskin med en rekke programpakker installert. Når
1346 dette er på plass, så holder det å kjøre kommandoen
'make pdf html
' på
1347 kommandolinjen, vente ca.
20 sekunder, før spesifikasjon.pdf og
1348 spesifikasjon.html ligger klar på disken. Verktøyene for bygging av
1349 PDF, HTML og ePub-utgave er også tilgjengelig på Windows og
1352 <p
>Github bidrar med rammeverket. Men for at åpent vedlikehold av
1353 spesifikasjonen skal fungere, så trengs det folk som bidrar med sin
1354 tid og kunnskap. Arkivverket har sagt de skal bidra med innspill og
1355 godkjenne forslag til endringer, men det blir størst suksess hvis alle
1356 som bruker og lager systemer basert på Noark
5 Tjenestegrensesnitt
1357 bidrar med sin kunnskap og kommer med forslag til forebedringer. Jeg
1358 stiller. Blir du med?
</p
>
1360 <p
>Det er viktig å legge til rette for åpen diskusjon blant alle
1361 interesserte, som ikke krever at en må godta lange kontrakter med
1362 vilkår for deltagelse. Inntil Arkivverket dukker opp på IRC har vi
1363 laget en IRC-kanal der interesserte enkelt kan orientere seg og
1364 diskutere tjenestegrensesnittet. Alle er velkommen til å ta turen
1366 <a href=
"https://webchat.freenode.net/?channels=nikita
">#nikita
</a
>
1367 (f.eks. via irc.freenode.net) for å møte likesinnede.
</p
>
1369 <p
>Det holder dog ikke å ha en god spesifikasjon, hvis ikke de som tar
1370 den i bruk gjør en like god jobb. For å automatisk teste om et konkret
1371 tjenestegrensesnitt følger (min) forståelse av
1372 spesifikasjonsdokumentet, har jeg skrevet et program som kobler seg
1373 opp til et Noark
5v4 REST-tjeneste og tester alt den finner for å se
1374 om det er i henhold til min tolkning av spesifikasjonen. Dette
1375 verktøyet er tilgjengelig fra
1376 <a href=
"https://github.com/petterreinholdtsen/noark5-tester
">https://github.com/petterreinholdtsen/noark5-tester
</a
>,
1377 og brukes daglig mens vi utvikler Nikita for å sikre at vi ikke
1378 introduserer nye feil. Hvis en skal sikre samvirke på tvers av ulike
1379 systemer er det helt essensielt å kunne raskt og automatisk sjekke at
1380 tjenestegrensesnittet oppfører seg som forventet. Jeg håper andre som
1381 lager sin utgave av tjenestegrensesnittet vi bruke dette verktøyet,
1382 slik at vi tidlig og raskt kan oppdage hvor vi har tolket
1383 spesifikasjonen ulikt, og dermed få et godt grunnlag for å gjøre
1384 spesifikasjonsteksten enda klarere og bedre.
</p
>
1386 <p
>Dagens beskrivelse av Noark
5 Tjenestegrensesnitt er et svært godt
1387 utgangspunkt for å gjøre virksomhetens arkiv til et dynamisk og
1388 sentralt arbeidsverktøy i organisasjonen. Blir du med å gjøre den
1389 enda bedre?
</p
>
1394 <title>Why is your site not using Content Security Policy / CSP?
</title>
1395 <link>https://people.skolelinux.org/pere/blog/Why_is_your_site_not_using_Content_Security_Policy___CSP_.html
</link>
1396 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Why_is_your_site_not_using_Content_Security_Policy___CSP_.html
</guid>
1397 <pubDate>Sun,
9 Dec
2018 15:
00:
00 +
0100</pubDate>
1398 <description><p
>Yesterday, I had the pleasure of watching on Frikanalen the OWASP
1399 talk by Scott Helme titled
1400 "<a href=
"https://frikanalen.no/video/
626080/
">What We’ve Learned From
1401 Billions of Security Reports
</a
>". I had not heard of the
1402 <a href=
"https://en.wikipedia.org/wiki/Content_Security_Policy
">Content
1403 Security Policy standard
</a
> nor its ability to
"call home
" when a
1404 browser detect a policy breach (I do not follow web page design
1405 development much these days), and found the talk very illuminating.
</p
>
1407 <p
>The mechanism allow a web site owner to use HTTP headers to tell
1408 visitors web browser which sources (internal and external) are allowed to
1409 be used on the web site. Thus it become possible to enforce a
"only
1410 local content
" policy despite web designers urge to fetch programs
1411 from random sites on the Internet, like the one
1412 <a href=
"https://securityaffairs.co/wordpress/
68966/hacking/browsealoud-plugin-hack.html
">enabling
1413 the attack
</a
> reported by Scott Helme earlier this year.
</p
>
1415 <p
>Using CSP seem like an obvious thing for a site admin to implement
1416 to take some control over the information leak that occur when
1417 external sources are used to render web pages, it is a mystery more
1418 sites are not using CSP? It is being
1419 <a href=
"https://www.w3.org/TR/CSP/
">standardized under W3C
</a
> these
1420 days, and is supposed by most web browsers
</p
>
1422 <p
>I managed to find
<a href=
"https://github.com/mozilla/django-csp
">a
1423 Django middleware for implementing CSP
</a
> and was happy to discover
1424 it was already in Debian. I plan to use it to add CSP support to the
1425 Frikanalen web site soon.
</p
>
1427 <p
>As usual, if you use Bitcoin and want to show your support of my
1428 activities, please send Bitcoin donations to my address
1429 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1434 <title>Time for an official MIME type for patches?
</title>
1435 <link>https://people.skolelinux.org/pere/blog/Time_for_an_official_MIME_type_for_patches_.html
</link>
1436 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Time_for_an_official_MIME_type_for_patches_.html
</guid>
1437 <pubDate>Thu,
1 Nov
2018 08:
15:
00 +
0100</pubDate>
1438 <description><p
>As part of my involvement in
1439 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core
">the Nikita
1440 archive API project
</a
>, I
've been importing a fairly large lump of
1441 emails into a test instance of the archive to see how well this would
1442 go. I picked a subset of
<a href=
"https://notmuchmail.org/
">my
1443 notmuch email database
</a
>, all public emails sent to me via
1444 @lists.debian.org, giving me a set of around
216 000 emails to import.
1445 In the process, I had a look at the various attachments included in
1446 these emails, to figure out what to do with attachments, and noticed
1447 that one of the most common attachment formats do not have
1448 <a href=
"https://www.iana.org/assignments/media-types/media-types.xhtml
">an
1449 official MIME type
</a
> registered with IANA/IETF. The output from
1450 diff, ie the input for patch, is on the top
10 list of formats
1451 included in these emails. At the moment people seem to use either
1452 text/x-patch or text/x-diff, but neither is officially registered. It
1453 would be better if one official MIME type were registered and used
1454 everywhere.
</p
>
1456 <p
>To try to get one official MIME type for these files, I
've brought
1458 <a href=
"https://www.ietf.org/mailman/listinfo/media-types
">the
1459 media-types mailing list
</a
>. If you are interested in discussion
1460 which MIME type to use as the official for patch files, or involved in
1461 making software using a MIME type for patches, perhaps you would like
1462 to join the discussion?
</p
>
1464 <p
>As usual, if you use Bitcoin and want to show your support of my
1465 activities, please send Bitcoin donations to my address
1466 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1471 <title>Release
0.2 of free software archive system Nikita announced
</title>
1472 <link>https://people.skolelinux.org/pere/blog/Release_0_2_of_free_software_archive_system_Nikita_announced.html
</link>
1473 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Release_0_2_of_free_software_archive_system_Nikita_announced.html
</guid>
1474 <pubDate>Thu,
18 Oct
2018 14:
40:
00 +
0200</pubDate>
1475 <description><p
>This morning, the new release of the
1476 <a href=
"https://gitlab.com/OsloMet-ABI/nikita-noark5-core/
">Nikita
1477 Noark
5 core project
</a
> was
1478 <a href=
"https://lists.nuug.no/pipermail/nikita-noark/
2018-October/
000406.html
">announced
1479 on the project mailing list
</a
>. The free software solution is an
1480 implementation of the Norwegian archive standard Noark
5 used by
1481 government offices in Norway. These were the changes in version
0.2
1482 since version
0.1.1 (from NEWS.md):
1485 <li
>Fix typos in REL names
</li
>
1486 <li
>Tidy up error message reporting
</li
>
1487 <li
>Fix issue where we used Integer.valueOf(), not Integer.getInteger()
</li
>
1488 <li
>Change some String handling to StringBuffer
</li
>
1489 <li
>Fix error reporting
</li
>
1490 <li
>Code tidy-up
</li
>
1491 <li
>Fix issue using static non-synchronized SimpleDateFormat to avoid
1492 race conditions
</li
>
1493 <li
>Fix problem where deserialisers were treating integers as strings
</li
>
1494 <li
>Update methods to make them null-safe
</li
>
1495 <li
>Fix many issues reported by coverity
</li
>
1496 <li
>Improve equals(), compareTo() and hash() in domain model
</li
>
1497 <li
>Improvements to the domain model for metadata classes
</li
>
1498 <li
>Fix CORS issues when downloading document
</li
>
1499 <li
>Implementation of case-handling with registryEntry and document upload
</li
>
1500 <li
>Better support in Javascript for OPTIONS
</li
>
1501 <li
>Adding concept description of mail integration
</li
>
1502 <li
>Improve setting of default values for GET on ny-journalpost
</li
>
1503 <li
>Better handling of required values during deserialisation
</li
>
1504 <li
>Changed tilknyttetDato (M620) from date to dateTime
</li
>
1505 <li
>Corrected some opprettetDato (M600) (de)serialisation errors.
</li
>
1506 <li
>Improve parse error reporting.
</li
>
1507 <li
>Started on OData search and filtering.
</li
>
1508 <li
>Added Contributor Covenant Code of Conduct to project.
</li
>
1509 <li
>Moved repository and project from Github to Gitlab.
</li
>
1510 <li
>Restructured repository, moved code into src/ and web/.
</li
>
1511 <li
>Updated code to use Spring Boot version
2.
</li
>
1512 <li
>Added support for OAuth2 authentication.
</li
>
1513 <li
>Fixed several bugs discovered by Coverity.
</li
>
1514 <li
>Corrected handling of date/datetime fields.
</li
>
1515 <li
>Improved error reporting when rejecting during deserializatoin.
</li
>
1516 <li
>Adjusted default values provided for ny-arkivdel, ny-mappe,
1517 ny-saksmappe, ny-journalpost and ny-dokumentbeskrivelse.
</li
>
1518 <li
>Several fixes for korrespondansepart*.
</li
>
1519 <li
>Updated web GUI:
1521 <li
>Now handle both file upload and download.
</li
>
1522 <li
>Uses new OAuth2 authentication for login.
</li
>
1523 <li
>Forms now fetches default values from API using GET.
</li
>
1524 <li
>Added RFC
822 (email), TIFF and JPEG to list of possible file formats.
</li
>
1525 </ul
></li
>
1528 <p
>The changes and improvements are extensive. Running diffstat on
1529 the changes between git tab
0.1.1 and
0.2 show
1098 files changed,
1530 108666 insertions(+),
54066 deletions(-).
</p
>
1532 <p
>If free and open standardized archiving API sound interesting to
1533 you, please contact us on IRC
1534 (
<a href=
"irc://irc.freenode.net/%
23nikita
">#nikita on
1535 irc.freenode.net
</a
>) or email
1536 (
<a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">nikita-noark
1537 mailing list
</a
>).
</p
>
1539 <p
>As usual, if you use Bitcoin and want to show your support of my
1540 activities, please send Bitcoin donations to my address
1541 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1546 <title>Release
0.1.1 of free software archive system Nikita announced
</title>
1547 <link>https://people.skolelinux.org/pere/blog/Release_0_1_1_of_free_software_archive_system_Nikita_announced.html
</link>
1548 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Release_0_1_1_of_free_software_archive_system_Nikita_announced.html
</guid>
1549 <pubDate>Sat,
10 Jun
2017 00:
40:
00 +
0200</pubDate>
1550 <description><p
>I am very happy to report that the
1551 <a href=
"https://github.com/hiOA-ABI/nikita-noark5-core
">Nikita Noark
5
1552 core project
</a
> tagged its second release today. The free software
1553 solution is an implementation of the Norwegian archive standard Noark
1554 5 used by government offices in Norway. These were the changes in
1555 version
0.1.1 since version
0.1.0 (from NEWS.md):
1559 <li
>Continued work on the angularjs GUI, including document upload.
</li
>
1560 <li
>Implemented correspondencepartPerson, correspondencepartUnit and
1561 correspondencepartInternal
</li
>
1562 <li
>Applied for coverity coverage and started submitting code on
1563 regualr basis.
</li
>
1564 <li
>Started fixing bugs reported by coverity
</li
>
1565 <li
>Corrected and completed HATEOAS links to make sure entire API is
1566 available via URLs in _links.
</li
>
1567 <li
>Corrected all relation URLs to use trailing slash.
</li
>
1568 <li
>Add initial support for storing data in ElasticSearch.
</li
>
1569 <li
>Now able to receive and store uploaded files in the archive.
</li
>
1570 <li
>Changed JSON output for object lists to have relations in _links.
</li
>
1571 <li
>Improve JSON output for empty object lists.
</li
>
1572 <li
>Now uses correct MIME type application/vnd.noark5-v4+json.
</li
>
1573 <li
>Added support for docker container images.
</li
>
1574 <li
>Added simple API browser implemented in JavaScript/Angular.
</li
>
1575 <li
>Started on archive client implemented in JavaScript/Angular.
</li
>
1576 <li
>Started on prototype to show the public mail journal.
</li
>
1577 <li
>Improved performance by disabling Sprint FileWatcher.
</li
>
1578 <li
>Added support for
'arkivskaper
',
'saksmappe
' and
'journalpost
'.
</li
>
1579 <li
>Added support for some metadata codelists.
</li
>
1580 <li
>Added support for Cross-origin resource sharing (CORS).
</li
>
1581 <li
>Changed login method from Basic Auth to JSON Web Token (RFC
7519)
1583 <li
>Added support for GET-ing ny-* URLs.
</li
>
1584 <li
>Added support for modifying entities using PUT and eTag.
</li
>
1585 <li
>Added support for returning XML output on request.
</li
>
1586 <li
>Removed support for English field and class names, limiting ourself
1587 to the official names.
</li
>
1588 <li
>...
</li
>
1592 <p
>If this sound interesting to you, please contact us on IRC (#nikita
1593 on irc.freenode.net) or email
1594 (
<a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">nikita-noark
1595 mailing list).
</p
>
1600 <title>Idea for storing trusted timestamps in a Noark
5 archive
</title>
1601 <link>https://people.skolelinux.org/pere/blog/Idea_for_storing_trusted_timestamps_in_a_Noark_5_archive.html
</link>
1602 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Idea_for_storing_trusted_timestamps_in_a_Noark_5_archive.html
</guid>
1603 <pubDate>Wed,
7 Jun
2017 21:
40:
00 +
0200</pubDate>
1604 <description><p
><em
>This is a copy of
1605 <a href=
"https://lists.nuug.no/pipermail/nikita-noark/
2017-June/
000297.html
">an
1606 email I posted to the nikita-noark mailing list
</a
>. Please follow up
1607 there if you would like to discuss this topic. The background is that
1608 we are making a free software archive system based on the Norwegian
1609 <a href=
"https://www.arkivverket.no/forvaltning-og-utvikling/regelverk-og-standarder/noark-standarden
">Noark
1610 5 standard
</a
> for government archives.
</em
></p
>
1612 <p
>I
've been wondering a bit lately how trusted timestamps could be
1614 <a href=
"https://en.wikipedia.org/wiki/Trusted_timestamping
">Trusted
1615 timestamps
</a
> can be used to verify that some information
1616 (document/file/checksum/metadata) have not been changed since a
1617 specific time in the past. This is useful to verify the integrity of
1618 the documents in the archive.
</p
>
1620 <p
>Then it occured to me, perhaps the trusted timestamps could be
1621 stored as dokument variants (ie dokumentobjekt referered to from
1622 dokumentbeskrivelse) with the filename set to the hash it is
1625 <p
>Given a
"dokumentbeskrivelse
" with an associated
"dokumentobjekt
",
1626 a new dokumentobjekt is associated with
"dokumentbeskrivelse
" with the
1627 same attributes as the stamped dokumentobjekt except these
1628 attributes:
</p
>
1632 <li
>format -
> "RFC3161
"
1633 <li
>mimeType -
> "application/timestamp-reply
"
1634 <li
>formatDetaljer -
> "&lt;source URL for timestamp service
&gt;
"
1635 <li
>filenavn -
> "&lt;sjekksum
&gt;.tsr
"
1639 <p
>This assume a service following
1640 <a href=
"https://tools.ietf.org/html/rfc3161
">IETF RFC
3161</a
> is
1641 used, which specifiy the given MIME type for replies and the .tsr file
1642 ending for the content of such trusted timestamp. As far as I can
1643 tell from the Noark
5 specifications, it is OK to have several
1644 variants/renderings of a dokument attached to a given
1645 dokumentbeskrivelse objekt. It might be stretching it a bit to make
1646 some of these variants represent crypto-signatures useful for
1647 verifying the document integrity instead of representing the dokument
1650 <p
>Using the source of the service in formatDetaljer allow several
1651 timestamping services to be used. This is useful to spread the risk
1652 of key compromise over several organisations. It would only be a
1653 problem to trust the timestamps if all of the organisations are
1654 compromised.
</p
>
1656 <p
>The following oneliner on Linux can be used to generate the tsr
1657 file. $input is the path to the file to checksum, and $sha256 is the
1658 SHA-
256 checksum of the file (ie the
"<sjekksum
>.tsr
" value mentioned
1661 <p
><blockquote
><pre
>
1662 openssl ts -query -data
"$inputfile
" -cert -sha256 -no_nonce \
1663 | curl -s -H
"Content-Type: application/timestamp-query
" \
1664 --data-binary
"@-
" http://zeitstempel.dfn.de
> $sha256.tsr
1665 </pre
></blockquote
></p
>
1667 <p
>To verify the timestamp, you first need to download the public key
1668 of the trusted timestamp service, for example using this command:
</p
>
1670 <p
><blockquote
><pre
>
1671 wget -O ca-cert.txt \
1672 https://pki.pca.dfn.de/global-services-ca/pub/cacert/chain.txt
1673 </pre
></blockquote
></p
>
1675 <p
>Note, the public key should be stored alongside the timestamps in
1676 the archive to make sure it is also available
100 years from now. It
1677 is probably a good idea to standardise how and were to store such
1678 public keys, to make it easier to find for those trying to verify
1679 documents
100 or
1000 years from now. :)
</p
>
1681 <p
>The verification itself is a simple openssl command:
</p
>
1683 <p
><blockquote
><pre
>
1684 openssl ts -verify -data $inputfile -in $sha256.tsr \
1685 -CAfile ca-cert.txt -text
1686 </pre
></blockquote
></p
>
1688 <p
>Is there any reason this approach would not work? Is it somehow against
1689 the Noark
5 specification?
</p
>
1694 <title>Epost inn som arkivformat i Riksarkivarens forskrift?
</title>
1695 <link>https://people.skolelinux.org/pere/blog/Epost_inn_som_arkivformat_i_Riksarkivarens_forskrift_.html
</link>
1696 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Epost_inn_som_arkivformat_i_Riksarkivarens_forskrift_.html
</guid>
1697 <pubDate>Thu,
27 Apr
2017 11:
30:
00 +
0200</pubDate>
1698 <description><p
>I disse dager, med frist
1. mai, har Riksarkivaren ute en høring på
1699 sin forskrift. Som en kan se er det ikke mye tid igjen før fristen
1700 som går ut på søndag. Denne forskriften er det som lister opp hvilke
1701 formater det er greit å arkivere i
1702 <a href=
"http://www.arkivverket.no/arkivverket/Offentleg-forvalting/Noark/Noark-
5">Noark
1703 5-løsninger
</a
> i Norge.
</p
>
1705 <p
>Jeg fant høringsdokumentene hos
1706 <a href=
"https://www.arkivrad.no/aktuelt/riksarkivarens-forskrift-pa-horing
">Norsk
1707 Arkivråd
</a
> etter å ha blitt tipset på epostlisten til
1708 <a href=
"https://github.com/hiOA-ABI/nikita-noark5-core
">fri
1709 programvareprosjektet Nikita Noark5-Core
</a
>, som lager et Noark
5
1710 Tjenestegresesnitt. Jeg er involvert i Nikita-prosjektet og takket
1711 være min interesse for tjenestegrensesnittsprosjektet har jeg lest en
1712 god del Noark
5-relaterte dokumenter, og til min overraskelse oppdaget
1713 at standard epost ikke er på listen over godkjente formater som kan
1714 arkiveres. Høringen med frist søndag er en glimrende mulighet til å
1715 forsøke å gjøre noe med det. Jeg holder på med
1716 <a href=
"https://github.com/petterreinholdtsen/noark5-tester/blob/master/docs/hoering-arkivforskrift.tex
">egen
1717 høringsuttalelse
</a
>, og lurer på om andre er interessert i å støtte
1718 forslaget om å tillate arkivering av epost som epost i arkivet.
</p
>
1720 <p
>Er du igang med å skrive egen høringsuttalelse allerede? I så fall
1721 kan du jo vurdere å ta med en formulering om epost-lagring. Jeg tror
1722 ikke det trengs så mye. Her et kort forslag til tekst:
</p
>
1724 <p
><blockquote
>
1726 <p
>Viser til høring sendt ut
2017-
02-
17 (Riksarkivarens referanse
1727 2016/
9840 HELHJO), og tillater oss å sende inn noen innspill om
1728 revisjon av Forskrift om utfyllende tekniske og arkivfaglige
1729 bestemmelser om behandling av offentlige arkiver (Riksarkivarens
1730 forskrift).
</p
>
1732 <p
>Svært mye av vår kommuikasjon foregår i dag på e-post. Vi
1733 foreslår derfor at Internett-e-post, slik det er beskrevet i IETF
1735 <a href=
"https://tools.ietf.org/html/rfc5322
">https://tools.ietf.org/html/rfc5322
</a
>. bør
1736 inn som godkjent dokumentformat. Vi foreslår at forskriftens
1737 oversikt over godkjente dokumentformater ved innlevering i §
5-
16
1738 endres til å ta med Internett-e-post.
</p
>
1740 </blockquote
></p
>
1742 <p
>Som del av arbeidet med tjenestegrensesnitt har vi testet hvordan
1743 epost kan lagres i en Noark
5-struktur, og holder på å skrive et
1744 forslag om hvordan dette kan gjøres som vil bli sendt over til
1745 arkivverket så snart det er ferdig. De som er interesserte kan
1746 <a href=
"https://github.com/petterreinholdtsen/noark5-tester/blob/master/docs/epostlagring.md
">følge
1747 fremdriften på web
</a
>.
</p
>
1749 <p
>Oppdatering
2017-
04-
28: I dag ble høringuttalelsen jeg skrev
1750 <a href=
"https://www.nuug.no/news/NUUGs_h_ringuttalelse_til_Riksarkivarens_forskrift.shtml
">sendt
1751 inn av foreningen NUUG
</a
>.
</p
>
1756 <title>Free software archive system Nikita now able to store documents
</title>
1757 <link>https://people.skolelinux.org/pere/blog/Free_software_archive_system_Nikita_now_able_to_store_documents.html
</link>
1758 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Free_software_archive_system_Nikita_now_able_to_store_documents.html
</guid>
1759 <pubDate>Sun,
19 Mar
2017 08:
00:
00 +
0100</pubDate>
1760 <description><p
>The
<a href=
"https://github.com/hiOA-ABI/nikita-noark5-core
">Nikita
1761 Noark
5 core project
</a
> is implementing the Norwegian standard for
1762 keeping an electronic archive of government documents.
1763 <a href=
"http://www.arkivverket.no/arkivverket/Offentlig-forvaltning/Noark/Noark-
5/English-version
">The
1764 Noark
5 standard
</a
> document the requirement for data systems used by
1765 the archives in the Norwegian government, and the Noark
5 web interface
1766 specification document a REST web service for storing, searching and
1767 retrieving documents and metadata in such archive. I
've been involved
1768 in the project since a few weeks before Christmas, when the Norwegian
1770 <a href=
"https://www.nuug.no/news/NOARK5_kjerne_som_fri_programvare_f_r_epostliste_hos_NUUG.shtml
">announced
1771 it supported the project
</a
>. I believe this is an important project,
1772 and hope it can make it possible for the government archives in the
1773 future to use free software to keep the archives we citizens depend
1774 on. But as I do not hold such archive myself, personally my first use
1775 case is to store and analyse public mail journal metadata published
1776 from the government. I find it useful to have a clear use case in
1777 mind when developing, to make sure the system scratches one of my
1780 <p
>If you would like to help make sure there is a free software
1781 alternatives for the archives, please join our IRC channel
1782 (
<a href=
"irc://irc.freenode.net/%
23nikita
">#nikita on
1783 irc.freenode.net
</a
>) and
1784 <a href=
"https://lists.nuug.no/mailman/listinfo/nikita-noark
">the
1785 project mailing list
</a
>.
</p
>
1787 <p
>When I got involved, the web service could store metadata about
1788 documents. But a few weeks ago, a new milestone was reached when it
1789 became possible to store full text documents too. Yesterday, I
1790 completed an implementation of a command line tool
1791 <tt
>archive-pdf
</tt
> to upload a PDF file to the archive using this
1792 API. The tool is very simple at the moment, and find existing
1793 <a href=
"https://en.wikipedia.org/wiki/Fonds
">fonds
</a
>, series and
1794 files while asking the user to select which one to use if more than
1795 one exist. Once a file is identified, the PDF is associated with the
1796 file and uploaded, using the title extracted from the PDF itself. The
1797 process is fairly similar to visiting the archive, opening a cabinet,
1798 locating a file and storing a piece of paper in the archive. Here is
1799 a test run directly after populating the database with test data using
1800 our API tester:
</p
>
1802 <p
><blockquote
><pre
>
1803 ~/src//noark5-tester$ ./archive-pdf mangelmelding/mangler.pdf
1804 using arkiv: Title of the test fonds created
2017-
03-
18T23:
49:
32.103446
1805 using arkivdel: Title of the test series created
2017-
03-
18T23:
49:
32.103446
1807 0 - Title of the test case file created
2017-
03-
18T23:
49:
32.103446
1808 1 - Title of the test file created
2017-
03-
18T23:
49:
32.103446
1809 Select which mappe you want (or search term):
0
1810 Uploading mangelmelding/mangler.pdf
1811 PDF title: Mangler i spesifikasjonsdokumentet for NOARK
5 Tjenestegrensesnitt
1812 File
2017/
1: Title of the test case file created
2017-
03-
18T23:
49:
32.103446
1813 ~/src//noark5-tester$
1814 </pre
></blockquote
></p
>
1816 <p
>You can see here how the fonds (arkiv) and serie (arkivdel) only had
1817 one option, while the user need to choose which file (mappe) to use
1818 among the two created by the API tester. The
<tt
>archive-pdf
</tt
>
1819 tool can be found in the git repository for the API tester.
</p
>
1821 <p
>In the project, I have been mostly working on
1822 <a href=
"https://github.com/petterreinholdtsen/noark5-tester
">the API
1823 tester
</a
> so far, while getting to know the code base. The API
1824 tester currently use
1825 <a href=
"https://en.wikipedia.org/wiki/HATEOAS
">the HATEOAS links
</a
>
1826 to traverse the entire exposed service API and verify that the exposed
1827 operations and objects match the specification, as well as trying to
1828 create objects holding metadata and uploading a simple XML file to
1829 store. The tester has proved very useful for finding flaws in our
1830 implementation, as well as flaws in the reference site and the
1831 specification.
</p
>
1833 <p
>The test document I uploaded is a summary of all the specification
1834 defects we have collected so far while implementing the web service.
1835 There are several unclear and conflicting parts of the specification,
1837 <a href=
"https://github.com/petterreinholdtsen/noark5-tester/tree/master/mangelmelding
">started
1838 writing down
</a
> the questions we get from implementing it. We use a
1839 format inspired by how
<a href=
"http://www.opengroup.org/austin/
">The
1840 Austin Group
</a
> collect defect reports for the POSIX standard with
1841 <a href=
"http://www.opengroup.org/austin/mantis.html
">their
1842 instructions for the MANTIS defect tracker system
</a
>, in lack of an official way to structure defect reports for Noark
5 (our first submitted defect report was a
<a href=
"https://github.com/petterreinholdtsen/noark5-tester/blob/master/mangelmelding/sendt/
2017-
03-
15-mangel-prosess.md
">request for a procedure for submitting defect reports
</a
> :).
1844 <p
>The Nikita project is implemented using Java and Spring, and is
1845 fairly easy to get up and running using Docker containers for those
1846 that want to test the current code base. The API tester is
1847 implemented in Python.
</p
>
1852 <title>Detect OOXML files with undefined behaviour?
</title>
1853 <link>https://people.skolelinux.org/pere/blog/Detect_OOXML_files_with_undefined_behaviour_.html
</link>
1854 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Detect_OOXML_files_with_undefined_behaviour_.html
</guid>
1855 <pubDate>Tue,
21 Feb
2017 00:
20:
00 +
0100</pubDate>
1856 <description><p
>I just noticed
1857 <a href=
"http://www.arkivrad.no/aktuelt/riksarkivarens-forskrift-pa-horing
">the
1858 new Norwegian proposal for archiving rules in the goverment
</a
> list
1859 <a href=
"http://www.ecma-international.org/publications/standards/Ecma-
376.htm
">ECMA-
376</a
>
1860 / ISO/IEC
29500 (aka OOXML) as valid formats to put in long term
1861 storage. Luckily such files will only be accepted based on
1862 pre-approval from the National Archive. Allowing OOXML files to be
1863 used for long term storage might seem like a good idea as long as we
1864 forget that there are plenty of ways for a
"valid
" OOXML document to
1865 have content with no defined interpretation in the standard, which
1866 lead to a question and an idea.
</p
>
1868 <p
>Is there any tool to detect if a OOXML document depend on such
1869 undefined behaviour? It would be useful for the National Archive (and
1870 anyone else interested in verifying that a document is well defined)
1871 to have such tool available when considering to approve the use of
1872 OOXML. I
'm aware of the
1873 <a href=
"https://github.com/arlm/officeotron/
">officeotron OOXML
1874 validator
</a
>, but do not know how complete it is nor if it will
1875 report use of undefined behaviour. Are there other similar tools
1876 available? Please send me an email if you know of any such tool.
</p
>
1881 <title>Introducing ical-archiver to split out old iCalendar entries
</title>
1882 <link>https://people.skolelinux.org/pere/blog/Introducing_ical_archiver_to_split_out_old_iCalendar_entries.html
</link>
1883 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Introducing_ical_archiver_to_split_out_old_iCalendar_entries.html
</guid>
1884 <pubDate>Wed,
4 Jan
2017 12:
20:
00 +
0100</pubDate>
1885 <description><p
>Do you have a large
<a href=
"https://icalendar.org/
">iCalendar
</a
>
1886 file with lots of old entries, and would like to archive them to save
1887 space and resources? At least those of us using KOrganizer know that
1888 turning on and off an event set become slower and slower the more
1889 entries are in the set. While working on migrating our calendars to a
1890 <a href=
"http://radicale.org/
">Radicale CalDAV server
</a
> on our
1891 <a href=
"https://freedomboxfoundation.org/
">Freedombox server
</a/
>, my
1892 loved one wondered if I could find a way to split up the calendar file
1893 she had in KOrganizer, and I set out to write a tool. I spent a few
1894 days writing and polishing the system, and it is now ready for general
1896 <a href=
"https://github.com/petterreinholdtsen/ical-archiver
">code for
1897 ical-archiver
</a
> is publicly available from a git repository on
1898 github. The system is written in Python and depend on
1899 <a href=
"http://eventable.github.io/vobject/
">the vobject Python
1900 module
</a
>.
</p
>
1902 <p
>To use it, locate the iCalendar file you want to operate on and
1903 give it as an argument to the ical-archiver script. This will
1904 generate a set of new files, one file per component type per year for
1905 all components expiring more than two years in the past. The vevent,
1906 vtodo and vjournal entries are handled by the script. The remaining
1907 entries are stored in a
'remaining
' file.
</p
>
1909 <p
>This is what a test run can look like:
1911 <p
><pre
>
1912 % ical-archiver t/
2004-
2016.ics
1916 Writing t/
2004-
2016.ics-subset-vevent-
2004.ics
1917 Writing t/
2004-
2016.ics-subset-vevent-
2005.ics
1918 Writing t/
2004-
2016.ics-subset-vevent-
2006.ics
1919 Writing t/
2004-
2016.ics-subset-vevent-
2007.ics
1920 Writing t/
2004-
2016.ics-subset-vevent-
2008.ics
1921 Writing t/
2004-
2016.ics-subset-vevent-
2009.ics
1922 Writing t/
2004-
2016.ics-subset-vevent-
2010.ics
1923 Writing t/
2004-
2016.ics-subset-vevent-
2011.ics
1924 Writing t/
2004-
2016.ics-subset-vevent-
2012.ics
1925 Writing t/
2004-
2016.ics-subset-vevent-
2013.ics
1926 Writing t/
2004-
2016.ics-subset-vevent-
2014.ics
1927 Writing t/
2004-
2016.ics-subset-vjournal-
2007.ics
1928 Writing t/
2004-
2016.ics-subset-vjournal-
2011.ics
1929 Writing t/
2004-
2016.ics-subset-vtodo-
2012.ics
1930 Writing t/
2004-
2016.ics-remaining.ics
1932 </pre
></p
>
1934 <p
>As you can see, the original file is untouched and new files are
1935 written with names derived from the original file. If you are happy
1936 with their content, the *-remaining.ics file can replace the original
1937 the the others can be archived or imported as historical calendar
1938 collections.
</p
>
1940 <p
>The script should probably be improved a bit. The error handling
1941 when discovering broken entries is not good, and I am not sure yet if
1942 it make sense to split different entry types into separate files or
1943 not. The program is thus likely to change. If you find it
1944 interesting, please get in touch. :)
</p
>
1946 <p
>As usual, if you use Bitcoin and want to show your support of my
1947 activities, please send Bitcoin donations to my address
1948 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
1953 <title>UsingQR -
"Electronic
" paper invoices using JSON and QR codes
</title>
1954 <link>https://people.skolelinux.org/pere/blog/UsingQR____Electronic__paper_invoices_using_JSON_and_QR_codes.html
</link>
1955 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/UsingQR____Electronic__paper_invoices_using_JSON_and_QR_codes.html
</guid>
1956 <pubDate>Sat,
19 Mar
2016 09:
40:
00 +
0100</pubDate>
1957 <description><p
>Back in
2013 I proposed
1958 <a href=
"http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html
">a
1959 way to make paper and PDF invoices easier to process electronically by
1960 adding a QR code with the key information about the invoice
</a
>. I
1961 suggested using vCard field definition, to get some standard format
1962 for name and address, but any format would work. I did not do
1963 anything about the proposal, but hoped someone one day would make
1964 something like it. It would make it possible to efficiently send
1965 machine readable invoices directly between seller and buyer.
</p
>
1967 <p
>This was the background when I came across a proposal and
1968 specification from the web based accounting and invoicing supplier
1969 <a href=
"http://www.visma.com/
">Visma
</a
> in Sweden called
1970 <a href=
"http://usingqr.com/
">UsingQR
</a
>. Their PDF invoices contain
1971 a QR code with the key information of the invoice in JSON format.
1972 This is the typical content of a QR code following the UsingQR
1973 specification (based on a real world example, some numbers replaced to
1974 get a more bogus entry). I
've reformatted the JSON to make it easier
1975 to read. Normally this is all on one long line:
</p
>
1977 <p
><img src=
"http://people.skolelinux.org/pere/blog/images/
2016-
03-
19-qr-invoice.png
" align=
"right
"><pre
>
1979 "vh
":
500.00,
1984 "nme
":
"Din Leverandør
",
1985 "cc
":
"NO
",
1986 "cid
":
"997912345 MVA
",
1987 "iref
":
"12300001",
1988 "idt
":
"20151022",
1989 "ddt
":
"20151105",
1990 "due
":
2500.0000,
1991 "cur
":
"NOK
",
1992 "pt
":
"BBAN
",
1993 "acc
":
"17202612345",
1994 "bc
":
"BIENNOK1
",
1995 "adr
":
"0313 OSLO
"
1997 </pre
></p
>
1999 </p
>The interpretation of the fields can be found in the
2000 <a href=
"http://usingqr.com/wp-content/uploads/
2014/
06/UsingQR_specification1.pdf
">format
2001 specification
</a
> (revision
2 from june
2014). The format seem to
2002 have most of the information needed to handle accounting and payment
2003 of invoices, at least the fields I have needed so far here in
2006 <p
>Unfortunately, the site and document do not mention anything about
2007 the patent, trademark and copyright status of the format and the
2008 specification. Because of this, I asked the people behind it back in
2009 November to clarify. Ann-Christine Savlid (ann-christine.savlid (at)
2010 visma.com) replied that Visma had not applied for patent or trademark
2011 protection for this format, and that there were no copyright based
2012 usage limitations for the format. I urged her to make sure this was
2013 explicitly written on the web pages and in the specification, but
2014 unfortunately this has not happened yet. So I guess if there is
2015 submarine patents, hidden trademarks or a will to sue for copyright
2016 infringements, those starting to use the UsingQR format might be at
2017 risk, but if this happen there is some legal defense in the fact that
2018 the people behind the format claimed it was safe to do so. At least
2019 with patents, there is always
2020 <a href=
"http://www.paperspecs.com/paper-news/beware-the-qr-code-patent-trap/
">a
2021 chance of getting sued...
</a
></p
>
2023 <p
>I also asked if they planned to maintain the format in an
2024 independent standard organization to give others more confidence that
2025 they would participate in the standardization process on equal terms
2026 with Visma, but they had no immediate plans for this. Their plan was
2027 to work with banks to try to get more users of the format, and
2028 evaluate the way forward if the format proved to be popular. I hope
2029 they conclude that using an open standard organisation like
2030 <a href=
"http://www.ietf.org/
">IETF
</a
> is the correct place to
2031 maintain such specification.
</p
>
2033 <p
><strong
>Update
2016-
03-
20</strong
>: Via Twitter I became aware of
2034 <a href=
"https://news.ycombinator.com/item?id=
11319492">some comments
2035 about this blog post
</a
> that had several useful links and references to
2036 similar systems. In the Czech republic, the Czech Banking Association
2037 standard #
26, with short name SPAYD, uses QR codes with payment
2038 information. More information is available from the Wikipedia page on
2039 <a href=
"https://en.wikipedia.org/wiki/Short_Payment_Descriptor
">Short
2040 Payment Descriptor
</a
>. And in Germany, there is a system named
2041 <a href=
"http://www.bezahlcode.de/
">BezahlCode
</a
>,
2042 (
<a href=
"http://www.bezahlcode.de/wp-content/uploads/BezahlCode_TechDok.pdf
">specification
2043 v1.8
2013-
12-
05 available as PDF
</a
>), which uses QR codes with
2044 URL-like formatting using
"bank:
" as the URI schema/protocol to
2045 provide the payment information. There is also the
2046 <a href=
"http://www.ferd-net.de/front_content.php?idcat=
231">ZUGFeRD
</a
>
2047 file format that perhaps could be transfered using QR codes, but I am
2048 not sure if it is done already. Last, in Bolivia there are reports
2049 that tax information since november
2014 need to be printed in QR
2050 format on invoices. I have not been able to track down a
2051 specification for this format, because of my limited language skill
2057 <title>MPEG LA on
"Internet Broadcast AVC Video
" licensing and non-private use
</title>
2058 <link>https://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html
</link>
2059 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html
</guid>
2060 <pubDate>Tue,
7 Jul
2015 09:
50:
00 +
0200</pubDate>
2061 <description><p
>After asking the Norwegian Broadcasting Company (NRK)
2062 <a href=
"http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html
">why
2063 they can broadcast and stream H
.264 video without an agreement with
2064 the MPEG LA
</a
>, I was wiser, but still confused. So I asked MPEG LA
2065 if their understanding matched that of NRK. As far as I can tell, it
2068 <p
>I started by asking for more information about the various
2069 licensing classes and what exactly is covered by the
"Internet
2070 Broadcast AVC Video
" class that NRK pointed me at to explain why NRK
2071 did not need a license for streaming H
.264 video:
2073 <p
><blockquote
>
2075 <p
>According to
2076 <a href=
"http://www.mpegla.com/Lists/MPEG%
20LA%
20News%
20List/Attachments/
226/n-
10-
02-
02.pdf
">a
2077 MPEG LA press release dated
2010-
02-
02</a
>, there is no charge when
2078 using MPEG AVC/H
.264 according to the terms of
"Internet Broadcast AVC
2079 Video
". I am trying to understand exactly what the terms of
"Internet
2080 Broadcast AVC Video
" is, and wondered if you could help me. What
2081 exactly is covered by these terms, and what is not?
</p
>
2083 <p
>The only source of more information I have been able to find is a
2085 <a href=
"http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf
">AVC
2086 Patent Portfolio License Briefing
</a
>, which states this about the
2090 <li
>Where End User pays for AVC Video
2092 <li
>Subscription (not limited by title) –
100,
000 or fewer
2093 subscribers/yr = no royalty;
&gt;
100,
000 to
250,
000 subscribers/yr =
2094 $
25,
000;
&gt;
250,
000 to
500,
000 subscribers/yr = $
50,
000;
&gt;
500,
000 to
2095 1M subscribers/yr = $
75,
000;
&gt;
1M subscribers/yr = $
100,
000</li
>
2097 <li
>Title-by-Title -
12 minutes or less = no royalty;
&gt;
12 minutes in
2098 length = lower of (a)
2% or (b) $
0.02 per title
</li
>
2099 </ul
></li
>
2101 <li
>Where remuneration is from other sources
2103 <li
>Free Television - (a) one-time $
2,
500 per transmission encoder or
2104 (b) annual fee starting at $
2,
500 for
&gt;
100,
000 HH rising to
2105 maximum $
10,
000 for
&gt;
1,
000,
000 HH
</li
>
2107 <li
>Internet Broadcast AVC Video (not title-by-title, not subscription)
2108 – no royalty for life of the AVC Patent Portfolio License
</li
>
2109 </ul
></li
>
2112 <p
>Am I correct in assuming that the four categories listed is the
2113 categories used when selecting licensing terms, and that
"Internet
2114 Broadcast AVC Video
" is the category for things that do not fall into
2115 one of the other three categories? Can you point me to a good source
2116 explaining what is ment by
"title-by-title
" and
"Free Television
" in
2117 the license terms for AVC/H
.264?
</p
>
2119 <p
>Will a web service providing H
.264 encoded video content in a
2120 "video on demand
" fashing similar to Youtube and Vimeo, where no
2121 subscription is required and no payment is required from end users to
2122 get access to the videos, fall under the terms of the
"Internet
2123 Broadcast AVC Video
", ie no royalty for life of the AVC Patent
2124 Portfolio license? Does it matter if some users are subscribed to get
2125 access to personalized services?
</p
>
2127 <p
>Note, this request and all answers will be published on the
2129 </blockquote
></p
>
2131 <p
>The answer came quickly from Benjamin J. Myers, Licensing Associate
2132 with the MPEG LA:
</p
>
2134 <p
><blockquote
>
2135 <p
>Thank you for your message and for your interest in MPEG LA. We
2136 appreciate hearing from you and I will be happy to assist you.
</p
>
2138 <p
>As you are aware, MPEG LA offers our AVC Patent Portfolio License
2139 which provides coverage under patents that are essential for use of
2140 the AVC/H
.264 Standard (MPEG-
4 Part
10). Specifically, coverage is
2141 provided for end products and video content that make use of AVC/H
.264
2142 technology. Accordingly, the party offering such end products and
2143 video to End Users concludes the AVC License and is responsible for
2144 paying the applicable royalties.
</p
>
2146 <p
>Regarding Internet Broadcast AVC Video, the AVC License generally
2147 defines such content to be video that is distributed to End Users over
2148 the Internet free-of-charge. Therefore, if a party offers a service
2149 which allows users to upload AVC/H
.264 video to its website, and such
2150 AVC Video is delivered to End Users for free, then such video would
2151 receive coverage under the sublicense for Internet Broadcast AVC
2152 Video, which is not subject to any royalties for the life of the AVC
2153 License. This would also apply in the scenario where a user creates a
2154 free online account in order to receive a customized offering of free
2155 AVC Video content. In other words, as long as the End User is given
2156 access to or views AVC Video content at no cost to the End User, then
2157 no royalties would be payable under our AVC License.
</p
>
2159 <p
>On the other hand, if End Users pay for access to AVC Video for a
2160 specific period of time (e.g., one month, one year, etc.), then such
2161 video would constitute Subscription AVC Video. In cases where AVC
2162 Video is delivered to End Users on a pay-per-view basis, then such
2163 content would constitute Title-by-Title AVC Video. If a party offers
2164 Subscription or Title-by-Title AVC Video to End Users, then they would
2165 be responsible for paying the applicable royalties you noted below.
</p
>
2167 <p
>Finally, in the case where AVC Video is distributed for free
2168 through an
"over-the-air, satellite and/or cable transmission
", then
2169 such content would constitute Free Television AVC Video and would be
2170 subject to the applicable royalties.
</p
>
2172 <p
>For your reference, I have attached
2173 <a href=
"http://people.skolelinux.org/pere/blog/images/
2015-
07-
07-mpegla.pdf
">a
2174 .pdf copy of the AVC License
</a
>. You will find the relevant
2175 sublicense information regarding AVC Video in Sections
2.2 through
2176 2.5, and the corresponding royalties in Section
3.1.2 through
3.1.4.
2177 You will also find the definitions of Title-by-Title AVC Video,
2178 Subscription AVC Video, Free Television AVC Video, and Internet
2179 Broadcast AVC Video in Section
1 of the License. Please note that the
2180 electronic copy is provided for informational purposes only and cannot
2181 be used for execution.
</p
>
2183 <p
>I hope the above information is helpful. If you have additional
2184 questions or need further assistance with the AVC License, please feel
2185 free to contact me directly.
</p
>
2186 </blockquote
></p
>
2188 <p
>Having a fresh copy of the license text was useful, and knowing
2189 that the definition of Title-by-Title required payment per title made
2190 me aware that my earlier understanding of that phrase had been wrong.
2191 But I still had a few questions:
</p
>
2193 <p
><blockquote
>
2194 <p
>I have a small followup question. Would it be possible for me to get
2195 a license with MPEG LA even if there are no royalties to be paid? The
2196 reason I ask, is that some video related products have a copyright
2197 clause limiting their use without a license with MPEG LA. The clauses
2198 typically look similar to this:
2200 <p
><blockquote
>
2201 This product is licensed under the AVC patent portfolio license for
2202 the personal and non-commercial use of a consumer to (a) encode
2203 video in compliance with the AVC standard (
"AVC video
") and/or (b)
2204 decode AVC video that was encoded by a consumer engaged in a
2205 personal and non-commercial activity and/or AVC video that was
2206 obtained from a video provider licensed to provide AVC video. No
2207 license is granted or shall be implied for any other use. additional
2208 information may be obtained from MPEG LA L.L.C.
2209 </blockquote
></p
>
2211 <p
>It is unclear to me if this clause mean that I need to enter into
2212 an agreement with MPEG LA to use the product in question, even if
2213 there are no royalties to be paid to MPEG LA. I suspect it will
2214 differ depending on the jurisdiction, and mine is Norway. What is
2215 MPEG LAs view on this?
</p
>
2216 </blockquote
></p
>
2218 <p
>According to the answer, MPEG LA believe those using such tools for
2219 non-personal or commercial use need a license with them:
</p
>
2221 <p
><blockquote
>
2223 <p
>With regard to the Notice to Customers, I would like to begin by
2224 clarifying that the Notice from Section
7.1 of the AVC License
2227 <p
>THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR
2228 THE PERSONAL USE OF A CONSUMER OR OTHER USES IN WHICH IT DOES NOT
2229 RECEIVE REMUNERATION TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC
2230 STANDARD (
"AVC VIDEO
") AND/OR (ii) DECODE AVC VIDEO THAT WAS ENCODED
2231 BY A CONSUMER ENGAGED IN A PERSONAL ACTIVITY AND/OR WAS OBTAINED FROM
2232 A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED
2233 OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE
2234 OBTAINED FROM MPEG LA, L.L.C. SEE HTTP://WWW.MPEGLA.COM
</p
>
2236 <p
>The Notice to Customers is intended to inform End Users of the
2237 personal usage rights (for example, to watch video content) included
2238 with the product they purchased, and to encourage any party using the
2239 product for commercial purposes to contact MPEG LA in order to become
2240 licensed for such use (for example, when they use an AVC Product to
2241 deliver Title-by-Title, Subscription, Free Television or Internet
2242 Broadcast AVC Video to End Users, or to re-Sell a third party
's AVC
2243 Product as their own branded AVC Product).
</p
>
2245 <p
>Therefore, if a party is to be licensed for its use of an AVC
2246 Product to Sell AVC Video on a Title-by-Title, Subscription, Free
2247 Television or Internet Broadcast basis, that party would need to
2248 conclude the AVC License, even in the case where no royalties were
2249 payable under the License. On the other hand, if that party (either a
2250 Consumer or business customer) simply uses an AVC Product for their
2251 own internal purposes and not for the commercial purposes referenced
2252 above, then such use would be included in the royalty paid for the AVC
2253 Products by the licensed supplier.
</p
>
2255 <p
>Finally, I note that our AVC License provides worldwide coverage in
2256 countries that have AVC Patent Portfolio Patents, including
2259 <p
>I hope this clarification is helpful. If I may be of any further
2260 assistance, just let me know.
</p
>
2261 </blockquote
></p
>
2263 <p
>The mentioning of Norwegian patents made me a bit confused, so I
2264 asked for more information:
</p
>
2266 <p
><blockquote
>
2268 <p
>But one minor question at the end. If I understand you correctly,
2269 you state in the quote above that there are patents in the AVC Patent
2270 Portfolio that are valid in Norway. This make me believe I read the
2271 list available from
&lt;URL:
2272 <a href=
"http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx
">http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx
</a
>
2273 &gt; incorrectly, as I believed the
"NO
" prefix in front of patents
2274 were Norwegian patents, and the only one I could find under Mitsubishi
2275 Electric Corporation expired in
2012. Which patents are you referring
2276 to that are relevant for Norway?
</p
>
2278 </blockquote
></p
>
2280 <p
>Again, the quick answer explained how to read the list of patents
2281 in that list:
</p
>
2283 <p
><blockquote
>
2285 <p
>Your understanding is correct that the last AVC Patent Portfolio
2286 Patent in Norway expired on
21 October
2012. Therefore, where AVC
2287 Video is both made and Sold in Norway after that date, then no
2288 royalties would be payable for such AVC Video under the AVC License.
2289 With that said, our AVC License provides historic coverage for AVC
2290 Products and AVC Video that may have been manufactured or Sold before
2291 the last Norwegian AVC patent expired. I would also like to clarify
2292 that coverage is provided for the country of manufacture and the
2293 country of Sale that has active AVC Patent Portfolio Patents.
</p
>
2295 <p
>Therefore, if a party offers AVC Products or AVC Video for Sale in
2296 a country with active AVC Patent Portfolio Patents (for example,
2297 Sweden, Denmark, Finland, etc.), then that party would still need
2298 coverage under the AVC License even if such products or video are
2299 initially made in a country without active AVC Patent Portfolio
2300 Patents (for example, Norway). Similarly, a party would need to
2301 conclude the AVC License if they make AVC Products or AVC Video in a
2302 country with active AVC Patent Portfolio Patents, but eventually Sell
2303 such AVC Products or AVC Video in a country without active AVC Patent
2304 Portfolio Patents.
</p
>
2305 </blockquote
></p
>
2307 <p
>As far as I understand it, MPEG LA believe anyone using Adobe
2308 Premiere and other video related software with a H
.264 distribution
2309 license need a license agreement with MPEG LA to use such tools for
2310 anything non-private or commercial, while it is OK to set up a
2311 Youtube-like service as long as no-one pays to get access to the
2312 content. I still have no clear idea how this applies to Norway, where
2313 none of the patents MPEG LA is licensing are valid. Will the
2314 copyright terms take precedence or can those terms be ignored because
2315 the patents are not valid in Norway?
</p
>
2320 <title>Hva gjør at NRK kan distribuere H
.264-video uten patentavtale med MPEG LA?
</title>
2321 <link>https://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html
</link>
2322 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html
</guid>
2323 <pubDate>Wed,
10 Jun
2015 15:
20:
00 +
0200</pubDate>
2324 <description><p
>Helt siden jeg i
2012 fikk beskjed fra MPEG LA om at
2325 <a href=
"http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
">NRK
2326 trengte patentavtale med dem
</a
> hvis de distribuerte H
.264-video til
2327 sluttbrukere, har jeg lurt på hva som gjør at NRK ikke har slik
2328 avtale. For noen dager siden fikk jeg endelig gjort noe med min
2329 undring, og sendte
2015-
05-
28 følgende epost til info (at) nrk.no med
2330 tittel
"Hva gjør at NRK kan distribuere H
.264-video uten patentavtale
2331 med MPEG LA?
":
</p
>
2333 <p
><blockquote
>
2334 <p
>Jeg lurer på en ting rundt NRKs bruk av H
.264-video på sine
2335 websider samt distribusjon via RiksTV og kabel-TV. Har NRK vurdert om
2336 det er behov for en patentavtale med
2337 <a href=
"http://www.mpegla.com/
">MPEG LA
</a
> slik det står i
2338 programvarelisensene til blant annet Apple Final Cut Studio, Adobe
2339 Premiere Pro, Avid og Apples Final Cut Pro X?
</p
>
2341 <p
>Hvis dere har vurdert dette, hva var utfallet av en slik vurdering?
</p
>
2343 <p
>Hvis dere ikke har vurdert dette, har NRK planer om å vurdere behovet
2344 for patentavtale?
</p
>
2346 <p
>I følge en artikkel på
2347 <a href=
"https://nrkbeta.no/
2012/
02/
01/siste-kutt-for-final-cut/
">NRK
2348 Beta i
2012</a
> har NRK brukt eller testet både Apple Final Cut
2349 Studio, Adobe Premiere Pro, Avid og Apples Final Cut Pro X til bruk
2350 for å redigere video før sending. Alle disse har bruksvilkår
2351 understøttet av opphavsretten som sier at de kun kan brukes til å lage
2352 filmer til personlig og ikke-kommersiell bruk - med mindre en har en
2353 lisensavtale med MPEG LA om bruk av patenter utstedt i USA for H
.264.
2354 Se f.eks.
<a href=
"http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf
">bruksvilkårene for Avid
</a
>,
<a href=
"http://news.cnet.com/
8301-
30685_3-
20000101-
264.html
">Adobe Premiere
</a
> og
<a href=
"http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf
">Apple Final
2355 Cut Studio
</a
> og søk etter
"MPEG LA
".
</p
>
2357 <p
>Dette får meg til å lure på om det er brudd på opphavsretten å bruke
2358 disse verktøyene i strid med bruksvilkårene uten patentavtale med MPEG
2359 LA. Men NRK bruker jo tilsynelatende disse verktøyene uten patentavtale
2360 med MPEG LA.
</p
>
2362 <p
>I følge forfatteren av Open Broadcast Encoder finnes det to typer
2363 H
.264-relaterte avtaler en kan få med MPEG LA. Det er én for å lage
2364 programvare og utstyr som produserer H
.264-video, og en annen for å
2365 kringkaste video som bruker H
.264. Dette forteller meg at selv om
2366 produsentene av utstyr og programvare som NRK bruker har en slik avtale
2367 med MPEG LA, så trenges det en egen avtale for å kringkaste video på det
2370 <p
>I følge Ryan Rodriguez hos MPEG LA, da jeg spurte ham på epost i
2371 juni
2012, har NRK ikke en slik avtale med MPEG LA. Han sa videre at
2372 NRK trenger en slik avtale hvis NRK tilbyr H
.264-kodet video til
2373 sluttbrukere. Jeg sjekket listen med
2374 <a href=
"http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
">organisasjoner
2375 med avtale med MPEG LA
</a
> og NRK står fortsatt ikke der.
</p
>
2377 <p
>Jeg lurer dermed på hva som gjør at NRK kan bruke de overnevnte
2378 videoredigeringsverktøyene, som tilsynelatende har krav om avtale med
2379 MPEG LA for å kunne brukes slik NRK bruker dem, til å lage videofiler
2380 for distribusjon uten å ha en avtale med MPEG LA om distribusjon av
2381 H
.264-video? Dette er spesielt interessant å vite for oss andre som
2382 også vurderer å spre H
.264-video etter å ha redigert dem med disse mye
2383 brukte videoredigeringsverktøyene.
</p
>
2384 </blockquote
></p
>
2386 <p
>Samme dag fikk jeg automatisk svar om at min henvendelse hadde fått
2387 saksid
1294699. Jeg fikk deretter følgende respons fra NRK
2388 2015-
06-
09:
</p
>
2390 <p
><blockquote
>
2391 <p
>Hei, beklager lang svartid, men det tok litt tid å finne ut hvem som kunne
2392 svare på dette.
</p
>
2394 <p
>For selskaper som leverer h
.264 til sluttbrukere på nett (f.eks
2395 NRKs nett- tv utgaver som bruker h
.264) - og som leverer slike
2396 tjenester uten betaling fra forbrukere – er det heller ikke påkrevd
2397 noen patentavtale.
</p
>
2399 <p
><a href=
"http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
">http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
</a
></p
>
2401 <p
>Med vennlig hilsen
2402 <br
>Gunn Helen Berg
2403 <br
>Informasjonskonsulent, Publikumsservice
</p
>
2406 <br
>Strategidivisjonen
2407 <Br
>Sentralbord: +
47 23 04 70 00
2408 <br
>Post: NRK Publikumsservice,
8608 Mo i Rana
2409 <br
>nrk.no / info (at) nrk.no
</p
>
2410 </blockquote
></p
>
2412 Da dette ikke helt var svar på det jeg lurte på, sendte jeg samme dag
2413 oppfølgerepost tilbake:
2415 <p
><blockquote
>
2416 <p
>[Gunn Helen Berg]
2417 <br
>> Hei, beklager lang svartid, men det tok litt tid å finne ut hvem som
2418 <br
>> kunne svare på dette.
</p
>
2420 <p
>Takk for svar. Men det besvarte ikke helt det jeg spurte om.
</p
>
2422 <p
>> For selskaper som leverer h
.264 til sluttbrukere på nett (f.eks NRKs
2423 <br
>> nett- tv utgaver som bruker h
.264) - og som leverer slike tjenester
2424 <br
>> uten betaling fra forbrukere – er det heller ikke påkrevd noen
2425 <br
>> patentavtale.
2427 <br
>> http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
</p
>
2429 <p
>Spørsmålet er ikke kun om MPEG LA krever patentavtale eller ikke
2430 (hvilket ikke helt besvares av pressemeldingen omtalt over, gitt at
2431 pressemeldingen kom i
2010, to år før MPEG LA ansvarlige for
2432 internasjonal lisensiering egen Ryan Rodriguez fortalte meg på epost
2433 at NRK trenger en lisens.
</p
>
2435 <p
>Det er uklart fra pressemeldingen hva
"Internet Broadcast AVC
2436 Video
" konkret betyr, men i følge en
2437 <a href=
"http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf
">presentasjon
2438 fra MPEG LA med tema
"AVC PAtent Portfoli License Briefing
" datert
2439 2015-
05-
15</a
> gjelder
"Internet Broadcast AVC Video
" kun kringkasting
2440 på Internet som ikke tilbyr valg av enkeltinnslag (
"not
2441 title-by-title
"), hvilket jo NRK gjør på sine nettsider. I tillegg
2442 kringkaster jo NRK H
.264-video også utenom Internet (RiksTV, kabel,
2443 satelitt), hvilket helt klart ikke er dekket av vilkårene omtalt i
2444 pressemeldingen.
</p
>
2446 <p
>Spørsmålet mitt er hvordan NRK kan bruke verktøy med bruksvilkår
2447 som krever avtale med MPEG LA for det NRK bruker dem til, når NRK ikke
2448 har avtale med MPEG LA. Hvis jeg forsto spørsmålet riktig, så mener
2449 NRK at dere ikke trenger avtale med MPEG LA, men uten slik avtale kan
2450 dere vel ikke bruke hverken Apple Final Cut Studio, Adobe Premiere
2451 Pro, Avid eller Apples Final Cut Pro X for å redigere video før
2454 <p
>Mine konkrete spørsmål var altså:
</p
>
2458 <li
>Hvis NRK har vurdert om det er behov for en patentavtale med MPEG LA
2459 slik det er krav om i programvarelisensene til blant annet Apple
2460 Final Cut Studio, Adobe Premiere Pro, Avid og Apples Final Cut Pro X,
2461 hva var utfallet av en slik vurdering? Kan jeg få kopi av vurderingen
2462 hvis den er gjort skriftlig?
</li
>
2464 <li
>Hvis NRK ikke har vurdert dette, har NRK planer om å vurdere behovet
2465 for patentavtale?
</li
>
2467 <li
>Hva slags saksnummer fikk min henvendelse i NRKs offentlige
2468 postjournal? Jeg ser at postjournalen ikke er publisert for den
2469 aktuelle perioden ennå, så jeg fikk ikke sjekket selv.
</li
>
2472 </blockquote
></p
>
2474 <p
>Det hjelper å ha funnet rette vedkommende i NRK, for denne gangen
2475 fikk jeg svar tilbake dagen etter (
2015-
06-
10), fra Geir Børdalen i
2478 <p
><blockquote
>
2479 <p
>Hei Petter Reinholdtsen
</p
>
2481 <p
>Jeg har sjekket saken med distribusjonssjef for tv, Arild Hellgren
2482 (som var teknologidirektør da bakkenettet ble satt opp). NRK v/
2483 Hellgren hadde møte med MPEG LA sammen med den europeiske
2484 kringkastingsunionen EBU før bakkenettet for TV ble satt opp
2485 (igangsatt høsten
2007). I dette møtet ble det avklart at NRK/EBU ikke
2486 trengte noen patentavtale for h
.264 i forbindelse med oppsett av
2487 bakkenettet eller bruk av MPEG4 h
.264 som kompresjonsalgoritme fordi
2488 tjenesten «in full»(nor: helt) var betalt av utsendelseselskapene og
2489 ikke av forbrukerne.
</p
>
2491 <p
><a href=
"http://www.nrk.no/oppdrag/digitalt-bakkenett-
1.3214555">http://www.nrk.no/oppdrag/digitalt-bakkenett-
1.3214555</a
></p
>
2493 <p
>Det er også klart slått fast at selskaper som leverer video basert
2494 på MPEG4 h
.264 til sluttbrukere på nett, heller ikke påkrevd noen
2495 patentavtale – så lenge de leverer slike tjenester uten betaling fra
2496 sluttbrukere.
</p
>
2498 <a href=
"http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
">http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
</a
>
2500 <p
>“MPEG LA announced today that its AVC Patent Portfolio License will
2501 continue not to charge royalties for Internet Video that is free to
2502 end users (known as “Internet Broadcast AVC Video”) during the entire
2503 life of this License. MPEG LA previously announced it would not charge
2504 royalties for such video through December
31,
2015 (see
2505 <a href=
"http://www.mpegla.com/Lists/MPEG%
20LA%
20News%
20List/Attachments/
226/n-
10-
02-
02.pdf
">http://www.mpegla.com/Lists/MPEG%
20LA%
20News%
20List/Attachments/
226/n-
10-
02-
02.pdf
</a
>),
2506 and today’s announcement makes clear that royalties will continue not
2507 to be charged for such video beyond that time. Products and services
2508 other than Internet Broadcast AVC Video continue to be
2509 royalty-bearing.”
</p
>
2511 <p
>Vi har derfor ikke noe behov for å vurdere noen patentavtale med
2514 <p
>Understreker for øvrig at NRK ikke er låst til MPEG4 – h
.264 som
2515 utsendelsesformat – og at vi har brukt og bruker flere andre
2516 alternativer i våre tjenester. Ulike «devicer» har ofte behov for
2517 forskjellige løsninger – og NRK har forsøkt å levere med best mulig
2518 kvalitet /økonomi /stabilitet avhengig av
2519 plattform. Produksjonsformater i NRK spenner for øvrig over en rekke
2520 forskjellige formater – hvor MPEG4 bare er en av disse. Når NRK kjøper
2521 teknisk utstyr er betaling for kodekstøtte ofte en del av
2522 anskaffelsesprisen for denne maskinvaren (enten dette er spesialiserte
2523 enkodere eller forskjellige typer produksjonsutstyr).
</p
>
2525 <p
>Vennlig hilsen
2526 <br
>Geir Børdalen
</p
>
2528 <p
>________________________________________
2529 <br
>Geir Børdalen
2530 <br
>Investeringsansvarlig NRK / Hovedprosjektleder - Origo
2531 <br
>Avdeling for utvikling, innovasjon, investering og eiendom
2532 <br
>NRK medietjenester
2533 <br
>Sentralbord: +
47 23 04 70 00
2534 <br
>Post: NRK, AUTV (RBM5), Pb.
8500 Majorstuen,
0340 Oslo
2536 </blockquote
></p
>
2538 <p
>Et godt og grundig svar, som var informativt om hvordan NRK tenker
2539 rundt patentavtale med MPEG LA, men heller ikke helt besvarte det jeg
2540 lurte på, så jeg sendte epostoppfølging samme dag.
</p
>
2542 <p
><blockquote
>
2543 <p
>[Geir Børdalen]
2544 <br
>> Hei Petter Reinholdtsen
</p
>
2546 <p
>Hei, og takk for raskt svar. Er min henvendelse journalført slik
2547 at den dukker opp i NRKs postjournal?
</p
>
2549 <p
>Svaret ditt var meget nyttig, og jeg forstår ut fra det du skriver
2550 at avklaringen med MPEG LA rundt H
.264-distribusjon via bakkenettet
2551 gjelder alle TV-kanaler i Norge. Hvilke saksnummer fikk dokumenter
2552 som ble opprettet i forbindelse med det omtalte møtet NRK v/Hellgren
2553 og EBU hadde med MPEG LA (dvs. referater, avtaler, etc),
2554 f.eks. dokumentet der formuleringen
"in full
" som du omtaler
2557 <p
>Men det er et par ting jeg fortsatt ikke forstår. Det ene er
2558 hvorfor NRKs forståelse av hva
"Internet Broadcast AVC Video
" dekker
2559 ser ut til å avvike fra det som presenteres i
2560 <a href=
"http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf
">lysark
2561 fra MPEG LA
</a
> i mai, der MPEG LA på lysark med overskriften
2562 "AVC/H
.264 License Terms Participation Fees
" og undertittel
"Where
2563 remuneration is from other sources
" skriver
"Internet Broadcast AVC
2564 Video (not title-by-title, not subscription) – no royalty for life of
2565 the AVC Patent Portfolio License
".
</p
>
2567 <p
>Her leser jeg MPEG LA dithen at det kun er kringkasting uten
2568 abonnement via Internet som er dekket at vilkårne omtalt i
2569 pressemeldingen, mens jeg forstår deg dithen at NRK mener NRKs
2570 nettsider som også har enkeltfilmer og innslag (som jeg forstår dekket
2571 av formuleringen
"title-by-title
") dekkes av
"Internet Broadcast AVC
2572 Video
" fra MPEG LA. Hva baserer dere denne tolkningen på? Jeg har
2573 ikke sett noe skriftlig fra MPEG LA som støtter NRKs tolkning, og
2574 lurer på om dere har andre kilder enn den pressemeldingen fra
5 år
2575 tilbake, der NRKS forståelse av hva
"Internet Broadcast AVC Video
"
2576 dekker er beskrevet?
</p
>
2578 <p
>Det andre er at eposten din ikke nevnte spørsmålet mitt om
2579 bruksvilkårene til videoredigeringsverktøyene som NRK bruker. Disse
2580 har som tidligere nevnt krav om at de kun skal brukes til private og
2581 ikke-kommersielle formål med mindre en har avtale med MPEG LA, og uten
2582 avtale med MPEG LA kan det jo virke som om NRK bruker verktøyene i
2583 strid med bruksvilkårene. Hva gjør at disse bruksvilkårene ikke
2584 gjelder for NRK?
</p
>
2585 </blockquote
></p
>
2587 <p
>Noen minutter senere får jeg foreløpig siste svar i
2588 føljetongen:
</p
>
2590 <p
><blockquote
>
2591 <p
>Hei igjen
</p
>
2593 <p
>Vårt dokumentarkiv har fått en kopi (journalføringsnr kan jeg
2594 dessverre ikke gi deg).
<p
>
2596 <p
>> Svaret ditt var meget nyttig, og jeg forstår ut fra det du
2597 <br
>> skriver at avklaringen med MPEG LA rundt H
.264-distribusjon via
2598 <br
>> bakkenettet gjelder alle TV-kanaler i Norge.
</p
>
2600 <p
>Svar: Kan ikke svare for andre enn for NRK/EBU - og for bakkenettet
2601 i Norge er det kun NRK som er et lisensbasert selskap. Kan ikke gi noe
2602 svar på saksnr på dokumenter eller ytterligere informasjon da jeg selv
2603 ikke var del i dette.
</p
>
2605 <p
>> Men det er et par ting jeg fortsatt ikke forstår. ...
</p
>
2607 <p
>Svar: Kan ikke gå ytterligere inn i dette fra min side og mitt
2608 fagfelt som er produksjon/publisering og systemstrukturene bak
2609 disse. For øvrig ligger det etter vår formening ingen begrensninger
2610 for NRK i mulighetene til publisering mht til kodek i
2611 produksjonssystemer. Som tidligere skrevet mener vi at NRK ikke
2612 trenger noen avtale med MPEG LA og støtter oss til det vi allerede har
2613 kommunisert i forrige epost.
</p
>
2616 <br
>Geir Børdalen
</p
>
2617 </blockquote
></p
>
2619 <p
>Det syntes vanskelig å komme videre når NRK ikke ønsker å gå inn i
2620 problemstillingen rundt bruksvilkårene til videoredigeringsverktøyene
2621 NRK bruker, så jeg sendte takk for svarene og avsluttet utvekslingen
2624 <p
><blockquote
>
2625 <p
>Tusen takk for rask respons, og oppklarende forklaring om hvordan
2626 NRK tenker rundt MPEG LA.
</p
>
2628 <p
>Jeg vil høre med NRK-arkivet for å se om de kan spore opp de
2629 omtalte dokumentene. Jeg setter pris på om du kan dele titler, dato
2630 eller annen informasjon som kan gjøre det enklere for arkivet å finne
2633 <p
>Når det gjelder hvordan bruksvilkårene til
2634 videoredigeringsverktøyene skal tolkes, så skal jeg høre med MPEG LA
2635 og produsentene av verktøyene for å forsøke å få klarhet i hva de
2636 mener er rikgig rettstilstand.
</p
>
2637 </blockquote
></p
>
2639 <p
>Jeg ble litt klokere, men fortsatt er det uklart for meg hva som er
2640 grunnlaget til NRK for å se bort fra bruksvilkår i
2641 videoredigeringsprogramvare som krever MPEG LA-avtale til alt annet
2642 enn privat og ikke-kommersiell bruk.
</p
>
2647 <title>Hvordan vurderer regjeringen H
.264-patentutfordringen?
</title>
2648 <link>https://people.skolelinux.org/pere/blog/Hvordan_vurderer_regjeringen_H_264_patentutfordringen_.html
</link>
2649 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Hvordan_vurderer_regjeringen_H_264_patentutfordringen_.html
</guid>
2650 <pubDate>Sun,
16 Nov
2014 10:
30:
00 +
0100</pubDate>
2651 <description><p
>For en stund tilbake spurte jeg Fornyingsdepartementet om hvilke
2652 juridiske vurderinger rundt patentproblemstillingen som var gjort da
2653 H
.264 ble tatt inn i
<a href=
"http://standard.difi.no/
">statens
2654 referansekatalog over standarder
</a
>. Stig Hornnes i FAD tipset meg
2655 om følgende som står i oppsumeringen til høringen om
2656 referansekatalogen versjon
2.0, som jeg siden ved hjelp av en
2657 innsynsforespørsel fikk tak i
2658 <a href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2?action=AttachFile
&do=get
&target=kongelig-resolusjon.pdf
">PDF-utgaven av
</a
>
2659 datert
2009-
06-
03 (saksnummer
200803291, saksbehandler Henrik
2660 Linnestad).
</p
>
2662 <p
>Der står det følgende om problemstillingen:
</p
>
2664 <p
><blockquote
>
2665 <strong
>4.4 Patentproblematikk
</strong
>
2667 <p
>NUUG og Opera ser det som særlig viktig at forslagene knyttet til
2668 lyd og video baserer seg på de royalty-frie standardene Vorbis, Theora
2671 <p
>Kommentarene relaterer seg til at enkelte standarder er åpne, men
2672 inneholder tekniske prosedyrer som det i USA (og noen andre land som
2673 Japan) er gitt patentrettigheter til. I vårt tilfelle berører dette
2674 spesielt standardene Mp3 og H
.264, selv om Politidirektoratet peker på
2675 at det muligens kan være tilsvarende problematikk også for Theora og
2676 Vorbis. Dette medfører at det i USA kan kreves royalties for bruk av
2677 tekniske løsninger knyttet til standardene, et krav som også
2678 håndheves. Patenter kan imidlertid bare hevdes i de landene hvor
2679 patentet er gitt, så amerikanske patenter gjelder ikke andre steder
2682 <p
>Spesielt for utvikling av fri programvare er patenter
2683 problematisk. GPL, en
"grunnleggende
" lisens for distribusjon av fri
2684 programvare, avviser at programvare kan distribueres under denne
2685 lisensen hvis det inneholder referanser til patenterte rutiner som
2686 utløser krav om royalties. Det er imidlertid uproblematisk å
2687 distribuere fri programvareløsninger under GPL som benytter de
2688 aktuelle standardene innen eller mellom land som ikke anerkjenner
2689 patentene. Derfor finner vi også flere implementeringer av Mp3 og
2690 H
.264 som er fri programvare, lisensiert under GPL.
</p
>
2692 <p
>I Norge og EU er patentlovgivningen langt mer restriktiv enn i USA,
2693 men det er også her mulig å få patentert metoder for løsning av et
2694 problem som relaterer seg til databehandling. Det er AIF bekjent ikke
2695 relevante patenter i EU eller Norge hva gjelder H
.264 og Mp3, men
2696 muligheten for at det finnes patenter uten at det er gjort krav om
2697 royalties eller at det senere vil gis slike patenter kan ikke helt
2700 <p
>AIF mener det er et behov for å gi offentlige virksomheter mulighet
2701 til å benytte antatt royaltyfrie åpne standarder som et likeverdig
2702 alternativ eller i tillegg til de markedsledende åpne standardene.
</p
>
2704 </blockquote
></p
>
2706 <p
>Det ser dermed ikke ut til at de har vurdert patentspørsmålet i
2707 sammenheng med opphavsrettsvilkår slik de er formulert for f.eks.
2708 Apple Final Cut Pro, Adobe Premiere Pro, Avid og Sorenson-verktøyene,
2709 der det kreves brukstillatelse for patenter som ikke er gyldige i
2710 Norge for å bruke disse verktøyene til annet en personlig og ikke
2711 kommersiell aktivitet når det gjelder H
.264-video. Jeg må nok lete
2712 videre etter svar på det spørsmålet.
</p
>
2717 <title>Do you need an agreement with MPEG-LA to publish and broadcast H
.264 video in Norway?
</title>
2718 <link>https://people.skolelinux.org/pere/blog/Do_you_need_an_agreement_with_MPEG_LA_to_publish_and_broadcast_H_264_video_in_Norway_.html
</link>
2719 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Do_you_need_an_agreement_with_MPEG_LA_to_publish_and_broadcast_H_264_video_in_Norway_.html
</guid>
2720 <pubDate>Mon,
25 Aug
2014 22:
10:
00 +
0200</pubDate>
2721 <description><p
>Two years later, I am still not sure if it is legal here in Norway
2722 to use or publish a video in H
.264 or MPEG4 format edited by the
2723 commercially licensed video editors, without limiting the use to
2724 create
"personal
" or
"non-commercial
" videos or get a license
2725 agreement with
<a href=
"http://www.mpegla.com
">MPEG LA
</a
>. If one
2726 want to publish and broadcast video in a non-personal or commercial
2727 setting, it might be that those tools can not be used, or that video
2728 format can not be used, without breaking their copyright license. I
2730 <a href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">Back
2731 then
</a
>, I found that the copyright license terms for Adobe Premiere
2732 and Apple Final Cut Pro both specified that one could not use the
2733 program to produce anything else without a patent license from MPEG
2734 LA. The issue is not limited to those two products, though. Other
2735 much used products like those from Avid and Sorenson Media have terms
2736 of use are similar to those from Adobe and Apple. The complicating
2737 factor making me unsure if those terms have effect in Norway or not is
2738 that the patents in question are not valid in Norway, but copyright
2739 licenses are.
</p
>
2741 <p
>These are the terms for Avid Artist Suite, according to their
2742 <a href=
"http://www.avid.com/US/about-avid/legal-notices/legal-enduserlicense2
">published
2744 <a href=
"http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf
">license
2745 text
</a
> (converted to lower case text for easier reading):
</p
>
2747 <p
><blockquote
>
2748 <p
>18.2. MPEG-
4. MPEG-
4 technology may be included with the
2749 software. MPEG LA, L.L.C. requires this notice:
</p
>
2751 <p
>This product is licensed under the MPEG-
4 visual patent portfolio
2752 license for the personal and non-commercial use of a consumer for (i)
2753 encoding video in compliance with the MPEG-
4 visual standard (“MPEG-
4
2754 video”) and/or (ii) decoding MPEG-
4 video that was encoded by a
2755 consumer engaged in a personal and non-commercial activity and/or was
2756 obtained from a video provider licensed by MPEG LA to provide MPEG-
4
2757 video. No license is granted or shall be implied for any other
2758 use. Additional information including that relating to promotional,
2759 internal and commercial uses and licensing may be obtained from MPEG
2760 LA, LLC. See http://www.mpegla.com. This product is licensed under
2761 the MPEG-
4 systems patent portfolio license for encoding in compliance
2762 with the MPEG-
4 systems standard, except that an additional license
2763 and payment of royalties are necessary for encoding in connection with
2764 (i) data stored or replicated in physical media which is paid for on a
2765 title by title basis and/or (ii) data which is paid for on a title by
2766 title basis and is transmitted to an end user for permanent storage
2767 and/or use, such additional license may be obtained from MPEG LA,
2768 LLC. See http://www.mpegla.com for additional details.
</p
>
2770 <p
>18.3. H
.264/AVC. H
.264/AVC technology may be included with the
2771 software. MPEG LA, L.L.C. requires this notice:
</p
>
2773 <p
>This product is licensed under the AVC patent portfolio license for
2774 the personal use of a consumer or other uses in which it does not
2775 receive remuneration to (i) encode video in compliance with the AVC
2776 standard (“AVC video”) and/or (ii) decode AVC video that was encoded
2777 by a consumer engaged in a personal activity and/or was obtained from
2778 a video provider licensed to provide AVC video. No license is granted
2779 or shall be implied for any other use. Additional information may be
2780 obtained from MPEG LA, L.L.C. See http://www.mpegla.com.
</p
>
2781 </blockquote
></p
>
2783 <p
>Note the requirement that the videos created can only be used for
2784 personal or non-commercial purposes.
</p
>
2786 <p
>The Sorenson Media software have
2787 <a href=
"http://www.sorensonmedia.com/terms/
">similar terms
</a
>:
</p
>
2789 <p
><blockquote
>
2791 <p
>With respect to a license from Sorenson pertaining to MPEG-
4 Video
2792 Decoders and/or Encoders: Any such product is licensed under the
2793 MPEG-
4 visual patent portfolio license for the personal and
2794 non-commercial use of a consumer for (i) encoding video in compliance
2795 with the MPEG-
4 visual standard (“MPEG-
4 video”) and/or (ii) decoding
2796 MPEG-
4 video that was encoded by a consumer engaged in a personal and
2797 non-commercial activity and/or was obtained from a video provider
2798 licensed by MPEG LA to provide MPEG-
4 video. No license is granted or
2799 shall be implied for any other use. Additional information including
2800 that relating to promotional, internal and commercial uses and
2801 licensing may be obtained from MPEG LA, LLC. See
2802 http://www.mpegla.com.
</p
>
2804 <p
>With respect to a license from Sorenson pertaining to MPEG-
4
2805 Consumer Recorded Data Encoder, MPEG-
4 Systems Internet Data Encoder,
2806 MPEG-
4 Mobile Data Encoder, and/or MPEG-
4 Unique Use Encoder: Any such
2807 product is licensed under the MPEG-
4 systems patent portfolio license
2808 for encoding in compliance with the MPEG-
4 systems standard, except
2809 that an additional license and payment of royalties are necessary for
2810 encoding in connection with (i) data stored or replicated in physical
2811 media which is paid for on a title by title basis and/or (ii) data
2812 which is paid for on a title by title basis and is transmitted to an
2813 end user for permanent storage and/or use. Such additional license may
2814 be obtained from MPEG LA, LLC. See http://www.mpegla.com for
2815 additional details.
</p
>
2817 </blockquote
></p
>
2819 <p
>Some free software like
2820 <a href=
"https://handbrake.fr/
">Handbrake
</A
> and
2821 <a href=
"http://ffmpeg.org/
">FFMPEG
</a
> uses GPL/LGPL licenses and do
2822 not have any such terms included, so for those, there is no
2823 requirement to limit the use to personal and non-commercial.
</p
>
2828 <title>Hvor godt fungerer Linux-klienter mot MS Exchange?
</title>
2829 <link>https://people.skolelinux.org/pere/blog/Hvor_godt_fungerer_Linux_klienter_mot_MS_Exchange_.html
</link>
2830 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Hvor_godt_fungerer_Linux_klienter_mot_MS_Exchange_.html
</guid>
2831 <pubDate>Tue,
26 Nov
2013 18:
50:
00 +
0100</pubDate>
2832 <description><p
>Jeg
2833 <a href=
"http://people.skolelinux.org/pere/blog/_pent_m_te_p__onsdag_om_bruken_av_Microsoft_Exchange_ved_Universitetet_i_Oslo.html
">skrev
2834 i juni om protestene
</a
> på planene til min arbeidsplass,
2835 <a href=
"http://www.uio.no/
">Universitetet i Oslo
</a
>, om å gå bort fra
2836 fri programvare- og åpne standardløsninger for å håndtere epost,
2837 vekk fra IETF-standarden SIEVE for filtrering av epost og over til
2838 godseide spesifikasjoner og epostsystemet Microsoft Exchange.
2839 Protestene har fått litt ny omtale i media de siste dagene, i tillegg
2840 til de oppslagene som kom i mai.
</p
>
2844 <li
>2013-
11-
26 <a href=
"http://www.version2.dk/artikel/gigantisk-outlook-konvertering-moeder-protester-paa-universitet-
55147">Gigantisk Outlook-konvertering møder protester på universitet
</a
> - versjon2.dk
</li
>
2846 <li
>2013-
11-
25
2847 <a href=
"http://www.idg.no/computerworld/article279407.ece
">Microsoft-protest
2848 på Universitetet
</a
> - Computerworld
</li
>
2850 <li
>2013-
11-
25
2851 <a href=
"http://www.uniforum.uio.no/nyheter/
2013/
11/uio-bor-bruke-apen-programvare.html
">Kjemper
2852 mot innføring av Microsoft Exchange på UiO
</a
> - Uniforum
</li
>
2854 <li
>2013-
11-
25
2855 <a href=
"http://www.uniforum.uio.no/nyheter/
2013/
11/uio-utsetter-innforing-av-nytt-e-postsystem.html
">Utsetter
2856 innføring av nytt e-postsystem
</a
> - Uniforum
</li
>
2858 <li
>2013-
05-
29
2859 <a href=
"http://universitas.no/nyhet/
58462/forsvarer-nytt-it-system
">Forsvarer
2860 nytt IT-system
</a
> - Universitas
</li
>
2862 <li
>2013-
05-
23
2863 <a href=
"http://www.uniforum.uio.no/nyheter/
2013/
05/uio-innforer-nytt-epost-og-kalendersystem.html
">UiO
2864 innfører nytt epost- og kalenderverktøy
</a
> - Uniforum
</li
>
2866 <li
>2013-
05-
22
2867 <a href=
"http://universitas.no/nyhet/
58424/protestgruppe-vil-stanse-it-system
">Protestgruppe
2868 vil stanse IT-system
</a
> - Universitas
</li
>
2870 <li
>2013-
05-
15
2871 <a href=
"http://www.uniforum.uio.no/leserbrev/
2013/uio-ma-ha-kontroll-over-sitt-eget-epostsystem.html
">UiO
2872 må ha kontroll over sitt eget epostsystem
</a
> - Uniforum
</li
>
2876 <p
>Prosjektledelsen har fortalt at dette skal fungere like godt for
2877 Linux-brukere som for brukere av Microsoft Windows og Apple MacOSX,
2878 men jeg lurer på hva slags erfaringer Linux-brukere i eksisterende
2879 miljøer som bruker MS Exchange har gjort. Hvis du har slik erfaring
2880 hadet det vært veldig fint om du kan send et leserbrev til
2881 <a href=
"http://www.uniforum.uio.no/
">Uniforum
</a
> og fortelle om hvor
2882 greit det er å bruke Exchange i kryss-platform-miljøer? De jeg har
2883 snakket med sier en greit får lest e-posten sin hvis Exchange har
2884 slått på IMAP-funksjonalitet, men at kalender og møtebooking ikke
2885 fungerer godt for Linux-klienter. Jeg har ingen personlig erfaring å
2886 komme med, så jeg er nysgjerrig på hva andre kan dele av erfaringer
2887 med universitetet.
</p
>
2889 <p
>Mitt ankerpunkt mot å bytte ut fri programvare som fungerer godt
2890 med godseid programvare er at en mister kontroll over egen
2891 infrastruktur, låser seg inn i en løsning det vil bli dyrt å komme ut
2892 av, uten at en får funksjonalitet en ikke kunne skaffet seg med fri
2893 programvare, eventuelt videreutviklet med de pengene som brukes på
2894 overgangen til MS Exchange. Personlig planlegger jeg å fortsette å
2895 laste ned all eposten min til lokal maskin for indeksering og lesing
2896 med
<a href==
"http://notmuchmail.org
">notmuch
</a
>, så jeg håper jeg
2897 ikke blir veldig skadelidende av overgangen.
</p
>
2899 <p
><a href=
"http://dinis.linguateca.pt/Diana/ImotMSUiO.html
">Underskriftslista
2900 for oss som er mot endringen
</a
>, som omtales i artiklene, er fortsatt
2901 åpen for de som vil signere på oppropet. Akkurat nå er det
298
2902 personer som har signert.
</p
>
2907 <title>Åpent møte på onsdag om bruken av Microsoft Exchange ved Universitetet i Oslo
</title>
2908 <link>https://people.skolelinux.org/pere/blog/_pent_m_te_p__onsdag_om_bruken_av_Microsoft_Exchange_ved_Universitetet_i_Oslo.html
</link>
2909 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/_pent_m_te_p__onsdag_om_bruken_av_Microsoft_Exchange_ved_Universitetet_i_Oslo.html
</guid>
2910 <pubDate>Mon,
3 Jun
2013 14:
00:
00 +
0200</pubDate>
2911 <description><p
>Jeg jobber til daglig ved
<a href=
"http://www.uio.no/
">Universitetet
2912 i Oslo
</a
>, en institusjon som lenge har vektlagt verdien av åpne
2913 standarder og fri programvare. Men noe har endret seg, og for en
2914 liten stund tilbake annonserte USIT at dagens fungerende e-postsystemet
2915 basert på fri programvare skulle byttes ut med Microsoft Exchange og
2916 at Microsoft Outlook skulle bli den best fungerende men antagelig ikke
2917 eneste støttede e-postklienten. Annonseringen har ført til flere
2918 protester og
<a href=
"http://folk.uio.no/dssantos/nooutlookatuio/
">en
2919 underskriftskampanje
</a
>, initiert av Diana Santos, der så langt
253
2920 personer har signert. Prosjektet
2921 <a href=
"http://www.usit.uio.no/prosjekter/nike/
">NIKE (Ny integrert
2922 kalender/e-post)
</a
> ble initiert for å se på mulige løsninger med
2923 utgangspunkt i at en kombinert epost/kalenderløsning var påkrevd, og
2925 <a href=
"http://www.usit.uio.no/prosjekter/nike-implementasjon/
">NIKE-implementasjon
</a
>
2926 er igang med å rulle ut MS Exchange ved Universitetet i Oslo.
</p
>
2928 <p
>For kun kort tid siden ble det annonsert at det blir et åpent møte
2929 med ledelsen hos universitetet i Oslo med disse planene som tema:
</p
>
2931 <p
>Tid:
<strong
>Onsdag
2013-
06-
05 kl.
10:
00</strong
>
2932 <br
>Sted:
<strong
>9. etasje i Lucy Smiths hus (admin-bygget)
</strong
></p
>
2934 <p
> Det kan være en god plass å stille opp hvis en som meg ikke tror
2935 valget av Microsoft Exchange som sentral epostinfrastruktur er et
2936 heldig valg for Norges ledende forskningsuniversitet, men at en er mer
2938 <a href=
"http://nuug.no/dokumenter/kronikk-friprog-itsikkerhet.shtml
">beholde
2939 kontrollen over egen infrastruktur
</a
>.
</p
>
2941 <p
>Saken har ført til endel presseoppslag så langt. Her er de jeg har
2942 fått med meg:
</p
>
2946 <li
>2013-
05-
29
2947 <a href=
"http://universitas.no/nyhet/
58462/forsvarer-nytt-it-system
">Forsvarer
2948 nytt IT-system
</a
> - Universitas
</li
>
2950 <li
>2013-
05-
23
2951 <a href=
"http://www.uniforum.uio.no/nyheter/
2013/
05/uio-innforer-nytt-epost-og-kalendersystem.html
">UiO
2952 innfører nytt epost- og kalenderverktøy
</a
> - Uniforum
</li
>
2955 <li
>2013-
05-
22
2956 <a href=
"http://universitas.no/nyhet/
58424/protestgruppe-vil-stanse-it-system
">Protestgruppe
2957 vil stanse IT-system
</a
> - Universitas
</li
>
2960 <li
>2013-
05-
15
2961 <a href=
"http://www.uniforum.uio.no/leserbrev/
2013/uio-ma-ha-kontroll-over-sitt-eget-epostsystem.html
">UiO
2962 må ha kontroll over sitt eget epostsystem
</a
> - Uniforum
</li
>
2971 <title>Mer innsyn i bakgrunnen for fjerning av ODF fra statens standardkatalog
</title>
2972 <link>https://people.skolelinux.org/pere/blog/Mer_innsyn_i_bakgrunnen_for_fjerning_av_ODF_fra_statens_standardkatalog.html
</link>
2973 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Mer_innsyn_i_bakgrunnen_for_fjerning_av_ODF_fra_statens_standardkatalog.html
</guid>
2974 <pubDate>Tue,
9 Apr
2013 10:
30:
00 +
0200</pubDate>
2975 <description><p
>For cirka en måned siden
2976 <ahref=
"http://people.skolelinux.org/pere/blog/Regjeringen__Fornyingsdepartementet_og_DIFI_g_r_inn_for___fjerne_ODF_som_obligatorisk_standard_i_det_offentlige.html
">ba
2977 jeg om begrunnelse på nektet innsyn i dokumenter
</a
> om
2978 standardkatalogen fra Fornyingsdepartementet. I dag fikk jeg svar fra
2979 Fornyingsdepartementet, og tilgang til dokumentene. Jeg fikk både
2980 innsyn i vedlegg sendt fra DIFI, og også innsyn i et notat brukt
2981 internt i Fornyingsdepartementet:
</p
>
2985 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-Fornyingsdepartementet/sak-
2012-
2168/Oppsummering%
20av%
20h%f8ringen%
20om%
20endringer%
20i%
20forskrift%
20om%
20IT-standarder.pdf
">Epost fra DIFI til Fornyingsdepartementet, datert
2012-
11-
23</a
></li
>
2987 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-Fornyingsdepartementet/sak-
2012-
2168/Oppsummering%
20og%
20anbefaling%
20etter%
20h%f8ring.pdf
">vedlegg
1, Oppsummering og anbefalinger etter høring av endringer i forskrift om IT-standarer i offentlig forvaltning, datert
2012-
11-
23</a
></li
>
2989 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-Fornyingsdepartementet/sak-
2012-
2168/Vedlegg%
20Om%
20h%f8ringe.docx%
20(L)(
898066).pdf
">Notat fra avdeling for IKT og fornying til statsråd i Fornyingsdepartementet om høringen, datert
2013-
01-
03</a
></li
>
2993 <p
>Det bør nevnes at da jeg ble nektet innsyn hos mottaker
2994 Fornyingsdepartementet på høringsoppsummeringen som DIFI hadde sendt
2995 ut, spurte jeg DIFI om innsyn i stedet. Det fikk jeg i løpet av et
2996 par dager. Moralen er at hvis ikke mottaker ikke vil gi innsyn, spør
2997 avsender i stedet. Kanskje de har forskjellig forståelse av hva som
2998 bør holdes skjult for folket. Her er de tilsvarende dokumentene jeg
2999 fikk innsyn i fra DIFI:
</p
>
3003 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-DIFI/Epostforsendelse.pdf
">Epost fra DIFI til Fornyingsdepartementet, datert
2012-
11-
23</a
></li
>
3005 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-DIFI/Vedlegg%
201,%
20Oppsummering%
20av%
20h%f8ring%
20om%
20endringer%
20i%
20forskrift%
20om%
20IT-standarder.pdf
">vedlegg
1, Oppsummering og anbefalinger etter høring av endringer i forskrift om IT-standarer i offentlig forvaltning, datert
2012-
11-
23</a
></li
>
3007 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-DIFI/Vedlegg%
202,%
20Forslag%
20til%
20endringsforskrift.pdf
">Vedlegg
2, Forslag til endringsforskrift, udatert
</a
></li
>
3009 <li
><a href=
"http://www.nuug.no/pub/offentliginnsyn/from-DIFI/Vedlegg%
203%
20Forskrift%
20om%
20IT-standarder%
20i%
20offentlig%
20forvaltning.pdf
">Vedlegg
3, Forskrift om IT-standarder i offentlig forvaltning, udatert
</a
></li
>
3013 <p
>Det jeg synes er mest interessant er endel av aktørene som
3014 protesterte på fjerningen (Kartverket, Drammen kommune), og hvordan
3015 høringsoppsummeringen ikke tar stilling til effekten av å fjerne ODF
3016 fra katalogen.
</p
>
3021 <title>Regjeringen, FAD og DIFI går inn for å fjerne ODF som obligatorisk standard i det offentlige
</title>
3022 <link>https://people.skolelinux.org/pere/blog/Regjeringen__FAD_og_DIFI_g_r_inn_for___fjerne_ODF_som_obligatorisk_standard_i_det_offentlige.html
</link>
3023 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Regjeringen__FAD_og_DIFI_g_r_inn_for___fjerne_ODF_som_obligatorisk_standard_i_det_offentlige.html
</guid>
3024 <pubDate>Mon,
18 Mar
2013 21:
10:
00 +
0100</pubDate>
3025 <description><p
>I
3026 <a href=
"http://standard.difi.no/hoyring/forslag-om-endring-av-forskrift-om-it-standarder-i-offentlig-forvaltning
">siste
3028 <a href=
"http://standard.difi.no/forvaltningsstandarder
">referansekatalogen
3029 for IT-standarder i offentlig sektor
</a
>, med høringsfrist
2012-
09-
30
3030 (DIFI-sak
2012/
498), ble det foreslått å fjerne ODF som obligatorisk
3031 standard når en publiserte dokumenter som skulle kunne redigeres
3032 videre av mottaker. NUUG og andre protesterte på forslaget, som er et
3033 langt steg tilbake når det gjelder å sikre like rettigheter for alle
3034 når en kommuniserer med det offentlige. For noen dager siden ble jeg
3035 oppmerksom på at Direktoratet for forvaltning og IKT (DIFI) og
3036 Fornyings-,administrasjons- og kirkedepartementet (FAD) har
3037 konkludert, og oversendt forslag til regjeringen i saken. FADs
3039 <a href=
"http://www.oep.no/search/result.html?period=none
&descType=both
&caseNumber=
2012%
2F2168
&senderType=both
&documentType=all
&list2=
94&searchType=advanced
&Search=S%C3%B8k+i+journaler
">2012/
2168</a
>-
8,
3040 «Utkast til endring av standardiseringsforskriften» datert
2013-
02-
06
3041 har følgende triste oppsummering fra høringen i saken:
</p
>
3043 <p
><blockquote
>
3044 Det kom noen innvendinger på forslaget om å fjerne ODF som
3045 obligatorisk standard for redigerbare dokumenter. Innvendingene har
3046 ikke blitt ilagt avgjørende vekt.
3047 </blockquote
></p
>
3049 <p
>Ved å fjerne ODF som obligatorisk format ved publisering av
3050 redigerbare dokumenter setter en Norge tiår tilbake. Det som vil skje
3051 er at offentlige etater går tilbake til kun å publisere dokumenter på
3052 et av de mange formatene til Microsoft Office, og alle som ikke
3053 aksepterer bruksvilkårene til Microsoft eller ikke har råd til å bruke
3054 penger på å få tilgang til Microsoft Office må igjen basere seg på
3055 verktøy fra utviklerne som er avhengig av å reversutvikle disse
3056 formatene. I og med at ISO-spesifikasjonen for OOXML ikke komplett og
3057 korrekt spesifiserer formatene til MS Office (men er nyttige å titte i
3058 når en reversutvikler), er en tilbake til en situasjon der en ikke har
3059 <a href=
"http://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html
">en
3060 fri og åpen standard
</a
> å forholde seg til, men i stedet må springe
3061 etter Microsoft. Alle andre leverandører enn Microsoft vil dermed ha
3062 en seriøs ulempe. Det er som å fjerne krav om bruk av meter som
3063 måleenhet, og heretter aksepterer alle måleenheter som like gyldige,
3064 når en vet at den mest brukte enheten vil være armlengden til Steve
3065 Ballmer slik Microsoft måler den.
</p
>
3067 <p
>Jeg er ikke sikker på om forslaget er vedtatt av regjeringen ennå.
3068 Kristian Bergem hos DIFI nevnte på et møte forrige tirsdag at han
3069 trodde det var vedtatt i statsråd
8. mars, men jeg har ikke klart å
3070 finne en skriftlig kilde på regjeringen.no som bekrefter dette.
3071 Kanskje det ennå ikke er for sent...
</p
>
3073 <p
>Jeg ba i forrige uke om innsyn i dokument
6,
7 og
8 i FAD-saken, og
3074 har i dag fått innsyn i dokument
7 og
8. Ble nektet innsyn i
3075 dokumentet med tittelen «Oppsummering av høring om endringer i
3076 forskrift om IT-standarder i offentlig forvaltning» med hjemmel i
3077 off. lovens §
15.1, så det er vanskelig å vite hvordan argumentene fra
3078 høringen ble mottatt og forstått av saksbehandleren hos DIFI. Lurer
3079 på hvordan jeg kan klage på at jeg ikke fikk se oppsummeringen. Fikk
3080 tre PDFer tilsendt fra FAD,
3081 <a href=
"http://www.nuug.no/pub/offentliginnsyn/from-FAD/sak-
2012-
2168/
20130115%
20Notat%
20FAD%
20-%
20EHF.pdf%
20(L)(
889185).pdf
">Endring av underversjon i EHF
</a
>,
3082 <a href=
"http://www.nuug.no/pub/offentliginnsyn/from-FAD/sak-
2012-
2168/Bakgrunnsnotat%
20knyttet%
20til%
20versjon%
20av%
20EHF%
20standarden%
20i%
20Forskrift%
20om%
20IT-standarder%
20i%
20offentlig%
20sektor.pdf
">Bakgrunnsnotat knyttet til versjon av EHF standarden i Forskrift om IT-standarder i offentlig sektor
</a
> og
3083 <a href=
"http://www.nuug.no/pub/offentliginnsyn/from-FAD/sak-
2012-
2168/Utkast%
20Kongelig%
20resolusjon.docx%
20(L)(
898064).pdf
">Utkast til endring av standardiseringsforskriften
</a
>, hvis du vil ta en titt.
</p
>
3088 <title>"Electronic
" paper invoices - using vCard in a QR code
</title>
3089 <link>https://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html
</link>
3090 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html
</guid>
3091 <pubDate>Tue,
12 Feb
2013 10:
30:
00 +
0100</pubDate>
3092 <description><p
>Here in Norway, electronic invoices are spreading, and the
3093 <a href=
"http://www.anskaffelser.no/e-handel/faktura
">solution promoted
3094 by the Norwegian government
</a
> require that invoices are sent through
3095 one of the approved facilitators, and it is not possible to send
3096 electronic invoices without an agreement with one of these
3097 facilitators. This seem like a needless limitation to be able to
3098 transfer invoice information between buyers and sellers. My preferred
3099 solution would be to just transfer the invoice information directly
3100 between seller and buyer, for example using SMTP, or some HTTP based
3101 protocol like REST or SOAP. But this might also be overkill, as the
3102 "electronic
" information can be transferred using paper invoices too,
3103 using a simple bar code. My bar code encoding of choice would be QR
3104 codes, as this encoding can be read by any smart phone out there. The
3105 content of the code could be anything, but I would go with
3106 <a href=
"http://en.wikipedia.org/wiki/VCard
">the vCard format
</a
>, as
3107 it too is supported by a lot of computer equipment these days.
</p
>
3109 <p
>The vCard format support extentions, and the invoice specific
3110 information can be included using such extentions. For example an
3111 invoice from SLX Debian Labs (picked because we
3112 <a href=
"http://www.linuxiskolen.no/slxdebianlabs/donations.html
">ask
3113 for donations to the Debian Edu project
</a
> and thus have bank account
3114 information publicly available) for NOK
1000.00 could have these extra
3117 <p
><pre
>
3119 X-INVOICE-AMOUNT:NOK1000.00
3120 X-INVOICE-KID:
123412341234
3121 X-INVOICE-MSG:Donation to Debian Edu
3122 X-BANK-ACCOUNT-NUMBER:
16040884339
3123 X-BANK-IBAN-NUMBER:NO8516040884339
3124 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
3125 </pre
></p
>
3127 <p
>The X-BANK-ACCOUNT-NUMBER field was proposed in a stackoverflow
3129 <a href=
"http://stackoverflow.com/questions/
10045664/storing-bank-account-in-vcard-file
">how
3130 to put bank account information into a vCard
</a
>. For payments in
3131 Norway, either X-INVOICE-KID (payment ID) or X-INVOICE-MSG could be
3132 used to pass on information to the seller when paying the invoice.
</p
>
3134 <p
>The complete vCard could look like this:
</p
>
3136 <p
><pre
>
3139 ORG:SLX Debian Labs Foundation
3140 ADR;WORK:;;Gunnar Schjelderups vei
29D;OSLO;;
0485;Norway
3141 URL;WORK:http://www.linuxiskolen.no/slxdebianlabs/
3142 EMAIL;PREF;INTERNET:sdl-styret@rt.nuug.no
3143 REV:
20130212T095000Z
3145 X-INVOICE-AMOUNT:NOK1000.00
3146 X-INVOICE-MSG:Donation to Debian Edu
3147 X-BANK-ACCOUNT-NUMBER:
16040884339
3148 X-BANK-IBAN-NUMBER:NO8516040884339
3149 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
3151 </pre
></p
>
3153 <p
>The resulting QR code created using
3154 <a href=
"http://fukuchi.org/works/qrencode/
">qrencode
</a
> would look
3155 like this, and should be readable (and thus checkable) by any smart
3156 phone, or for example the
<a href=
"http://zbar.sourceforge.net/
">zbar
3157 bar code reader
</a
> and feed right into the approval and accounting
3160 <p
><img src=
"http://people.skolelinux.org/pere/blog/images/
2013-
02-
12-qr-invoice.png
"></p
>
3162 <p
>The extension fields will most likely not show up in any normal
3163 vCard reader, so those parts would have to go directly into a system
3164 handling invoices. I am a bit unsure how vCards without name parts
3165 are handled, but a simple test indicate that this work just fine.
</p
>
3167 <p
><strong
>Update
2013-
02-
12 11:
30</strong
>: Added KID to the proposal
3168 based on feedback from Sturle Sunde.
</p
>
3173 <title>12 years of outages - summarised by Stuart Kendrick
</title>
3174 <link>https://people.skolelinux.org/pere/blog/
12_years_of_outages___summarised_by_Stuart_Kendrick.html
</link>
3175 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/
12_years_of_outages___summarised_by_Stuart_Kendrick.html
</guid>
3176 <pubDate>Fri,
26 Oct
2012 14:
20:
00 +
0200</pubDate>
3177 <description><p
>I work at the
<a href=
"http://www.uio.no/
">University of Oslo
</a
>
3178 looking after the computers, mostly on the unix side, but in general
3179 all over the place. I am also a member (and currently leader) of
3180 <a href=
"http://www.nuug.no/
">the NUUG association
</a
>, which in turn
3181 make me a member of
<a href=
"http://www.usenix.org/
">USENIX
</a
>. NUUG
3182 is an member organisation for us in Norway interested in free
3183 software, open standards and unix like operating systems, and USENIX
3184 is a US based member organisation with similar targets. And thanks to
3185 these memberships, I get all issues of the great USENIX magazine
3186 <a href=
"https://www.usenix.org/publications/login
">;login:
</a
> in the
3187 mail several times a year. The magazine is great, and I read most of
3188 it every time.
</p
>
3190 <p
>In the last issue of the USENIX magazine ;login:, there is an
3191 article by
<a href=
"http://www.skendric.com/
">Stuart Kendrick
</a
> from
3192 Fred Hutchinson Cancer Research Center titled
3193 "<a href=
"https://www.usenix.org/publications/login/october-
2012-volume-
37-number-
5/what-takes-us-down
">What
3194 Takes Us Down
</a
>" (longer version also
3195 <a href=
"http://www.skendric.com/problem/incident-analysis/
2012-
06-
30/What-Takes-Us-Down.pdf
">available
3196 from his own site
</a
>), where he report what he found when he
3197 processed the outage reports (both planned and unplanned) from the
3198 last twelve years and classified them according to cause, time of day,
3199 etc etc. The article is a good read to get some empirical data on
3200 what kind of problems affect a data centre, but what really inspired
3201 me was the kind of reporting they had put in place since
2000.
<p
>
3203 <p
>The centre set up a mailing list, and started to send fairly
3204 standardised messages to this list when a outage was planned or when
3205 it already occurred, to announce the plan and get feedback on the
3206 assumtions on scope and user impact. Here is the two example from the
3207 article: First the unplanned outage:
3209 <blockquote
><pre
>
3210 Subject: Exchange
2003 Cluster Issues
3211 Severity: Critical (Unplanned)
3212 Start: Monday, May
7,
2012,
11:
58
3213 End: Monday, May
7,
2012,
12:
38
3214 Duration:
40 minutes
3215 Scope: Exchange
2003
3216 Description: The HTTPS service on the Exchange cluster crashed, triggering
3219 User Impact: During this period, all Exchange users were unable to
3220 access e-mail. Zimbra users were unaffected.
3222 </pre
></blockquote
>
3224 Next the planned outage:
3226 <blockquote
><pre
>
3227 Subject: H Building Switch Upgrades
3228 Severity: Major (Planned)
3229 Start: Saturday, June
16,
2012,
06:
00
3230 End: Saturday, June
16,
2012,
16:
00
3233 Description: Currently, Catalyst
4006s provide
10/
100 Ethernet to end-
3234 stations. We will replace these with newer Catalyst
3236 User Impact: All users on H2 will be isolated from the network during
3237 this work. Afterward, they will have gigabit
3240 </pre
></blockquote
>
3242 <p
>He notes in his article that the date formats and other fields have
3243 been a bit too free form to make it easy to automatically process them
3244 into a database for further analysis, and I would have used ISO
8601
3245 dates myself to make it easier to process (in other words I would ask
3246 people to write
'2012-
06-
16 06:
00 +
0000' instead of the start time
3247 format listed above). There are also other issues with the format
3248 that could be improved, read the article for the details.
</p
>
3250 <p
>I find the idea of standardising outage messages seem to be such a
3251 good idea that I would like to get it implemented here at the
3252 university too. We do register
3253 <a href=
"http://www.uio.no/tjenester/it/aktuelt/planlagte-tjenesteavbrudd/
">planned
3254 changes and outages in a calendar
</a
>, and report the to a mailing
3255 list, but we do not do so in a structured format and there is not a
3256 report to the same location for unplanned outages. Perhaps something
3257 for other sites to consider too?
</p
>
3262 <title>NUUGs høringsuttalelse til DIFIs forslag om å kaste ut ODF fra statens standardkatalog
</title>
3263 <link>https://people.skolelinux.org/pere/blog/NUUGs_h_ringsuttalelse_til_DIFIs_forslag_om___kaste_ut_ODF_fra_statens_standardkatalog.html
</link>
3264 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/NUUGs_h_ringsuttalelse_til_DIFIs_forslag_om___kaste_ut_ODF_fra_statens_standardkatalog.html
</guid>
3265 <pubDate>Mon,
1 Oct
2012 08:
20:
00 +
0200</pubDate>
3266 <description><p
>Som jeg
3267 <a href=
"http://people.skolelinux.org/pere/blog/DIFI_foresl_r___kaste_ut_ODF_og_ta_inn_OOXML_fra_statens_standardkatalog.html
">skrev
3268 i juni
</a
> har DIFI foreslått å fjerne krav om å bruke ODF til
3269 utveksling av redigerbare dokumenter med det offentlige, og
3270 derigjennom tvinge innbyggerne til å forholde seg til formatene til MS
3271 Office når en kommuniserer med det offentlige.
</p
>
3273 <p
>I går kveld fikk vi i
<a href=
"http://www.nuug.no/
">NUUG
</a
>
3274 fullført vår høringsuttalelse og sendt den inn til DIFI. Du finner
3275 <a href=
"http://wiki.nuug.no/uttalelser/
201209-forskrift-standardkatalog
">uttalelsen
3276 på wikien
</a
>. Ta en titt. Fristen for å sende inn uttalelse var i
3277 går søndag, men en får kanskje sitt innspill med hvis en sender i
3283 <title>Free software forced Microsoft to open Office (and don
't forget Officeshots)
</title>
3284 <link>https://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html
</link>
3285 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html
</guid>
3286 <pubDate>Thu,
23 Aug
2012 14:
20:
00 +
0200</pubDate>
3287 <description><p
>I came across a great comment from Simon Phipps today, about how
3288 <a href=
"http://www.infoworld.com/d/open-source-software/how-microsoft-was-forced-open-office-
200233">Microsoft
3289 have been forced to open Office
</a
>, and it made me remember and
3290 revisit the great site
3291 <a href=
"http://www.officeshots.org/
">officeshots
</a
> which allow you
3292 to check out how different programs present the ODF file format. I
3293 recommend both to those of my readers interested in ODF. :)
</p
>
3298 <title>OOXML og standardisering
</title>
3299 <link>https://people.skolelinux.org/pere/blog/OOXML_og_standardisering.html
</link>
3300 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/OOXML_og_standardisering.html
</guid>
3301 <pubDate>Wed,
25 Jul
2012 21:
10:
00 +
0200</pubDate>
3302 <description><p
>DIFI har
3303 <a href=
"http://people.skolelinux.org/pere/blog/DIFI_foresl_r___kaste_ut_ODF_og_ta_inn_OOXML_fra_statens_standardkatalog.html
">en
3304 høring gående
</a
> om ny versjon av statens standardkatalog, med frist
3305 2012-
09-
30, der det foreslås å fjerne ODF fra katalogen og ta inn ISO
3306 OOXML. I den anledning minnes jeg
3307 <a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/IKT-politikk/Refkat_v2.pdf
">notatet
3308 FAD skrev
</a
> da versjon
2 av standardkatalogen var under
3309 utarbeidelse, da FAD og DIFI fortsatt forsto poenget med og verdien av
3310 frie og åpne standarder.
</p
>
3312 <p
>Det er mange som tror at OOXML er ett spesifikt format, men det
3313 brukes ofte som fellesbetegnelse for både formatet spesifisert av
3314 ECMA, ISO, og formatet produsert av Microsoft Office (aka docx), som
3315 dessverre ikke er det samme formatet. Fra en av de som implementerte
3316 støtte for docx-formatet i KDE fikk jeg høre at ISO-spesifikasjonen
3317 var en nyttig referanse, men at det var mange avvik som gjorde at en
3318 ikke kunne gå ut ifra at Microsoft Office produserte dokumenter i
3319 henhold til ISO-spesifikasjonen.
</p
>
3321 <p
>ISOs OOXML-spesifikasjon har (eller hadde, usikker på om
3322 kommentaren er oppdatert) i følge
3323 <a href=
"http://surguy.net/articles/ooxml-validation-and-technical-review.xml
">Inigo
3324 Surguy
</a
> feil i mer enn
10% av eksemplene, noe som i tillegg gjør
3325 det vanskelig å bruke spesifikasjonen til å implementere støtte for
3326 ISO OOXML. Jeg har ingen erfaring med å validere OOXML-dokumenter
3328 <a href=
"http://www.microsoft.com/en-us/download/details.aspx?id=
5124">Microsoft
3329 har laget en validator
</a
> som jeg ikke kan teste da den kun er
3330 tilgjengelig på MS Windows. Finner også en annen kalt
3331 <a href=
"http://code.google.com/p/officeotron/
">Office-O-Tron
</A
> som
3332 er oppdatert i fjor. Lurer på om de validerer at dokumenter er i
3333 formatet til Microsoft office, eller om de validerer at de er i
3334 henhold til formatene spesifisert av ECMA og ISO. Det hadde også vært
3335 interessant å se om docx-dokumentene publisert av det offentlige er
3336 gyldige ISO OOXML-dokumenter.
</p
>
3341 <title>Mer oppfølging fra MPEG-LA om avtale med dem for å kringkaste og publisere H
.264-video
</title>
3342 <link>https://people.skolelinux.org/pere/blog/Mer_oppf_lging_fra_MPEG_LA_om_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
</link>
3343 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Mer_oppf_lging_fra_MPEG_LA_om_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
</guid>
3344 <pubDate>Thu,
5 Jul
2012 23:
50:
00 +
0200</pubDate>
3345 <description><p
>I føljetongen om H
.264
3346 <a href=
"http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
">forlot
3347 jeg leserne i undring
</a
> om hvor pakken fra MPEG-LA tok veien, og om
3348 hvilke selskaper i Norge som har avtale med MPEG-LA. Da Ryan hos
3349 MPEG-LA dro på ferie sendte jeg min melding videre til hans kollega,
3350 og dagen etter fikk jeg følgende svar derfra:
</p
>
3352 <p
><blockquote
>
3353 <p
>Date: Fri,
29 Jun
2012 18:
32:
34 +
0000
3354 <br
>From: Sidney Wolf
&lt;SWolf (at) mpegla.com
&gt;
3355 <br
>To: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3356 <br
>Cc: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3357 <br
>Subject: RE: Do NRK have a license agreement with MPEG-LA?
</p
>
3359 <p
>Dear Mr. Reinholdtsen,
</p
>
3361 <p
>Thank you for your message. As you know, Ryan is currently our of the
3362 office, so it will be my pleasure to assist you.
</p
>
3364 <p
>Per your request, attached please find an electronic copy of the
3365 AVC Patent Portfolio License. Please note that the electronic copy of
3366 the License is provided as a convenience and for informational
3367 purposes only. When concluding the Licenses, only the hard copies
3368 provided by MPEG LA may be used.
</p
>
3370 <p
>To your question, MPEG LA lists our Licensees on our website
3371 according to each program. The lists are in alphabetical order, so it
3372 is very easy to search.
</p
>
3374 <p
>I hope that this was helpful. If we can be of additional
3375 assistance, please let me know.
</p
>
3377 <p
>Kind regards,
</p
>
3379 <p
>Sidney A. Wolf
3380 <br
>Manager, Global Licensing
3381 <br
>MPEG LA
</p
>
3382 </blockquote
></p
>
3384 <p
>Selv om et epostvedlegg er nyttig for mottakeren, så håpet jeg å få
3385 et dokument jeg kunne dele med alle leserne av bloggen min, og ikke et
3386 som må deles på individuell basis. Opphavsretten krever godkjenning
3387 fra rettighetsinnehaver før en kan gjøre slikt, så dermed fulgte jeg
3388 opp med et spørsmål om dette var greit.
</p
>
3390 <p
><blockquote
>
3391 <p
>Date: Wed,
4 Jul
2012 20:
25:
06 +
0200
3392 <br
>From: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3393 <br
>To: Sidney Wolf
&lt;SWolf (at) mpegla.com
&gt;
3394 <br
>Cc: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3395 <br
>Subject: Re: Do NRK have a license agreement with MPEG-LA?
</p
>
3397 <p
>Thank you for your reply.
</p
>
3399 <p
>[Sidney Wolf]
3400 <br
>&gt; Per your request, attached please find an electronic copy of the AVC
3401 <br
>&gt; Patent Portfolio License. Please note that the electronic copy of
3402 <br
>&gt; the License is provided as a convenience and for informational
3403 <br
>&gt; purposes only. When concluding the Licenses, only the hard copies
3404 <br
>&gt; provided by MPEG LA may be used.
</p
>
3406 <p
>This is useful for me to learn, but the reason I asked for the
3407 Internet address of the licensing document was to ensure I could
3408 publish a link to it when I discuss the topic of H
.264 licensing here
3409 in Norway, and allow others to verify my observations. I can not do
3410 the same with an email attachment. Thus I would like to ask you if it
3411 is OK with MPEG LA that I publish this document on the Internet for
3412 others to read?
</p
>
3414 <p
>&gt; To your question, MPEG LA lists our Licensees on our website
3415 <br
>&gt; according to each program. The lists are in alphabetical order, so
3416 <br
>&gt; it is very easy to search.
</p
>
3418 <p
>I am afraid this do not help me locate Norwegian companies in the
3419 list of Licensees. I do not know the name of all companies and
3420 organisations in Norway, and thus do not know how to locate the
3421 Norwegian ones on that list.
</p
>
3423 <p
>&gt; I hope that this was helpful. If we can be of additional assistance,
3424 <br
>&gt; please let me know.
</p
>
3426 <p
>Absoutely helpful to learn more about how MPEG LA handle licensing.
</p
>
3429 <br
>Happy hacking
3430 <br
>Petter Reinholdtsen
</p
>
3431 </blockquote
></p
>
3433 <p
>Jeg håpet også at det skulle være mulig å få vite hvilke av de
3434 mange hundre som har avtale med MPEG-LA om bruk av H
.264 som holdt til
3435 i Norge. Begge mine håp falt i grus med svaret fra MPEG-LA.
3437 <p
><blockquote
>
3438 <p
>Date: Thu,
5 Jul
2012 17:
42:
39 +
0000
3439 <br
>From: Sidney Wolf
&lt;SWolf (at) mpegla.com
&gt;
3440 <br
>To:
'Petter Reinholdtsen
' &lt;pere (at) hungry.com
&gt;
3441 <br
>Cc: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3442 <br
>Subject: RE: Do NRK have a license agreement with MPEG-LA?
</p
>
3444 <p
>Dear Mr. Reinholdtsen,
</p
>
3446 <p
>Thank you for your reply.
</p
>
3448 <p
>We appreciate the additional explanation you have provided and for
3449 asking our permission to publish the electronic copy of the License in
3450 advance of doing so. Typically, MPEG LA prefers to distribute the
3451 electronic copies of our Licenses to interested parties. Therefore,
3452 please feel free to send interested parties to the AVC portion of our
3453 website, http://www.mpegla.com/main/programs/AVC/Pages/Intro.aspx for
3454 their further reference.
</p
>
3456 <p
>As previously mentioned, MPEG LA maintains a list of Licensees in good
3457 standing on our website according to each program. Due to the large
3458 volume of Licensees, it would be administratively impractical to
3459 provide this level of detail to interested parties. Therefore, I am
3460 afraid we are not in a position to assist you with your request.
</p
>
3462 <p
>Kind regards,
</p
>
3464 <p
>Sidney A. Wolf
3465 <br
>Manager, Global Licensing
3466 <br
>MPEG LA
</p
>
3467 </blockquote
></p
>
3469 <p
>Men takket være epostvedlegget kunne jeg søke på Google etter
3470 setningen
"WHEREAS, a video standard commonly referred to as AVC has
3471 been defined and is referred to in this Agreement as the “AVC
3472 Standard” (as more fully defined herein below)
" som finnes i avtalen,
3473 og lokalisere en kopi fra
2007 av
3474 <a href=
"http://www.sec.gov/Archives/edgar/data/
1342960/
000119312509050004/dex1024.htm
">lisensavtalen
3475 mellom MPEG-LA og DivX, Inc.
</a
>, slik at mine lesere kan se hvordan
3476 avtalen så ut da. Jeg har ikke sammenlignet tekstene for å se om noe
3477 har endret seg siden den tid, men satser på at teksten er representativ.
</p
>
3479 <p
>Jeg aner fortsatt ikke hvor FedEx tok veien med pakken fra
3482 <p
>Update
2012-
07-
06: Jeg er visst ikke den første som forsøker å få
3483 klarhet i problemstillinger rundt H
.264, og kom nettopp over en veldig
3484 interessant bloggpost fra
2010 hos LibreVideo med tittelen
3485 "<a href=
"http://www.librevideo.org/blog/
2010/
06/
14/mpeg-la-answers-some-questions-about-avch-
264-licensing/
">MPEG-LA
3486 answers some questions about AVC/H
.264 licensing
</a
>. Anbefales!
</p
>
3491 <title>DIFI foreslår å kaste ut ODF og ta inn OOXML fra statens standardkatalog
</title>
3492 <link>https://people.skolelinux.org/pere/blog/DIFI_foresl_r___kaste_ut_ODF_og_ta_inn_OOXML_fra_statens_standardkatalog.html
</link>
3493 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/DIFI_foresl_r___kaste_ut_ODF_og_ta_inn_OOXML_fra_statens_standardkatalog.html
</guid>
3494 <pubDate>Fri,
29 Jun
2012 18:
00:
00 +
0200</pubDate>
3495 <description><p
>DIFI har nettopp annonsert høring om revisjon av
3496 <a href=
"http://www.standard.difi.no/forvaltningsstandarder
">standardkatalogen
</a
>,
3497 og endelig har Microsoft fått viljen sin. Se
3498 <a href=
"http://www.standard.difi.no/hoyring/forslag-om-endring-av-forskrift-om-it-standarder-i-offentlig-forvaltning
">høringssiden
</a
>
3499 for hele teksten.
</p
>
3501 <p
>Her er forslaget i sin helhet:
</p
>
3503 <p
><blockquote
>
3504 <p
>3.2 Revisjon av krav til redigerbare dokumenter
</p
>
3506 <p
>I første versjon av referansekatalogen i
2007 ble det satt krav om
3507 Open Document Format (ODF), versjon
1.1 (OASIS,
1.2.2007) for
3508 redigerbare dokumenter. Kravet var obligatorisk for stat og sterkt
3509 anbefalt for kommunal sektor. I
2009 ble kravet gjort obligatorisk for
3510 hele offentlig sektor i
3511 <a href=
"http://www.lovdata.no/for/sf/fa/xa-
20090925-
1222.html
">forskrift
3512 om IT-standarder i forvaltningen
</a
>. Anvendelsesområdet for kravet
3513 har vært begrenset til publisering av dokumenter som skal bearbeides
3514 videre (§
4 nr.
1 andre ledd). I
2011 ble anvendelsesområdet utvidet
3515 til å omfatte utveksling av dokumenter beregnet for redigering som
3516 vedlegg til e-post (§
4 nr.
2).
</p
>
3518 <p
>Office Open XML ISO/IEC
29500:
2011 (OOXML) er et dokumentformat
3519 opprinnelig utviklet av Microsoft med tilsvarende anvendelsesområde
3520 som ODF. Formatet er blant annet tatt i bruk i nyere versjoner av
3521 kontorstøtteprogamvaren MS Office. Difi har foretatt en
3522 <a href=
"http://www.standard.difi.no/filearchive/revisjonsvurdering-standarder-for-redigerbare-dokumenter-v1-
0.pdf
">revisjonsvurdering
</a
>
3523 av krav som stilles til redigerbare dokumenter i Forskrift om
3524 IT-standarder i forvaltningen, og anbefaler at kravet til ODF
3525 fjernes. Dette innebærer at det ikke stilles krav til dokumentformater
3526 for redigerbare dokumenter ved publisering på offentlige virksomheters
3527 nettsider og for redigerbare vedlegg til e-post som sendes fra
3528 offentlige virksomheter til innbyggere og næringsliv. Offentlige
3529 virksomheter vil dermed stå fritt til å publisere eller sende
3530 redigerbare dokumenter i det format som ivaretar brukernes behov
3533 <p
>Forslaget innebærer at krav til ODF utgår §
4 nr.
1 tredje ledd og
3534 §
4 nr.
2 første ledd
</p
>
3536 <P
>Imidlertid bør det stilles strengere krav til hvilke formater
3537 offentlige virksomheter plikter å motta redigerbare dokumenter. Vi
3538 mener at det ikke bør skilles mellom mottak av redigerbare dokumenter
3539 som sendes i ODF eller OOXML3, som begge er åpne standarder. Dette
3540 medfører at innbyggere og næringsliv skal kunne basere sitt valg av
3541 programvare på egne behov og ikke på de valg offentlige virksomheter
3542 tar. Kravet vil omfatte hele offentlig sektor, herunder
3543 utdanningssektoren, hvor det kanskje er størst bruk av ODF. Kravet er
3544 foreslått som ny §
4 nr
.2 andre ledd
</p
>
3545 </blockquote
></p
>
3547 <P
>De satser vel på at det hele blir glemt over sommeren, og at de
3548 fleste har glemt Standard Norge og ISOs fallitt fra da OOXML ble
3549 jukset igjennom som ISO-standard. Jeg håper mine lesere sender inn
3550 høringsuttalelser til høringen.
</p
>
3552 <p
>Anbefaler alle å friske opp sine argumenter ved å lese
3553 <a href=
"http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html
">svaret
3554 fra senator Edgar Villanueva til Microsoft i Peru
</a
>. Det er en
3555 klassisk tekst som er like gyldig i dag som da det ble skrevet.
</p
>
3561 <title>Departementenes servicesenter har ingen avtale om bruk av H
.264 med MPEG-LA
</title>
3562 <link>https://people.skolelinux.org/pere/blog/Departementenes_servicesenter_har_ingen_avtale_om_bruk_av_H_264_med_MPEG_LA.html
</link>
3563 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Departementenes_servicesenter_har_ingen_avtale_om_bruk_av_H_264_med_MPEG_LA.html
</guid>
3564 <pubDate>Fri,
29 Jun
2012 09:
40:
00 +
0200</pubDate>
3565 <description><p
>Da fikk jeg nettopp svar fra
3566 <a href=
"http://www.dss.dep.no/
">Departementenes servicesenter
</a
>
3568 <a href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">mitt
3569 spørsmål om avtale rundt bruk av H
.264</a
>. De har ingen avtale med
3570 MPEG LA eller dets representanter. Her er svaret.
3572 <p
><blockquote
>
3574 <p
>Date: Fri,
29 Jun
2012 07:
04:
42 +
0000
3575 <br
>From: Nielsen Mette Haga
&lt;Mette-Haga.Nielsen (at) dss.dep.no
&gt;
3576 <br
>To: Petter Reinholdtsen
&lt;petter.reinholdtsen (at) ...
&gt;
3577 <br
>CC: Postmottak
&lt;Postmottak (at) dss.dep.no
&gt;
3578 <br
>Subject: SV: Innsynsbegjæring om MPEG/H
.264-relaterte avtaler
</p
>
3580 <p
>DSS har ikke inngått noen egen lisensavtale med MPEG-LA eller noen som
3581 representerer MPEG-LA i Norge. Videoløsningen på regjeringen.no er
3582 levert av Smartcom:tv. Lisensforholdet rundt H
.264 er ikke omtalt i
3583 vår avtale med Smartcom.
</p
>
3585 <p
>Vennlig hilsen
</p
>
3587 <p
>Mette Haga Nielsen
3588 <br
>Fung. seksjonssjef
</p
>
3590 <p
>Departementenes servicesenter
</p
>
3592 <p
>Informasjonsforvaltning
3594 <p
>Mobil
93 09 83 51
3595 <br
>E-post mette-haga.nielsen (at) dss.dep.no
</p
>
3596 </blockquote
></p
>
3598 <p
>Hvis den norske regjeringen representert ved DSS ikke har slik
3599 avtale, så kan en kanskje konkludere med at det ikke trengs? Jeg er
3600 ikke trygg på at det er god juridisk grunn å stå på, men det er i det
3601 minste interessant å vite at hverken NRK eller DSS har funnet det
3602 nødvendig å ha avtale om bruk av H
.264.
</p
>
3604 <p
>Det forklarer ikke hvordan de kan ignorere bruksvilkårene knyttet
3605 til bruk av opphavsrettsbeskyttet materiale de bruker til
3606 videoproduksjon, med mindre slike vilkår kan ignoreres av selskaper og
3607 privatpersoner i Norge. Har de lov til å bryte vilkårene, eller har
3608 de brutt dem og så langt sluppet unna med det? Jeg aner ikke.
</p
>
3613 <title>MPEG-LA mener NRK må ha avtale med dem for å kringkaste og publisere H
.264-video
</title>
3614 <link>https://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
</link>
3615 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
</guid>
3616 <pubDate>Thu,
28 Jun
2012 20:
00:
00 +
0200</pubDate>
3617 <description><p
>Etter at NRK
3618 <a href=
"http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html
">nektet
3619 å spore opp eventuell avtale med MPEG-LA
</a
> eller andre om bruk av
3620 MPEG/H
.264-video etter at jeg
<a
3621 href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">ba
3622 om innsyn i slike avtaler
</a
>, tenkte jeg at i stedet for å forsøke å
3623 få NRK til å finne en slik avtale, så burde det være like enkelt å
3624 spørre MPEG-LA om de hadde avtale med NRK. Spørsmålet ble sendt før
3625 jeg fikk tips fra Kieran Kunhya om hvor listen over lisensinnehavere
3626 "in Good Standing
" befant seg. MPEG-LA svarte meg i dag, og kan
3627 fortelle at NRK ikke har noen avtale med dem, så da er i det minste det
3628 slått fast. Ikke overraskende mener MPEG-LA at det trengs en avtale
3629 med MPEG-LA for å streame H
.264, men deres rammer er jo
3630 rettstilstanden i USA og ikke Norge. Jeg tar dermed den delen av
3631 svaret med en klype salt. Jeg er dermed fortsatt ikke klok på om det
3632 trengs en avtale, og hvis det trengs en avtale her i Norge, heller
3633 ikke sikker på om NRK har en avtale med noen andre enn MPEG-LA som
3634 gjør at de ikke trenger avtale direkte med MPEG-LA. Jeg håper NRKs
3635 jurister har vurdert dette, og at det er mulig å få tilgang til
3636 vurderingen uansett om de trenger en avtale eller ikke.
</p
>
3638 <p
>Her er epostutvekslingen med MPEG-LA så langt. Håper ikke
3639 utvekslingen fører til NRK plutselig får en litt uventet pakke fra
3642 <p
><blockquote
>
3643 <p
>Date: Mon,
25 Jun
2012 15:
29:
37 +
0200
3644 <br
>From: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3645 <br
>To: licensing-web (at) mpegla.com
3646 <br
>Subject: Do NRK have a license agreement with MPEG-LA?
</p
>
3648 <p
>Hi. I have a small question for you, that I hope it is OK that I
3651 <p
>Is there any license agreements between MPEG-LA and NRK,
&lt;URL:
3652 <a href=
"http://www.nrk.no/
">http://www.nrk.no/
</a
> &gt;, the
3653 Norwegian national broadcasting cooperation? I am not sure if they
3654 need one, and am just curious if such agreeement exist.
</p
>
3656 <p
>The postal address is
</p
>
3658 <p
><blockquote
>
3660 <br
>Postbox
8500, Majorstuen
3663 </blockquote
></p
>
3665 <p
>if it make it easier for you to locate such agreement.
</p
>
3667 <p
>Can you tell me how many entities in Norway have an agreement with
3668 MPEG-LA, and the name of these entities?
</p
>
3671 <br
>Happy hacking
3672 <br
>Petter Reinholdtsen
3673 </blockquote
></p
>
3675 <p
>I dag, to dager senere, fikk jeg følgende svar:
</p
>
3677 <p
><blockquote
>
3678 <p
>Date: Thu,
28 Jun
2012 14:
11:
17 +
0000
3679 <br
>From: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
>
3680 <br
>To: Petter Reinholdtsen
&lt;pere (at) hungry.com
>
3681 <br
>CC: MD Administration
&lt;MDAdministration (at) mpegla.com
>
3682 <br
>Subject: RE: Do NRK have a license agreement with MPEG-LA?
</p
>
3684 <p
>Dear Mr. Reinholdtsen,
</p
>
3686 <p
>Thank you for your message and for your interest in MPEG LA. We
3687 appreciate hearing from you and I will be happy to assist you.
</p
>
3689 <p
>To begin, I will assume that you are referring to AVC/H
.264
3690 technology in your message below, as this technology is commonly used
3691 in the transmission of video content. In that case, please allow me
3692 to briefly summarize the coverage provided by our AVC Patent Portfolio
3695 <P
>Our AVC License provides coverage for end products and video
3696 services that make use of AVC/H
.264 technology. Accordingly, the
3697 party offering such end products and video to End Users concludes the
3698 AVC License and is responsible for paying the applicable royalties
3699 associated with the end products/video they offer.
</p
>
3701 <p
>While the Norwegian Broadcast Corporation (NRK) is not currently a
3702 Licensee to MPEG LA
's AVC License (or any other Portfolio License
3703 offered by MPEG LA), if NRK offers AVC Video to End Users for
3704 remuneration (for example, Title-by-Title, Subscription, Free
3705 Television, or Internet Broadcast AVC Video), then NRK will need to
3706 conclude the AVC License and may be responsible for paying applicable
3707 royalties associated with the AVC Video it distributes.
</p
>
3709 <p
>Today I will send you a FedEx package containing a copy of our AVC
3710 License for your review. You should receive the License document
3711 within the next few days.
</p
>
3713 <p
>Meanwhile, MPEG LA currently has several Norwegian Licensees that
3714 can be found under the
"Licensees
" header within the respective
3715 portion of our website. For example, you may find our list of
3716 Licensees in Good Standing to our AVC License in the AVC portion of
3718 <a href=
"http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
">http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
</a
></p
>
3720 <p
>I hope the above information is helpful. If you have additional
3721 questions or need further assistance with the AVC License, please feel
3722 free to contact me directly. I look forward to hearing from you again
3725 <p
>Best regards,
</p
>
3727 <p
>Ryan
</p
>
3729 <p
>Ryan M. Rodriguez
3730 <br
>Licensing Associate
3732 <br
>5425 Wisconsin Avenue
3734 <br
>Chevy Chase, MD
20815
3736 <br
>Phone: +
1 (
301)
986-
6660 x211
3737 <br
>Fax: +
1 (
301)
986-
8575
3738 <br
>Email: rrodriguez (at) mpegla.com
</p
>
3740 </blockquote
></p
>
3742 <p
>Meldingen om utsendt FedEx-pakke var så merkelig at jeg
3743 øyeblikkelig sendte svar tilbake og spurte hva i alle dager han mente,
3744 da han jo ikke hadde fått noen postadresse som nådde meg.
</p
>
3746 <p
><blockquote
>
3748 <p
>Date: Thu,
28 Jun
2012 16:
36:
15 +
0200
3749 <br
>From: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3750 <br
>To: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3751 <br
>Cc: MD Administration
&lt;MDAdministration (at) mpegla.com
&gt;
3752 <br
>Subject: Re: Do NRK have a license agreement with MPEG-LA?
</p
>
3754 <p
>[Ryan Rodriguez]
3755 <br
>&gt; Dear Mr. Reinholdtsen,
</p
>
3757 <p
>Thank you for your quick reply.
</p
>
3759 <p
>&gt; Today I will send you a FedEx package containing a copy of our AVC
3760 <br
>&gt; License for your review. You should receive the License document
3761 <br
>&gt; within the next few days.
</p
>
3763 <p
>The part about sending a FedEx package confused me, though. I did not
3764 <br
>give you my address, nor am I associated with NRK in any way, so I hope
3765 <br
>you did not try to send me a package using the address of NRK. If you
3766 <br
>would send me the Internet address of to the document, it would be more
3767 <br
>useful to me to be able to download it as an electronic document.
</p
>
3769 <p
>&gt; Meanwhile, MPEG LA currently has several Norwegian Licensees that can
3770 <br
>&gt; be found under the
"Licensees
" header within the respective portion
3771 <br
>&gt; of our website. For example, you may find our list of Licensees in
3772 <br
>&gt; Good Standing to our AVC License in the AVC portion of our website,
3773 <br
>&gt; http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
</p
>
3775 <p
>How can I recognize the Norwegian licensees?
</p
>
3778 <br
>Happy hacking
3779 <br
>Petter Reinholdtsen
</p
>
3780 </blockquote
></p
>
3782 <p
>Selv om jeg svarte kun noen minutter etter at jeg fikk eposten fra
3783 MPEG-LA, fikk jeg eposten under som automatisk var beskjed på min
3784 siste epost. Får håpe noen likevel følger opp
"FedEx-pakken
". For å
3785 øke sjansen for at noen revurderer utsending av pakke uten mottaker,
3786 videresendte jeg min epost til swolf (at) mpegla.com, så får vi se.
3787 Har ikke hørt noe mer
3 timer senere, så jeg mistenker at ingen leste
3788 min epost tidsnok.
</p
>
3790 <p
><blockquote
>
3792 <p
>Date: Thu,
28 Jun
2012 14:
36:
20 +
0000
3793 <br
>From: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3794 <br
>To: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3795 <br
>Subject: Automatic reply: Do NRK have a license agreement with MPEG-LA?
</p
>
3797 <p
>Thank you for your message.
</p
>
3799 <p
>I will be out of the office until Thursday, July
5 and will respond
3800 to all messages upon my return. If this is a matter that requires
3801 immediate attention, please contact Sidney Wolf (swolf (at)
3802 mpegla.com)
</p
>
3804 <p
>Best regards,
</p
>
3806 <p
>Ryan
</p
>
3808 <p
>Ryan M. Rodriguez
3809 <br
>Licensing Associate
3810 <br
>MPEG LA
</p
>
3812 </blockquote
></p
>
3814 <p
>Litt klokere, men fortsatt ikke klok på mitt opprinnelige spørsmål,
3815 som er om en trenger avtale med MPEG-LA for å publisere eller
3816 kringkaste H
.264-video i Norge.
</p
>
3821 <title>NRK nekter å finne og utlevere eventuell avtale med MPEG-LA
</title>
3822 <link>https://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html
</link>
3823 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html
</guid>
3824 <pubDate>Mon,
25 Jun
2012 15:
10:
00 +
0200</pubDate>
3825 <description><p
>Jeg fikk nettopp svar fra NRK på
3826 <a href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">min
3827 forespørsel om kopi av avtale
</a
> med MPEG-LA eller andre om bruk av
3828 MPEG og/eller H
.264. Svaret har fått saksreferanse
2011/
371 (mon tro
3829 hva slags sak fra
2011 dette er?) hos NRK og lyder som følger:
</p
>
3831 <p
><blockquote
>
3833 <p
><strong
>Svar på innsynsbegjæring i MPEG / H
.264-relaterte
3834 avtaler
</strong
></p
>
3836 <p
>Viser til innsynsbegjæring av
19. juni
2012. Kravet om innsyn
3837 gjelder avtale som gjør at NRK «ikke er begrenset av de generelle
3838 bruksvilkårene som gjelder for utstyr som bruker MPEG og/eller
3841 <p
>I henhold til offentleglova §
28 annet ledd må innsynskravet gjelde
3842 en bestemt sak eller i rimelig utstrekning saker av en bestemt
3843 sak. Det er på det rene at det aktuelle innsynskravet ikke gjelder en
3844 bestemt sak. Spørsmålet som reiser seg er om identifiseringsgraden er
3845 tilstrekkelig. I Justisdepartementets «Rettleiar til offentleglova»
3846 står følgende:
</p
>
3848 <p
>«Kravet om at innsynskravet må gjelde ei bestemt sak er til hinder
3849 for at eit innsynskrav kan gjelde alle saker av ein bestemt art, utan
3850 at den enkelte saka blir identifisert. Ein kan med andre ord i
3851 utgangspunktet ikkje krevje innsyn i til dømes alle saker om
3852 utsleppsløyve hos Statens forureiningstilsyn frå dei siste tre åra,
3853 med mindre ein identifiserer kvar enkelt sak, til dømes med tilvising
3854 til dato, partar eller liknande.»
</p
>
3856 <p
>Vedrørende denne begrensningen har Justisdepartementet uttalt
3857 følgende (Lovavdelingens uttalelser JDLOV-
2010-
3295):
</p
>
3859 <p
><em
>«Bakgrunnen for avgrensinga av kva innsynskravet kan gjelde,
3860 er fyrst og fremst at meir generelle innsynskrav, utan noka form for
3861 identifikasjon av kva ein eigentleg ynskjer, ville vere svært
3862 vanskelege å handsame for forvaltninga.»
</em
></p
>
3864 <p
>I samme sak uttaler Lovavdelingen følgende:
</p
>
3866 <p
><em
>«Det følgjer vidare av offentleglova §
28 andre ledd at det `i
3867 rimeleg utstrekning
' kan krevjast innsyn i `saker av ein bestemt
3868 art
'. Vilkåret om at eit innsynskrav berre `i rimeleg utstrekning
' kan
3869 gjelde saker av ein bestemt art, er i hovudsak knytt til kor
3870 arbeidskrevjande det vil vere å finne fram til dei aktuelle
3871 dokumenta. I tillegg reknar vi med at vilkåret kan gje grunnlag for å
3872 nekte innsyn i tilfelle der innsynskravet er så omfattande (gjeld så
3873 mange dokument) at arbeidsmengda som ville gått med til å handsame
3874 det, er større enn det ein `i rimeleg utstrekning
' kan krevje (sjølv
3875 om det nok skal mykje til).»
</em
></p
>
3877 <p
>NRK har ikke noen egen sammenstilling over avtaler innenfor
3878 bestemte områder som omtales i innsynsbegjæringen. De måtte søkes på
3879 vanlig måte. I tillegg finnes ikke noen automatisert måte å finne
3880 avtaler som «ikke er begrenset av de generelle bruksvilkårene som
3881 gjelder for utstyr som bruker MPEG og/eller H
.264». En slik
3882 gjennomgang av avtaler måtte gjøres manuelt av en person med
3883 spesialistkunnskap. Dette vil kreve at NRK avsetter omfattende
3884 ressurser for å finne frem relevante avtaler og for deretter å vurdere
3885 om de dekkes av det innsynsbegjæringen omfattes.
</p
>
3887 <p
>På bakgrunn av dette nekter NRK innsyn, med den begrunnelsen at
3888 innsynskravet er så omfattende at arbeidsmengden for å håndtere kravet
3889 vil være langt større enn det som i rimelig utstrekning kan kreves i
3890 henhold til offentleglova §
28 annet ledd.
</p
>
3892 <p
>Avslag på deres innsynsbegjæring kan påklages til Kultur- og
3893 kirkedepartementet innen tre uker fra det tidspunkt avslaget kommer
3894 frem til mottakeren, i henhold til reglene i offentleglova §
32,
3895 jf. forvaltningsloven kapittel VI. Klagen skal stiles til Kultur- og
3896 kirkedepartementet, og sendes til NRK.
</p
>
3898 <p
>NRK er imidlertid etter Offentleglova forpliktet å gi ut journaler,
3899 slik at en eventuell søknad om innsyn kan tydeligere identifisere
3900 hvilke dokumenter som det ønskes innsyn i. NRKs offentlige journaler
3901 for inneværende og forrige måned ligger ute på
3902 NRK.no/innsyn. Journaler som går lengre tilbake i tid, kan sendes ut
3903 på forespørsel til innsyn (at) nrk.no.
</p
>
3906 <br
>Dokumentarkivet i NRK
3907 <br
>v/ Elin Brandsrud
3908 <br
>Tel. direkte:
23 04 29 29
3909 <br
>Post: RBM3, Postboks
8500 Majorstuen,
0340 Oslo
3910 <br
>innsyn (at) nrk.no
</p
>
3912 </blockquote
></p
>
3915 <a href=
"http://people.skolelinux.org/pere/blog/images/
2012-
06-
25-video-mpegla-nrk.pdf
">i
3916 PDF-form som vedlegg på epost
</a
>. Jeg er litt usikker på hvordan jeg
3917 best går videre for å bli klok, men jeg har jo i hvert fall tre uker
3918 på å vurdere om jeg skal klage. Enten må nok forespørselen
3919 reformuleres eller så må jeg vel klage. Synes jo det er merkelig at
3920 NRK ikke har bedre kontroll med hvilke avtaler de har inngått. Det
3921 burde jo være noen i ledelsen som vet om de har signert en avtale med
3922 MPEG-LA eller ikke...
</p
>
3924 <p
>Oppdatering
2012-
06-
25 20:
20: Et google-søk på
"2011/
371 nrk
"
3925 sendte meg til postjournalen for
3926 <a href=
"http://nrk.no/contentfile/file/
1.8212365!offentligjournal19062012.pdf
">2012-
06-
19</a
>
3928 <a href=
"http://nrk.no/contentfile/file/
1.8214156!offentligjournal20062012.pdf
">2012-
06-
20</a
>
3929 hos NRK som viser mine forespørsler og viser at sakens tittel hos NRK
3930 er
"Graphic Systems Regions MA
2378/
10E
". Videre søk etter
"Graphic
3931 Systems Regions
" viser at dette er saken til et anbud om
3932 "<a href=
"http://no.mercell.com/m/mts/Tender/
27179412.aspx
">a graphics
3933 system for
12 or
13 sites broadcasting regional news
</a
>" hos Mercell
3934 Sourcing Service, også omtalt på
3935 <a href=
"http://www.publictenders.net/tender/
595705">Public
3936 Tenders
</a
> og
3937 <a href=
"http://www.doffin.no/search/show/search_view.aspx?ID=JAN155521
">Doffin
</a
>.
3938 Jeg er dog usikker på hvordan dette er relatert til min
3939 forespørsel.
</p
>
3941 <p
>Oppdatering
2012-
06-
25 22:
40: Ble tipset av Kieran Kunhya, fra
3943 <a href=
"http://code.google.com/p/open-broadcast-encoder/
">Open
3944 Broadcast Encoder
</a
>, at listen over de som har lisensavtale med
3946 <a href=
"http://www.mpeg-la.com/main/programs/AVC/Pages/Licensees.aspx
">tilgjengelig
3947 på web
</a
>. Veldig fint å oppdage hvor den finnes, da jeg må ha lett
3948 etter feil ting da jeg forsøke å finne den. Der står ikke NRK, men
3949 flere andre
"Broadcasting Company
"-oppføringer. Lurer på om det betyr
3950 at NRK ikke trenger avtale, eller noe helt annet?
</p
>
3955 <title>Trenger en avtale med MPEG-LA for å publisere og kringkaste H
.264-video?
</title>
3956 <link>https://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
</link>
3957 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
</guid>
3958 <pubDate>Thu,
21 Jun
2012 13:
40:
00 +
0200</pubDate>
3959 <description><p
>Trengs det avtale med MPEG-LA for å ha lovlig rett til å
3960 distribuere og kringkaste video i MPEG4 eller med videokodingen H
.264?
3961 <a href=
"http://webmink.com/essays/h-
264/
">H
.264 og MPEG4 er jo ikke en
3962 fri og åpen standard
</a
> i henhold til
3963 <a href=
"http://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html
">definisjonen
3964 til Digistan
</a
>, så i enkelte land er det ingen tvil om at du må ha
3965 en slik avtale, men jeg må innrømme at jeg ikke vet om det også
3966 gjelder Norge. Det ser uansett ut til å være en juridisk interessant
3967 problemstilling. Men jeg tenkte her om dagen som så, at hvis det er
3968 nødvendig, så har store aktører som
3969 <a href=
"http://www.nrk.no/
">NRK
</a
> og
3970 <a href=
"http://www.regjeringen.no/
">regjeringen
</a
> skaffet seg en
3971 slik avtale. Jeg har derfor sendt forespørsel til begge (for
3972 regjeringen sin del er det Departementenes Servicesenter som gjør
3973 jobben), og bedt om kopi av eventuelle avtaler de har om bruk av MPEG
3974 og/eller H
.264 med MPEG-LA eller andre aktører som opererer på vegne
3975 av MPEG-LA. Her er kopi av eposten jeg har sendt til
3976 <a href=
"http://www.dss.dep.no/
">Departementenes Servicesenter
</a
>.
3977 Forespørselen til NRK er veldig lik.
</p
>
3979 <p
><blockquote
>
3981 <p
>Date: Tue,
19 Jun
2012 15:
18:
33 +
0200
3982 <br
>From: Petter Reinholdtsen
3983 <br
>To: postmottak@dss.dep.no
3984 <br
>Subject: Innsynsbegjæring om MPEG/H
.264-relaterte avtaler
3986 <p
>Hei. Jeg ber herved om innsyn og kopi av dokumenter i DSS relatert
3987 til avtaler rundt bruk av videoformatene MPEG og H
.264. Jeg er
3988 spesielt interessert i å vite om DSS har lisensavtale med MPEG-LA
3989 eller noen som representerer MPEG-LA i Norge.
</p
>
3991 <p
>MPEG og H
.264 er videoformater som brukes både til kringkasting
3992 (f.eks. i bakkenett og kabel-TV) og videopublisering på web, deriblant
3993 via Adobe Flash. MPEG-LA,
&lt;URL:
3994 <a href=
"http://www.mpeg-la.com/
">http://www.mpeg-la.com/
</a
> &gt;, er
3995 en organisasjon som har fått oppgaven, av de kjente rettighetshavere
3996 av immaterielle rettigheter knyttet til MPEG og H
.264, å selge
3997 bruksrett for MPEG og H
.264.
</p
>
3999 <p
>Via regjeringen.no kringkastes med MPEG og H
.264-baserte
4000 videoformater, og dette ser ut til å være organisert av DSS. Jeg
4001 antar dermed at DSS har avtale med en eller annen aktør om dette.
</p
>
4003 <p
>F.eks. har Adobe Premiere Pro har følgende klausul i følge
&lt;URL:
4004 <a href=
"http://news.cnet.com/
8301-
30685_3-
20000101-
264.html
">http://news.cnet.com/
8301-
30685_3-
20000101-
264.html
</a
>
4007 <p
><blockquote
>
4009 <p
>6.17. AVC DISTRIBUTION. The following notice applies to software
4010 containing AVC import and export functionality: THIS PRODUCT IS
4011 LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL AND
4012 NON-COMMERCIAL USE OF A CONSUMER TO (a) ENCODE VIDEO IN COMPLIANCE
4013 WITH THE AVC STANDARD (
"AVC VIDEO
") AND/OR (b) DECODE AVC VIDEO THAT
4014 WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL
4015 ACTIVITY AND/OR AVC VIDEO THAT WAS OBTAINED FROM A VIDEO PROVIDER
4016 LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL BE
4017 IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED
4018 FROM MPEG LA L.L.C. SEE
4019 <a href=
"http://www.mpegla.com
">http://www.mpegla.com
</a
>.
</p
>
4021 </blockquote
></p
>
4023 <p
>Her er det kun
"non-commercial
" og
"personal and non-commercial
"
4024 aktivitet som er tillatt uten ekstra avtale med MPEG-LA.
</p
>
4026 <p
>Et annet tilsvarende eksempel er Apple Final Cut Pro, som har
4027 følgende klausul i følge
&lt;URL:
4028 <a href=
"http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf
">http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf
</a
>
4031 <p
><blockquote
>
4033 <p
>15. Merknad om H
.264/AVC. Hvis Apple-programvaren inneholder
4034 funksjonalitet for AVC-koding og/eller AVC-dekoding, krever
4035 kommersiell bruk ekstra lisensiering og følgende gjelder:
4036 AVC-FUNKSJONALITETEN I DETTE PRODUKTET KAN KUN ANVENDES AV
4037 FORBRUKERE OG KUN FOR PERSONLIG OG IKKE- KOMMERSIELL BRUK TIL (i)
4038 KODING AV VIDEO I OVERENSSTEMMELSE MED AVC-STANDARDEN (
"AVC-VIDEO
")
4039 OG/ELLER (ii) DEKODING AV AVC-VIDEO SOM ER KODET AV EN FORBRUKER TIL
4040 PERSONLIG OG IKKE-KOMMERSIELL BRUK OG/ELLER DEKODING AV AVC-VIDEO
4041 FRA EN VIDEOLEVERANDØR SOM HAR LISENS TIL Å TILBY
4042 AVC-VIDEO. INFORMASJON OM ANNEN BRUK OG LISENSIERING KAN INNHENTES
4043 FRA MPEG LA L.L.C. SE HTTP://WWW.MPEGLA.COM.
</p
>
4044 </blockquote
></p
>
4046 <p
>Tilsvarende gjelder for andre programvarepakker, kamera, etc som
4047 bruker MPEG og H
.264, at en må ha en avtale med MPEG-LA for å ha lov
4048 til å bruke programmet/utstyret hvis en skal lage noe annet enn
4049 private filmer og i ikke-kommersiell virksomhet.
</p
>
4051 <p
>Jeg er altså interessert i kopi av avtaler DSS har som gjør at en
4052 ikke er begrenset av de generelle bruksvilkårene som gjelder for
4053 utstyr som bruker MPEG og/eller H
.264.
</p
>
4054 </blockquote
></p
>
4056 <p
>Nå venter jeg spent på svaret. Jeg planlegger å blogge om svaret
4062 <title>The cost of ODF and OOXML
</title>
4063 <link>https://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html
</link>
4064 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html
</guid>
4065 <pubDate>Sat,
26 May
2012 18:
00:
00 +
0200</pubDate>
4066 <description><p
>I just come across a blog post from Glyn Moody reporting the
4067 claimed cost from Microsoft on requiring ODF to be used by the UK
4068 government. I just sent him an email to let him know that his
4069 assumption are most likely wrong. Sharing it here in case some of my
4070 blog readers have seem the same numbers float around in the UK.
</p
>
4072 <p
><blockquote
> <p
>Hi. I just noted your
4073 <a href=
"http://blogs.computerworlduk.com/open-enterprise/
2012/
04/does-microsoft-office-lock-in-cost-the-uk-government-
500-million/index.htm
">http://blogs.computerworlduk.com/open-enterprise/
2012/
04/does-microsoft-office-lock-in-cost-the-uk-government-
500-million/index.htm
</a
>
4076 <p
><blockquote
>"They
're all in Danish, not unreasonably, but even
4077 with the help of Google Translate I can
't find any figures about the
4078 savings of
"moving to a flexible two standard
" as claimed by the
4079 Microsoft email. But I assume it is backed up somewhere, so let
's take
4080 it, and the £
500 million figure for the UK, on trust.
"
4081 </blockquote
></p
>
4083 <p
>I can tell you that the Danish reports are inflated. I believe it is
4084 the same reports that were used in the Norwegian debate around
2007,
4085 and Gisle Hannemyr (a well known IT commentator in Norway) had a look
4086 at the content. In short, the reason it is claimed that using ODF
4087 will be so costly, is based on the assumption that this mean every
4088 existing document need to be converted from one of the MS Office
4089 formats to ODF, transferred to the receiver, and converted back from
4090 ODF to one of the MS Office formats, and that the conversion will cost
4091 10 minutes of work time for both the sender and the receiver. In
4092 reality the sender would have a tool capable of saving to ODF, and the
4093 receiver would have a tool capable of reading it, and the time spent
4094 would at most be a few seconds for saving and loading, not
20 minutes
4095 of wasted effort.
</p
>
4097 <p
>Microsoft claimed all these costs were saved by allowing people to
4098 transfer the original files from MS Office instead of spending
10
4099 minutes converting to ODF. :)
</p
>
4102 <a href=
"http://hannemyr.com/no/ms12_vl02.php
">http://hannemyr.com/no/ms12_vl02.php
</a
>
4104 <a href=
"http://hannemyr.com/no/ms12.php
">http://hannemyr.com/no/ms12.php
</a
>
4105 for background information. Norwegian only, sorry. :)
</p
>
4106 </blockquote
></p
>
4111 <title>OpenOffice.org fungerer da fint for blinde?
</title>
4112 <link>https://people.skolelinux.org/pere/blog/OpenOffice_org_fungerer_da_fint_for_blinde_.html
</link>
4113 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/OpenOffice_org_fungerer_da_fint_for_blinde_.html
</guid>
4114 <pubDate>Mon,
21 May
2012 23:
20:
00 +
0200</pubDate>
4115 <description><p
>De siste dagene har høringsuttalelsene om DIFIs forslag til
4116 standardkatalog v3.1 blitt
4117 <a href=
"http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder?tab=comments
">publisert
4118 på DIFIs nettside
</a
>, og jeg kunne der glede meg over at
4119 <a href=
"http://wiki.nuug.no/uttalelser/
201204-standardkatalog-v3.1
">NUUGs
</a
>
4120 uttalelse er kommet med. En uttalelse som overrasker og forvirrer meg
4122 <a href=
"http://www.standard.difi.no/filearchive/norges-blindeforbund.pdf
">den
4123 fra Norges Blindeforbund
</a
>, som
5 år etter at Klaus Knopper sammen
4124 med sin blinde kone blant annet
4125 <a href=
"http://www.nuug.no/aktiviteter/
20071211-accessibility/
">demonstrerte
4126 høyttalende OpenOffice.org på nynorsk for blinde
</a
> på et NUUG-møte.
</p
>
4128 <p
><a href=
"https://www.blindeforbundet.no/
">Norges Blindeforbund
</a
>
4129 skriver følgende, som for meg virker å være formulert på sviktende
4132 <p
><blockquote
>
4133 <p
>Bruk av fri programvare
4135 <p
>I FRIPROGSENTERET, RAPPORT
2009-
02: Universell utforming
4136 <a href=
"http://www.kunnskapsbazaren.no/filer/Friprogsenteret-Rapport-Universell_utforming.pdf
">http://www.kunnskapsbazaren.no/filer/Friprogsenteret-Rapport-Universell_utforming.pdf
</a
>
4137 sies det
"Det finnes i dag ikke mange fri programvare-rammeverk eller
4138 generelle løsninger som støtter tilgjengelighet eller som er
4139 universelt utformet.
"</p
>
4141 <p
>Til tross for at det gjennom prinsippene i fri programvare åpnes
4142 for større frihet til selv å påvirke programvareløsninger i retning av
4143 universell utforming viser praksis at virkeligheten er en annen.
4144 Mange av de mest alminnelige frie programvarepakkene mangler delvis
4145 eller fullstendig tilgjengelighet for mennesker med nedsatt
4146 syn. Eksempler på dette er OpenOffice og LibreOffice m.fl.
</p
>
4148 <p
>En annen utfordring ved bruk av fri programvare kan være manglende
4149 kundestøtte og muligheter til opplæring i bruk av løsningen. Svaksynte
4150 og blinde har et høyere behov for denne typen støtte enn andre brukere
4151 ettersom mange av dem har behov for tilleggsprogramvare som skal
4152 fungere sammen med den opprinnelige programvaren, og ettersom man ikke
4153 har de samme muligheter for overblikk over grensesnittet som en seende
4154 bruker. I tillegg til dette kommer de mer tilgjengelighetstekniske
4155 utfordringene som ofte må løses i samarbeid med
4156 programvareleverandør/produsent.
</p
>
4158 <p
>Fri programvare er ikke på samme måte underlagt lovgivning gjennom
4159 for eksempel diskriminerings og tilgjengelighetsloven ettersom det
4160 ikke alltid finnes en produsent/tilbyder av tjenesten eller produktet.
</p
>
4162 <p
>Norges Blindeforbund krever at universell utforming og
4163 brukskvalitet tas med som viktige hensyn i utredninger som ligger til
4164 grunn for valg av standarder som primært leder brukeren mot fri
4165 programvare. Et eksempel på dette er bruk av dokumentformatet ODF som
4166 leder brukeren i retning av OpenOffice, som er helt eller delvis
4167 utilgjengelig for svaksynte og blinde – noe avhengig av plattform og
4168 hjelpemiddelprogramvare.
</p
>
4170 </blockquote
></p
>
4172 <p
>Jeg håper noen involvert i OpenOffice.org og/eller LibreOffice tar
4173 kontakt med Norges Blindeforbund og oppklarer det som for meg virker å
4174 være en misforståelse, i og med at OpenOffice.org så vidt jeg vet
4175 fungerer fint også for blinde.
</p
>
4177 <p
>Jeg ble minnet på problemstillingen da jeg leste Slashdot-saken om
4178 "<a href=
"http://linux.slashdot.org/story/
12/
05/
21/
1417221/the-state-of-linux-accessibility
">The
4179 State of Linux Accessibility
</a
>", som også hevder at Linux fungerer
4180 utmerket for blinde.
</p
>
4185 <title>NUUGs leverer høringsuttalelse om v3.1 av statens referansekatalog
</title>
4186 <link>https://people.skolelinux.org/pere/blog/NUUGs_leverer_h_ringsuttalelse_om_v3_1_av_statens_referansekatalog.html
</link>
4187 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/NUUGs_leverer_h_ringsuttalelse_om_v3_1_av_statens_referansekatalog.html
</guid>
4188 <pubDate>Fri,
27 Apr
2012 15:
30:
00 +
0200</pubDate>
4189 <description><p
>NUUG-styremedlem Hans-Petter Fjeld
4190 <a href=
"https://plus.google.com/u/
0/
110394259537201279374/posts/AGzRmAuFdW1
">meldte
4191 nettopp
</a
> at han har sendt inn
<a href=
"http://www.nuug.no/
">NUUG
</a
>s
4192 høringsuttalelse angående Difi sin standardkatalog v3.1. Jeg er veldig
4193 glad for at så mange bidro og sikret at vår stemme blir hørt i denne
4194 høringen. Anbefaler alle å lese våre
4195 <a href=
"http://wiki.nuug.no/uttalelser/
201204-standardkatalog-v3.1
">to
4196 sider med innspill
</a
>.
</p
>
4201 <title>HTC One X - Your video? What do you mean?
</title>
4202 <link>https://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html
</link>
4203 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html
</guid>
4204 <pubDate>Thu,
26 Apr
2012 13:
20:
00 +
0200</pubDate>
4205 <description><p
>In
<a href=
"http://www.idg.no/computerworld/article243690.ece
">an
4206 article today
</a
> published by Computerworld Norway, the photographer
4207 <a href=
"http://www.urke.com/eirik/
">Eirik Helland Urke
</a
> reports
4208 that the video editor application included with
4209 <a href=
"http://www.htc.com/www/smartphones/htc-one-x/#specs
">HTC One
4210 X
</a
> have some quite surprising terms of use. The article is mostly
4211 based on the twitter message from mister Urke, stating:
4213 <p
><blockquote
>
4214 "<a href=
"http://twitter.com/urke/status/
194062269724897280">Drøy
4215 brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
4216 kan jeg KUN bruke dem privat.
</a
>"
4217 </blockquote
></p
>
4219 <p
>I quickly translated it to this English message:
</p
>
4221 <p
><blockquote
>
4222 "Arrogant user agreement: HTC can use MY edited videos
4223 commercially. Although I can ONLY use them privately.
"
4224 </blockquote
></p
>
4226 <p
>I
've been unable to find the text of the license term myself, but
4227 suspect it is a variation of the MPEG-LA terms I
4228 <a href=
"http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
">discovered
4229 with my Canon IXUS
130</a
>. The HTC One X specification specifies that
4230 the recording format of the phone is .amr for audio and .mp3 for
4232 <a href=
"http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues
">Adaptive
4233 Multi-Rate audio codec
</a
> with patents which according to the
4234 Wikipedia article require an license agreement with
4235 <a href=
"http://www.voiceage.com/
">VoiceAge
</a
>. MP4 is
4236 <a href=
"http://en.wikipedia.org/wiki/H
.264/MPEG-
4_AVC#Patent_licensing
">MPEG4 with
4237 H
.264</a
>, which according to Wikipedia require a licence agreement
4238 with
<a href=
"http://www.mpegla.com/
">MPEG-LA
</a
>.
</p
>
4240 <p
>I know why I prefer
4241 <a href=
"http://www.digistan.org/open-standard:definition
">free and open
4242 standards
</a
> also for video.
</p
>
4247 <title>RAND terms - non-reasonable and discriminatory
</title>
4248 <link>https://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html
</link>
4249 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html
</guid>
4250 <pubDate>Thu,
19 Apr
2012 22:
20:
00 +
0200</pubDate>
4251 <description><p
>Here in Norway, the
4252 <a href=
"http://www.regjeringen.no/nb/dep/fad.html?id=
339"> Ministry of
4253 Government Administration, Reform and Church Affairs
</a
> is behind
4254 a
<a href=
"http://standard.difi.no/forvaltningsstandarder
">directory of
4255 standards
</a
> that are recommended or mandatory for use by the
4256 government. When the directory was created, the people behind it made
4257 an effort to ensure that everyone would be able to implement the
4258 standards and compete on equal terms to supply software and solutions
4259 to the government. Free software and non-free software could compete
4260 on the same level.
</p
>
4262 <p
>But recently, some standards with RAND
4263 (
<a href=
"http://en.wikipedia.org/wiki/Reasonable_and_non-discriminatory_licensing
">Reasonable
4264 And Non-Discriminatory
</a
>) terms have made their way into the
4265 directory. And while this might not sound too bad, the fact is that
4266 standard specifications with RAND terms often block free software from
4267 implementing them. The reasonable part of RAND mean that the cost per
4268 user/unit is low,and the non-discriminatory part mean that everyone
4269 willing to pay will get a license. Both sound great in theory. In
4270 practice, to get such license one need to be able to count users, and
4271 be able to pay a small amount of money per unit or user. By
4272 definition, users of free software do not need to register their use.
4273 So counting users or units is not possible for free software projects.
4274 And given that people will use the software without handing any money
4275 to the author, it is not really economically possible for a free
4276 software author to pay a small amount of money to license the rights
4277 to implement a standard when the income available is zero. The result
4278 in these situations is that free software are locked out from
4279 implementing standards with RAND terms.
</p
>
4281 <p
>Because of this, when I see someone claiming the terms of a
4282 standard is reasonable and non-discriminatory, all I can think of is
4283 how this really is non-reasonable and discriminatory. Because free
4284 software developers are working in a global market, it does not really
4285 help to know that software patents are not supposed to be enforceable
4286 in Norway. The patent regimes in other countries affect us even here.
4287 I really hope the people behind the standard directory will pay more
4288 attention to these issues in the future.
</p
>
4290 <p
>You can find more on the issues with RAND, FRAND and RAND-Z terms
4292 (
<a href=
"http://blogs.computerworlduk.com/simon-says/
2010/
11/rand-not-so-reasonable/
">RAND:
4293 Not So Reasonable?
</a
>).
</p
>
4295 <p
>Update
2012-
04-
21: Just came across a
4296 <a href=
"http://blogs.computerworlduk.com/open-enterprise/
2012/
04/of-microsoft-netscape-patents-and-open-standards/index.htm
">blog
4297 post from Glyn Moody
</a
> over at Computer World UK warning about the
4298 same issue, and urging people to speak out to the UK government. I
4299 can only urge Norwegian users to do the same for
4300 <a href=
"http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder
">the
4301 hearing taking place at the moment
</a
> (respond before
2012-
04-
27).
4302 It proposes to require video conferencing standards including
4303 specifications with RAND terms.
</p
>
4308 <title>The video format most supported in web browsers?
</title>
4309 <link>https://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html
</link>
4310 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html
</guid>
4311 <pubDate>Sun,
16 Jan
2011 00:
20:
00 +
0100</pubDate>
4312 <description><p
>The video format struggle on the web continues, and the three
4313 contenders seem to be Ogg Theora, H
.264 and WebM. Most video sites
4314 seem to use H
.264, while others use Ogg Theora. Interestingly enough,
4315 the comments I see give me the feeling that a lot of people believe
4316 H
.264 is the most supported video format in browsers, but according to
4317 the Wikipedia article on
4318 <a href=
"http://en.wikipedia.org/wiki/HTML5_video
">HTML5 video
</a
>,
4319 this is not true. Check out the nice table of supprted formats in
4320 different browsers there. The format supported by most browsers is
4321 Ogg Theora, supported by released versions of Mozilla Firefox, Google
4322 Chrome, Chromium, Opera, Konqueror, Epiphany, Origyn Web Browser and
4323 BOLT browser, while not supported by Internet Explorer nor Safari.
4324 The runner up is WebM supported by released versions of Google Chrome
4325 Chromium Opera and Origyn Web Browser, and test versions of Mozilla
4326 Firefox. H
.264 is supported by released versions of Safari, Origyn
4327 Web Browser and BOLT browser, and the test version of Internet
4328 Explorer. Those wanting Ogg Theora support in Internet Explorer and
4329 Safari can install plugins to get it.
</p
>
4331 <p
>To me, the simple conclusion from this is that to reach most users
4332 without any extra software installed, one uses Ogg Theora with the
4333 HTML5 video tag. Of course to reach all those without a browser
4334 handling HTML5, one need fallback mechanisms. In
4335 <a href=
"http://www.nuug.no/
">NUUG
</a
>, we provide first fallback to a
4336 plugin capable of playing MPEG1 video, and those without such support
4337 we have a second fallback to the Cortado java applet playing Ogg
4338 Theora. This seem to work quite well, as can be seen in an
<a
4339 href=
"http://www.nuug.no/aktiviteter/
20110111-semantic-web/
">example
4340 from last week
</a
>.
</p
>
4342 <p
>The reason Ogg Theora is the most supported format, and H
.264 is
4343 the least supported is simple. Implementing and using H
.264
4344 require royalty payment to MPEG-LA, and the terms of use from MPEG-LA
4345 are incompatible with free software licensing. If you believed H
.264
4346 was without royalties and license terms, check out
4347 "<a href=
"http://webmink.com/essays/h-
264/
">H
.264 – Not The Kind Of
4348 Free That Matters
</a
>" by Simon Phipps.
</p
>
4350 <p
>A incomplete list of sites providing video in Ogg Theora is
4352 <a href=
"http://wiki.xiph.org/index.php/List_of_Theora_videos
">the
4353 Xiph.org wiki
</a
>, if you want to have a look. I
'm not aware of a
4354 similar list for WebM nor H
.264.
</p
>
4356 <p
>Update
2011-
01-
16 09:
40: A question from Tollef on IRC made me
4357 realise that I failed to make it clear enough this text is about the
4358 &lt;video
&gt; tag support in browsers and not the video support
4359 provided by external plugins like the Flash plugins.
</p
>
4364 <title>Chrome plan to drop H
.264 support for HTML5
&lt;video
&gt;
</title>
4365 <link>https://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html
</link>
4366 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html
</guid>
4367 <pubDate>Wed,
12 Jan
2011 22:
10:
00 +
0100</pubDate>
4368 <description><p
>Today I discovered
4369 <a href=
"http://www.digi.no/
860070/google-dropper-h264-stotten-i-chrome
">via
4370 digi.no
</a
> that the Chrome developers, in a surprising announcement,
4371 <a href=
"http://blog.chromium.org/
2011/
01/html-video-codec-support-in-chrome.html
">yesterday
4372 announced
</a
> plans to drop H
.264 support for HTML5
&lt;video
&gt; in
4373 the browser. The argument used is that H
.264 is not a
"completely
4374 open
" codec technology. If you believe H
.264 was free for everyone
4375 to use, I recommend having a look at the essay
4376 "<a href=
"http://webmink.com/essays/h-
264/
">H
.264 – Not The Kind Of
4377 Free That Matters
</a
>". It is not free of cost for creators of video
4378 tools, nor those of us that want to publish on the Internet, and the
4379 terms provided by MPEG-LA excludes free software projects from
4380 licensing the patents needed for H
.264. Some background information
4381 on the Google announcement is available from
4382 <a href=
"http://www.osnews.com/story/
24243/Google_To_Drop_H264_Support_from_Chrome
">OSnews
</a
>.
4383 A good read. :)
</p
>
4385 <p
>Personally, I believe it is great that Google is taking a stand to
4386 promote equal terms for everyone when it comes to video publishing on
4387 the Internet. This can only be done by publishing using free and open
4388 standards, which is only possible if the web browsers provide support
4389 for these free and open standards. At the moment there seem to be two
4390 camps in the web browser world when it come to video support. Some
4391 browsers support H
.264, and others support
4392 <a href=
"http://www.theora.org/
">Ogg Theora
</a
> and
4393 <a href=
"http://www.webmproject.org/
">WebM
</a
>
4394 (
<a href=
"http://www.diracvideo.org/
">Dirac
</a
> is not really an option
4395 yet), forcing those of us that want to publish video on the Internet
4396 and which can not accept the terms of use presented by MPEG-LA for
4397 H
.264 to not reach all potential viewers.
4398 Wikipedia keep
<a href=
"http://en.wikipedia.org/wiki/HTML5_video
">an
4399 updated summary
</a
> of the current browser support.
</p
>
4401 <p
>Not surprising, several people would prefer Google to keep
4402 promoting H
.264, and John Gruber
4403 <a href=
"http://daringfireball.net/
2011/
01/simple_questions
">presents
4404 the mind set
</a
> of these people quite well. His rhetorical questions
4405 provoked a reply from Thom Holwerda with another set of questions
4406 <a href=
"http://www.osnews.com/story/
24245/
10_Questions_for_John_Gruber_Regarding_H_264_WebM
">presenting
4407 the issues with H
.264</a
>. Both are worth a read.
</p
>
4409 <p
>Some argue that if Google is dropping H
.264 because it isn
't free,
4410 they should also drop support for the Adobe Flash plugin. This
4411 argument was covered by Simon Phipps in
4412 <a href=
"http://blogs.computerworlduk.com/simon-says/
2011/
01/google-and-h264---far-from-hypocritical/index.htm
">todays
4413 blog post
</a
>, which I find to put the issue in context. To me it
4414 make perfect sense to drop native H
.264 support for HTML5 in the
4415 browser while still allowing plugins.
</p
>
4417 <p
>I suspect the reason this announcement make so many people protest,
4418 is that all the users and promoters of H
.264 suddenly get an uneasy
4419 feeling that they might be backing the wrong horse. A lot of TV
4420 broadcasters have been moving to H
.264 the last few years, and a lot
4421 of money has been invested in hardware based on the belief that they
4422 could use the same video format for both broadcasting and web
4423 publishing. Suddenly this belief is shaken.
</p
>
4425 <p
>An interesting question is why Google is doing this. While the
4426 presented argument might be true enough, I believe Google would only
4427 present the argument if the change make sense from a business
4428 perspective. One reason might be that they are currently negotiating
4429 with MPEG-LA over royalties or usage terms, and giving MPEG-LA the
4430 feeling that dropping H
.264 completely from Chroome, Youtube and
4431 Google Video would improve the negotiation position of Google.
4432 Another reason might be that Google want to save money by not having
4433 to pay the video tax to MPEG-LA at all, and thus want to move to a
4434 video format not requiring royalties at all. A third reason might be
4435 that the Chrome development team simply want to avoid the
4436 Chrome/Chromium split to get more help with the development of Chrome.
4437 I guess time will tell.
</p
>
4439 <p
>Update
2011-
01-
15: The Google Chrome team provided
4440 <a href=
"http://blog.chromium.org/
2011/
01/more-about-chrome-html-video-codec.html
">more
4441 background and information on the move
</a
> it a blog post yesterday.
</p
>
4446 <title>What standards are Free and Open as defined by Digistan?
</title>
4447 <link>https://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html
</link>
4448 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html
</guid>
4449 <pubDate>Thu,
30 Dec
2010 23:
15:
00 +
0100</pubDate>
4450 <description><p
>After trying to
4451 <a href=
"http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html
">compare
4452 Ogg Theora
</a
> to
4453 <a href=
"http://www.digistan.org/open-standard:definition
">the Digistan
4454 definition
</a
> of a free and open standard, I concluded that this need
4455 to be done for more standards and started on a framework for doing
4456 this. As a start, I want to get the status for all the standards in
4457 the Norwegian reference directory, which include UTF-
8, HTML, PDF, ODF,
4458 JPEG, PNG, SVG and others. But to be able to complete this in a
4459 reasonable time frame, I will need help.
</p
>
4461 <p
>If you want to help out with this work, please visit
4462 <a href=
"http://wiki.nuug.no/grupper/standard/digistan-analyse
">the
4463 wiki pages I have set up for this
</a
>, and let me know that you want
4464 to help out. The IRC channel #nuug on irc.freenode.net is a good
4465 place to coordinate this for now, as it is the IRC channel for the
4466 NUUG association where I have created the framework (I am the leader
4467 of the Norwegian Unix User Group).
</p
>
4469 <p
>The framework is still forming, and a lot is left to do. Do not be
4470 scared by the sketchy form of the current pages. :)
</p
>
4475 <title>The many definitions of a open standard
</title>
4476 <link>https://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html
</link>
4477 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html
</guid>
4478 <pubDate>Mon,
27 Dec
2010 14:
45:
00 +
0100</pubDate>
4479 <description><p
>One of the reasons I like the Digistan definition of
4480 "<a href=
"http://www.digistan.org/open-standard:definition
">Free and
4481 Open Standard
</a
>" is that this is a new term, and thus the meaning of
4482 the term has been decided by Digistan. The term
"Open Standard
" has
4483 become so misunderstood that it is no longer very useful when talking
4484 about standards. One end up discussing which definition is the best
4485 one and with such frame the only one gaining are the proponents of
4486 de-facto standards and proprietary solutions.
</p
>
4488 <p
>But to give us an idea about the diversity of definitions of open
4489 standards, here are a few that I know about. This list is not
4490 complete, but can be a starting point for those that want to do a
4491 complete survey. More definitions are available on the
4492 <a href=
"http://en.wikipedia.org/wiki/Open_standard
">wikipedia
4493 page
</a
>.
</p
>
4495 <p
>First off is my favourite, the definition from the European
4496 Interoperability Framework version
1.0. Really sad to notice that BSA
4497 and others has succeeded in getting it removed from version
2.0 of the
4498 framework by stacking the committee drafting the new version with
4499 their own people. Anyway, the definition is still available and it
4500 include the key properties needed to make sure everyone can use a
4501 specification on equal terms.
</p
>
4505 <p
>The following are the minimal characteristics that a specification
4506 and its attendant documents must have in order to be considered an
4507 open standard:
</p
>
4511 <li
>The standard is adopted and will be maintained by a not-for-profit
4512 organisation, and its ongoing development occurs on the basis of an
4513 open decision-making procedure available to all interested parties
4514 (consensus or majority decision etc.).
</li
>
4516 <li
>The standard has been published and the standard specification
4517 document is available either freely or at a nominal charge. It must be
4518 permissible to all to copy, distribute and use it for no fee or at a
4519 nominal fee.
</li
>
4521 <li
>The intellectual property - i.e. patents possibly present - of
4522 (parts of) the standard is made irrevocably available on a royalty-
4523 free basis.
</li
>
4525 <li
>There are no constraints on the re-use of the standard.
</li
>
4530 <p
>Another one originates from my friends over at
4531 <a href=
"http://www.dkuug.dk/
">DKUUG
</a
>, who coined and gathered
4532 support for
<a href=
"http://www.aaben-standard.dk/
">this
4533 definition
</a
> in
2004. It even made it into the Danish parlament as
4534 <a href=
"http://www.ft.dk/dokumenter/tingdok.aspx?/samling/
20051/beslutningsforslag/B103/som_fremsat.htm
">their
4535 definition of a open standard
</a
>. Another from a different part of
4536 the Danish government is available from the wikipedia page.
</p
>
4540 <p
>En åben standard opfylder følgende krav:
</p
>
4544 <li
>Veldokumenteret med den fuldstændige specifikation offentligt
4545 tilgængelig.
</li
>
4547 <li
>Frit implementerbar uden økonomiske, politiske eller juridiske
4548 begrænsninger på implementation og anvendelse.
</li
>
4550 <li
>Standardiseret og vedligeholdt i et åbent forum (en såkaldt
4551 "standardiseringsorganisation
") via en åben proces.
</li
>
4557 <p
>Then there is
<a href=
"http://www.fsfe.org/projects/os/def.html
">the
4558 definition
</a
> from Free Software Foundation Europe.
</p
>
4562 <p
>An Open Standard refers to a format or protocol that is
</p
>
4566 <li
>subject to full public assessment and use without constraints in a
4567 manner equally available to all parties;
</li
>
4569 <li
>without any components or extensions that have dependencies on
4570 formats or protocols that do not meet the definition of an Open
4571 Standard themselves;
</li
>
4573 <li
>free from legal or technical clauses that limit its utilisation by
4574 any party or in any business model;
</li
>
4576 <li
>managed and further developed independently of any single vendor
4577 in a process open to the equal participation of competitors and third
4580 <li
>available in multiple complete implementations by competing
4581 vendors, or as a complete implementation equally available to all
4588 <p
>A long time ago, SUN Microsystems, now bought by Oracle, created
4590 <a href=
"http://blogs.sun.com/dennisding/resource/Open%
20Standard%
20Definition.pdf
">Open
4591 Standards Checklist
</a
> with a fairly detailed description.
</p
>
4594 <p
>Creation and Management of an Open Standard
4598 <li
>Its development and management process must be collaborative and
4603 <li
>Participation must be accessible to all those who wish to
4604 participate and can meet fair and reasonable criteria
4605 imposed by the organization under which it is developed
4606 and managed.
</li
>
4608 <li
>The processes must be documented and, through a known
4609 method, can be changed through input from all
4610 participants.
</li
>
4612 <li
>The process must be based on formal and binding commitments for
4613 the disclosure and licensing of intellectual property rights.
</li
>
4615 <li
>Development and management should strive for consensus,
4616 and an appeals process must be clearly outlined.
</li
>
4618 <li
>The standard specification must be open to extensive
4619 public review at least once in its life-cycle, with
4620 comments duly discussed and acted upon, if required.
</li
>
4628 <p
>Use and Licensing of an Open Standard
</p
>
4631 <li
>The standard must describe an interface, not an implementation,
4632 and the industry must be capable of creating multiple, competing
4633 implementations to the interface described in the standard without
4634 undue or restrictive constraints. Interfaces include APIs,
4635 protocols, schemas, data formats and their encoding.
</li
>
4637 <li
> The standard must not contain any proprietary
"hooks
" that create
4638 a technical or economic barriers
</li
>
4640 <li
>Faithful implementations of the standard must
4641 interoperate. Interoperability means the ability of a computer
4642 program to communicate and exchange information with other computer
4643 programs and mutually to use the information which has been
4644 exchanged. This includes the ability to use, convert, or exchange
4645 file formats, protocols, schemas, interface information or
4646 conventions, so as to permit the computer program to work with other
4647 computer programs and users in all the ways in which they are
4648 intended to function.
</li
>
4650 <li
>It must be permissible for anyone to copy, distribute and read the
4651 standard for a nominal fee, or even no fee. If there is a fee, it
4652 must be low enough to not preclude widespread use.
</li
>
4654 <li
>It must be possible for anyone to obtain free (no royalties or
4655 fees; also known as
"royalty free
"), worldwide, non-exclusive and
4656 perpetual licenses to all essential patent claims to make, use and
4657 sell products based on the standard. The only exceptions are
4658 terminations per the reciprocity and defensive suspension terms
4659 outlined below. Essential patent claims include pending, unpublished
4660 patents, published patents, and patent applications. The license is
4661 only for the exact scope of the standard in question.
4665 <li
> May be conditioned only on reciprocal licenses to any of
4666 licensees
' patent claims essential to practice that standard
4667 (also known as a reciprocity clause)
</li
>
4669 <li
> May be terminated as to any licensee who sues the licensor
4670 or any other licensee for infringement of patent claims
4671 essential to practice that standard (also known as a
4672 "defensive suspension
" clause)
</li
>
4674 <li
> The same licensing terms are available to every potential
4680 <li
>The licensing terms of an open standards must not preclude
4681 implementations of that standard under open source licensing terms
4682 or restricted licensing terms
</li
>
4688 <p
>It is said that one of the nice things about standards is that
4689 there are so many of them. As you can see, the same holds true for
4690 open standard definitions. Most of the definitions have a lot in
4691 common, and it is not really controversial what properties a open
4692 standard should have, but the diversity of definitions have made it
4693 possible for those that want to avoid a level marked field and real
4694 competition to downplay the significance of open standards. I hope we
4695 can turn this tide by focusing on the advantages of Free and Open
4696 Standards.
</p
>
4701 <title>Is Ogg Theora a free and open standard?
</title>
4702 <link>https://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html
</link>
4703 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html
</guid>
4704 <pubDate>Sat,
25 Dec
2010 20:
25:
00 +
0100</pubDate>
4705 <description><p
><a href=
"http://www.digistan.org/open-standard:definition
">The
4706 Digistan definition
</a
> of a free and open standard reads like this:
</p
>
4710 <p
>The Digital Standards Organization defines free and open standard
4711 as follows:
</p
>
4715 <li
>A free and open standard is immune to vendor capture at all stages
4716 in its life-cycle. Immunity from vendor capture makes it possible to
4717 freely use, improve upon, trust, and extend a standard over time.
</li
>
4719 <li
>The standard is adopted and will be maintained by a not-for-profit
4720 organisation, and its ongoing development occurs on the basis of an
4721 open decision-making procedure available to all interested
4724 <li
>The standard has been published and the standard specification
4725 document is available freely. It must be permissible to all to copy,
4726 distribute, and use it freely.
</li
>
4728 <li
>The patents possibly present on (parts of) the standard are made
4729 irrevocably available on a royalty-free basis.
</li
>
4731 <li
>There are no constraints on the re-use of the standard.
</li
>
4735 <p
>The economic outcome of a free and open standard, which can be
4736 measured, is that it enables perfect competition between suppliers of
4737 products based on the standard.
</p
>
4740 <p
>For a while now I have tried to figure out of Ogg Theora is a free
4741 and open standard according to this definition. Here is a short
4742 writeup of what I have been able to gather so far. I brought up the
4743 topic on the Xiph advocacy mailing list
4744 <a href=
"http://lists.xiph.org/pipermail/advocacy/
2009-July/
001632.html
">in
4745 July
2009</a
>, for those that want to see some background information.
4746 According to Ivo Emanuel Gonçalves and Monty Montgomery on that list
4747 the Ogg Theora specification fulfils the Digistan definition.
</p
>
4749 <p
><strong
>Free from vendor capture?
</strong
></p
>
4751 <p
>As far as I can see, there is no single vendor that can control the
4752 Ogg Theora specification. It can be argued that the
4753 <a href=
"http://www.xiph.org/
">Xiph foundation
</A
> is such vendor, but
4754 given that it is a non-profit foundation with the expressed goal
4755 making free and open protocols and standards available, it is not
4756 obvious that this is a real risk. One issue with the Xiph
4757 foundation is that its inner working (as in board member list, or who
4758 control the foundation) are not easily available on the web. I
've
4759 been unable to find out who is in the foundation board, and have not
4760 seen any accounting information documenting how money is handled nor
4761 where is is spent in the foundation. It is thus not obvious for an
4762 external observer who control The Xiph foundation, and for all I know
4763 it is possible for a single vendor to take control over the
4764 specification. But it seem unlikely.
</p
>
4766 <p
><strong
>Maintained by open not-for-profit organisation?
</strong
></p
>
4768 <p
>Assuming that the Xiph foundation is the organisation its web pages
4769 claim it to be, this point is fulfilled. If Xiph foundation is
4770 controlled by a single vendor, it isn
't, but I have not found any
4771 documentation indicating this.
</p
>
4773 <p
>According to
4774 <a href=
"http://media.hiof.no/diverse/fad/rapport_4.pdf
">a report
</a
>
4775 prepared by Audun Vaaler og Børre Ludvigsen for the Norwegian
4776 government, the Xiph foundation is a non-commercial organisation and
4777 the development process is open, transparent and non-Discrimatory.
4778 Until proven otherwise, I believe it make most sense to believe the
4779 report is correct.
</p
>
4781 <p
><strong
>Specification freely available?
</strong
></p
>
4783 <p
>The specification for the
<a href=
"http://www.xiph.org/ogg/doc/
">Ogg
4784 container format
</a
> and both the
4785 <a href=
"http://www.xiph.org/vorbis/doc/
">Vorbis
</a
> and
4786 <a href=
"http://theora.org/doc/
">Theora
</a
> codeces are available on
4787 the web. This are the terms in the Vorbis and Theora specification:
4791 Anyone may freely use and distribute the Ogg and [Vorbis/Theora]
4792 specifications, whether in private, public, or corporate
4793 capacity. However, the Xiph.Org Foundation and the Ogg project reserve
4794 the right to set the Ogg [Vorbis/Theora] specification and certify
4795 specification compliance.
4799 <p
>The Ogg container format is specified in IETF
4800 <a href=
"http://www.xiph.org/ogg/doc/rfc3533.txt
">RFC
3533</a
>, and
4801 this is the term:
<p
>
4805 <p
>This document and translations of it may be copied and furnished to
4806 others, and derivative works that comment on or otherwise explain it
4807 or assist in its implementation may be prepared, copied, published and
4808 distributed, in whole or in part, without restriction of any kind,
4809 provided that the above copyright notice and this paragraph are
4810 included on all such copies and derivative works. However, this
4811 document itself may not be modified in any way, such as by removing
4812 the copyright notice or references to the Internet Society or other
4813 Internet organizations, except as needed for the purpose of developing
4814 Internet standards in which case the procedures for copyrights defined
4815 in the Internet Standards process must be followed, or as required to
4816 translate it into languages other than English.
</p
>
4818 <p
>The limited permissions granted above are perpetual and will not be
4819 revoked by the Internet Society or its successors or assigns.
</p
>
4822 <p
>All these terms seem to allow unlimited distribution and use, an
4823 this term seem to be fulfilled. There might be a problem with the
4824 missing permission to distribute modified versions of the text, and
4825 thus reuse it in other specifications. Not quite sure if that is a
4826 requirement for the Digistan definition.
</p
>
4828 <p
><strong
>Royalty-free?
</strong
></p
>
4830 <p
>There are no known patent claims requiring royalties for the Ogg
4832 <a href=
"http://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=
65782">MPEG-LA
</a
>
4834 <a href=
"http://yro.slashdot.org/story/
10/
04/
30/
237238/Steve-Jobs-Hints-At-Theora-Lawsuit
">Steve
4835 Jobs
</a
> in Apple claim to know about some patent claims (submarine
4836 patents) against the Theora format, but no-one else seem to believe
4837 them. Both Opera Software and the Mozilla Foundation have looked into
4838 this and decided to implement Ogg Theora support in their browsers
4839 without paying any royalties. For now the claims from MPEG-LA and
4840 Steve Jobs seem more like FUD to scare people to use the H
.264 codec
4841 than any real problem with Ogg Theora.
</p
>
4843 <p
><strong
>No constraints on re-use?
</strong
></p
>
4845 <p
>I am not aware of any constraints on re-use.
</p
>
4847 <p
><strong
>Conclusion
</strong
></p
>
4849 <p
>3 of
5 requirements seem obviously fulfilled, and the remaining
2
4850 depend on the governing structure of the Xiph foundation. Given the
4851 background report used by the Norwegian government, I believe it is
4852 safe to assume the last two requirements are fulfilled too, but it
4853 would be nice if the Xiph foundation web site made it easier to verify
4856 <p
>It would be nice to see other analysis of other specifications to
4857 see if they are free and open standards.
</p
>
4862 <title>The reply from Edgar Villanueva to Microsoft in Peru
</title>
4863 <link>https://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html
</link>
4864 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html
</guid>
4865 <pubDate>Sat,
25 Dec
2010 10:
50:
00 +
0100</pubDate>
4866 <description><p
>A few days ago
4867 <a href=
"http://www.idg.no/computerworld/article189879.ece
">an
4868 article
</a
> in the Norwegian Computerworld magazine about how version
4870 <a href=
"http://en.wikipedia.org/wiki/European_Interoperability_Framework
">European
4871 Interoperability Framework
</a
> has been successfully lobbied by the
4872 proprietary software industry to remove the focus on free software.
4873 Nothing very surprising there, given
4874 <a href=
"http://news.slashdot.org/story/
10/
03/
29/
2115235/Open-Source-Open-Standards-Under-Attack-In-Europe
">earlier
4875 reports
</a
> on how Microsoft and others have stacked the committees in
4876 this work. But I find this very sad. The definition of
4877 <a href=
"http://www.nuug.no/dokumenter/standard-presse-def-
200506.txt
">an
4878 open standard from version
1</a
> was very good, and something I
4879 believe should be used also in the future, alongside
4880 <a href=
"http://www.digistan.org/open-standard:definition
">the
4881 definition from Digistan
</A
>. Version
2 have removed the open
4882 standard definition from its content.
</p
>
4884 <p
>Anyway, the news reminded me of the great reply sent by Dr. Edgar
4885 Villanueva, congressman in Peru at the time, to Microsoft as a reply
4886 to Microsofts attack on his proposal regarding the use of free software
4887 in the public sector in Peru. As the text was not available from a
4888 few of the URLs where it used to be available, I copy it here from
4889 <a href=
"http://gnuwin.epfl.ch/articles/en/reponseperou/villanueva_to_ms.html
">my
4890 source
</a
> to ensure it is available also in the future. Some
4891 background information about that story is available in
4892 <a href=
"http://www.linuxjournal.com/article/
6099">an article
</a
> from
4893 Linux Journal in
2002.
</p
>
4896 <p
>Lima,
8th of April,
2002<br
>
4897 To: Señor JUAN ALBERTO GONZÁLEZ
<br
>
4898 General Manager of Microsoft Perú
</p
>
4900 <p
>Dear Sir:
</p
>
4902 <p
>First of all, I thank you for your letter of March
25,
2002 in which you state the official position of Microsoft relative to Bill Number
1609, Free Software in Public Administration, which is indubitably inspired by the desire for Peru to find a suitable place in the global technological context. In the same spirit, and convinced that we will find the best solutions through an exchange of clear and open ideas, I will take this opportunity to reply to the commentaries included in your letter.
</p
>
4904 <p
>While acknowledging that opinions such as yours constitute a significant contribution, it would have been even more worthwhile for me if, rather than formulating objections of a general nature (which we will analyze in detail later) you had gathered solid arguments for the advantages that proprietary software could bring to the Peruvian State, and to its citizens in general, since this would have allowed a more enlightening exchange in respect of each of our positions.
</p
>
4906 <p
>With the aim of creating an orderly debate, we will assume that what you call
"open source software
" is what the Bill defines as
"free software
", since there exists software for which the source code is distributed together with the program, but which does not fall within the definition established by the Bill; and that what you call
"commercial software
" is what the Bill defines as
"proprietary
" or
"unfree
", given that there exists free software which is sold in the market for a price like any other good or service.
</p
>
4908 <p
>It is also necessary to make it clear that the aim of the Bill we are discussing is not directly related to the amount of direct savings that can by made by using free software in state institutions. That is in any case a marginal aggregate value, but in no way is it the chief focus of the Bill. The basic principles which inspire the Bill are linked to the basic guarantees of a state of law, such as:
</p
>
4912 <li
>Free access to public information by the citizen.
</li
>
4913 <li
>Permanence of public data.
</li
>
4914 <li
>Security of the State and citizens.
</li
>
4918 <p
>To guarantee the free access of citizens to public information, it is indispensable that the encoding of data is not tied to a single provider. The use of standard and open formats gives a guarantee of this free access, if necessary through the creation of compatible free software.
</p
>
4920 <p
>To guarantee the permanence of public data, it is necessary that the usability and maintenance of the software does not depend on the goodwill of the suppliers, or on the monopoly conditions imposed by them. For this reason the State needs systems the development of which can be guaranteed due to the availability of the source code.
</p
>
4922 <p
>To guarantee national security or the security of the State, it is indispensable to be able to rely on systems without elements which allow control from a distance or the undesired transmission of information to third parties. Systems with source code freely accessible to the public are required to allow their inspection by the State itself, by the citizens, and by a large number of independent experts throughout the world. Our proposal brings further security, since the knowledge of the source code will eliminate the growing number of programs with *spy code*.
</p
>
4924 <p
>In the same way, our proposal strengthens the security of the citizens, both in their role as legitimate owners of information managed by the state, and in their role as consumers. In this second case, by allowing the growth of a widespread availability of free software not containing *spy code* able to put at risk privacy and individual freedoms.
</p
>
4926 <p
>In this sense, the Bill is limited to establishing the conditions under which the state bodies will obtain software in the future, that is, in a way compatible with these basic principles.
</p
>
4929 <p
>From reading the Bill it will be clear that once passed:
<br
>
4930 <li
>the law does not forbid the production of proprietary software
</li
>
4931 <li
>the law does not forbid the sale of proprietary software
</li
>
4932 <li
>the law does not specify which concrete software to use
</li
>
4933 <li
>the law does not dictate the supplier from whom software will be bought
</li
>
4934 <li
>the law does not limit the terms under which a software product can be licensed.
</li
>
4938 <p
>What the Bill does express clearly, is that, for software to be acceptable for the state it is not enough that it is technically capable of fulfilling a task, but that further the contractual conditions must satisfy a series of requirements regarding the license, without which the State cannot guarantee the citizen adequate processing of his data, watching over its integrity, confidentiality, and accessibility throughout time, as these are very critical aspects for its normal functioning.
</p
>
4940 <p
>We agree, Mr. Gonzalez, that information and communication technology have a significant impact on the quality of life of the citizens (whether it be positive or negative). We surely also agree that the basic values I have pointed out above are fundamental in a democratic state like Peru. So we are very interested to know of any other way of guaranteeing these principles, other than through the use of free software in the terms defined by the Bill.
</p
>
4942 <p
>As for the observations you have made, we will now go on to analyze them in detail:
</p
>
4944 <p
>Firstly, you point out that:
"1. The bill makes it compulsory for all public bodies to use only free software, that is to say open source software, which breaches the principles of equality before the law, that of non-discrimination and the right of free private enterprise, freedom of industry and of contract, protected by the constitution.
"</p
>
4946 <p
>This understanding is in error. The Bill in no way affects the rights you list; it limits itself entirely to establishing conditions for the use of software on the part of state institutions, without in any way meddling in private sector transactions. It is a well established principle that the State does not enjoy the wide spectrum of contractual freedom of the private sector, as it is limited in its actions precisely by the requirement for transparency of public acts; and in this sense, the preservation of the greater common interest must prevail when legislating on the matter.
</p
>
4948 <p
>The Bill protects equality under the law, since no natural or legal person is excluded from the right of offering these goods to the State under the conditions defined in the Bill and without more limitations than those established by the Law of State Contracts and Purchasing (T.U.O. by Supreme Decree No.
012-
2001-PCM).
</p
>
4950 <p
>The Bill does not introduce any discrimination whatever, since it only establishes *how* the goods have to be provided (which is a state power) and not *who* has to provide them (which would effectively be discriminatory, if restrictions based on national origin, race religion, ideology, sexual preference etc. were imposed). On the contrary, the Bill is decidedly antidiscriminatory. This is so because by defining with no room for doubt the conditions for the provision of software, it prevents state bodies from using software which has a license including discriminatory conditions.
</p
>
4952 <p
>It should be obvious from the preceding two paragraphs that the Bill does not harm free private enterprise, since the latter can always choose under what conditions it will produce software; some of these will be acceptable to the State, and others will not be since they contradict the guarantee of the basic principles listed above. This free initiative is of course compatible with the freedom of industry and freedom of contract (in the limited form in which the State can exercise the latter). Any private subject can produce software under the conditions which the State requires, or can refrain from doing so. Nobody is forced to adopt a model of production, but if they wish to provide software to the State, they must provide the mechanisms which guarantee the basic principles, and which are those described in the Bill.
</p
>
4954 <p
>By way of an example: nothing in the text of the Bill would prevent your company offering the State bodies an office
"suite
", under the conditions defined in the Bill and setting the price that you consider satisfactory. If you did not, it would not be due to restrictions imposed by the law, but to business decisions relative to the method of commercializing your products, decisions with which the State is not involved.
</p
>
4956 <p
>To continue; you note that:
" 2. The bill, by making the use of open source software compulsory, would establish discriminatory and non competitive practices in the contracting and purchasing by public bodies...
"</p
>
4958 <p
>This statement is just a reiteration of the previous one, and so the response can be found above. However, let us concern ourselves for a moment with your comment regarding
"non-competitive ... practices.
"</p
>
4960 <p
>Of course, in defining any kind of purchase, the buyer sets conditions which relate to the proposed use of the good or service. From the start, this excludes certain manufacturers from the possibility of competing, but does not exclude them
"a priori
", but rather based on a series of principles determined by the autonomous will of the purchaser, and so the process takes place in conformance with the law. And in the Bill it is established that *no one* is excluded from competing as far as he guarantees the fulfillment of the basic principles.
</p
>
4962 <p
>Furthermore, the Bill *stimulates* competition, since it tends to generate a supply of software with better conditions of usability, and to better existing work, in a model of continuous improvement.
</p
>
4964 <p
>On the other hand, the central aspect of competivity is the chance to provide better choices to the consumer. Now, it is impossible to ignore the fact that marketing does not play a neutral role when the product is offered on the market (since accepting the opposite would lead one to suppose that firms
' expenses in marketing lack any sense), and that therefore a significant expense under this heading can influence the decisions of the purchaser. This influence of marketing is in large measure reduced by the bill that we are backing, since the choice within the framework proposed is based on the *technical merits* of the product and not on the effort put into commercialization by the producer; in this sense, competitiveness is increased, since the smallest software producer can compete on equal terms with the most powerful corporations.
</p
>
4966 <p
>It is necessary to stress that there is no position more anti-competitive than that of the big software producers, which frequently abuse their dominant position, since in innumerable cases they propose as a solution to problems raised by users:
"update your software to the new version
" (at the user
's expense, naturally); furthermore, it is common to find arbitrary cessation of technical help for products, which, in the provider
's judgment alone, are
"old
"; and so, to receive any kind of technical assistance, the user finds himself forced to migrate to new versions (with non-trivial costs, especially as changes in hardware platform are often involved). And as the whole infrastructure is based on proprietary data formats, the user stays
"trapped
" in the need to continue using products from the same supplier, or to make the huge effort to change to another environment (probably also proprietary).
</p
>
4968 <p
>You add:
"3. So, by compelling the State to favor a business model based entirely on open source, the bill would only discourage the local and international manufacturing companies, which are the ones which really undertake important expenditures, create a significant number of direct and indirect jobs, as well as contributing to the GNP, as opposed to a model of open source software which tends to have an ever weaker economic impact, since it mainly creates jobs in the service sector.
"</p
>
4970 <p
>I do not agree with your statement. Partly because of what you yourself point out in paragraph
6 of your letter, regarding the relative weight of services in the context of software use. This contradiction alone would invalidate your position. The service model, adopted by a large number of companies in the software industry, is much larger in economic terms, and with a tendency to increase, than the licensing of programs.
</p
>
4972 <p
>On the other hand, the private sector of the economy has the widest possible freedom to choose the economic model which best suits its interests, even if this freedom of choice is often obscured subliminally by the disproportionate expenditure on marketing by the producers of proprietary software.
</p
>
4974 <p
>In addition, a reading of your opinion would lead to the conclusion that the State market is crucial and essential for the proprietary software industry, to such a point that the choice made by the State in this bill would completely eliminate the market for these firms. If that is true, we can deduce that the State must be subsidizing the proprietary software industry. In the unlikely event that this were true, the State would have the right to apply the subsidies in the area it considered of greatest social value; it is undeniable, in this improbable hypothesis, that if the State decided to subsidize software, it would have to do so choosing the free over the proprietary, considering its social effect and the rational use of taxpayers money.
</p
>
4976 <p
>In respect of the jobs generated by proprietary software in countries like ours, these mainly concern technical tasks of little aggregate value; at the local level, the technicians who provide support for proprietary software produced by transnational companies do not have the possibility of fixing bugs, not necessarily for lack of technical capability or of talent, but because they do not have access to the source code to fix it. With free software one creates more technically qualified employment and a framework of free competence where success is only tied to the ability to offer good technical support and quality of service, one stimulates the market, and one increases the shared fund of knowledge, opening up alternatives to generate services of greater total value and a higher quality level, to the benefit of all involved: producers, service organizations, and consumers.
</p
>
4978 <p
>It is a common phenomenon in developing countries that local software industries obtain the majority of their takings in the service sector, or in the creation of
"ad hoc
" software. Therefore, any negative impact that the application of the Bill might have in this sector will be more than compensated by a growth in demand for services (as long as these are carried out to high quality standards). If the transnational software companies decide not to compete under these new rules of the game, it is likely that they will undergo some decrease in takings in terms of payment for licenses; however, considering that these firms continue to allege that much of the software used by the State has been illegally copied, one can see that the impact will not be very serious. Certainly, in any case their fortune will be determined by market laws, changes in which cannot be avoided; many firms traditionally associated with proprietary software have already set out on the road (supported by copious expense) of providing services associated with free software, which shows that the models are not mutually exclusive.
</p
>
4980 <p
>With this bill the State is deciding that it needs to preserve certain fundamental values. And it is deciding this based on its sovereign power, without affecting any of the constitutional guarantees. If these values could be guaranteed without having to choose a particular economic model, the effects of the law would be even more beneficial. In any case, it should be clear that the State does not choose an economic model; if it happens that there only exists one economic model capable of providing software which provides the basic guarantee of these principles, this is because of historical circumstances, not because of an arbitrary choice of a given model.
</p
>
4982 <p
>Your letter continues:
"4. The bill imposes the use of open source software without considering the dangers that this can bring from the point of view of security, guarantee, and possible violation of the intellectual property rights of third parties.
"</p
>
4984 <p
>Alluding in an abstract way to
"the dangers this can bring
", without specifically mentioning a single one of these supposed dangers, shows at the least some lack of knowledge of the topic. So, allow me to enlighten you on these points.
</p
>
4986 <p
>On security:
</p
>
4988 <p
>National security has already been mentioned in general terms in the initial discussion of the basic principles of the bill. In more specific terms, relative to the security of the software itself, it is well known that all software (whether proprietary or free) contains errors or
"bugs
" (in programmers
' slang). But it is also well known that the bugs in free software are fewer, and are fixed much more quickly, than in proprietary software. It is not in vain that numerous public bodies responsible for the IT security of state systems in developed countries require the use of free software for the same conditions of security and efficiency.
</p
>
4990 <p
>What is impossible to prove is that proprietary software is more secure than free, without the public and open inspection of the scientific community and users in general. This demonstration is impossible because the model of proprietary software itself prevents this analysis, so that any guarantee of security is based only on promises of good intentions (biased, by any reckoning) made by the producer itself, or its contractors.
</p
>
4992 <p
>It should be remembered that in many cases, the licensing conditions include Non-Disclosure clauses which prevent the user from publicly revealing security flaws found in the licensed proprietary product.
</p
>
4994 <p
>In respect of the guarantee:
</p
>
4996 <p
>As you know perfectly well, or could find out by reading the
"End User License Agreement
" of the products you license, in the great majority of cases the guarantees are limited to replacement of the storage medium in case of defects, but in no case is compensation given for direct or indirect damages, loss of profits, etc... If as a result of a security bug in one of your products, not fixed in time by yourselves, an attacker managed to compromise crucial State systems, what guarantees, reparations and compensation would your company make in accordance with your licensing conditions? The guarantees of proprietary software, inasmuch as programs are delivered ``AS IS
'', that is, in the state in which they are, with no additional responsibility of the provider in respect of function, in no way differ from those normal with free software.
</p
>
4998 <p
>On Intellectual Property:
</p
>
5000 <p
>Questions of intellectual property fall outside the scope of this bill, since they are covered by specific other laws. The model of free software in no way implies ignorance of these laws, and in fact the great majority of free software is covered by copyright. In reality, the inclusion of this question in your observations shows your confusion in respect of the legal framework in which free software is developed. The inclusion of the intellectual property of others in works claimed as one
's own is not a practice that has been noted in the free software community; whereas, unfortunately, it has been in the area of proprietary software. As an example, the condemnation by the Commercial Court of Nanterre, France, on
27th September
2001 of Microsoft Corp. to a penalty of
3 million francs in damages and interest, for violation of intellectual property (piracy, to use the unfortunate term that your firm commonly uses in its publicity).
</p
>
5002 <p
>You go on to say that:
"The bill uses the concept of open source software incorrectly, since it does not necessarily imply that the software is free or of zero cost, and so arrives at mistaken conclusions regarding State savings, with no cost-benefit analysis to validate its position.
"</p
>
5004 <p
>This observation is wrong; in principle, freedom and lack of cost are orthogonal concepts: there is software which is proprietary and charged for (for example, MS Office), software which is proprietary and free of charge (MS Internet Explorer), software which is free and charged for (Red Hat, SuSE etc GNU/Linux distributions), software which is free and not charged for (Apache, Open Office, Mozilla), and even software which can be licensed in a range of combinations (MySQL).
</p
>
5006 <p
>Certainly free software is not necessarily free of charge. And the text of the bill does not state that it has to be so, as you will have noted after reading it. The definitions included in the Bill state clearly *what* should be considered free software, at no point referring to freedom from charges. Although the possibility of savings in payments for proprietary software licenses are mentioned, the foundations of the bill clearly refer to the fundamental guarantees to be preserved and to the stimulus to local technological development. Given that a democratic State must support these principles, it has no other choice than to use software with publicly available source code, and to exchange information only in standard formats.
</p
>
5008 <p
>If the State does not use software with these characteristics, it will be weakening basic republican principles. Luckily, free software also implies lower total costs; however, even given the hypothesis (easily disproved) that it was more expensive than proprietary software, the simple existence of an effective free software tool for a particular IT function would oblige the State to use it; not by command of this Bill, but because of the basic principles we enumerated at the start, and which arise from the very essence of the lawful democratic State.
</p
>
5010 <p
>You continue:
"6. It is wrong to think that Open Source Software is free of charge. Research by the Gartner Group (an important investigator of the technological market recognized at world level) has shown that the cost of purchase of software (operating system and applications) is only
8% of the total cost which firms and institutions take on for a rational and truly beneficial use of the technology. The other
92% consists of: installation costs, enabling, support, maintenance, administration, and down-time.
"</p
>
5012 <p
>This argument repeats that already given in paragraph
5 and partly contradicts paragraph
3. For the sake of brevity we refer to the comments on those paragraphs. However, allow me to point out that your conclusion is logically false: even if according to Gartner Group the cost of software is on average only
8% of the total cost of use, this does not in any way deny the existence of software which is free of charge, that is, with a licensing cost of zero.
</p
>
5014 <p
>In addition, in this paragraph you correctly point out that the service components and losses due to down-time make up the largest part of the total cost of software use, which, as you will note, contradicts your statement regarding the small value of services suggested in paragraph
3. Now the use of free software contributes significantly to reduce the remaining life-cycle costs. This reduction in the costs of installation, support etc. can be noted in several areas: in the first place, the competitive service model of free software, support and maintenance for which can be freely contracted out to a range of suppliers competing on the grounds of quality and low cost. This is true for installation, enabling, and support, and in large part for maintenance. In the second place, due to the reproductive characteristics of the model, maintenance carried out for an application is easily replicable, without incurring large costs (that is, without paying more than once for the same thing) since modifications, if one wishes, can be incorporated in the common fund of knowledge. Thirdly, the huge costs caused by non-functioning software (
"blue screens of death
", malicious code such as virus, worms, and trojans, exceptions, general protection faults and other well-known problems) are reduced considerably by using more stable software; and it is well known that one of the most notable virtues of free software is its stability.
</p
>
5016 <p
>You further state that:
"7. One of the arguments behind the bill is the supposed freedom from costs of open-source software, compared with the costs of commercial software, without taking into account the fact that there exist types of volume licensing which can be highly advantageous for the State, as has happened in other countries.
"</p
>
5018 <p
>I have already pointed out that what is in question is not the cost of the software but the principles of freedom of information, accessibility, and security. These arguments have been covered extensively in the preceding paragraphs to which I would refer you.
</p
>
5020 <p
>On the other hand, there certainly exist types of volume licensing (although unfortunately proprietary software does not satisfy the basic principles). But as you correctly pointed out in the immediately preceding paragraph of your letter, they only manage to reduce the impact of a component which makes up no more than
8% of the total.
</p
>
5022 <p
>You continue:
"8. In addition, the alternative adopted by the bill (I) is clearly more expensive, due to the high costs of software migration, and (II) puts at risk compatibility and interoperability of the IT platforms within the State, and between the State and the private sector, given the hundreds of versions of open source software on the market.
"</p
>
5024 <p
>Let us analyze your statement in two parts. Your first argument, that migration implies high costs, is in reality an argument in favor of the Bill. Because the more time goes by, the more difficult migration to another technology will become; and at the same time, the security risks associated with proprietary software will continue to increase. In this way, the use of proprietary systems and formats will make the State ever more dependent on specific suppliers. Once a policy of using free software has been established (which certainly, does imply some cost) then on the contrary migration from one system to another becomes very simple, since all data is stored in open formats. On the other hand, migration to an open software context implies no more costs than migration between two different proprietary software contexts, which invalidates your argument completely.
</p
>
5026 <p
>The second argument refers to
"problems in interoperability of the IT platforms within the State, and between the State and the private sector
" This statement implies a certain lack of knowledge of the way in which free software is built, which does not maximize the dependence of the user on a particular platform, as normally happens in the realm of proprietary software. Even when there are multiple free software distributions, and numerous programs which can be used for the same function, interoperability is guaranteed as much by the use of standard formats, as required by the bill, as by the possibility of creating interoperable software given the availability of the source code.
</p
>
5028 <p
>You then say that:
"9. The majority of open source code does not offer adequate levels of service nor the guarantee from recognized manufacturers of high productivity on the part of the users, which has led various public organizations to retract their decision to go with an open source software solution and to use commercial software in its place.
"</p
>
5030 <p
>This observation is without foundation. In respect of the guarantee, your argument was rebutted in the response to paragraph
4. In respect of support services, it is possible to use free software without them (just as also happens with proprietary software), but anyone who does need them can obtain support separately, whether from local firms or from international corporations, again just as in the case of proprietary software.
</p
>
5032 <p
>On the other hand, it would contribute greatly to our analysis if you could inform us about free software projects *established* in public bodies which have already been abandoned in favor of proprietary software. We know of a good number of cases where the opposite has taken place, but not know of any where what you describe has taken place.
</p
>
5034 <p
>You continue by observing that:
"10. The bill discourages the creativity of the Peruvian software industry, which invoices
40 million US$/year, exports
4 million US$ (
10th in ranking among non-traditional exports, more than handicrafts) and is a source of highly qualified employment. With a law that encourages the use of open source, software programmers lose their intellectual property rights and their main source of payment.
"</p
>
5036 <p
>It is clear enough that nobody is forced to commercialize their code as free software. The only thing to take into account is that if it is not free software, it cannot be sold to the public sector. This is not in any case the main market for the national software industry. We covered some questions referring to the influence of the Bill on the generation of employment which would be both highly technically qualified and in better conditions for competition above, so it seems unnecessary to insist on this point.
</p
>
5038 <p
>What follows in your statement is incorrect. On the one hand, no author of free software loses his intellectual property rights, unless he expressly wishes to place his work in the public domain. The free software movement has always been very respectful of intellectual property, and has generated widespread public recognition of its authors. Names like those of Richard Stallman, Linus Torvalds, Guido van Rossum, Larry Wall, Miguel de Icaza, Andrew Tridgell, Theo de Raadt, Andrea Arcangeli, Bruce Perens, Darren Reed, Alan Cox, Eric Raymond, and many others, are recognized world-wide for their contributions to the development of software that is used today by millions of people throughout the world. On the other hand, to say that the rewards for authors rights make up the main source of payment of Peruvian programmers is in any case a guess, in particular since there is no proof to this effect, nor a demonstration of how the use of free software by the State would influence these payments.
</p
>
5040 <p
>You go on to say that:
"11. Open source software, since it can be distributed without charge, does not allow the generation of income for its developers through exports. In this way, the multiplier effect of the sale of software to other countries is weakened, and so in turn is the growth of the industry, while Government rules ought on the contrary to stimulate local industry.
"</p
>
5042 <p
>This statement shows once again complete ignorance of the mechanisms of and market for free software. It tries to claim that the market of sale of non- exclusive rights for use (sale of licenses) is the only possible one for the software industry, when you yourself pointed out several paragraphs above that it is not even the most important one. The incentives that the bill offers for the growth of a supply of better qualified professionals, together with the increase in experience that working on a large scale with free software within the State will bring for Peruvian technicians, will place them in a highly competitive position to offer their services abroad.
</p
>
5044 <p
>You then state that:
"12. In the Forum, the use of open source software in education was discussed, without mentioning the complete collapse of this initiative in a country like Mexico, where precisely the State employees who founded the project now state that open source software did not make it possible to offer a learning experience to pupils in the schools, did not take into account the capability at a national level to give adequate support to the platform, and that the software did not and does not allow for the levels of platform integration that now exist in schools.
"</p
>
5046 <p
>In fact Mexico has gone into reverse with the Red Escolar (Schools Network) project. This is due precisely to the fact that the driving forces behind the Mexican project used license costs as their main argument, instead of the other reasons specified in our project, which are far more essential. Because of this conceptual mistake, and as a result of the lack of effective support from the SEP (Secretary of State for Public Education), the assumption was made that to implant free software in schools it would be enough to drop their software budget and send them a CD ROM with Gnu/Linux instead. Of course this failed, and it couldn
't have been otherwise, just as school laboratories fail when they use proprietary software and have no budget for implementation and maintenance. That
's exactly why our bill is not limited to making the use of free software mandatory, but recognizes the need to create a viable migration plan, in which the State undertakes the technical transition in an orderly way in order to then enjoy the advantages of free software.
</p
>
5048 <p
>You end with a rhetorical question:
"13. If open source software satisfies all the requirements of State bodies, why do you need a law to adopt it? Shouldn
't it be the market which decides freely which products give most benefits or value?
"</p
>
5050 <p
>We agree that in the private sector of the economy, it must be the market that decides which products to use, and no state interference is permissible there. However, in the case of the public sector, the reasoning is not the same: as we have already established, the state archives, handles, and transmits information which does not belong to it, but which is entrusted to it by citizens, who have no alternative under the rule of law. As a counterpart to this legal requirement, the State must take extreme measures to safeguard the integrity, confidentiality, and accessibility of this information. The use of proprietary software raises serious doubts as to whether these requirements can be fulfilled, lacks conclusive evidence in this respect, and so is not suitable for use in the public sector.
</p
>
5052 <p
>The need for a law is based, firstly, on the realization of the fundamental principles listed above in the specific area of software; secondly, on the fact that the State is not an ideal homogeneous entity, but made up of multiple bodies with varying degrees of autonomy in decision making. Given that it is inappropriate to use proprietary software, the fact of establishing these rules in law will prevent the personal discretion of any state employee from putting at risk the information which belongs to citizens. And above all, because it constitutes an up-to-date reaffirmation in relation to the means of management and communication of information used today, it is based on the republican principle of openness to the public.
</p
>
5054 <p
>In conformance with this universally accepted principle, the citizen has the right to know all information held by the State and not covered by well- founded declarations of secrecy based on law. Now, software deals with information and is itself information. Information in a special form, capable of being interpreted by a machine in order to execute actions, but crucial information all the same because the citizen has a legitimate right to know, for example, how his vote is computed or his taxes calculated. And for that he must have free access to the source code and be able to prove to his satisfaction the programs used for electoral computations or calculation of his taxes.
</p
>
5056 <p
>I wish you the greatest respect, and would like to repeat that my office will always be open for you to expound your point of view to whatever level of detail you consider suitable.
</p
>
5058 <p
>Cordially,
<br
>
5059 DR. EDGAR DAVID VILLANUEVA NUÑEZ
<br
>
5060 Congressman of the Republic of Perú.
</p
>
5066 <title>Officeshots still going strong
</title>
5067 <link>https://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html
</link>
5068 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html
</guid>
5069 <pubDate>Sat,
25 Dec
2010 09:
40:
00 +
0100</pubDate>
5070 <description><p
>Half a year ago I
5071 <a href=
"http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html
">wrote
5072 a bit
</a
> about
<a href=
"http://www.officeshots.org/
">OfficeShots
</a
>,
5073 a web service to allow anyone to test how ODF documents are handled by
5074 the different programs reading and writing the ODF format.
</p
>
5076 <p
>I just had a look at the service, and it seem to be going strong.
5077 Very interesting to see the results reported in the gallery, how
5078 different Office implementations handle different ODF features. Sad
5079 to see that KOffice was not doing it very well, and happy to see that
5080 LibreOffice has been tested already (but sadly not listed as a option
5081 for OfficeShots users yet). I am glad to see that the ODF community
5082 got such a great test tool available.
</p
>
5087 <title>Best å ikke fortelle noen at streaming er nedlasting...
</title>
5088 <link>https://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html
</link>
5089 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html
</guid>
5090 <pubDate>Sat,
30 Oct
2010 11:
20:
00 +
0200</pubDate>
5091 <description><p
>I dag la jeg inn en kommentar på en sak hos NRKBeta
5092 <a href=
"http://nrkbeta.no/
2010/
10/
27/bakom-blindpassasjer-del-
1/
">om
5093 hvordan TV-serien Blindpassasjer ble laget
</a
> i forbindelse med at
5094 filmene NRK la ut ikke var tilgjengelig i et
5095 <a href=
"http://www.digistan.org/open-standard:definition
">fritt og
5096 åpent format
</a
>. Dette var det jeg skrev publiserte der
07:
39.
</p
>
5098 <p
><blockquote
>
5099 <p
>"Vi fikk en kommentar rundt måten streamet innhold er beskyttet fra
5100 nedlasting. Mange av oss som kan mer enn gjennomsnittet om systemer
5101 som dette, vet at det stort sett er mulig å lure ut ting med den
5102 nødvendige forkunnskapen.
"</p
>
5104 <p
>Haha. Å streame innhold er det samme som å laste ned innhold, så å
5105 beskytte en stream mot nedlasting er ikke mulig. Å skrive noe slikt
5106 er å forlede leseren.
</p
>
5108 <p
>Med den bakgrunn blir forklaringen om at noen rettighetshavere kun
5109 vil tillate streaming men ikke nedlasting meningsløs.
</p
>
5111 <p
>Anbefaler forresten å lese
5112 <a href=
"http://blogs.computerworlduk.com/simon-says/
2010/
10/drm-is-toxic-to-culture/index.htm
">http://blogs.computerworlduk.com/simon-says/
2010/
10/drm-is-toxic-to-culture/index.htm
</a
>
5113 om hva som ville være konsekvensen hvis digitale avspillingssperrer
5114 (DRM) fungerte. Det gjør de naturligvis ikke teknisk - det er jo
5115 derfor de må ha totalitære juridiske beskyttelsesmekanismer på plass,
5116 men det er skremmende hva samfunnet tillater og NRK er med på å bygge
5117 opp under.
</p
>
5118 </blockquote
></p
>
5120 <p
>Ca.
20 minutter senere får jeg følgende epost fra Anders Hofseth i
5123 <p
><blockquote
>
5124 <p
>From: Anders Hofseth
&lt;XXX@gmail.com
>
5125 <br
>To:
"pere@hungry.com
" &lt;pere@hungry.com
>
5126 <br
>Cc: Eirik Solheim
&lt;XXX@gmail.com
>, Jon Ståle Carlsen
&lt;XXX@gmail.com
>, Henrik Lied
&lt;XXX@gmail.com
>
5127 <br
>Subject: Re: [NRKbeta] Kommentar:
"Bakom Blindpassasjer: del
1"
5128 <br
>Date: Sat,
30 Oct
2010 07:
58:
44 +
0200</p
>
5130 <p
>Hei Petter.
5131 <br
>Det du forsøker dra igang er egentlig en interessant diskusjon,
5132 men om vi skal kjøre den i kommentarfeltet her, vil vi kunne bli bedt
5133 om å fjerne blindpassasjer fra nett- tv og det vil heller ikke bli
5134 særlig lett å klarere ut noe annet arkivmateriale på lang tid.
</p
>
5136 <p
>Dette er en situasjon NRKbeta ikke ønsker, så kommentaren er
5137 fjernet og den delen av diskusjonen er avsluttet på nrkbeta, vi antar
5138 konsekvensene vi beskriver ikke er noe du ønsker heller...
</p
>
5140 <p
>Med hilsen,
5141 <br
>-anders
</p
>
5143 <p
>Ring meg om noe er uklart:
95XXXXXXX
</p
>
5144 </blockquote
></p
>
5146 <p
>Ble så fascinert over denne holdningen, at jeg forfattet og sendte
5147 over følgende svar. I og med at debatten er fjernet fra NRK Betas
5148 kommentarfelt, så velger jeg å publisere her på bloggen min i stedet.
5149 Har fjernet epostadresser og telefonnummer til de involverte, for å
5150 unngå at de tiltrekker seg uønskede direkte kontaktforsøk.
</p
>
5152 <p
><blockquote
>
5153 <p
>From: Petter Reinholdtsen
&lt;pere@hungry.com
>
5154 <br
>To: Anders Hofseth
&lt;XXX@gmail.com
>
5155 <br
>Cc: Eirik Solheim
&lt;XXX@gmail.com
>,
5156 <br
> Jon Ståle Carlsen
&lt;XXX@gmail.com
>,
5157 <br
> Henrik Lied
&lt;XXX@gmail.com
>
5158 <br
>Subject: Re: [NRKbeta] Kommentar:
"Bakom Blindpassasjer: del
1"
5159 <br
>Date: Sat,
30 Oct
2010 08:
24:
34 +
0200</p
>
5161 <p
>[Anders Hofseth]
5162 <br
>> Hei Petter.
</p
>
5164 <p
>Hei.
</p
>
5166 <p
>> Det du forsøker dra igang er egentlig en interessant diskusjon, men
5167 <br
>> om vi skal kjøre den i kommentarfeltet her, vil vi kunne bli bedt om
5168 <br
>> å fjerne blindpassasjer fra nett- tv og det vil heller ikke bli
5169 <br
>> særlig lett å klarere ut noe annet arkivmateriale på lang tid.
</p
>
5171 <p
>Godt å se at du er enig i at dette er en interessant diskusjon. Den
5172 vil nok fortsette en stund til. :)
</p
>
5174 <p
>Må innrømme at jeg synes det er merkelig å lese at dere i NRK med
5175 vitende og vilje ønsker å forlede rettighetshaverne for å kunne
5176 fortsette å legge ut arkivmateriale.
</p
>
5178 <p
>Kommentarer og diskusjoner i bloggene til NRK Beta påvirker jo ikke
5179 faktum, som er at streaming er det samme som nedlasting, og at innhold
5180 som er lagt ut på nett kan lagres lokalt for avspilling når en ønsker
5183 <p
>Det du sier er jo at klarering av arkivmateriale for publisering på
5184 web krever at en holder faktum skjult fra debattfeltet på NRKBeta.
5185 Det er ikke et argument som holder vann. :)
</p
>
5187 <p
>> Dette er en situasjon NRKbeta ikke ønsker, så kommentaren er fjernet
5188 <br
>> og den delen av diskusjonen er avsluttet på nrkbeta, vi antar
5189 <br
>> konsekvensene vi beskriver ikke er noe du ønsker heller...
</p
>
5191 <p
>Personlig ønsker jeg at NRK skal slutte å stikke hodet i sanden og
5192 heller være åpne på hvordan virkeligheten fungerer, samt ta opp kampen
5193 mot de som vil låse kulturen inne. Jeg synes det er en skam at NRK
5194 godtar å forlede publikum. Ville heller at NRK krever at innhold som
5195 skal sendes skal være uten bruksbegresninger og kan publiseres i
5196 formater som heller ikke har bruksbegresninger (bruksbegresningene til
5197 H
.264 burde få varselbjellene i NRK til å ringe).
</p
>
5199 <p
>At NRK er med på DRM-tåkeleggingen og at det kommer feilaktive
5200 påstander om at
"streaming beskytter mot nedlasting
" som bare er egnet
5201 til å bygge opp om en myte som er skadelig for samfunnet som helhet.
</p
>
5203 <p
>Anbefaler
&lt;URL:
<a href=
"http://webmink.com/
2010/
09/
03/h-
264-and-foss/
">http://webmink.com/
2010/
09/
03/h-
264-and-foss/
</a
>> og en
5205 &lt;URL:
<a href=
"http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
</a
> >.
5206 for å se hva slags bruksbegresninger H
.264 innebærer.
</p
>
5208 <p
>Hvis dette innebærer at NRK må være åpne med at arkivmaterialet ikke
5209 kan brukes før rettighetshaverene også innser at de er med på å skade
5210 samfunnets kultur og kollektive hukommelse, så får en i hvert fall
5211 synliggjort konsekvensene og antagelig mer flammer på en debatt som er
5212 langt på overtid.
</p
>
5214 <p
>> Ring meg om noe er uklart: XXX
</p
>
5216 <p
>Intet uklart, men ikke imponert over måten dere håndterer debatten på.
5217 Hadde du i stedet kommet med et tilsvar i kommentarfeltet der en
5218 gjorde det klart at blindpassasjer-blogpostingen ikke var riktig sted
5219 for videre diskusjon hadde dere i mine øyne kommet fra det med
5220 ryggraden på plass.
</p
>
5222 <p
>PS: Interessant å se at NRK-ansatte ikke bruker NRK-epostadresser.
</p
>
5224 <p
>Som en liten avslutning, her er noen litt morsomme innslag om temaet.
5225 &lt;URL:
<a href=
"http://www.archive.org/details/CopyingIsNotTheft
">http://www.archive.org/details/CopyingIsNotTheft
</a
> > og
5226 &lt;URL:
<a href=
"http://patentabsurdity.com/
">http://patentabsurdity.com/
</a
> > hadde vært noe å kringkaste på
5229 <p
>Vennlig hilsen,
5231 <br
>Petter Reinholdtsen
</p
>
5236 <title>Standardkrav inn i anbudstekster?
</title>
5237 <link>https://people.skolelinux.org/pere/blog/Standardkrav_inn_i_anbudstekster_.html
</link>
5238 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Standardkrav_inn_i_anbudstekster_.html
</guid>
5239 <pubDate>Sun,
17 Oct
2010 19:
30:
00 +
0200</pubDate>
5240 <description><p
>Hvis det å følge standarder skal ha noen effekt overfor
5241 leverandører, så må slike krav og ønsker komme inn i anbudstekster når
5242 systemer kjøpes inn. Har ikke sett noen slike formuleringer i anbud
5243 så langt, men har tenkt litt på hva som bør inn. Her er noen ideer og
5244 forslag. Min drøm er at en kan sette krav til slik støtte i
5245 anbudstekster, men så langt er det nok mer sannsynlig at en må nøye
5246 seg med å skrive at det er en fordel om slik støtte er tilstede i
5247 leveranser.
</p
>
5249 <p
>Som systemadministrator på Universitetet er det typisk to områder
5250 som er problematiske for meg. Det ene er admin-grensesnittene på
5251 tjenermaskiner, som vi ønsker å bruke via ssh. Det andre er nettsider
5252 som vi ønsker å bruke via en nettleser. For begge deler er det viktig
5253 at protokollene og formatene som brukes følger standarder våre verktøy
5256 <p
>De fleste har nå støtte for SSH som overføringsprotkoll for
5257 admin-grensesnittet, men det er ikke tilstrekkelig for å kunne stille
5258 inn f.eks BIOS og RAID-kontroller via ssh-forbindelsen. Det er flere
5259 aktuelle protokoller for fremvisning av BIOS-oppsett og
5260 oppstartmeldinger, og min anbefaling ville være å kreve
5261 VT100-kompatibel protokoll, for å sikre at flest mulig
5262 terminalemulatorer kan forstå hva som kommer fra admin-grensesnittet
5263 via ssh. Andre aktuelle alternativer er ANSI-terminalemulering og
5264 VT220. Kanskje en formulering ala dette i anbudsutlysninger vil
5267 <p
><blockquote
>
5268 BIOS og oppstartmeldinger i administrasjonsgrensesnittet til maskinen
5269 bør/skal være tilgjengelig via SSH-protokollen som definert av IETF
5270 (RFC
4251 mfl.) og følge terminalfremvisningprotokollen VT100 (ref?)
5271 når en kobler seg til oppstart via ssh.
5272 </blockquote
></p
>
5274 <p
>Har ikke lykkes med å finne en god referanse for
5275 VT100-spesifikasjonen.
</p
>
5277 <p
>Når det gjelder nettsider, så er det det HTML, CSS og
5278 JavaScript-spesifikasjonen til W3C som gjelder.
</p
>
5280 <p
><blockquote
>
5281 Alle systemets nettsider bør/skal være i henhold til statens
5282 standardkatalogs krav om nettsider og følge HTML-standarden som
5283 definert av W3C, og validere uten feil hos W3Cs HTML-validator
5284 (http://validator.w3.org). Hvis det brukes CSS så bør/skal denne
5285 validere uten feil hos W3Cs CSS-validator
5286 (http://jigsaw.w3.org/css-validator/). Eventuelle JavaScript skal
5287 være i henhold til EcmaScript-standarden. I tillegg til å følge de
5288 overnevnte standardene skal websidene fungere i nettleserne (fyll inn
5289 relevant liste for organisasjonen) Firefox
3.5, Internet Explorer
8,
5291 </blockquote
></p
>
5293 <p
>Vil et slikt avsnitt være konkret nok til å få leverandørene til å
5294 lage nettsider som følger standardene og fungerer i flere
5295 nettlesere?
</p
>
5297 <p
>Tar svært gjerne imot innspill på dette temaet til aktive (at)
5298 nuug.no, og er spesielt interessert i hva andre skriver i sine anbud
5299 for å oppmuntre leverandører til å følge standardene. Kanskje NUUG
5300 burde lage et dokument med forslag til standardformuleringer å ta med
5301 i anbudsutlysninger?
</p
>
5303 <p
>Oppdatering
2010-
12-
03: I følge Wikipedias oppføring om
5304 <a href=
"http://en.wikipedia.org/wiki/ANSI_escape_code
">ANSI escape
5305 code
</a
>, så bruker VT100-terminaler ECMA-
48-spesifikasjonen som
5306 basis for sin oppførsel. Det kan dermed være et alternativ når en
5307 skal spesifisere hvordan seriell-konsoll skal fungere.
</p
>
5312 <title>Terms of use for video produced by a Canon IXUS
130 digital camera
</title>
5313 <link>https://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
</link>
5314 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
</guid>
5315 <pubDate>Thu,
9 Sep
2010 23:
55:
00 +
0200</pubDate>
5316 <description><p
>A few days ago I had the mixed pleasure of bying a new digital
5317 camera, a Canon IXUS
130. It was instructive and very disturbing to
5318 be able to verify that also this camera producer have the nerve to
5319 specify how I can or can not use the videos produced with the camera.
5320 Even thought I was aware of the issue, the options with new cameras
5321 are limited and I ended up bying the camera anyway. What is the
5322 problem, you might ask? It is software patents, MPEG-
4, H
.264 and the
5323 MPEG-LA that is the problem, and our right to record our experiences
5324 without asking for permissions that is at risk.
5326 <p
>On page
27 of the Danish instruction manual, this section is
5330 <p
>This product is licensed under AT
&T patents for the MPEG-
4 standard
5331 and may be used for encoding MPEG-
4 compliant video and/or decoding
5332 MPEG-
4 compliant video that was encoded only (
1) for a personal and
5333 non-commercial purpose or (
2) by a video provider licensed under the
5334 AT
&T patents to provide MPEG-
4 compliant video.
</p
>
5336 <p
>No license is granted or implied for any other use for MPEG-
4
5340 <p
>In short, the camera producer have chosen to use technology
5341 (MPEG-
4/H
.264) that is only provided if I used it for personal and
5342 non-commercial purposes, or ask for permission from the organisations
5343 holding the knowledge monopoly (patent) for technology used.
</p
>
5345 <p
>This issue has been brewing for a while, and I recommend you to
5347 "<a href=
"http://www.osnews.com/story/
23236/Why_Our_Civilization_s_Video_Art_and_Culture_is_Threatened_by_the_MPEG-LA
">Why
5348 Our Civilization
's Video Art and Culture is Threatened by the
5349 MPEG-LA
</a
>" by Eugenia Loli-Queru and
5350 "<a href=
"http://webmink.com/
2010/
09/
03/h-
264-and-foss/
">H
.264 Is Not
5351 The Sort Of Free That Matters
</a
>" by Simon Phipps to learn more about
5352 the issue. The solution is to support the
5353 <a href=
"http://www.digistan.org/open-standard:definition
">free and
5354 open standards
</a
> for video, like
<a href=
"http://www.theora.org/
">Ogg
5355 Theora
</a
>, and avoid MPEG-
4 and H
.264 if you can.
</p
>
5360 <title>Officeshots taking shape
</title>
5361 <link>https://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html
</link>
5362 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html
</guid>
5363 <pubDate>Sun,
13 Jun
2010 11:
40:
00 +
0200</pubDate>
5364 <description><p
>For those of us caring about document exchange and
5365 interoperability,
<a href=
"http://www.officeshots.org/
">OfficeShots
</a
>
5366 is a great service. It is to ODF documents what
5367 <a href=
"http://browsershots.org/
">BrowserShots
</a
> is for web
5370 <p
>A while back, I was contacted by Knut Yrvin at the part of Nokia
5371 that used to be Trolltech, who wanted to help the OfficeShots project
5372 and wondered if the University of Oslo where I work would be
5373 interested in supporting the project. I helped him to navigate his
5374 request to the right people at work, and his request was answered with
5375 a spot in the machine room with power and network connected, and Knut
5376 arranged funding for a machine to fill the spot. The machine is
5377 administrated by the OfficeShots people, so I do not have daily
5378 contact with its progress, and thus from time to time check back to
5379 see how the project is doing.
</p
>
5381 <p
>Today I had a look, and was happy to see that the Dell box in our
5382 machine room now is the host for several virtual machines running as
5383 OfficeShots factories, and the project is able to render ODF documents
5384 in
17 different document processing implementation on Linux and
5385 Windows. This is great.
</p
>
5390 <title>A manual for standards wars...
</title>
5391 <link>https://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html
</link>
5392 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html
</guid>
5393 <pubDate>Sun,
6 Jun
2010 14:
15:
00 +
0200</pubDate>
5394 <description><p
>Via the
5395 <a href=
"http://feedproxy.google.com/~r/robweir/antic-atom/~
3/QzU4RgoAGMg/weekly-links-
10.html
">blog
5396 of Rob Weir
</a
> I came across the very interesting essay named
5397 <a href=
"http://faculty.haas.berkeley.edu/shapiro/wars.pdf
">The Art of
5398 Standards Wars
</a
> (PDF
25 pages). I recommend it for everyone
5399 following the standards wars of today.
</p
>
5404 <title>Danmark går for ODF?
</title>
5405 <link>https://people.skolelinux.org/pere/blog/Danmark_g_r_for_ODF_.html
</link>
5406 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Danmark_g_r_for_ODF_.html
</guid>
5407 <pubDate>Fri,
29 Jan
2010 12:
00:
00 +
0100</pubDate>
5408 <description><p
>Ble nettopp gjort oppmerksom på en
5409 <a href=
"http://www.version2.dk/artikel/
13690-breaking-odf-vinder-dokumentformat-krigen
">nyhet fra Version2
</a
>
5410 fra Danmark, der det hevdes at Folketinget har vedtatt at ODF skal
5411 brukes som dokumentutvekslingsformat i Staten.
</p
>
5413 <p
>Hyggelig lesning, spesielt hvis det viser seg at de av vedtatt
5414 kravlisten for hva som skal aksepteres som referert i kommentarfeltet
5416 <a href=
"http://www.version2.dk/artikel/
13693-er-ooxml-doemt-ude-her-er-kravene-til-en-offentlig-dokumentstandard
">en
5417 annen artikkel
</a
> i samme nett-avis. Liker spesielt godt denne:
</p
>
5419 <p
><blockquote
> Det skal demonstreres, at standarden i sin helhed kan
5420 implementeres af alle direkte i sin helhed på flere
5421 platforme.
</blockquote
></p
>
5423 <p
>Noe slikt burde være et krav også i Norge.
</p
>
5428 <title>Relative popularity of document formats (MS Office vs. ODF)
</title>
5429 <link>https://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html
</link>
5430 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html
</guid>
5431 <pubDate>Wed,
12 Aug
2009 15:
50:
00 +
0200</pubDate>
5432 <description><p
>Just for fun, I did a search right now on Google for a few file ODF
5433 and MS Office based formats (not to be mistaken for ISO or ECMA
5434 OOXML), to get an idea of their relative usage. I searched using
5435 'filetype:odt
' and equvalent terms, and got these results:
</P
>
5438 <tr
><th
>Type
</th
><th
>ODF
</th
><th
>MS Office
</th
></tr
>
5439 <tr
><td
>Tekst
</td
> <td
>odt:
282000</td
> <td
>docx:
308000</td
></tr
>
5440 <tr
><td
>Presentasjon
</td
> <td
>odp:
75600</td
> <td
>pptx:
183000</td
></tr
>
5441 <tr
><td
>Regneark
</td
> <td
>ods:
26500 </td
> <td
>xlsx:
145000</td
></tr
>
5444 <p
>Next, I added a
'site:no
' limit to get the numbers for Norway, and
5445 got these numbers:
</p
>
5448 <tr
><th
>Type
</th
><th
>ODF
</th
><th
>MS Office
</th
></tr
>
5449 <tr
><td
>Tekst
</td
> <td
>odt:
2480 </td
> <td
>docx:
4460</td
></tr
>
5450 <tr
><td
>Presentasjon
</td
> <td
>odp:
299 </td
> <td
>pptx:
741</td
></tr
>
5451 <tr
><td
>Regneark
</td
> <td
>ods:
187 </td
> <td
>xlsx:
372</td
></tr
>
5454 <p
>I wonder how these numbers change over time.
</p
>
5456 <p
>I am aware of Google returning different results and numbers based
5457 on where the search is done, so I guess these numbers will differ if
5458 they are conduced in another country. Because of this, I did the same
5459 search from a machine in California, USA, a few minutes after the
5460 search done from a machine here in Norway.
</p
>
5464 <tr
><th
>Type
</th
><th
>ODF
</th
><th
>MS Office
</th
></tr
>
5465 <tr
><td
>Tekst
</td
> <td
>odt:
129000</td
> <td
>docx:
308000</td
></tr
>
5466 <tr
><td
>Presentasjon
</td
> <td
>odp:
44200</td
> <td
>pptx:
93900</td
></tr
>
5467 <tr
><td
>Regneark
</td
> <td
>ods:
26500 </td
> <td
>xlsx:
82400</td
></tr
>
5470 <p
>And with
'site:no
':
5473 <tr
><th
>Type
</th
><th
>ODF
</th
><th
>MS Office
</th
></tr
>
5474 <tr
><td
>Tekst
</td
> <td
>odt:
2480</td
> <td
>docx:
3410</td
></tr
>
5475 <tr
><td
>Presentasjon
</td
> <td
>odp:
175</td
> <td
>pptx:
604</td
></tr
>
5476 <tr
><td
>Regneark
</td
> <td
>ods:
186 </td
> <td
>xlsx:
296</td
></tr
>
5479 <p
>Interesting difference, not sure what to conclude from these
5485 <title>ISO still hope to fix OOXML
</title>
5486 <link>https://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html
</link>
5487 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html
</guid>
5488 <pubDate>Sat,
8 Aug
2009 14:
00:
00 +
0200</pubDate>
5489 <description><p
>According to
<a
5490 href=
"http://twerner.blogspot.com/
2009/
08/defects-of-office-open-xml.html
">a
5491 blog post from Torsten Werner
</a
>, the current defect report for ISO
5492 29500 (ISO OOXML) is
809 pages. His interesting point is that the
5493 defect report is
71 pages more than the full ODF
1.1 specification.
5494 Personally I find it more interesting that ISO still believe ISO OOXML
5495 can be fixed in ISO. Personally, I believe it is broken beyon repair,
5496 and I completely lack any trust in ISO for being able to get anywhere
5497 close to solving the problems. I was part of the Norwegian committee
5498 involved in the OOXML fast track process, and was not impressed with
5499 Standard Norway and ISO in how they handled it.
</p
>
5501 <p
>These days I focus on ODF instead, which seem like a specification
5502 with the future ahead of it. We are working in NUUG to organise a ODF
5503 seminar this autumn.
</p
>
5508 <title>Regjerningens oppsummering av høringen om standardkatalogen versjon
2</title>
5509 <link>https://people.skolelinux.org/pere/blog/Regjerningens_oppsummering_av_h_ringen_om_standardkatalogen_versjon_2.html
</link>
5510 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Regjerningens_oppsummering_av_h_ringen_om_standardkatalogen_versjon_2.html
</guid>
5511 <pubDate>Thu,
9 Jul
2009 14:
40:
00 +
0200</pubDate>
5512 <description><p
>For å forstå mer om hvorfor standardkatalogens versjon
2 ble som
5513 den ble, har jeg bedt om kopi fra FAD av dokumentene som ble lagt frem
5514 for regjeringen da de tok sin avgjørelse. De er nå lagt ut på NUUGs
5515 wiki, direkte tilgjengelig via
"<a
5516 href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2?action=AttachFile
&do=get
&target=kongelig-resolusjon.pdf
">Referansekatalogen
5517 v2.0 - Oppsummering av høring
</a
>" og
"<a
5518 href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2?action=AttachFile
&do=get
&target=kongelig-resolusjon-katalogutkast.pdf
">Referansekatalog
5519 for IT-standarder i offentlig sektor Versjon
2.0, dd.mm.åååå -
5520 UTKAST
</a
>".
</p
>
5522 <p
>Det er tre ting jeg merker meg i oppsummeringen fra
5523 høringsuttalelsen da jeg skummet igjennom den. Det første er at
5524 forståelsen av hvordan programvarepatenter påvirker fri
5525 programvareutvikling også i Norge når en argumenterer med at
5526 royalty-betaling ikke er et relevant problem i Norge. Det andre er at
5527 FAD ikke har en prinsipiell forståelse av verdien av en enkelt
5528 standard innenfor hvert område. Det siste er at påstander i
5529 høringsuttalelsene ikke blir etterprøvd (f.eks. påstanden fra
5530 Microsoft om hvordan Ogg blir standardisert og påstanden fra
5531 politidirektoratet om patentproblemer i Theora).
</p
>
5536 <title>Regjerningen forlater prinsippet om ingen royalty-betaling i standardkatalogen versjon
2</title>
5537 <link>https://people.skolelinux.org/pere/blog/Regjerningen_forlater_prinsippet_om_ingen_royalty_betaling_i_standardkatalogen_versjon_2.html
</link>
5538 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Regjerningen_forlater_prinsippet_om_ingen_royalty_betaling_i_standardkatalogen_versjon_2.html
</guid>
5539 <pubDate>Mon,
6 Jul
2009 21:
00:
00 +
0200</pubDate>
5540 <description><p
>Jeg ble glad da regjeringen
5541 <a href=
"http://www.digi.no/
817635/her-er-statens-nye-it-standarder
">annonserte
</a
>
5543 <a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/IKT-politikk/Referansekatalogen_versjon2.pdf
">statens
5544 referansekatalog over standarder
</a
>, men trist da jeg leste hva som
5545 faktisk var vedtatt etter
5546 <a href=
"http://www.regjeringen.no/nb/dep/fad/dok/horinger/horingsdokumenter/
2009/horing---referansekatalog-versjon-
2.html
">høringen
</a
>.
5547 De fleste av de valgte åpne standardene er gode og vil bidra til at
5548 alle kan delta på like vilkår i å lage løsninger for staten, men
5549 noen av dem blokkerer for de som ikke har anledning til å benytte
5550 spesifikasjoner som krever betaling for bruk (såkalt
5551 royalty-betaling). Det gjelder spesifikt for H
.264 for video og MP3
5552 for lyd. Så lenge bruk av disse var valgfritt mens Ogg Theora og Ogg
5553 Vorbis var påkrevd, kunne alle som ønsket å spille av video og lyd
5554 fra statens websider gjøre dette uten å måtte bruke programmer der
5555 betaling for bruk var nødvendig. Når det nå er gjort valgfritt for
5556 de statlige etatene å bruke enten H
.264 eller Theora (og MP3 eler
5557 Vorbis), så vil en bli tvunget til å forholde seg til
5558 royalty-belastede standarder for å få tilgang til videoen og
5561 <p
>Det gjør meg veldig trist at regjeringen har forlatt prinsippet om
5562 at alle standarder som ble valgt til å være påkrevd i katalogen skulle
5563 være uten royalty-betaling. Jeg håper det ikke betyr at en har mistet
5564 all forståelse for hvilke prinsipper som må følges for å oppnå
5565 likeverdig konkurranse mellom aktørene i IT-bransjen. NUUG advarte
5567 <a href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2
">sin
5568 høringsuttalelse
</a
>, men ser ut til å ha blitt ignorert.
</p
>
5570 <p
>Oppdatering
2012-
06-
29: Kom over
<a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/IKT-politikk/Refkat_v2.pdf
">en
5571 rapport til FAD
</a
> fra da versjon
1 av katalogen ble vedtatt, og der
5572 er det tydelig at problemstillingen var kjent og forstått.
</p
>
5577 <title>Microsofts misvisende argumentasjon rundt multimediaformater
</title>
5578 <link>https://people.skolelinux.org/pere/blog/Microsofts_misvisende_argumentasjon_rundt_multimediaformater.html
</link>
5579 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Microsofts_misvisende_argumentasjon_rundt_multimediaformater.html
</guid>
5580 <pubDate>Fri,
26 Jun
2009 13:
30:
00 +
0200</pubDate>
5581 <description><p
>I
5582 <a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/Hoeringer/Refkat_V2/MicrosoftNorge.pdf
">Microsoft
5583 sin høringsuttalelse
</a
> til
5584 <a href=
"http://www.regjeringen.no/nb/dep/fad/dok/horinger/horingsdokumenter/
2009/horing---referansekatalog-versjon-
2.html?id=
549422">forslag
5585 til versjon
2 av statens referansekatalog over standarder
</a
>, lirer
5586 de av seg følgende FUD-perle:
</p
>
5588 <p
><blockquote
>"Vorbis, OGG, Theora og FLAC er alle tekniske
5589 spesifikasjoner overordnet styrt av xiph.org, som er en
5590 ikke-kommersiell organisasjon. Etablerte og anerkjente
5591 standardiseringsorganisasjoner, som Oasis, W3C og Ecma, har en godt
5592 innarbeidet vedlikeholds- og forvaltningsprosess av en standard.
5593 Det er derimot helt opp til hver enkelt organisasjon å bestemme
5594 hvordan tekniske spesifikasjoner videreutvikles og endres, og disse
5595 spesifikasjonene bør derfor ikke defineres som åpne
5596 standarder.
"</blockquote
></p
>
5598 <p
>De vokter seg vel for å nevne den anerkjente
5599 standardiseringsorganisasjonen IETF, som er organisasjonen bak HTTP,
5600 IP og det meste av protokoller på Internet, og RFC-standardene som
5601 IETF står bak. Ogg er spesifisert i
5602 <a href=
"http://ietf.org/rfc/rfc3533.txt
">RFC
3533</a
>, og er uten
5603 tvil å anse som en åpen standard. Vorbis er
5604 <a href=
"http://ietf.org/rfc/rfc5215.txt
">RFC
5215</a
>. Theora er
5606 under standardisering via IETF, med
5607 <a href=
"http://svn.xiph.org/trunk/theora/doc/draft-ietf-avt-rtp-theora-
00.txt
">siste
5608 utkast publisert
2006-
07-
21</a
> (riktignok er dermed teksten ikke
5609 skrevet i stein ennå, men det blir neppe endringer som ikke er
5610 bakoverkompatibel). De kan være inne på noe når det gjelder FLAC da
5611 jeg ikke finner tegn til at
<a
5612 href=
"http://flac.sourceforge.net/format.html
">spesifikasjonen
5613 tilgjengelig på web
</a
> er på tur via noen
5614 standardiseringsorganisasjon, men i og med at folkene bak Ogg, Theora
5615 og Vorbis også har involvert seg i Flac siden
2003, så ser jeg ikke
5616 bort fra at også den organiseres via IETF. Jeg kjenner personlig lite
5619 <p
>Uredelig argumentasjon bør en holde seg for god til å komme med,
5620 spesielt når det er så enkelt i dagens Internet-hverdag å gå
5621 misvisende påstander etter i sømmene.
</p
>
5626 <title>Standarder fungerer best når en samler seg rundt dem
</title>
5627 <link>https://people.skolelinux.org/pere/blog/Standarder_fungerer_best_n_r_en_samler_seg_rundt_dem.html
</link>
5628 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Standarder_fungerer_best_n_r_en_samler_seg_rundt_dem.html
</guid>
5629 <pubDate>Tue,
19 May
2009 11:
30:
00 +
0200</pubDate>
5630 <description><p
>En standard er noe man samler seg rundt, ut fra ideen om at en får
5631 fordeler når mange står sammen. Jo flere som står sammen, jo
5632 bedre. Når en vet dette, blir det litt merkelig å lese noen av
5633 uttalelsene som er kommet inn til
5634 <a href=
"http://www.regjeringen.no/nb/dep/fad/dok/horinger/horingsdokumenter/
2009/horing---referansekatalog-versjon-
2/horingsuttalelser.html?id=
549423">høringen
5635 om versjon
2 av statens referansekatalog over standarder
</a
>. Blant
5636 annet Abelia, NHO og Microsoft tror det er lurt med flere standarder
5637 innenfor samme område. Det blir som å si at det er fint om Norge
5638 standardiserte både på A4- og Letter-størrelser på arkene, ulik
5639 sporvidde på jernbaneskinnene, meter og fot som lengemål, eller
5640 høyre- og venstrekjøring - slik at en kan konkurrere på hvilken
5641 standard som er best. De fleste forstår heldigvis at dette ikke
5642 bidrar positivt.
</p
>
5647 <title>Hvorfor jeg ikke bruker eFaktura
</title>
5648 <link>https://people.skolelinux.org/pere/blog/Hvorfor_jeg_ikke_bruker_eFaktura.html
</link>
5649 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Hvorfor_jeg_ikke_bruker_eFaktura.html
</guid>
5650 <pubDate>Thu,
23 Apr
2009 23:
00:
00 +
0200</pubDate>
5651 <description><p
>Telenors annonsering om å kreve
35 kroner i gebyr fra alle som
5652 ønsker papirfaktura har satt sinnene i kok, og pressedekningen så
5653 langt snakker om at eldre og folk som ikke behersker data vil få en
5654 urimelig ekstrakostnad. Jeg tror ikke jeg passer inn i noen av de
5655 kategoriene, men velger å holde meg unna eFaktura - som er det
5656 Telenor ønsker å få folk over på - pga. systemets egenskaper.
</p
>
5658 <p
>Slik jeg har sett eFaktura til forbrukere så langt, så sender
5659 selger en elektronisk beskjed til kundens bank, som legger ut
5660 informasjon om fakturaen i nettbanken for godkjenning. Personlig
5661 ville jeg sett det som mer naturlig at det gikk en elektronisk beskjed
5662 fra selger til kunde, dvs meg, og at jeg så kunne bruke den videre
5663 mot banken eller andre hvis jeg ønsket dette. Mine innkjøp og
5664 regninger er jo en sak mellom meg og mine leverandører, ikke en sak
5665 mellom min bank og mine leverandører. Kun hvis jeg ønsker å betale
5666 fakturaen skal banken involveres. En faktura bør jo inn i
5667 regnskapet, og jeg ønsker mulighet til å legge det inn der. Når
5668 fakturaen sendes til banken i stedet for meg, blir det vanskeligere.
5669 Hele eFaktura-modellen virker på meg som en umyndiggjøring av meg
5670 som kunde.
</p
>
5672 <p
>I tillegg har jeg ikke vært i stand til å finne
5673 eFaktura-formatets spesifikasjon, og det ser ut til at utsending av
5674 slike krever dyre avtaler med bankene for å få lov til å sende ut
5675 eFaktura til kunder. Jeg ser vel helst at fakturering på
5676 elektroniske formater kan gjøres f.eks. via epost eller HTTP uten å
5677 måtte betale mellommenn for retten til å lever ut en faktura, og
5678 liker rett og slett ikke dagens faktureringsmodeller.
</p
>
5683 <title>Standardize on protocols and formats, not vendors and applications
</title>
5684 <link>https://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html
</link>
5685 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html
</guid>
5686 <pubDate>Mon,
30 Mar
2009 11:
50:
00 +
0200</pubDate>
5687 <description><p
>Where I work at the University of Oslo, one decision stand out as a
5688 very good one to form a long lived computer infrastructure. It is the
5689 simple one, lost by many in todays computer industry: Standardize on
5690 open network protocols and open exchange/storage formats, not applications.
5691 Applications come and go, while protocols and files tend to stay, and
5692 thus one want to make it easy to change application and vendor, while
5693 avoiding conversion costs and locking users to a specific platform or
5694 application.
</p
>
5696 <p
>This approach make it possible to replace the client applications
5697 independently of the server applications. One can even allow users to
5698 use several different applications as long as they handle the selected
5699 protocol and format. In the normal case, only one client application
5700 is recommended and users only get help if they choose to use this
5701 application, but those that want to deviate from the easy path are not
5702 blocked from doing so.
</p
>
5704 <p
>It also allow us to replace the server side without forcing the
5705 users to replace their applications, and thus allow us to select the
5706 best server implementation at any moment, when scale and resouce
5707 requirements change.
</p
>
5709 <p
>I strongly recommend standardizing - on open network protocols and
5710 open formats, but I would never recommend standardizing on a single
5711 application that do not use open network protocol or open formats.
</p
>
5716 <title>Hva er egentlig en åpen standard?
</title>
5717 <link>https://people.skolelinux.org/pere/blog/Hva_er_egentlig_en__pen_standard_.html
</link>
5718 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Hva_er_egentlig_en__pen_standard_.html
</guid>
5719 <pubDate>Sat,
28 Mar
2009 10:
50:
00 +
0100</pubDate>
5720 <description><p
>Jeg møter alle slags interessante mennesker på min vei, og et møte
5721 jeg lærte mye av var å treffe på en svært kompetent IT-fyr som
5722 benektet ting jeg anser som åpenbart og selvfølgelig når det gjelder
5723 standarder. Det var interessant, da det fikk meg til å tenke litt
5724 nøyere på hvilke mekanismer som ligger til grunn for at noe oppfattes
5725 som en standard. Det hele startet med arbeid rundt integrering av NSS
5726 LDAP mot Active Directory, og problemer som oppstår pga. at Active
5727 Directory ikke følger LDAP-spesifikasjonen som dokumentert i RFCer fra
5728 IETF (konkret, AD returnerer kun et subset av attributter hvis det er
5729 mer enn
1500 atributter av en gitt type i et LDAP-objekt, og en må be
5730 om resten i bolker av
1500). Jeg hevdet måten dette ble gjort på brøt
5731 med LDAP-spesifikasjonen, og henviste til hvor i LDAP-spesifikasjonen
5732 fra IETF det sto at oppførselen til AD ikke fulgte
5733 LDAP-spesifikasjonen. AD-spesialisten overrasket meg da ved å
5734 fortelle at IETF var ikke de som definerte LDAP-spesifikasjonen, og at
5735 Active Directory ikke brøt den virkelige LDAP-spesifikasjonen som han
5736 mente lå til grunn. Jeg ble spesielt overrasket over denne
5737 tilnærmingen til problemstillingen, da til og med Microsoft så vidt
5738 jeg kan se anerkjenner IETF som organisasjonen som definerer
5739 LDAP-spesifikasjonen. Jeg fikk aldri spurt hvem han mente sto bak den
5740 egentlige LDAP-spesifikasjonen, da det var irrelevant for problemet vi
5741 måtte løse (få Linux og AD til å fungere sammen). Dette møtet
5742 fortalte meg uansett at det ikke er gitt at alle aktører er enige om
5743 hva en standard er, og hva som er kilden til en gitt standard. Det er
5744 vanskelig å enes om felles standarder før en først enes om hvem som
5745 bestemmer hva en gitt standard innebærer.
</p
>
5747 <p
>Hva er så en standard? I sin abstrakte form er det noe å samles
5748 om. På engelsk er en av betydningene fane brukt i krig, du vet, den
5749 type fane en samlet seg rundt på kamplassen i riddertiden. En
5750 standard definerer altså et felleskap, noen som har noe felles. Det
5751 er naturligvis mange måter å utgjøre et felleskap på. En kan
5752 f.eks. enes om å gjøre alt slik som Ole gjør det, og dermed si at Oles
5753 oppførsel er standard. Hver gang Ole endrer oppførsel endrer også
5754 standarden seg uten noe mer organisering og prosedyre. En variant av
5755 dette er å gjøre slik som Ole har gjort det i stedet for slik Ole til
5756 enhver til gjør noe. Dette er ofte litt enklere å forholde seg til,
5757 da en slipper å sjekke med Ole hver gang for å vite hvordan ting skal
5758 gjøres nå, men hvis det Ole gjorde noe dumt den gang en bestemte seg
5759 for å følge Ole, så er det vanskeligere å få endret oppførsel for å
5760 unngå dette dumme.
</p
>
5762 <p
>En kan også ta det et skritt videre, og istedet for å basere seg på
5763 enkeltpersoners oppførsel sette seg ned og bli enige om hvordan en
5764 skal gjøre ting, dvs. lage et felleskap basert på konsensus. Dette
5765 tar naturligvis litt mer tid (en må diskutere ting i forkant før en
5766 kan sette igang), men det kan bidra til at den oppførselen en
5767 planlegger å benytte seg av er mer gjennomtenkt. Det ender også
5768 typisk opp med en beskrivelse av ønsket oppførsel som flere kan forstå
5769 - da flere har vært involvert i å utarbeide beskrivelsen.
</p
>
5771 <p
>Dette er dessverre ikke alt som trengs for å forstå hva en åpen
5772 standard er for noe. Der alle kan se på hvordan folk oppfører seg, og
5773 dermed har valget om de vil oppføre seg likt eller ikke, så er det
5774 endel juridiske faktorer som gjør det hele mer komplisert -
5775 opphavsretten og patentlovgivningen for å være helt konkret. For å gi
5776 et eksempel. Hvis noen blir enige om å alltid plystre en bestemt
5777 melodi når de møtes, for å identifisere hverandre, så kan
5778 opphavsretten brukes til å styre hvem som får lov til å gjøre dette.
5779 De har standardisert hvordan de kjenner igjen alle som følger denne
5780 standarden, men ikke alle har nødvendigvis lov til å følge den.
5781 Musikk er opphavsrettsbeskyttet, og fremføring av musikk i
5782 offentligheten er opphavsmannens enerett (dvs. et monopol). Det vil i
5783 sin ytterste konsekvens si at alle som skal plystre en
5784 opphavsrettsbeskyttet melodi i det offentlige rom må ha godkjenning
5785 fra opphavsmannen. Har en ikke dette, så bryter en loven og kan
5786 straffes. Det er dermed mulig for opphavsmannen å kontrollere hvem
5787 som får lov til å benytte seg av denne standarden. En annen variant
5788 er hvis en standard er dokumentert, så er dokumentet som definerer
5789 standarden (spesifikasjonen) beskyttet av opphavsretten, og det er
5790 dermed mulig for rettighetsinnehaver å begrense tilgang til
5791 spesifikasjonen, og slik styre hvem som kan ta i bruk standarden på
5792 den måten.
</p
>
5794 <p
>Der opphavsretten innvilger et monopol på kunstneriske uttrykk med
5795 verkshøyde, innvilger patentlovgivningen monopol på ideer. Hvis en
5796 slik patentert idé (fortrinnsvis uttrykt i en teknisk innretning, men
5797 det er kompliserende faktorer som gjør at det ikke er et krav) trengs
5798 for å ta i bruk en standard, så vil den som innehar patent kunne styre
5799 hvem som får ta i bruk standarden. Det er dermed ikke gitt at alle
5800 kan delta i et standard-felleskap, og hvis de kan delta, så er det
5801 ikke sikkert at det er på like vilkår. F.eks. kan rettighetsinnehaver
5802 sette vilkår som gjør at noen faller utenfor, det være seg av
5803 finansielle, avtalemessige eller prinsipielle årsaker. Vanlige slike
5804 vilkår er
"må betale litt for hver kunde/bruker
" som utelukker de som
5805 gir bort en løsning gratis og
"må gi fra seg retten til å håndheve
5806 sine egne patentrettigheter ovenfor rettighetshaver
" som utelukker
5807 alle som ønsker å beholde den muligheten.
</p
>
5809 <p
>En åpen standard innebærer for meg at alle kan få innsikt i en
5810 komplett beskrivelse av oppførsel som standarden skal dekke, og at
5811 ingen kan nektes å benytte seg av standarden. Noen mener at det
5812 holder at alle med tilstrekkelig finansiering kan få tilgang til
5813 spesifikasjonen og at en kun har finansielle krav til bruk.
5814 Pga. denne konflikten har et nytt begrep spredt seg de siste årene,
5815 nemlig fri og åpen standard, der en har gjort det klart at alle må ha
5816 komplett og lik tilgang til spesifikasjoner og retten til å gjøre bruk
5817 av en standard for at en standard skal kunne kalles fri og åpen.
</p
>
5822 <title>Fri og åpen standard, slik Digistan ser det
</title>
5823 <link>https://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html
</link>
5824 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html
</guid>
5825 <pubDate>Sat,
31 Jan
2009 23:
10:
00 +
0100</pubDate>
5826 <description><p
>Det er mange ulike definisjoner om hva en åpen standard er for noe,
5827 og NUUG hadde
<a href=
"http://www.nuug.no/dokumenter/standard-presse-def-
200506.txt
">en
5828 pressemelding om dette sommeren
2005</a
>. Der ble definisjonen til
5829 <a href=
"http://www.aaben-standard.dk/
">DKUUG
</a
>,
5830 <a href=
"http://europa.eu.int/idabc/servlets/Doc?id=
19529">EU-kommissionens
5831 European Interoperability Framework ( side
9)
</a
> og
5832 <a href=
"http://www.teknologiradet.no/files/
7polert_copy.htm
">teknologirådet
</a
> omtalt.
</p
>
5834 <p
>Siden den gang har regjeringens standardiseringsråd dukket opp, og de
5835 ser ut til å har tatt utgangspunkt i EU-kommisjonens definisjon i
5836 <a href=
"http://www.regjeringen.no/nb/dep/fad/kampanjer/standardiseringsradet/arbeidsmetodikk.html?id=
476407">sin
5837 arbeidsmetodikk
</a
>. Personlig synes jeg det er en god ide, da
5838 kravene som stilles der gjør at alle markedsaktører får like vilkår,
5839 noe som kommer kundene til gode ved hjelp av økt konkurranse.
</p
>
5841 <p
>I sommer kom det en ny definisjon på banen.
5842 <a href=
"https://web.archive.org/web/
20160618103850/http://www.digistan.org/
">Digistan
</a
> lanserte
5843 <a href=
"https://web.archive.org/web/
20160618103850/http://www.digistan.org/open-standard:definition
">en
5844 definisjon på en fri og åpen standard
</a
>. Jeg liker måten de bryter
5845 ut av diskusjonen om hva som kreves for å kalle noe en åpen standard
5846 ved å legge på et ord og poengtere at en standard som er både åpen og
5847 fri har noen spesielle krav. Her er den definisjonen etter rask
5848 oversettelse fra engelsk til norsk av meg:
</p
>
5851 <p
><strong
>Definisjonen av en fri og åpen standard
</strong
></p
>
5853 <p
>Den digitale standardorganisasjonen definierer fri og åpen standard
5854 som følger:
</p
>
5856 <li
>En fri og åpen standard er immun for leverandørinnlåsing i alle
5857 stadier av dens livssyklus. Immuniteten fra leverandørinnlåsing gjør
5858 det mulig å fritt bruke, forbedre, stole på og utvide en standard over
5860 <li
>Standarden er adoptert og vil bli vedlikeholdt av en ikke-kommersiell
5861 organisasjon, og dens pågående utvikling gjøres med en åpen
5862 beslutningsprosedyre som er tilgjengelig for alle som er interessert i
5864 <li
>Standarden er publisert og spesifikasjonsdokumentet er fritt
5865 tilgjengelig. Det må være tillatt for alle å kopiere, distribuere og
5866 bruke den uten begresninger.
</li
>
5867 <li
>Patentene som muligens gjelder (deler av) standarden er gjort
5868 ugjenkallelig tilgjengelig uten krav om betaling.
</li
>
5869 <li
>Det er ingen begresninger i gjenbruk av standarden.
</li
>
5871 <p
>Det økonomiske resultatet av en fri og åpen standard, som kan
5872 måles, er at det muliggjør perfekt konkurranse mellom leverandører av
5873 produkter basert på standarden.
</p
>
5876 <p
>(Tar gjerne imot forbedringer av oversettelsen.)
</p
>
5881 <title>ODF-bruk i staten, ikke helt på plass
</title>
5882 <link>https://people.skolelinux.org/pere/blog/ODF_bruk_i_staten__ikke_helt_p__plass.html
</link>
5883 <guid isPermaLink=
"true">https://people.skolelinux.org/pere/blog/ODF_bruk_i_staten__ikke_helt_p__plass.html
</guid>
5884 <pubDate>Thu,
22 Jan
2009 23:
00:
00 +
0100</pubDate>
5885 <description><p
>I går publiserte
5886 <a href=
"http://universitas.no/nyhet/
52776/
">Universitas
</a
>,
5887 <a href=
"http://www.dagensit.no/trender/article1588462.ece
">Dagens-IT
</a
>
5888 og
<a href=
"http://www.idg.no/computerworld/article118622.ece
">Computerworld
5889 Norge
</a
> en sak om at de ansatte ved Universitetet i Oslo ikke følger
5890 regjeringens pålegg om å publisere i HTML, PDF eller ODF. Det er bra
5891 at det kommer litt fokus på dette, og jeg håper noen journalister tar
5892 en titt på de andre statlige instansene også.
</p
>
5894 <p
>Skulle ønske det var en enkel måte å sjekke om ODF-dokumenter er i
5895 henholdt til ODF-spesifikasjonen, og en måte å teste om programmer som
5896 hevder å støtte ODF forstår alle delene av ODF-spesifikasjonen.
5897 Kjenner kun til ufullstendige løsninger for slikt.
</p
>