-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp_files.xml
11790 lines (10017 loc) · 582 KB
/
temp_files.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<author>
<name>Sigfrid Lundberg</name>
</author>
<title>Sigfrid Lundberg's Stuff</title>
<id>http://sigfrid-lundberg.se/files.atom</id>
<link rel="self" href="https://feeds.feedburner.com/SigfridLundbergsStuff?format=xml"/>
<updated>2006-06-08T00:03:00+01:00</updated>
<!--
$Revision$, last modified $Date$
$Id$
-->
<entry>
<title>NWI — En nordisk söktjänst för World Wide Web</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<author>
<name>Anders Ardö</name>
</author>
<link href="/1996/nwi/press_release.html"/>
<summary>Ett konsortium av nordiska forskningsbibliotek och nätverksorgan
presenterar Nordiskt Webindex, en nordisk söktjänst utvecklad i norden för
en nordisk publik. I dag finns en experimentell tjänst offentligt
tillgänglig på nätet på URL http://nwi.ub2.lu.se.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<dc:date>1996</dc:date>
<updated>2006-06-08T00:03:00+01:00</updated>
<id>https://sigfrid-lundberg.se/1996/nwi/nwi.pdf</id>
</entry>
<entry>
<title>A proposal for metadata formats for use in the Swedish Enviro-Net</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/1997/SMN_metadata/smn_metadata.pdf"/>
<summary>This paper outlines a combination of the Dublin Core metadata
embedded in HTML metadata tags and the GILS Z39.50 profile used for
information retrieval. It is a combination would solve the distributed
indexing, search and retrieval problems within a network of environmental
authorities. The Swedish Enviro-Net lived for a few years at the end of
1990ties.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Metadata" label="metadata"/>
<category term="Z39.50" label="z3950"/>
<dc:date>1997</dc:date>
<updated>2006-06-08T00:04:00+01:00</updated>
<id>https://sigfrid-lundberg.se/1997/SMN_metadata/smn_metadata.pdf</id>
</entry>
<entry>
<title>Kulturnät Sverige</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/1997/kultur_naet_sverige/"/>
<summary>En recension av IT i kulturens tjänst, SOU 1997:14 som i mina
ögon vid den tidpunkten var en fullständigt överflödig utredning. Här
fanns alla möjligheter att börja arbeta för en konvergens när det gäller
beskrivningsstandard och protokoll för informationsretrieval mellan olika
grenar av kultursektorn. En tjock bok som ledde fram till en numera
nerlagd ämnesportal.</summary>
<dc:date>1997</dc:date>
<updated>2009-06-08T00:05:00+01:00</updated>
<category term="Digital collections" label="digitalcollections"/>
<category term="Reviews" label="reviews"/>
<id>https://sigfrid-lundberg.se/1997/kultur_naet_sverige/</id>
</entry>
<entry>
<title>The Kulturarw3 archiving format</title>
<author>
<name>Sigfrid Lundberg, Lund University</name>
</author>
<author>
<name>Allan Arvidson, The Royal Library</name>
</author>
<link href="/1998/KulturArw3/archive-format-1.rtf"/>
<summary>This note describes a file format intended for the joint storage of
objects retrieved from the World Wide Web and various kinds of meta
information on those objects. The information includes the HTTP response
header but may also contain information needed for version control etc
within the archive. Kulturarw3 project proposes an archiving record format
based on open standards, namely that objects are stored as HTTP MIME
multpart/mixed messages (cf. RFC2068 and RFC1521 respectively).</summary>
<dc:date>1997</dc:date>
<updated>2006-06-08T00:07:00+01:00</updated>
<category term="Digital preservation" label="preservation"/>
<category term="Harvesting" label="harvesting"/>
<id>https://sigfrid-lundberg.se/1998/KulturArw3/archive-format-1.rtf</id>
</entry>
<entry>
<title>NWI II, An Enhanced Nordic Web index: Final report</title>
<author><name>Anders Ardö</name></author>
<author><name>Allan Arvidson</name></author>
<author><name>Sebastian Hammer</name></author>
<author><name>Kenneth Holmlund</name></author>
<author><name>Sigfrid Lundberg</name></author>
<link href="/1998/nwi2/"/>
<summary>The Nordic Web Index (NWI) project is a collaborative effort
across the Nordic countries, aiming at providing a free Worldwide Web
search service to the general public in the countries involved. NWI has
been fruitful for several reasons: First and foremost we are today
providing access to databases covering the WWW in four of the Nordic
countries and, as of September 1998, five service points in six languages
Denmark, Finland, Sweden, Norway and Iceland.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<category term="Metadata" label="metadata"/>
<category term="Z39.50" label="z3950"/>
<dc:date>1998</dc:date>
<updated>2006-06-08T00:08:00+01:00</updated>
<id>https://sigfrid-lundberg.se/1998/nwi2/</id>
</entry>
<entry>
<title>En arkitektur för ett distribuerat system för spridning av
forskningsinformation</title>
<link href="/1998/safari/cris.pdf"/>
<summary>Arkitekturen för ett nätverk av tjänster för spridning av
forskningsinformation beskrivs. Nätverket tillåter distribuerat underhåll
av såväl data som metadata. Till nätverket kan anslutas såväl
bibliografiska databaser som helt WWWbaserade metadataberikade
tjänster. Metadataproduktionen följer standarden Dublin Core. De förra
typerna av tjänster inkorporeras i nätverket genom interoperabilitet på
sökprotokollsnivå, medan metadata och fulltext från de senare göres
sökbara genom en WWWrobot. Kommunikation inom nätverket utnyttjar
standardiserade Internet protokoll som HTTP, och för
informationsåtervinning Z39.50</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<category term="Metadata" label="metadata"/>
<category term="Z39.50" label="z3950"/>
<dc:date>1998</dc:date>
<updated>2006-06-08T00:10:00+01:00</updated>
<id>https://sigfrid-lundberg.se/1998/safari/cris.pdf</id>
</entry>
<entry>
<title>A regional distributed WWW search and indexing service - the DESIRE
way</title>
<link href="/1998/www7/"/>
<summary>In an attempt to implement a regional search engine we have
created an open, metadata aware system for distributed, collaborative
WWW-indexing. The system has three main components: a harvester (for
collecting information), a database (for making the collection
searchable), and a user interface (for making the information
available). All components can be distributed across networked computers,
thus supporting scalability. The system is metadata aware and thus allows
searches on several fields including title, document author, and
URL. Nordic Web Index (NWI) is an application using this system to create
a regional Nordic web-indexing service. NWI is built using five
collaborating service points within the Nordic countries. The NWI
databases can be used to build additional services. Services today include
special metadata databases, multimedia databases, and statistics about the
Nordic Web.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<category term="Metadata" label="metadata"/>
<category term="Z39.50" label="z3950"/>
<dc:date>1998</dc:date>
<updated>2008-06-08T00:10:00+01:00</updated>
<id>https://sigfrid-lundberg.se/1998/www7/</id>
</entry>
<entry>
<title>The Noble Art of Being Indexed or the Webmaster's Guide to
Harvesting Robots</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<author>
<name>Lars Nooden</name>
</author>
<link href="/1999/web_masters_guide/"/>
<summary>As the title indicates, this is a note on how to be indexed by
search engines. It is obsolete. Please note that it does not contain
anything about search engine optimization in the modern evil
sense. Instead it pinpoints what harvesting robots did understand, and what
they didn't at the turn of the last century.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Metadata" label="metadata"/>
<category term="Structural web design" label="structuralwebdesign"/>
<dc:date>1999</dc:date>
<updated>2006-06-09T00:11:00+01:00</updated>
<id>https://sigfrid-lundberg.se/1999/web_masters_guide/</id>
</entry>
<entry>
<title>Metadata harvesting</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2000/delft/"/>
<summary>This is unfortunately unpublished, but it presents most one of
the most extensive datasets on the content of HTML embedded metadata which
I collected while working with the Nordic Webindex.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<category term="Metadata" label="metadata"/>
<category term="Z39.50" label="z3950"/>
<dc:date>2000</dc:date>
<updated>2006-06-09T15:11:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2000/delft/</id>
</entry>
<entry>
<title>Technical description of the Studera.Nu search engine Harvesting
policies, maintenance and software used</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2001/studera.nu/documentation/studera.pdf"/>
<summary>This is a description of the Studera.NU search engine in the very
first version. The search engine carries focused information, all of which is
indexed manually by content providers. The indexing information is
embedded into web pages using meta tags, and the service is built using a
harvesting robot. This article documents the functions of the search
engine Studera.NU, its robot, search software etc. It aims at providing
necessary background information both for staff involved in system
management and future developers. A second aim is to give pinpoint areas
for future developments of the service.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<category term="Metadata" label="metadata"/>
<dc:date>2001</dc:date>
<updated>2009-06-09T00:18:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2001/studera.nu/documentation/studera.pdf</id>
</entry>
<entry>
<title>Lecture notes: S:t Laurentius Digital Manuscript Library</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2002/DRH2002/toc.html"/>
<summary>In this lecture, I discussed the
experiences gained by the development of a specific service, which, using
a collection of detailed XML descriptions, provides its users access to a
collection of digitized medieval manuscripts. Secondly, I discussed the
database used from the point of view of both retrieval of the intellectual
content (the texts) of these manuscripts and of the retrieval of the
manuscripts as unique entities. Finally, I turned to the possibilities for
searching a collection of complex XML documents using a full text
retrieval engine used together with the Z39.50 information retrieval
protocol.</summary>
<dc:date>2002</dc:date>
<category term="XML processing" label="xmlprocessing"/>
<category term="Metadata" label="metadata"/>
<category term="Digital humanities" label="ehumanities"/>
<category term="Digitization" label="digitization"/>
<updated>2009-06-11T00:06:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2002/DRH2002/toc.html</id>
</entry>
<entry>
<title>S:t Laurentius Digital Manuscript Library: An excursion along the
border between resource discovery and resource description</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2002/Laurentius/laurentius.pdf"/>
<summary>This note has three aims. First it discusses the experiences
gained by the development of a specific service, which, using a collection
of detailed XML descriptions, provides its users access to a collection
of digitized medieval manuscripts. Secondly, it discusses the database
used from the point of view of both retrieval of the intellectual content
(the texts) of these manuscripts and of the retrieval of the manuscripts
as unique entities. Finally, it explores the possibilities for searching
a collection of complex XML documents using a full text retrieval engine
used together with the Z39.50 information retrieval protocol.</summary>
<dc:date>2002</dc:date>
<category term="XML processing" label="xmlprocessing"/>
<category term="Text encoding" label="textencoding"/>
<category term="Metadata" label="metadata"/>
<category term="Digital humanities" label="ehumanities"/>
<category term="Digitization" label="digitization"/>
<updated>2009-06-11T00:19:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2002/Laurentius/laurentius.pdf</id>
</entry>
<entry>
<title>Förslag till policy för digitaliseringsprojekt inom Lunds
Universitets Bibliotek</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2002/DigitaliseringsPolicy/digitaliserings_policy.pdf"/>
<summary>Digital arkivering är att bereda serverplats för information om
oss, vår tid och vår historia för våra barn och deras efterkommande. Detta
dokument beskriver förutsättningarna för digitalisering, lagring och
arkivering samt elektronisk publicering av olika samlingar inom Lunds
universitet och dess bibliotek. Särskild vikt läggs vid att utveckla en
nansieringsmodell för lagring, tillgängliggörande och bevarande.</summary>
<dc:date>2002</dc:date>
<category term="Digitization" label="digitization"/>
<category term="Digital collections" label="digitalcollections"/>
<updated>2009-06-11T00:18:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2002/DigitaliseringsPolicy/digitaliserings_policy.pdf</id>
</entry>
<entry>
<title>The Metadata model in Scripta Academica Lundensis</title>
<author>
<name>Colm Doyle</name>
</author>
<author>
<name>Jörgen Eriksson</name>
</author>
<author>
<name>Sara Kjellberg</name>
</author>
<author>
<name>Sigfrid Lundberg</name>
</author>
<author>
<name>Tomas Schönthal</name>
</author>
<link href="/2002/Scripta/"/>
<summary>This document specifies the metadata once used in the Lund university
dissertation database.</summary>
<category term="Digital collections" label="digitalcollections"/>
<category term="XML processing" label="xmlprocessing"/>
<category term="Metadata" label="metadata"/>
<dc:date>2002</dc:date>
<updated>2009-06-12T00:20:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2002/Scripta/</id>
</entry>
<entry>
<title>XML -- en mjuk start för biblioteksfolk Mitt ständigt ofärdiga
undervisningsmaterial (...och en del annat)</title>
<link href="/2003/XMLforLibrarians/"/>
<summary>Denna text syftar till att ge en överblick över vissa områden av
det digitala biblioteksområdet vilka är stadda i snabb utveckling. En
utveckling som i hög grad katalyseras av utvecklingen av olika
tillämpningar av eXtensible Markup Language, XML, som i år fyller fem år.
Utöver användningen av XML inom det digitala biblioteksväsendet ges en
överblick över modernt tänkande när det gäller metadata, hur XML kan
tänkas påverka hur vi tar del av, och hanterar elektroniska texter både i
form av digitalt bevarande och publicering av t ex
forskningsrapporter.</summary>
<category term="XML processing" label="xmlprocessing"/>
<category term="Text encoding" label="textencoding"/>
<category term="Metadata" label="metadata"/>
<dc:date>2002</dc:date>
<updated>2006-06-11T00:21:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2003/XMLforLibrarians/</id>
</entry>
<entry>
<title>Implementering av OAI-PMH i ett bibliotekssystem -- Några ord på
vägen</title>
<link href="/2003/axiell-oai/oai-opac.pdf"/>
<summary>Syftet med denna text är att ge lite kött på benen om vad OAI-PMH
är, vad det kan användas till och hur det skulle kunna integreras i ett
bibliotekssystem. Det är inte en ersättning för andra dokument utan skall
ses som några ord på vägen för organisationer som planerar att eller är i
färd med att implementera OAI-PMH. Texten skrevs på uppdrag av
https://www.axiell.com/se/ </summary>
<updated>2009-06-09T08:08:00+01:00</updated>
<dc:date>2003</dc:date>
<category term="Harvesting" label="harvesting"/>
<category term="Metadata" label="metadata"/>
<category term="Library catalogues" label="opac"/>
<id>https://sigfrid-lundberg.se/2003/axiell-oai/oai-opac.pdf</id>
</entry>
<entry>
<title>Teknisk samverkan mellan svenska ämnesportaler - Test och
utvärdering av portalprogramvaran TKL</title>
<author>
<name>Colm Doyle</name>
</author>
<author>
<name>Jörgen Eriksson</name>
</author>
<author>
<name>Sigfrid Lundberg</name>
</author>
<author>
<name>Tomas Schönthal</name>
</author>
<summary>En utvärdering av digital library produkten Keystone DLS (TKL)</summary>
<link href="/2003/def-test/"/>
<updated>2009-06-09T08:23:00+01:00</updated>
<dc:date>2003</dc:date>
<category term="Digital collections" label="digitalcollections"/>
<category term="Metadata" label="metadata"/>
<category term="Reviews" label="reviews"/>
<category term="XML processing" label="xmlprocessing"/>
<id>https://sigfrid-lundberg.se/2003/def-test/</id>
</entry>
<entry>
<title>Vad är ett PEK?</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<summary>Här rapporterar jag en konvergent språklig utveckling mellan
forskare och internerna på Långholmen. I båda kategorierna används ordet
"pek" för att beskriva en kommunikation, bland akademiker var det på
1980-talet slang för "uppsats" och på Långholmen var det en text som
skickades med linbana längs med fängelsemurarna.</summary>
<link href="/2003/pek/"/>
<dc:date>2003</dc:date>
<updated>2009-06-09T20:25:00+01:00</updated>
<category term="Music, language & literature" label="musiclanglit"/>
<id>https://sigfrid-lundberg.se/2003/pek/</id>
</entry>
<entry>
<title>Pesistent länkning och digitala bibliotek</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<summary>Åtskillig uppmärksamhet har nyligen riktats mot problemen
förknippade med att uppnå en stabilare webb. Det konstateras, helt
korrekt, att mängder med dokument bara försvinner från sina ursprungliga
platser. Vad skall man då göra åt saken? Vad är det för grundläggande
designproblem som gör att organisationer vilka underhåller länksamlingar
av olika slag tvingas bära en allt tyngre börda?</summary>
<link href="/2003/urnar_och_digitala_bibliotek/"/>
<dc:date>2003</dc:date>
<updated>2009-06-09T20:36:00+01:00</updated>
<category term="Digital libraries" label="digitallibraries"/>
<category term="Metadata" label="metadata"/>
<id>https://sigfrid-lundberg.se/2003/urnar_och_digitala_bibliotek/</id>
</entry>
<entry>
<title>Ediffah – En digital infrastruktur för forskningsbibliotekens
arkiv- och handskriftssamlingar</title>
<link href="/2004/arkiv_bibliotek/"/>
<author>
<name>Sigfrid Lundberg</name>
</author>
<summary>Projektet syftar till att göra det möjligt att att skapa skapa
allmänt tillgängliga kataloger och arkivbeskrivningar över bibliotekens
handskriftssamlingar och personarkiv. Systemet skall vara enkelt, och
innehålla ett arbetsflöde sådant att posterna som genereras också med
automatik kan återfinnas i Nationella arkivdatabasen NAD, vårt
gemensamma bibliotekssystem LIBRIS, såväl som i lokala
databaser.</summary>
<dc:date>2004</dc:date>
<category term="Archival description" label="archivaldescription"/>
<category term="Metadata" label="metadata"/>
<category term="XML processing" label="xmlprocessing"/>
<updated>2009-06-09T20:36:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/arkiv_bibliotek/</id>
</entry>
<entry>
<title>Vad händer med biblioteket när dess samlingar finns överallt och
ingen särskild stans?</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2004/biblioteket/"/>
<summary>Biblioteken existerar för att det finns användare som är beredda
att betala för deras tjänster. Visserligen betalar man i regel via
skattesedeln och inte med sitt betalkortet, men principen är densamma.
Under vilka förutsättningar är användarna, eller deras valda
representanter, redo att betala för bibliotekens tjänster? Går det att
finansiera lokalt bibliotek när biblioteksresurserna finns överallt och
ingen särskild stans? Vilken kommun eller vilket universitet kan
finansiera ett bibliotek som bara har en katalog, men inga samlingar? Och
när allt kommer omkring, vem vill ha samlingar och varför? De är ju dyra
och tar plats.</summary>
<dc:date>2004</dc:date>
<category term="The Library" label="thelibrary"/>
<category term="Digital libraries" label="digitallibraries"/>
<category term="Internet" label="internet"/>
<updated>2009-06-09T21:01:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/biblioteket/</id>
</entry>
<entry>
<title>Vad en bra samling av digital text bör kunna</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2004/digitalisering/position.pdf"/>
<summary>En diskussion av vilka funktioner ett bra textarkiv bör, och vad
digitalisering bör innebära.</summary>
<category term="Digital libraries" label="digitallibraries"/>
<category term="Metadata" label="metadata"/>
<category term="Digital collections" label="digitalcollections"/>
<dc:date>2004</dc:date>
<updated>2009-06-09T21:10:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/digitalisering/position.pdf</id>
</entry>
<entry>
<title>Digitalisering i Lund</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<summary>En presentation om digitalisering och digitalt bevarande i
Lund. Jag tror att jag höll den vid ett stort möte på Kungl. Biblioteket i
Stockholm.</summary>
<link href="/2004/digitalisering/presentation_04-11-04.html"/>
<category term="Digital preservation" label="preservation"/>
<category term="Digitization" label="digitization"/>
<dc:date>2004</dc:date>
<updated>2009-06-09T21:45:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/digitalisering/presentation_04-11-04.html</id>
</entry>
<entry>
<title>Metadata makes the world going round - en orientering om användning
av Metadata och XML</title>
<author>
<name>Sara Kjellberg</name>
</author>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2004/metadata_makes_the_world/"/>
<summary>Sara Kjellberg och jag höll ett antal kurser om metadata
o. XML. detta är vår presentation. Vi höll det inom ramen för BTJs
kursutbud.</summary>
<category term="XML processing" label="xmlprocessing"/>
<category term="Metadata" label="metadata"/>
<dc:date>2004</dc:date>
<updated>2009-06-09T21:58:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/metadata_makes_the_world/</id>
</entry>
<entry>
<title>Vilken arkitektur ger ett nav i ett nätverk? Om
KB-utredningen</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2004/navet/navet.html"/>
<summary>En recension av KB-utredningen, SOU 2003:129</summary>
<category term="The Library" label="thelibrary"/>
<category term="Reviews" label="reviews"/>
<dc:date>2004</dc:date>
<updated>2009-06-09T22:06:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/navet/navet.html</id>
</entry>
<entry>
<title>Zornmedaljens baksida</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<summary>En diskussion av Zornmärket och
riksspelmannainstitutionen och dess roll i svensk folkmusik</summary>
<link href="/2004/zorn_etc/"/>
<category term="Music, language & literature" label="musiclanglit"/>
<dc:date>2004</dc:date>
<updated>2009-06-09T22:06:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2004/zorn_etc/</id>
</entry>
<entry>
<title>Ediffah</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2005/Oct_28/"/>
<summary>En superkort presentation om Ediffah, hållen vid
Ediffahprojektets avslutning på Kungl. Biblioteket i Stockholm den 28
oktober 2005</summary>
<category term="Metadata" label="metadata"/>
<category term="Archival description" label="archivaldescription"/>
<dc:date>2005</dc:date>
<updated>2009-06-09T22:06:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2005/Oct_28/</id>
</entry>
<entry>
<title>Digitala biblioteket</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<summary>En föreläsning om Internets historia, Det Digitala Biblioteket
och Bibliotekets historia.</summary>
<link href="/2005/bivil-digitala-bibliotek/"/>
<dc:date>2005</dc:date>
<updated>2009-06-09T22:06:00+01:00</updated>
<category term="Digital libraries" label="digitallibraries"/>
<category term="Internet" label="internet"/>
<id>https://sigfrid-lundberg.se/2005/bivil-digitala-bibliotek/</id>
</entry>
<entry>
<title>Digital preservation and digitization at Lund University (and
elsewhere in Sweden)</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2005/digital-preservation/"/>
<summary>Notes to presentation held in Lund 7 June 2005. The audience was
a group of people from China</summary>
<category term="Digital preservation" label="preservation"/>
<category term="Digitization" label="digitization"/>
<category term="Digital collections" label="digitalcollections"/>
<dc:date>2005</dc:date>
<updated>2009-06-09T22:06:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2005/digital-preservation/</id>
</entry>
<entry>
<title>Konkurrerar Google framgångsrikt med biblioteken?</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2006/google/google-vs-thelibrary.html"/>
<summary>En diskussion om Bibliotekets förhållande till sökmaskinen
Google</summary>
<category term="The Library" label="thelibrary"/>
<category term="Digital libraries" label="digitallibraries"/>
<category term="Internet" label="internet"/>
<dc:date>2006</dc:date>
<updated>2009-06-09T23:14:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2006/google/google-vs-thelibrary.html</id>
</entry>
<entry>
<title>Usage of digital resources with respect to method of publishing</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2007/hidden_web/usage_vs_dissemination_method.html"/>
<summary>I compared the usage of Digital material in relation to whether
the material was hidden away in the the library opac or published on our
web site. The result was as expected a disappointment for those who regard
the Library catalogue as an important vehicle for dissemination of digital
material</summary>
<category term="The Library" label="thelibrary"/>
<category term="Library catalogues" label="opac"/>
<category term="Digital libraries" label="digitallibraries"/>
<category term="Internet" label="internet"/>
<category term="Structural web design" label="structuralwebdesign"/>
<dc:date>2007</dc:date>
<updated>2009-06-09T23:14:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2007/hidden_web/</id>
</entry>
<entry>
<title>What do our users expect from the search field on our top
page?</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2007/search-statistics/user-expectations.html"/>
<summary>What can deduced by analyses of the search terms entered into the
search field on the home page of a large modern library? Could we possibly
regard this form as the digital library´s information desk, and the
queries as the request from its patrons? If we do that, what could we then
learn about the quality of service? In this note we do just that. We
regard the terms entered into the form as manifestation of our patrons
needs and in order to find out what they need, we have performed a
preliminary text mining exercise. We hope that this will help us designing
a new search facility that will better answer the needs of our
users.</summary>
<category term="Web indexing" label="webindexing"/>
<category term="Harvesting" label="harvesting"/>
<category term="Library catalogues" label="opac"/>
<category term="Structural web design" label="structuralwebdesign"/>
<dc:date>2007</dc:date>
<updated>2009-06-09T23:31:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2007/search-statistics/</id>
</entry>
<entry>
<title>ADL i CLARIN-DK WP5</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2008/clarin_adl/"/>
<summary>En presentation jag höll om Arkiv før dansk litteratur (ADL)</summary>
<category term="XML processing" label="xmlprocessing"/>
<category term="Text encoding" label="textencoding"/>
<category term="Digital humanities" label="ehumanities"/>
<category term="Music, language & literature" label="musiclanglit"/>
<dc:date>2008</dc:date>
<updated>2009-06-09T23:42:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2008/clarin_adl/</id>
</entry>
<entry>
<title>Digital Humanities Infrastructures</title>
<author>
<name>Sigfrid Lundberg</name>
</author>
<link href="/2008/dighum/digital_humanities.xml"/>
<summary>This note discusses different initiatives as regards providing
access to resources and tools aimed at researchers within the
humanities. Since the general breakthrough of search services like Google,
annotation and bookmarking services like del.icio.us and the like, the
attitudes towards the application of computing within the humanities has
changed. In addition, the concept of e-science has contributed to make
scholars positive to apply computing to various problems within the
humanities. Following a discussion started around year 2000, we propose
that it is possible to formalize many humanities computing tasks as
pipelines between XML processing steps.</summary>
<category term="XML processing" label="xmlprocessing"/>
<category term="Text encoding" label="textencoding"/>
<category term="Digital humanities" label="ehumanities"/>
<dc:date>2008</dc:date>
<updated>2009-06-09T23:42:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2008/dighum/digital_humanities.xml</id>
</entry>
<entry>
<title>Kortfattat Curriculum Vitae: Sigfrid Lundberg</title>
<link href="/2009/cv/cv_sv.xml"/>
<category term="About me" label="aboutme"/>
<summary>Ett CV är väldigt tråkigt att skriva</summary>
<dc:date>2009</dc:date>
<updated>2009-06-09T23:54:00+01:00</updated>
<id>https://sigfrid-lundberg.se/2009/cv/cv_sv.xml</id>
</entry>
<entry>
<title>List of publications by Sigfrid Lundberg
</title>
<link href="/2009/cv/publications.html"/>
<summary>Both peer reviewed articles, other articles and some
presentations</summary>
<dc:date>2009</dc:date>
<updated>2009-06-09T23:57:00+01:00</updated>
<category term="About me" label="aboutme"/>
<id>https://sigfrid-lundberg.se/2009/cv/publications.html</id>
</entry>
<!-- entry xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<author>
<name>Sigfrid Lundberg</name>
</author>
<title>Add footnotes to my pages a prototype text annotation
interface</title>
<link href="/footnotes/"/>
<summary>I've had a javascript based forum with thread for each entry. That
seemed boring to me. Why should users be restricted to commenting entire
articles. Why not letting them add footnotes to arbitrary positions in a
text. In this entry I experiment with this feature.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>In order to understand what's going on here, you have have to <a
href="https://sigfrid-lundberg.se/footnotes/">visit the
resource</a>. There is a some scripting going on which cannot be
syndicated. If you're reading this, you are on the wrong
page. Sorry.</p>
<h2>What you can do here</h2>
<p>There is a link at the top of this page (if you're reading the HTML
version <a href="https://sigfrid-lundberg.se/footnotes/">directly from my
site</a>, that is). It says "Show anchors". It's not a very user
friendly description of what it does, but I cannot figure out a better
term right now. If you click on it, there will appear a link after most
words in the text. These are the annotation anchors of this text.</p>
<p>When visible, the anchors appears as a clickable asterisk '*', and a
click on one of them activates the usual <a href="disqus.com">disqus.com
forum</a>. This is by some client side DOM programming.</p>
<p>Submitting a footnote works, but the script never get the
acknowledgement from the disqus.com server. I don't know why, but it
seems that the form doesn't like to live in an iframe.</p>
<p id="anchor55576b680.592539918884886">My server retrieves the
annotations from the disqus.com web services and print a list of notes
at the end of the page. This is done server side, shuch that the
discussions within the footnotes will be visible by search engines. The
place of the annotation is marked as a note with a link to the
notes. You may read the annotation when your mouse is over the link.</p>
<p>Is this a good idea? Do you like it? Should all my pages have user
supplied foot notes?</p>
<h2>How is it done</h2>
<p id="anchor55018b510.584488500647474">In order to add footnotes to a
text, we need to be able to address individual positions in it. These
positions are what I'd like to call annotation anchors. I've already
briefly discussed the problem on how to create identifiers (see a <a
href="https://sigfrid-lundberg.se/entries/2009/08/quotations/">A
quotation is much more than an extract</a>). For this entry I've
extended the xslt script such that it can <a
href="https://exslt.org/str/functions/tokenize/">tokenize</a> html text
embedded in atom entry documents. It can also add anchors (id
attributes) on each individual word (produced by the tokenize function)
in the whole text. We also implement a javascript which expose these
anchors to users, and allow them to comment more or less arbitrary point
in the text.</p>
<p id="anchor55402b10.359095368701543">There is a <strong>big</strong>
drawback in this procedure; once you have processed your text and the
anchors are there, then you <strong>must not</strong> change them. Each
word has become a resource on the internet. Please view the source of
this document, before you use the stylesheet <kbd><a
href="https://sigfrid-lundberg.se/footnotes/atom_anchor_id.xsl">atom_anchor_id.xsl</a></kbd>.</p>
<pre>
<span id="anchor54764">Would</span>
<span id="anchor54766">you</span>
<span id="anchor54768">like</span>
<span id="anchor54770">to</span>
<span id="anchor54772">edit</span>
<span id="anchor54774">this</span>
<span id="anchor54778">text?</span>
</pre>
<p>See what I mean? I cannot author prose like that in my XML
editor. You wouldn't suffer as much using WYSIWYG tools, but on the hand
it would presumably destroy the ID-strings.</p>
<p>When preparing this text, I felt that I had to prepare some
annotations of my own, and in order to do that I compiled the text,
published it, made my annotation and then pasted the ID back into the
source XML in order to be able to continue writing. Formbased proof
reading of an existing digital text wouldn't be any problem, though.</p>
<h2>Javascript & DOM scripting</h2>
<p>You can find the possible anchors by clicking on the link
<strong>Show anchors</strong>, and hide them again by clicking on
<strong>Hide anchors</strong> at the same place (there is a
toggle). There are two javascript functions handling the toggling. The
possibly most interesting, but also, the most vulnerable, feature is the
generation of javascript from rss for handling the readable
notes.</p>
<pre>
<script type="text/javascript">
var usedAnchorIds = new Array();
var noteTexts = new Array();
usedAnchorIds[0]="anchor55402b10.359095368701543";
noteTexts[0]='I had problems obtaining unique id strings from the'
+'generate-id() function in XSLT. (siggelundberg, Fri, 18 Sep 2009'
+'17:46:27 -0000)';
usedAnchorIds[1]="anchor55018b510.584488500647474";
noteTexts[1]='This is an arbitrary point in my text. I find this'
+'really suitable for adding a footnote. (siggelundberg, Fri, 18 Sep
+'2009 03:27:16 -0000)';
printNotes(usedAnchorIds,noteTexts);
</script>
</pre>
<p>The rest of the features are readily visible on this page. You have
to reaload the page to see the new footnote if I implement this I'll
will refresh those asynchronously.</p>
</div>
</content>
<dc:date>2009</dc:date>
<category label="structuralwebdesign" term="Structural web design"/>
<category label="xmlprocessing" term="XML Processing"/>
<updated>2009-09-19T15:13:49+01:00</updated>
<id>https://sigfrid-lundberg.se/footnotes/</id>
</entry -->
<entry xmlns:dc="http://purl.org/dc/elements/1.1/">
<author>
<name>Sigfrid Lundberg</name>
</author>
<title>Shooting M mount</title>
<link href="/entries/2012/01/gxrm/"/>
<summary>I have been shooting M mount since November last year.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<div style="float: left; width: 240px; margin-left: 0.2em; margin-right: 0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/6340958317/" title="100% M by Sigfrid Lundberg, on Flickr">
<img src="https://farm7.staticflickr.com/6229/6340958317_9c8b262e6c_m.jpg" width="240" height="180" alt="100% M"/>
</a>
<p><small>Figure 1. Some of my current photographic equipment. All of
it is Leica M-mount. None of it is from Leitz/Leica.</small></p>
</div>
<p>
The Leica brand is so strong that it influences peoples' secret
wishes. Many buy cameras that look or work alike. This is the Leica
envy. I too suffer from it. Last year I did something about it. Since
November last year I've been shooting M mount (See Figure 1). I have
no <strong>real</strong> Leica stuff. I could possibly afford it but
then I would have to sacrifice a lot from the other parts in my life
to get a marginal improvement of my kit. I've lost all my interest in
the rangefinder technology, but I admire the lenses. There are high
quality alternatives to Leica glass. I own lenses from Voigtländer,
Zeiss and Minolta.
</p>
<p>
I acquired the Ricoh GXR Mount A12, also known as GXR-M. That body has
some advantages. It is M mount, i.e., I can use these lenses without
adapter. It is optimized for use together with manual lenses. For
instance, Ashwin Rao <a href="https://www.stevehuffphoto.com/2011/09/28/the-ricoh-gxr-a12-m-mount-module-review-by-ashwin-rao/">describes
how he is able to do manual focus</a> fast enough for sports
photography. That impressed me, and it the factor that settled the
issue for me. Focus peaking have become even more important for me
since my eye sight has deteriorated since I ordered it.
</p>
<div style="float: right; width: 240px; margin-left: 0.2em; margin-right: 0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/6398818559/" title="20111125_001.jpg by Sigfrid Lundberg, on Flickr">
<img src="https://farm8.staticflickr.com/7003/6398818559_c72bb06b70_m.jpg" width="240" height="180" alt="20111125_001.jpg"/>
</a>
<p><small>Figure 2. I can use Nikon F glass as efficiently as Leica M
lenses.</small></p>
</div>
<p>
It also has really good image quality. <a href="https://www.luminous-landscape.com/essays/ricoh_lens_mount_a12.shtml" rel="nofollow">Sean Reid</a> was the one who convinced me that
anti-aliasing filters are detrimental for image quality.
Finally, the user interface is very well thought out. See <a href="https://www.luminous-landscape.com/reviews/cameras/ricoh_gxr_a12_field_report.shtml">Luminous Landscape's The field report</a>.
</p>
<p>
The GXR-M is a true exchangeable lens camera. You mount whatever you
have, possibly using an adapter. I have a Nikon F to Leica M adapter
(Figure 2). I works nicely, even at infinity for the lenses I've
tested.
</p>
</div>
</content>
<dc:date>2012</dc:date>
<category label="images" term="Images"/>
<category label="photography" term="Photography"/>
<category label="hardware" term="Hardware"/>
<updated>2012-01-18T19:22:19+01:00</updated>
<id>https://sigfrid-lundberg.se/entries/2012/01/gxrm/</id>
</entry><entry xmlns:dc="http://purl.org/dc/elements/1.1/">
<author>
<name>Sigfrid Lundberg</name>
</author>
<title>Voigtländer 15mm f/4.5 Super Wide Heliar: A portrait of a lens</title>
<link href="/entries/2012/07/heliar/"/>
<summary>Super-wide Heliar was the first M Mount lens I bought. I have used
it extensively, in particular on my Olympus E-P2. But I still use it over and
over again.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Super-wide Heliar was the first M Mount lens I bought. I have used it
extensively, in particular on my Olympus E-P2.</p>
<p>Ken Rockwell says <q>Although wonderful on film, this lens is awful
on the LEICA M9 because its rear nodal point is too close to the
sensor.</q> I cannot check this, because I don't own a M. There are
quite a few people who use the lens on digital Leicas, and Ken is the
only one that complains. The distance to the sensor must be the same on my cameras, but the problem might be less with smaller sensor.</p>
<p>When acquiring my current
body, the Ricoh GXR M, it all of a sudden became more super wide than it
used to. The reason for that is that the GXR has an APS-C sensor and the
PEN a μ4/3.</p>
<p>This triggerd my decision to buy the <a href="/entries/2012/07/biogon/">Zeiss Biogon T* 2,8/25 ZM</a>, which
made me has made me less inclined to mount my Heliar. Still, it is a
much wider lens and the two have so different personalities. Here are my
<a href="https://www.flickriver.com/photos/sigfridlundberg/tags/heliar15mmf45/">
most interesting shots taken with Heliar</a>. Find below a more personal
sample.</p>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/5570621256/" title="P3255831.tif by Sigfrid Lundberg, on Flickr"><img src="https://farm6.staticflickr.com/5030/5570621256_d313f77431_z.jpg" width="100%" alt="P3255831.tif"/></a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/7433953100/" title="R0014480.JPG by Sigfrid Lundberg, on Flickr">
<img src="https://farm6.staticflickr.com/5275/7433953100_814581e2dc_z.jpg" width="100%" alt="R0014480.JPG"/>
</a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/6137358256/" title="P9019607.tif by Sigfrid Lundberg, on Flickr"><img src="https://farm7.staticflickr.com/6207/6137358256_f535bbce2a_z.jpg" width="100%" alt="P9019607.tif"/></a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/5126351059/" title="PA262588_cropped.JPG by Sigfrid Lundberg, on Flickr"><img src="https://farm2.staticflickr.com/1137/5126351059_f65319c19e_z.jpg" width="100%" alt="PA262588_cropped.JPG"/></a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/5277928790/" title="PC203490_bw.JPG by Sigfrid Lundberg, on Flickr"><img src="https://farm6.staticflickr.com/5243/5277928790_cd84ac5999_z.jpg" width="100%" alt="PC203490_bw.JPG"/></a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/5653788545/" title="P4256929.tif by Sigfrid Lundberg, on Flickr"><img src="https://farm6.staticflickr.com/5023/5653788545_6a0644d287_z.jpg" width="100%" alt="P4256929.tif"/></a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/6026180944/" title="P7278952.tiff by Sigfrid Lundberg, on Flickr"><img src="https://farm7.staticflickr.com/6075/6026180944_57f3b7cced_z.jpg" width="100%" alt="P7278952.tiff"/></a>
</div>
<div style="width: 95%;margin:0.5em;">
<a href="https://www.flickr.com/photos/sigfridlundberg/5663617115/" title="P4277145.tif by Sigfrid Lundberg, on Flickr"><img src="https://farm6.staticflickr.com/5070/5663617115_59d213b290_z.jpg" width="100%" alt="P4277145.tif"/></a>
</div>
</div>
</content>
<dc:date>2012</dc:date>
<category label="images" term="Images"/>
<category label="lenses" term="Lenses"/>
<category label="photography" term="Photography"/>
<updated>2012-11-18T12:53:24+01:00</updated>
<id>https://sigfrid-lundberg.se/entries/2012/07/heliar/</id>
</entry><entry xmlns:dc="http://purl.org/dc/elements/1.1/">
<author>
<name>Sigfrid Lundberg</name>
</author>
<title>Biogon T* 2,8/25 ZM: Portrait of a lens</title>
<link href="/entries/2012/07/biogon/"/>