www-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

www/audio-video/workshop av-create convert-entr...


From: Therese Godefroy
Subject: www/audio-video/workshop av-create convert-entr...
Date: Fri, 11 Nov 2022 14:35:54 -0500 (EST)

CVSROOT:        /webcvs/www
Module name:    www
Changes by:     Therese Godefroy <th_g> 22/11/11 14:35:54

Modified files:
        audio-video/workshop: av-create convert-entry entry-start 
                              media.rec 

Log message:
        Change the naame of 2 fields: From > Year and Subtitle > MoreInfo.

CVSWeb URLs:
http://web.cvs.savannah.gnu.org/viewcvs/www/audio-video/workshop/av-create?cvsroot=www&r1=1.4&r2=1.5
http://web.cvs.savannah.gnu.org/viewcvs/www/audio-video/workshop/convert-entry?cvsroot=www&r1=1.7&r2=1.8
http://web.cvs.savannah.gnu.org/viewcvs/www/audio-video/workshop/entry-start?cvsroot=www&r1=1.1&r2=1.2
http://web.cvs.savannah.gnu.org/viewcvs/www/audio-video/workshop/media.rec?cvsroot=www&r1=1.2&r2=1.3

Patches:
Index: av-create
===================================================================
RCS file: /webcvs/www/www/audio-video/workshop/av-create,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- av-create   11 Nov 2022 17:30:39 -0000      1.4
+++ av-create   11 Nov 2022 19:35:50 -0000      1.5
@@ -64,17 +64,18 @@
   exit 1
 fi
 
-# Fill the empty fields: by, from, formatted date, lang, length, media.
+# Fill the empty fields: by, year, formatted date, lang, length, media.
 
 id=${Id#* }
 if [[ $id =~ "rms" ]]; then by="Richard Stallman"; fi
 
 date=$(echo $id |
  sed 's,^[a-z]\+-\([0-9]\{4\}\)\([0-9]\{2\}\)\([0-9]\{2\}\)[0-9],\1-\2-\3,')
-from=${date%%-*}
+year=${date%%-*}
 
+month=${date%-00}
 if test ! "${date%00-00}" = "$date"; then
-  fdate=$(date "+%Y" -d "$from")
+  fdate=$(date "+%Y" -d "$year")
 elif test ! "${date%-00}" = "$date"; then
   date="${date/-00/-01}"
   fdate=$(date "+%B %Y" -d "$date")
@@ -100,13 +101,11 @@
 if ! echo $duration | grep -q '^[0-9]:[0-9]\{1,2\}:[0-9]\{1,2\}$'; then
   echo "!!! The Duration field has wrong data: $duration; exit"
   exit 1
-else
+fi
+if
   h=${duration%%:*} && h=${h##0}
   m=${duration%:*} && m=${m#*:} && m=${m##0}
   s=${duration##*:} && s=${s##0}
-  echo "hours = $h"
-  echo "minutes = $m"
-  echo "seconds = $s"
   errors=""
   duration=""
   if [ $h -ne 0 ]; then
@@ -149,9 +148,9 @@
   fi
 fi
 
-awk -v from="$from" -v lang="$lang" -v tlength="$tlength" -v media="$media" \
+awk -v year="$year" -v lang="$lang" -v tlength="$tlength" -v media="$media" \
     -v by="$by" -v fdate="$fdate" -v duration="$duration" '
-  /From:/ { $2 = from }
+  /Year:/ { $2 = year }
   /Lang:/ { $2 = lang }
   /Length:/ { $2 = tlength }
   /Media:/ { $2 = media }

Index: convert-entry
===================================================================
RCS file: /webcvs/www/www/audio-video/workshop/convert-entry,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- convert-entry       11 Nov 2022 17:58:53 -0000      1.7
+++ convert-entry       11 Nov 2022 19:35:51 -0000      1.8
@@ -3,7 +3,7 @@
 # Called from avgen and av_add.
 
 # Public domain.
-# Last updated 2022-11-11.
+# Last updated 2022-11-10.
 # Please report bugs to thg@gnu.org or ineiev@gnu.org.
 
 
@@ -18,7 +18,7 @@
   sed -n '/^By:$/p; /^Description:$/p; /^[A-Za-z]\+:$/d; /^$/d; p' $tmp > $1
 
   n=1
-  for f in Id From Lang Type Length Media; do
+  for f in Id Year Lang Type Length Media; do
     data[n]=$(grep "^${f}:" $1 | sed "s,^${f}: ,,")
     n=$(( $n + 1 ))
   done
@@ -26,7 +26,7 @@
     sed 's,^.\+: \([-a-zA-Z]\+\)\( .*\)\?$,\1,')
 
   id=${data[1]}
-  from=${data[2]}
+  year=${data[2]}
   lang=${data[3]}
   type=${data[4]}
   tlength=${data[5]}
@@ -61,9 +61,9 @@
   grep -q '^Introductory: [y|Y]' $1 &&
     intro='<span class="introductory">*</span>\n  '
 
-  subtitle_ssi=''
-  grep -q '^Subtitle:' $1 &&
-    subtitle_ssi='<!--#echo encoding=\"none\" var=\"SUBTITLE\" -->'
+  moreinfo_ssi=''
+  grep -q '^MoreInfo:' $1 &&
+    moreinfo_ssi='<!--#echo encoding=\"none\" var=\"MOREINFO\" -->'
 
   note_ssi=''
   grep -q '^Note:' $1 &&
@@ -78,7 +78,7 @@
 
   sed '/^Id:/,/^Media:/d
        s,^Title: ,     <!--#set var="TITLE" value=",
-       s,^Subtitle: ," --><!--#set var="SUBTITLE" value=",
+       s,^MoreInfo: ," --><!--#set var="MOREINFO" value=",
        /^By:/i\
 " --><!--#set var="METADATA" value="
        /^Duration: /a\
@@ -88,7 +88,7 @@
        s,^Description:," --><!--#set var="DESCRIPTION" value=",
       ' $1 > $2
 
-  printf "\" --><!--#if expr=\"!\$FROM || \$FROM = $from\"\n\
+  printf "\" --><!--#if expr=\"!\$YEAR || \$YEAR = $year\"\n\
   --><!--#if expr=\"!\$LANG || \$LANG = $lang\"\n\
   --><!--#if expr=\"!\$TYPE || \$TYPE = $type\"\n\
   --><!--#if expr=\"!\$LENGTH || \$LENGTH = $tlength\"\n\
@@ -98,10 +98,10 @@
 <div class=\"item\" id=\"$id\">\n\
 ${details}\n\
 <summary><span>\n\
-  ${intro}<a href=\"?from=$from\">$from</a>  <a 
href=\"?lang=$lang\">$language</a>\n\
+  ${intro}<a href=\"?year=$year\">$year</a>  <a 
href=\"?lang=$lang\">$language</a>\n\
   <a href=\"?type=$type\">$type</a> <a href=\"?length=$tlength\">$Length</a>\n\
   ${video_b} ${audio_b} ${transcript_b} ${subtitles_b}<br />\n\
-  <b><!--#echo encoding=\"none\" var=\"TITLE\" -->  </b>${subtitle_ssi}\
+  <b><!--#echo encoding=\"none\" var=\"TITLE\" -->  </b>${moreinfo_ssi}\
 </span></summary>\n\
 <p class=\"metadata\"><!--#echo encoding=\"none\" var=\"METADATA\" --></p>\n\
 <p class=\"licensing\"><!--#echo encoding=\"none\" var=\"LICENSING\" --></p>\n\

Index: entry-start
===================================================================
RCS file: /webcvs/www/www/audio-video/workshop/entry-start,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- entry-start 9 Nov 2022 17:54:50 -0000       1.1
+++ entry-start 11 Nov 2022 19:35:51 -0000      1.2
@@ -16,20 +16,20 @@
 ##          1 MiB = 1.04858 MB              1 GiB = 1.07374 GB
 
 ## Public domain.
-## Last updated 2022-11-09.
+## Last updated 2022-11-11.
 ## Please suggest improvements on <audio-video@gnu.org>.
 
 
 *Id:               ## (1)
 Introductory:      ## (2)
 Open:              ## (3)
-#From:
+#Year:
 #Lang:
 *Type:             ## (4)
 #Length:
 #Media:
 *Title:
-Subtitle:          ## (5)
+MoreInfo:          ## (5)
 *By:               ## (6)
 Event:
 Hosts:
@@ -63,7 +63,7 @@
 ## (2)  'yes' if this is an introductory video.
 ## (3)  'yes' if <details> has the "open" attribute.
 ## (4)  Only one of ( speech, interview, round-table, historical, movie, extra 
).
-## (5)  Within parentheses: city where speech was given in person (+ country
+## (5)  Within parentheses: city where the speech was given in person (+ 
country
 ##      or state if ambiguous), event for which a recording was made, etc.
 ## (6)  Only if different from Richard Stallman.
 ## (7)  No punctuation after the language if there is extra text.

Index: media.rec
===================================================================
RCS file: /webcvs/www/www/audio-video/workshop/media.rec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- media.rec   11 Nov 2022 14:05:12 -0000      1.2
+++ media.rec   11 Nov 2022 19:35:51 -0000      1.3
@@ -6,14 +6,14 @@
 %rec: Entry
 %doc: Entries in /audio-video/media.html
 %key: Id
-%mandatory: Title By From Lang Type Length Media Date Language Duration
+%mandatory: Title By Year Lang Type Length Media Date Language Duration
 + License Files
-%allowed: Subtitle Event Organizer Hosts RecordedBy ThanksTo Location
+%allowed: MoreInfo Event Organizer Hosts RecordedBy ThanksTo Location
 + Copyright Note Description Introductory Open
 %type: Id regexp /^[a-z]+-[0-9]{9}$/
 %type: Introductory bool
 %type: Open bool
-%type: From regexp /^[0-9]{4}$/
+%type: Year regexp /^[0-9]{4}$/
 %type: Lang regexp /^[a-z]{2}(-[a-z]{2})?$/
 %type: Type enum speech interview round-table historical movie extra
 %type: Length enum long medium short
@@ -23,13 +23,13 @@
 # ADD NEW ENTRY HERE
 
 Id: rms-202209280
-From: 2022
+Year: 2022
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Libre Software
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 Organizer: New School
 ThanksTo: LispNYC and The Graduate Center Digital Initiatives (City
@@ -52,13 +52,13 @@
 Id: rms-201404070
 Introductory: yes
 Open: yes
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: medium
 Media: video subtitles
 Title: Introduction to Free Software and the Liberation of Cyberspace
-Subtitle: (Geneva)
+MoreInfo: (Geneva)
 By: Richard Stallman
 Event: TEDx talk
 Date: April 7, 2014
@@ -109,7 +109,7 @@
 
 Id: rms-201303160
 Introductory: yes
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: short
@@ -143,7 +143,7 @@
 
 Id: rms-201009140
 Introductory: yes
-From: 2010
+Year: 2010
 Lang: en
 Type: speech
 Length: short
@@ -165,7 +165,7 @@
 
 Id: rms-200906040
 Introductory: yes
-From: 2009
+Year: 2009
 Lang: es
 Type: speech
 Length: medium
@@ -188,7 +188,7 @@
 
 Id: rms-200904140
 Introductory: yes
-From: 2009
+Year: 2009
 Lang: es
 Type: speech
 Length: medium
@@ -210,7 +210,7 @@
 
 Id: rms-200903210
 Introductory: yes
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: medium
@@ -232,7 +232,7 @@
 
 Id: rms-200807150
 Introductory: yes
-From: 2008
+Year: 2008
 Lang: es
 Type: speech
 Length: short
@@ -278,7 +278,7 @@
 + the principles of Free Software and how they connect to education.</p>
 
 Id: rms-202204130
-From: 2022
+Year: 2022
 Lang: en
 Type: speech
 Length: long
@@ -301,7 +301,7 @@
 Description:
 
 Id: rms-202201260
-From: 2022
+Year: 2022
 Lang: en
 Type: speech
 Length: long
@@ -330,7 +330,7 @@
 + Copyleft?</a></p>
 
 Id: rms-202110230
-From: 2021
+Year: 2021
 Lang: es
 Type: speech
 Length: long
@@ -356,7 +356,7 @@
 Description:
 
 Id: rms-202109180
-From: 2021
+Year: 2021
 Lang: en
 Type: speech
 Length: long
@@ -378,7 +378,7 @@
 Description:
 
 Id: rms-202107170
-From: 2021
+Year: 2021
 Lang: en
 Type: speech
 Length: long
@@ -403,7 +403,7 @@
 Description:
 
 Id: rms-202105310
-From: 2021
+Year: 2021
 Lang: en
 Type: interview
 Length: long
@@ -426,7 +426,7 @@
 Description:
 
 Id: rms-202105100
-From: 2021
+Year: 2021
 Lang: en
 Type: speech
 Length: long
@@ -449,7 +449,7 @@
 Description:
 
 Id: rms-202104240
-From: 2021
+Year: 2021
 Lang: es
 Type: interview
 Length: long
@@ -472,7 +472,7 @@
 Description:
 
 Id: rms-202104140
-From: 2021
+Year: 2021
 Lang: es
 Type: round-table
 Length: long
@@ -494,7 +494,7 @@
 Description:
 
 Id: rms-202103160
-From: 2021
+Year: 2021
 Lang: es
 Type: speech
 Length: long
@@ -516,7 +516,7 @@
 Description:
 
 Id: rms-202103150
-From: 2021
+Year: 2021
 Lang: es
 Type: round-table
 Length: long
@@ -538,13 +538,13 @@
 Description:
 
 Id: sepulved-202103140
-From: 2021
+Year: 2021
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: La era de la digitalización en las aulas
-Subtitle: (València)
+MoreInfo: (València)
 By: Javier Sepúlveda
 Organizer: Asociación GNU/Linux Valencia
 Date: March 14, 2021
@@ -561,7 +561,7 @@
 Description:
 
 Id: rms-202103110
-From: 2021
+Year: 2021
 Lang: en
 Type: interview
 Length: long
@@ -584,7 +584,7 @@
 Description:
 
 Id: rms-202103100
-From: 2021
+Year: 2021
 Lang: en
 Type: speech
 Length: long
@@ -606,13 +606,13 @@
 Description:
 
 Id: rms-202012040
-From: 2020
+Year: 2020
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Why Operating Systems and Other Software Should Be Free
-Subtitle: (Waterloo, Canada)
+MoreInfo: (Waterloo, Canada)
 By: Richard Stallman
 Organizer: University of Waterloo, Canada (for students)
 Date: December 4, 2020
@@ -629,13 +629,13 @@
 Description:
 
 Id: rms-201907150
-From: 2019
+Year: 2019
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Are We Facing Surveillance Like in China?
-Subtitle: (Frankfurt)
+MoreInfo: (Frankfurt)
 By: Richard Stallman
 Date: July 15, 2019
 Location: Johann Wolfgang Goethe-Universität,
@@ -652,13 +652,13 @@
 Description:
 
 Id: rms-201905140
-From: 2019
+Year: 2019
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free software: Ethics and freedom in a digital age
-Subtitle: (Zurich)
+MoreInfo: (Zurich)
 By: Richard Stallman
 Date: May 14, 2019
 Location: Eidgenössische Technische Hochschule Zürich (Swiss
@@ -675,13 +675,13 @@
 Description:
 
 Id: rms-201905090
-From: 2019
+Year: 2019
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright, Freedom, and Privacy
-Subtitle: (Copenhagen)
+MoreInfo: (Copenhagen)
 By: Richard Stallman
 Date: May 9, 2019
 Location: Københavns Biocenter, Københavns Universitet,
@@ -698,13 +698,13 @@
 Description:
 
 Id: rms-201903290
-From: 2019
+Year: 2019
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Le logiciel libre face à l'informatique
-Subtitle: (Rennes)
+MoreInfo: (Rennes)
 By: Richard Stallman
 Date: March 29, 2019
 Location: Université de Rennes 1, Rennes, France
@@ -720,13 +720,13 @@
 Description:
 
 Id: rms-201902110
-From: 2019
+Year: 2019
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Bozeman, MT)
+MoreInfo: (Bozeman, MT)
 By: Richard Stallman
 Date: February 11, 2019
 Location: Montana State University, Bozeman, MT
@@ -742,13 +742,13 @@
 Description:
 
 Id: rms-201806040
-From: 2018
+Year: 2018
 Lang: en
 Type: interview
 Length: long
 Media: video
 Title: Computing, Freedom and Privacy
-Subtitle: (Pato Branco, Brazil)
+MoreInfo: (Pato Branco, Brazil)
 By: Richard Stallman
 Hosts: Diário do Sudoeste
 Date: June 4, 2018
@@ -765,13 +765,13 @@
 Description:
 
 Id: rms-201710100
-From: 2017
+Year: 2017
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Timisoara)
+MoreInfo: (Timisoara)
 By: Richard Stallman
 Date: October 10, 2017
 Location: Universitatea Politehnica Timișoara, Romania
@@ -789,13 +789,13 @@
 Description:
 
 Id: rms-201708170
-From: 2017
+Year: 2017
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software: Freedom, Privacy, Sovereignty
-Subtitle: (Boston)
+MoreInfo: (Boston)
 By: Richard Stallman
 Event: FOSS4G (International Conference for Free and Open
 +     Source Software for Geospatial)
@@ -815,13 +815,13 @@
 Description:
 
 Id: rms-201706071
-From: 2017
+Year: 2017
 Lang: es
 Type: speech
 Length: long
 Media: audio
 Title: El software libre y tu libertad
-Subtitle: (Festram, Santa Fe, Argentina)
+MoreInfo: (Festram, Santa Fe, Argentina)
 By: Richard Stallman
 Date: June 7, 2017
 Location: Festram (Federación de Sindicatos de Trabajadores Municipales), 
Santa Fe, Argentina
@@ -837,13 +837,13 @@
 Description:
 
 Id: rms-201706070
-From: 2017
+Year: 2017
 Lang: es
 Type: speech
 Length: long
 Media: audio
 Title: El software libre y tu libertad
-Subtitle: (Legislatura, Santa Fe, Argentina)
+MoreInfo: (Legislatura, Santa Fe, Argentina)
 By: Richard Stallman
 Date: June 7, 2017
 Location: Legislatura, Santa Fe, Argentina
@@ -859,13 +859,13 @@
 Description:
 
 Id: rms-201705290
-From: 2017
+Year: 2017
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Belo Horizonte)
+MoreInfo: (Belo Horizonte)
 By: Richard Stallman
 Date: May 29, 2017
 Location: UFMG (Universidade Federal de Minas Gerais),
@@ -888,13 +888,13 @@
 Description:
 
 Id: rms-201702140
-From: 2017
+Year: 2017
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software, Your Freedom, Your Privacy
-Subtitle: (Cologne)
+MoreInfo: (Cologne)
 By: Richard Stallman
 Date: February 14, 2017
 Location: Universität Köln, Cologne, Germany
@@ -910,13 +910,13 @@
 Description:
 
 Id: rms-201702080
-From: 2017
+Year: 2017
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Le logiciel libre, la conception libre du matériel
-Subtitle: (Rennes)
+MoreInfo: (Rennes)
 By: Richard Stallman
 Date: February 8, 2017
 Location: Université de Rennes 1, Rennes, France
@@ -944,13 +944,13 @@
 Description:
 
 Id: rms-201702010
-From: 2017
+Year: 2017
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Grand Rapids)
+MoreInfo: (Grand Rapids)
 By: Richard Stallman
 Date: February 1, 2017
 Location: Calvin College, Grand Rapids, MI
@@ -966,13 +966,13 @@
 Description:
 
 Id: rms-201701300
-From: 2017
+Year: 2017
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Computing, Freedom, and Privacy
-Subtitle: (Kalamazoo)
+MoreInfo: (Kalamazoo)
 By: Richard Stallman
 Date: January 30, 2017
 Location: Kalamazoo College, Kalamazoo, MI
@@ -988,13 +988,13 @@
 Description:
 
 Id: rms-201611290
-From: 2016
+Year: 2016
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: El software libre en la ética y en la práctica
-Subtitle: (Salamanca)
+MoreInfo: (Salamanca)
 By: Richard Stallman
 Date: November 29, 2016
 Location: Universidad de Salamanca, Salamanca, España
@@ -1010,13 +1010,13 @@
 Description:
 
 Id: rms-201608110
-From: 2016
+Year: 2016
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Un autre monde numérique est nécessaire&#8239;: avec le logiciel 
libre, il devient possible&#8239;!
-Subtitle: (Montréal)
+MoreInfo: (Montréal)
 By: Richard Stallman et Marianne Corvellec
 Event: Forum social mondial
 Hosts: Geneviève Lajeunesse
@@ -1040,13 +1040,13 @@
 Description:
 
 Id: rms-201605190
-From: 2016
+Year: 2016
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: Software Libre en los gobiernos
-Subtitle: (Alicante)
+MoreInfo: (Alicante)
 By: Richard Stallman
 Date: May 19, 2016
 Location: Escuela Politécnica Superior, Universidad de
@@ -1063,13 +1063,13 @@
 Description:
 
 Id: rms-201605160
-From: 2016
+Year: 2016
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: Software Libre en los gobiernos
-Subtitle: (València)
+MoreInfo: (València)
 By: Richard Stallman
 Date: May 16, 2016
 Location: Universitat Politècnica de València, València,
@@ -1086,13 +1086,13 @@
 Description:
 
 Id: rms-201604160
-From: 2016
+Year: 2016
 Lang: fr
 Type: speech
 Length: long
 Media: video transcript
 Title: Pour une société numérique libre
-Subtitle: (Choisy-le-Roi)
+MoreInfo: (Choisy-le-Roi)
 By: Richard Stallman
 Date: April 16, 2016
 Location: Médiathèque Aragon, Choisy-le-Roi, France
@@ -1110,13 +1110,13 @@
 Description:
 
 Id: rms-201604150
-From: 2016
+Year: 2016
 Lang: fr
 Type: speech
 Length: long
 Media: audio
 Title: Le logiciel libre et les libertés numériques
-Subtitle: (Nantes)
+MoreInfo: (Nantes)
 By: Richard Stallman
 Date: April 15, 2016
 Location: École nationale supérieure d'architecture, Nantes,
@@ -1139,13 +1139,13 @@
 Description:
 
 Id: rms-201604110
-From: 2016
+Year: 2016
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Athens, Greece)
+MoreInfo: (Athens, Greece)
 By: Richard Stallman
 Date: April 11, 2016
 Location: National Hellenic Research Foundation, Athens, Greece
@@ -1161,13 +1161,13 @@
 Description:
 
 Id: rms-201603160
-From: 2016
+Year: 2016
 Lang: fr
 Type: speech
 Length: long
 Media: audio
 Title: Logiciel libre et liberté numérique
-Subtitle: (Québec)
+MoreInfo: (Québec)
 By: Richard Stallman
 Date: March 16, 2016
 Location: Université Laval, Québec, Canada
@@ -1183,13 +1183,13 @@
 Description:
 
 Id: rms-201602080
-From: 2016
+Year: 2016
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Zürich)
+MoreInfo: (Zürich)
 By: Richard Stallman
 Date: February 8, 2016
 Location: ImpactHub Colab, Zürich, Switzerland
@@ -1205,13 +1205,13 @@
 Description:
 
 Id: rms-201601290
-From: 2016
+Year: 2016
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free/Libre/Vrije Software: The Goal and the Path
-Subtitle: (Brussels)
+MoreInfo: (Brussels)
 By: Richard Stallman
 Event: FOSDEM Fringe
 Date: January 29, 2016
@@ -1228,13 +1228,13 @@
 Description:
 
 Id: rms-201510240
-From: 2015
+Year: 2015
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Seattle)
+MoreInfo: (Seattle)
 By: Richard Stallman
 Event: SeaGL, the 2015 Seattle GNU/Linux Conference
 Date: October 24, 2015
@@ -1256,13 +1256,13 @@
 Description:
 
 Id: rms-201510170
-From: 2015
+Year: 2015
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Kent, OH)
+MoreInfo: (Kent, OH)
 By: Richard Stallman
 Date: October 17, 2015
 Location: Kent State University, Kent, OH
@@ -1278,13 +1278,13 @@
 Description:
 
 Id: rms-201507100
-From: 2015
+Year: 2015
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Karlsruhe)
+MoreInfo: (Karlsruhe)
 By: Richard Stallman
 Date: July 10, 2015
 Location: Gerthsen-Hörsaal, Karlsruhe, Germany
@@ -1308,13 +1308,13 @@
 Description:
 
 Id: rms-201507090
-From: 2015
+Year: 2015
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Frankfurt)
+MoreInfo: (Frankfurt)
 By: Richard Stallman
 Date: July 9, 2015
 Location: Johann Wolfgang Goethe-Universität, Frankfurt,
@@ -1331,13 +1331,13 @@
 Description:
 
 Id: rms-201505270
-From: 2015
+Year: 2015
 Lang: en
 Type: speech
 Length: long
 Media: video audio
 Title: What is Free Software?
-Subtitle: (Chania, Greece)
+MoreInfo: (Chania, Greece)
 By: Richard Stallman
 Date: May 27, 2015
 Location: Technical University of Crete, Chania, Greece
@@ -1355,13 +1355,13 @@
 Description:
 
 Id: rms-201505120
-From: 2015
+Year: 2015
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Logiciels libres et l'éducation
-Subtitle: (Brest)
+MoreInfo: (Brest)
 By: Richard Stallman
 Date: May 12, 2015
 Location: Faculté des lettres et sciences humaines Segalen,
@@ -1390,13 +1390,13 @@
 Description:
 
 Id: rms-201503160
-From: 2015
+Year: 2015
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Urbana)
+MoreInfo: (Urbana)
 By: Richard Stallman
 Date: March 16, 2015
 Location: University of Illinois ECE Building,
@@ -1413,13 +1413,13 @@
 Description:
 
 Id: rms-201412290
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video audio
 Title: Freedom in Your Computer and in the Net
-Subtitle: (Hamburg)
+MoreInfo: (Hamburg)
 By: Richard Stallman
 Event: 31C3 (31st Chaos Communication Congress)
 Date: December 29, 2014
@@ -1443,13 +1443,13 @@
 Description:
 
 Id: rms-201412040
-From: 2014
+Year: 2014
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: Por una sociedad digital libre
-Subtitle: (Madrid)
+MoreInfo: (Madrid)
 By: Richard Stallman
 Date: December 4, 2014
 Location: Facultad de Informática de la Universidad
@@ -1466,13 +1466,13 @@
 Description:
 
 Id: rms-201411210
-From: 2014
+Year: 2014
 Lang: fr
 Type: speech
 Length: long
 Media: audio
 Title: Internet, le logiciel libre et l'entreprise, libertés sans frontière
-Subtitle: (Paris)
+MoreInfo: (Paris)
 By: Richard Stallman
 Date: November 21, 2014
 Location: Hôtel Le Marois, Paris, France
@@ -1488,13 +1488,13 @@
 Description:
 
 Id: rms-201411070
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Portland)
+MoreInfo: (Portland)
 By: Richard Stallman
 Date: November 7, 2014
 Location: Hoffman Hall, Portland State University, Portland, OR
@@ -1518,13 +1518,13 @@
 Description:
 
 Id: rms-201410170
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Libre Software, Libre Education
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 Date: October 17, 2014
 Location: Butler Library, Columbia University, New York, NY
@@ -1540,13 +1540,13 @@
 Description:
 
 Id: rms-201410140
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Should We Have More Surveillance Than the USSR?
-Subtitle: (Athens, GA)
+MoreInfo: (Athens, GA)
 By: Richard Stallman
 Date: October 14, 2014
 Location: University of Georgia Chapel, Athens, GA
@@ -1564,13 +1564,13 @@
 Description:
 
 Id: rms-201407060
-From: 2014
+Year: 2014
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Le logiciel libre et ta liberté
-Subtitle: (Montpellier)
+MoreInfo: (Montpellier)
 By: Richard Stallman
 Event: 15èmes RMLL
 Date: July 6, 2014
@@ -1587,13 +1587,13 @@
 Description:
 
 Id: rms-201405110
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Nantou, Taiwan)
+MoreInfo: (Nantou, Taiwan)
 By: Richard Stallman
 Date: May 11, 2014
 Location: National Chi Nan University, Puli, Nantou, Taiwan
@@ -1609,13 +1609,13 @@
 Description:
 
 Id: rms-201405100
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Taipei, Taiwan)
+MoreInfo: (Taipei, Taiwan)
 By: Richard Stallman
 Date: May 10, 2014
 Location: College of Law, National Taiwan University,
@@ -1638,13 +1638,13 @@
 Description:
 
 Id: rms-201405090
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Hsinchu, Taiwan)
+MoreInfo: (Hsinchu, Taiwan)
 By: Richard Stallman
 Date: May 9, 2014
 Location: National Tsing Hua University Library, Hsinchu,
@@ -1667,13 +1667,13 @@
 Description:
 
 Id: rms-201403260
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Milan)
+MoreInfo: (Milan)
 By: Richard Stallman
 Date: March 26, 2014
 Location: Talent Garden Milano, Milan, Italy
@@ -1695,13 +1695,13 @@
 Description:
 
 Id: rms-201402200
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 Date: February 20, 2014
 Location: The Great Hall, Cooper Union's Foundation
@@ -1718,13 +1718,13 @@
 Description:
 
 Id: rms-201402110
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Happy Hacking Day 2014
-Subtitle: (Helsinki)
+MoreInfo: (Helsinki)
 By: Richard Stallman
 Event: Happy Hacking Day 2014
 Date: February 11, 2014
@@ -1751,13 +1751,13 @@
 Description:
 
 Id: rms-201402100
-From: 2014
+Year: 2014
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Helsinki)
+MoreInfo: (Helsinki)
 By: Richard Stallman
 Date: February 10, 2014
 Location: Aalto University Design Factory, Helsinki, Finland
@@ -1771,13 +1771,13 @@
 Description:
 
 Id: rms-201311290
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: A Free Digital Society
-Subtitle: (Lincoln, UK)
+MoreInfo: (Lincoln, UK)
 By: Richard Stallman
 Date: November 29, 2013
 Location: Jackson Lecture Theatre, Lincoln, UK
@@ -1793,13 +1793,13 @@
 Description:
 
 Id: rms-201311010
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Dublin)
+MoreInfo: (Dublin)
 By: Richard Stallman
 Date: November 1, 2013
 Location: Trinity College, Dublin, Ireland
@@ -1815,13 +1815,13 @@
 Description:
 
 Id: johns-201310030
-From: 2013
+Year: 2013
 Lang: en
 Type: interview
 Length: short
 Media: video
 Title: John Sullivan interviewed at the Open World Forum
-Subtitle: (Montrouge, France)
+MoreInfo: (Montrouge, France)
 By:
 Event: Open World Forum
 Date: October 3, 2013
@@ -1837,13 +1837,13 @@
 Description:
 
 Id: rms-201309281
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: GNU 30-year anniversary celebration &ndash; Richard Stallman
-Subtitle: (Cambridge, MA)
+MoreInfo: (Cambridge, MA)
 By: Richard Stallman
 Event: GNU-30
 Hosts: John Sullivan and FSF staff
@@ -1867,13 +1867,13 @@
 Description:
 
 Id: johns-201309280
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: GNU 30-year anniversary celebration &ndash; John Sullivan
-Subtitle: (Cambridge, MA)
+MoreInfo: (Cambridge, MA)
 By: John Sullivan
 Event: GNU-30
 Date: September 28, 2013
@@ -1896,13 +1896,13 @@
 Description: <p>This speech features a presentation of some hackaton 
projects.</p>
 
 Id: rms-201309210
-From: 2013
+Year: 2013
 Lang: fr
 Type: speech
 Length: long
 Media: video audio
 Title: Trentième anniversaire du projet GNU
-Subtitle: (Saint-Denis)
+MoreInfo: (Saint-Denis)
 By: Richard Stallman
 Event: GNU-30
 Date: September 21, 2013
@@ -1924,13 +1924,13 @@
 Description:
 
 Id: rms-201309190
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Sophia-Antipolis, France)
+MoreInfo: (Sophia-Antipolis, France)
 By: Richard Stallman
 Date: September 19, 2013
 Location: Eurecom &amp; Telecom ParisTech, SophiaTech
@@ -1947,13 +1947,13 @@
 Description:
 
 Id: rms-201308050
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 Date: August 5, 2013
 Location: New York City University, New York, NY
@@ -1969,13 +1969,13 @@
 Description:
 
 Id: rms-201308030
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: short
 Media: video transcript
 Title: Richard Stallman inducted into the Internet Hall of Fame &ndash; his 
short acceptance speech
-Subtitle: (Berlin)
+MoreInfo: (Berlin)
 By: Richard Stallman
 Date: August 3, 2013
 Location: InterContinental Hotel, Berlin, Germany
@@ -1998,13 +1998,13 @@
 + </p>
 
 Id: rms-201307100
-From: 2013
+Year: 2013
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Le développement d'Internet et les libertés
-Subtitle: (Bruxelles)
+MoreInfo: (Bruxelles)
 By: Richard Stallman
 Event: 14èmes RMLL
 Date: July 10, 2013
@@ -2021,13 +2021,13 @@
 Description:
 
 Id: rms-201305290
-From: 2013
+Year: 2013
 Lang: es
 Type: speech
 Length: long
 Media: video audio
 Title: El movimiento del software libre
-Subtitle: (Ciudad Madero, Mexico)
+MoreInfo: (Ciudad Madero, Mexico)
 By: Richard Stallman
 Date: May 29, 2013
 Location: Instituto Tecnológico de Ciudad Madero,
@@ -2058,13 +2058,13 @@
 Description:
 
 Id: rms-201303130
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Warsaw)
+MoreInfo: (Warsaw)
 By: Richard Stallman
 Date: March 13, 2013
 Location: Politechnika Warszawska, Warsaw, Poland
@@ -2086,13 +2086,13 @@
 Description:
 
 Id: rms-201303110
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Nottingham)
+MoreInfo: (Nottingham)
 By: Richard Stallman
 Date: March 11, 2013
 Location: The University of Nottingham, Nottingham, UK
@@ -2114,7 +2114,7 @@
 Description:
 
 Id: rms-201302260
-From: 2013
+Year: 2013
 Lang: en
 Type: interview
 Length: long
@@ -2140,13 +2140,13 @@
 Description:
 
 Id: rms-201302040
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: The Free Software Movement
-Subtitle: (Dublin)
+MoreInfo: (Dublin)
 By: Richard Stallman
 Date: February 4, 2013
 Location: Trinity College, Dublin, Ireland
@@ -2168,13 +2168,13 @@
 Description:
 
 Id: rms-201301290
-From: 2013
+Year: 2013
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: Por una sociedad digital libre
-Subtitle: (València)
+MoreInfo: (València)
 By: Richard Stallman
 Date: January 29, 2013
 Location: Universitat de València, València, España
@@ -2190,13 +2190,13 @@
 Description:
 
 Id: rms-201301170
-From: 2013
+Year: 2013
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Ann Arbor)
+MoreInfo: (Ann Arbor)
 By: Richard Stallman
 Date: January 17, 2013
 Location: University of Michigan, Ann Arbor, MI
@@ -2214,13 +2214,13 @@
 Description:
 
 Id: rms-201212130
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: The Free Software Movement
-Subtitle: (Curitiba)
+MoreInfo: (Curitiba)
 By: Richard Stallman
 Date: December 13, 2012
 Location: Universidade Federal do Paraná, Curitiba, Brazil
@@ -2236,13 +2236,13 @@
 Description:
 
 Id: rms-201211160
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: medium
 Media: video transcript
 Title: Solutions to the Software Patent Problem
-Subtitle: (Santa Clara)
+MoreInfo: (Santa Clara)
 By: Richard Stallman
 Date: November 16, 2012
 Location: Santa Clara University, Santa Clara, CA
@@ -2260,13 +2260,13 @@
 Description:
 
 Id: rms-201211070
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Reykjavik)
+MoreInfo: (Reykjavik)
 By: Richard Stallman
 Date: November 7, 2012
 Location: Reykjavík University, Iceland
@@ -2284,13 +2284,13 @@
 Description:
 
 Id: rms-201209110
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: medium
 Media: video subtitles
 Title: Welcome to Software Freedom Day
-Subtitle: (for Iran event)
+MoreInfo: (for Iran event)
 By: Richard Stallman
 Event: Software Freedom Day Iran
 Date: September 11, 2012
@@ -2310,13 +2310,13 @@
 Description:
 
 Id: rms-201207110
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Munich)
+MoreInfo: (Munich)
 By: Richard Stallman
 Date: July 11, 2012
 Location: Technische Universität München, Munich, Germany
@@ -2332,13 +2332,13 @@
 Description:
 
 Id: rms-201207070
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: RMS speech at the GNU Cauldron 2012
-Subtitle: (Prague)
+MoreInfo: (Prague)
 By: Richard Stallman
 Event: GNU Cauldron
 Date: July 7, 2012
@@ -2361,13 +2361,13 @@
 Description:
 
 Id: rms-201206270
-From: 2012
+Year: 2012
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Logiciel libre et éducation
-Subtitle: (Marly-le-Roi)
+MoreInfo: (Marly-le-Roi)
 By: Richard Stallman
 Date: June 27, 2012
 Location: Cinéma de Marly-le-Roi, France
@@ -2387,13 +2387,13 @@
 Description:
 
 Id: rms-201206220
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (London)
+MoreInfo: (London)
 By: Richard Stallman
 Date: June 22, 2012
 Location: Camden, London, UK
@@ -2415,13 +2415,13 @@
 Description:
 
 Id: rms-201204210
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (Ljubljana)
+MoreInfo: (Ljubljana)
 By: Richard Stallman
 Event: &ldquo;Digitizing Ideas&rdquo; seminar
 Date: April 21, 2012
@@ -2438,13 +2438,13 @@
 Description:
 
 Id: rms-201203140
-From: 2012
+Year: 2012
 Lang: en
 Type: interview
 Length: medium
 Media: video
 Title: The Free Software Movement
-Subtitle: (Singapore)
+MoreInfo: (Singapore)
 By: Richard Stallman
 Date: March 14, 2012
 Location: University of Singapore
@@ -2469,13 +2469,13 @@
 + </ul>
 
 Id: rms-201202290
-From: 2012
+Year: 2012
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Lisbon)
+MoreInfo: (Lisbon)
 By: Richard Stallman
 Event: XIX SINFO
 Date: 29 February, 2012
@@ -2492,13 +2492,13 @@
 Description:
 
 Id: rms-201110190
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video transcript
 Title: What Makes Digital Inclusion Good or Bad?
-Subtitle: (Paris)
+MoreInfo: (Paris)
 By: Richard Stallman
 Date: October 19, 2011
 Location: Sciences Po, Paris, France
@@ -2523,13 +2523,13 @@
 + the good kind.</p>
 
 Id: rms-201104200
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Philadelphia)
+MoreInfo: (Philadelphia)
 By: Richard Stallman
 Organizer: <a href='http://www.stwing.upenn.edu/~pengp/Files/Stallman/'>
 +     University of Pennsylvania's STWing</a> (Science and Technology Wing
@@ -2548,13 +2548,13 @@
 Description:
 
 Id: rms-201104110
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Palo Alto)
+MoreInfo: (Palo Alto)
 By: Richard Stallman
 Organizer: Center for Internet &amp; Society
 Date: April 11, 2011
@@ -2572,13 +2572,13 @@
 Description:
 
 Id: rms-201104070
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software and Your Freedom
-Subtitle: (Portland)
+MoreInfo: (Portland)
 By: Richard Stallman
 Date: April 7, 2011
 Location: PSU Native American Student and Community Center,
@@ -2659,13 +2659,13 @@
 Description:
 
 Id: rms-201103160
-From: 2011
+Year: 2011
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: El software libre y tu liberdad
-Subtitle: (Ciudad Real, Spain)
+MoreInfo: (Ciudad Real, Spain)
 By: Richard Stallman
 Event: Jornadas de Software Libre
 Date: March 16, 2011
@@ -2682,13 +2682,13 @@
 Description:
 
 Id: rms-201103070
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (London)
+MoreInfo: (London)
 By: Richard Stallman
 Date: March 7, 2011
 Location: 2 Savoy Place, London, UK
@@ -2711,13 +2711,13 @@
 Description:
 
 Id: rms-201103050
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (Sheffield)
+MoreInfo: (Sheffield)
 By: Richard Stallman
 Date: March 5, 2011
 Location: Sheffield University, UK
@@ -2739,13 +2739,13 @@
 Description:
 
 Id: rms-201103020
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: A Free Digital Society
-Subtitle: (Preston, UK)
+MoreInfo: (Preston, UK)
 By: Richard Stallman
 Date: March 2, 2011
 Location: University of Central Lancashire, Preston, UK
@@ -2762,13 +2762,13 @@
 Description:
 
 Id: rms-201102231
-From: 2011
+Year: 2011
 Lang: fr
 Type: speech
 Length: long
 Media: video audio
 Title: Qu'est-ce que c'est le logiciel libre&#8239;?
-Subtitle: (Lille)
+MoreInfo: (Lille)
 By: Richard Stallman
 RecordedBy: F. et Chtinux
 Date: February 23, 2011
@@ -2792,13 +2792,13 @@
 Description:
 
 Id: rms-201102230
-From: 2011
+Year: 2011
 Lang: fr
 Type: interview
 Length: long
 Media: video audio
 Title: Richard Stallman à l'Écho des gnous
-Subtitle: (Lille)
+MoreInfo: (Lille)
 By:
 Hosts: Alexandre, Tim et Aurore pour «&#8239;l'Écho des gnous&#8239;»
 RecordedBy: F. &amp; Chtinux (remix du jingle&#8239;: Tim Oxy)
@@ -2842,13 +2842,13 @@
 Description:
 
 Id: rms-201102220
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: The Danger of Software Patents
-Subtitle: (Brussels)
+MoreInfo: (Brussels)
 By: Richard Stallman
 Date: February 22, 2011
 Location: Vrije Universiteit, Brussels, Belgium
@@ -2865,13 +2865,13 @@
 Description:
 
 Id: rms-201102210
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: short
 Media: video audio
 Title: Introduction to Free Software
-Subtitle: (Delft)
+MoreInfo: (Delft)
 By: Richard Stallman
 Date: February 21, 2011
 Location: Delft University of Technology, Netherlands
@@ -2895,7 +2895,7 @@
 Description:
 
 Id: rms-201101290
-From: 2011
+Year: 2011
 Lang: en
 Type: speech
 Length: short
@@ -2922,13 +2922,13 @@
 Description:
 
 Id: rms-201011130
-From: 2010
+Year: 2010
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Le logiciel libre
-Subtitle: (Limoges)
+MoreInfo: (Limoges)
 By: Richard Stallman
 Date: November 13, 2010
 Location: Bibliothèque francophone multimédia de Limoges,
@@ -2945,13 +2945,13 @@
 Description:
 
 Id: rms-201007230
-From: 2010
+Year: 2010
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Free Software in Ethics and in Practice
-Subtitle: (Gaithersburg, MD)
+MoreInfo: (Gaithersburg, MD)
 By: Richard Stallman
 Event: The R User Conference 2010
 Date: July 23, 2010
@@ -2977,13 +2977,13 @@
 Description:
 
 Id: rms-201006040
-From: 2010
+Year: 2010
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Digital Free Society
-Subtitle: (Pristina)
+MoreInfo: (Pristina)
 By: Richard Stallman
 Date: June 4, 2010
 Location: University of Pristina, Kosovo
@@ -3000,13 +3000,13 @@
 Description:
 
 Id: rms-201002170
-From: 2010
+Year: 2010
 Lang: en
 Type: speech
 Length: long
 Media: video audio
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (Evansdale, WV)
+MoreInfo: (Evansdale, WV)
 By: Richard Stallman
 Date: February 17, 2010
 Location: West Virginia University, Evansdale, WV
@@ -3024,13 +3024,13 @@
 Description:
 
 Id: rms-201002110
-From: 2010
+Year: 2010
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Copyright vs Public
-Subtitle: (Bern)
+MoreInfo: (Bern)
 By: Richard Stallman
 Date: February 11, 2010
 Location: Universität Bern, Bern, Switzerland
@@ -3046,7 +3046,7 @@
 Description:
 
 Id: vhss-201000000
-From: 2010
+Year: 2010
 Lang: ml
 Type: movie
 Length: short
@@ -3081,13 +3081,13 @@
 Description:
 
 Id: rms-200912040
-From: 2009
+Year: 2009
 Lang: es
 Type: speech
 Length: long
 Media: video audio
 Title: La libertad con software libre
-Subtitle: (Culhuacán)
+MoreInfo: (Culhuacán)
 By: Richard Stallman
 Date: December 4, 2009
 Location: Escuela Superior de Ingeniería Mecánica y Eléctrica,
@@ -3115,13 +3115,13 @@
 Description:
 
 Id: rms-200911020
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 RecordedBy: Joly MacFie from Punkcast
 Date: November 2, 2009
@@ -3145,13 +3145,13 @@
 Description:
 
 Id: rms-200910130
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: A Free Digital Society
-Subtitle: (Christchurch)
+MoreInfo: (Christchurch)
 By: Richard Stallman
 ThanksTo: Brenda Chawner, Senior Lecturer at the
 +     School of Information Management, Victoria University of Wellington
@@ -3183,13 +3183,13 @@
 + <p class='signature'>--Richard Stallman</p>
 
 Id: rms-200910120
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (Christchurch)
+MoreInfo: (Christchurch)
 By: Richard Stallman
 Event: LIANZA Conference
 ThanksTo: Brenda Chawner, Senior Lecturer at the
@@ -3210,13 +3210,13 @@
 Description:
 
 Id: rms-200910080
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: The Danger of Software Patents
-Subtitle: (Wellington)
+MoreInfo: (Wellington)
 By: Richard Stallman
 ThanksTo: Brenda Chawner, Senior Lecturer at the
 +     School of Information Management, Victoria University of Wellington
@@ -3236,7 +3236,7 @@
 Description:
 
 Id: rms-200907220
-From: 2009
+Year: 2009
 Lang: en
 Type: interview
 Length: long
@@ -3272,13 +3272,13 @@
 + <p class='signature'>--PCRadio</p>
 
 Id: rms-200904000
-From: 2009
+Year: 2009
 Lang: fr
 Type: interview
 Length: medium
 Media: audio
 Title: Richard Stallman invité au magazine Microméga, sur RFI
-Subtitle: (Marseille)
+MoreInfo: (Marseille)
 By:
 Hosts: Caroline Lachowsky et Jean-Yves Casgha (?) pour
 +     Microméga
@@ -3296,13 +3296,13 @@
 Description:
 
 Id: rms-200903250
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Philadelphia)
+MoreInfo: (Philadelphia)
 By: Richard Stallman
 Date: March 25, 2009
 Location: Temple University, Philadelphia, PA
@@ -3324,13 +3324,13 @@
 Description:
 
 Id: rms-200902270
-From: 2009
+Year: 2009
 Lang: fr
 Type: speech
 Length: long
 Media: video
 Title: Droit d'auteur et libertés numériques, comment ce dernier doit être 
assoupli
-Subtitle: (Nanterre)
+MoreInfo: (Nanterre)
 By: Richard Stallman
 Hosts: Gilles Gauche-Casalis (Réseau de acteurs du multimédia public de 
Nanterre)
 +     et Jérémie Zimmermann (La Quadrature du net)
@@ -3348,13 +3348,13 @@
 Description:
 
 Id: rms-200902050
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (Edmonton)
+MoreInfo: (Edmonton)
 By: Richard Stallman
 Date: February 5, 2009
 Location: The Faculty of Law at the University of Alberta,
@@ -3372,13 +3372,13 @@
 Description:
 
 Id: rms-200902030
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: video audio
 Title: Copyright versus Community in the Age of Computer Networks
-Subtitle: (Calgary)
+MoreInfo: (Calgary)
 By: Richard Stallman
 Event: Annual Merv Leitch Lecture at the Faculty of Law
 Date: February 3, 2009
@@ -3406,13 +3406,13 @@
 + the other direction.</p>
 
 Id: rms-200901220
-From: 2009
+Year: 2009
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software Movement
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 Date: January 22, 2009
 Location: Rensselaer Polytechnic Institute campus, New York, NY
@@ -3428,13 +3428,13 @@
 Description:
 
 Id: rms-200812160
-From: 2008
+Year: 2008
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: The Role of Free Knowledge and Free Software in Education and Research
-Subtitle: (Bengaluru)
+MoreInfo: (Bengaluru)
 By: Richard Stallman
 Date: December 16, 2008
 Location: Christ University, Bengaluru, Karnataka, India
@@ -3456,13 +3456,13 @@
 Description:
 
 Id: rms-200811030
-From: 2008
+Year: 2008
 Lang: es
 Type: speech
 Length: long
 Media: video
 Title: El software libre en la ética y en la práctica
-Subtitle: (Buenos Aires)
+MoreInfo: (Buenos Aires)
 By: Richard Stallman
 Date: November 3, 2008
 Location: Anexo de la Cámara de Diputados de la Nación,
@@ -3479,7 +3479,7 @@
 Description:
 
 Id: rms-200809300
-From: 2008
+Year: 2008
 Lang: en
 Type: speech
 Length: short
@@ -3500,13 +3500,13 @@
 Description:
 
 Id: fsf-200808050
-From: 2008
+Year: 2008
 Lang: en
 Type: extra
 Length: medium
 Media: video
 Title: Pizza party for the FSF and their friends
-Subtitle: (San Francisco)
+MoreInfo: (San Francisco)
 By: Richard Stallman
 Date: August 5, 2008
 Location: San Francisco, CA
@@ -3523,13 +3523,13 @@
 Description:
 
 Id: rms-200805010
-From: 2008
+Year: 2008
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software in Ethics and in Practice
-Subtitle: (Manchester)
+MoreInfo: (Manchester)
 By: Richard Stallman
 Date: May 1, 2008
 Location: Manchester, UK
@@ -3545,7 +3545,7 @@
 Description:
 
 Id: rms-200804000
-From: 2008
+Year: 2008
 Lang: es
 Type: interview
 Length: short
@@ -3567,13 +3567,13 @@
 Description:
 
 Id: rms-200803270
-From: 2008
+Year: 2008
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Free Software in Ethics and in Practice
-Subtitle: (Richmond, VA)
+MoreInfo: (Richmond, VA)
 By: Richard Stallman
 Date: March 27, 2008
 Location: Virginia Commonwealth University, Richmond, VA
@@ -3589,7 +3589,7 @@
 Description:
 
 Id: singh-200800000
-From: 2008
+Year: 2008
 Lang: en
 Type: movie
 Length: short
@@ -3613,7 +3613,7 @@
 Description:
 
 Id: rms-200712050
-From: 2007
+Year: 2007
 Lang: en
 Type: interview
 Length: long
@@ -3636,13 +3636,13 @@
 Description:
 
 Id: rms-200707050
-From: 2007
+Year: 2007
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: Copyright vs Community
-Subtitle: (Mississauga)
+MoreInfo: (Mississauga)
 By: Richard Stallman
 Date: May 7, 2007
 Location: Mississauga, Ontario, Canada
@@ -3658,13 +3658,13 @@
 Description:
 
 Id: rms-200704030
-From: 2007
+Year: 2007
 Lang: fr
 Type: speech
 Length: long
 Media: video transcript
 Title: Logiciel libre : les droits de l'homme de l'utilisateur
-Subtitle: (Paris)
+MoreInfo: (Paris)
 By: Richard Stallman
 Date: April 3, 2007
 Location: ENST, Paris, France
@@ -3682,13 +3682,13 @@
 Description:
 
 Id: rms-200702280
-From: 2007
+Year: 2007
 Lang: en
 Type: speech
 Length: long
 Media: video
 Title: The Free Software Movement and the GNU/Linux Operating System
-Subtitle: (San Diego)
+MoreInfo: (San Diego)
 By: Richard Stallman
 Date: February 28, 2007
 Location:  University of California, San Diego, CA
@@ -3705,7 +3705,7 @@
 Description:
 
 Id: rms-200701010
-From: 2007
+Year: 2007
 Lang: en
 Type: speech
 Length: medium
@@ -3734,7 +3734,7 @@
 Description:
 
 Id: rms-200512020
-From: 2005
+Year: 2005
 Lang: en
 Type: speech
 Length: long
@@ -3756,13 +3756,13 @@
 Description:
 
 Id: rms-200511180
-From: 2005
+Year: 2005
 Lang: en
 Type: speech
 Length: medium
 Media: video subtitles
 Title: Software for Development: Is Free/Open Source Software the Answer?
-Subtitle: (Tunis)
+MoreInfo: (Tunis)
 By: Richard Stallman
 Event: UNDP-APDIP FOSS Panel at WSIS (World Summit on the
 +    Information Society)
@@ -3810,13 +3810,13 @@
 + </ul>
 
 Id: rms-200509000
-From: 2005
+Year: 2005
 Lang: en
 Type: speech
 Length: medium
 Media: video
 Title: Free Software and Education
-Subtitle: (Taipei City, Taiwan)
+MoreInfo: (Taipei City, Taiwan)
 By: Richard Stallman
 Date: September 2005
 Location: Sina.com, Taipei City, Taiwan
@@ -3833,13 +3833,13 @@
 Description:
 
 Id: rms-200505270
-From: 2005
+Year: 2005
 Lang: en
 Type: speech
 Length: long
 Media: video audio
 Title: What is Free Software?
-Subtitle: (Hsinchu City, Taiwan)
+MoreInfo: (Hsinchu City, Taiwan)
 By: Richard Stallman
 Date: May 27, 2005
 Location: National Center for High Performance Computing,
@@ -3858,13 +3858,13 @@
 Description:
 
 Id: rms-200505230
-From: 2005
+Year: 2005
 Lang: es
 Type: speech
 Length: long
 Media: video audio
 Title: Las libertades del software libre
-Subtitle: (recorded for ARCIS)
+MoreInfo: (recorded for ARCIS)
 By: Richard Stallman
 Date: May 23, 2005
 Location: Recorded at the National Center for High
@@ -3891,13 +3891,13 @@
 Description:
 
 Id: rms-200505180
-From: 2005
+Year: 2005
 Lang: en
 Type: speech
 Length: long
 Media: video audio
 Title: The Danger of Software Patents
-Subtitle: (Calgary)
+MoreInfo: (Calgary)
 By: Richard Stallman
 Date: May 18, 2005
 Location: University of Calgary, Canada
@@ -3916,13 +3916,13 @@
 Description:
 
 Id: rms-200411000
-From: 2004
+Year: 2004
 Lang: es
 Type: interview
 Length: medium
 Media: audio
 Title: La libertad de actuar con solidaridad social
-Subtitle: (interview Bogota)
+MoreInfo: (interview Bogota)
 By: Richard Stallman
 Hosts: Luis Fernando Medina C. (IMC Columbia)
 Date: November 2004
@@ -3939,13 +3939,13 @@
 Description:
 
 Id: rms-200410140
-From: 2004
+Year: 2004
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: The Dangers of Software Patents
-Subtitle: (Sydney)
+MoreInfo: (Sydney)
 By: Richard Stallman
 RecordedBy: John Jacobs
 Date: October 14, 2004
@@ -3966,13 +3966,13 @@
 Description:
 
 Id: rms-200405270
-From: 2004
+Year: 2004
 Lang: en
 Type: interview
 Length: medium
 Media: audio transcript
 Title: Free Software, Free Society!
-Subtitle: (interview Edinburgh)
+MoreInfo: (interview Edinburgh)
 By: Richard Stallman
 Hosts: anarchobabe (IMC Scotland)
 Date: May 27, 2004
@@ -3991,13 +3991,13 @@
 Description:
 
 Id: rms-200404300
-From: 2004
+Year: 2004
 Lang: es
 Type: speech
 Length: long
 Media: video audio
 Title: Historia del software libre y las patentes de software
-Subtitle: (Girona)
+MoreInfo: (Girona)
 By: Richard Stallman
 Hosts: Joaquim Velayos, Joan Marti, Oriol Ferrari,
 +     Jordi Regincós
@@ -4020,13 +4020,13 @@
 Description:
 
 Id: bkuhn-200404240
-From: 2004
+Year: 2004
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Software Freedom and the GNU Generation
-Subtitle: (Urbana)
+MoreInfo: (Urbana)
 By: Bradley M. Kuhn and John Sullivan
 Organizer: The Free Software Society
 Date: April 24, 2004
@@ -4058,13 +4058,13 @@
 + the promotion of free software.</p>
 
 Id: rms-200311050
-From: 2003
+Year: 2003
 Lang: en
 Type: speech
 Length: medium
 Media: video audio
 Title: What Should it Mean to Promote Free Software?
-Subtitle: (recorded for Curitiba event)
+MoreInfo: (recorded for Curitiba event)
 By: Richard Stallman
 Event: Free Softare event in Curitiba, Brazil
 Date: November 5, 2003
@@ -4117,13 +4117,13 @@
 + <p class='signature'>--Richard Stallman</p>
 
 Id: rms-200310260
-From: 2003
+Year: 2003
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: The Dangers of Software Patents
-Subtitle: (London)
+MoreInfo: (London)
 By: Richard Stallman
 RecordedBy: Nicholas R. Hill
 Date: October 26, 2003
@@ -4140,13 +4140,13 @@
 Description:
 
 Id: rms-200212030
-From: 2002
+Year: 2002
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Software Patents &ndash; Dangers to Development
-Subtitle: (London)
+MoreInfo: (London)
 By: Richard Stallman
 RecordedBy: Nicholas R. Hill
 Date: December 3, 2002
@@ -4163,13 +4163,13 @@
 Description:
 
 Id: bkuhn-200207100
-From: 2002
+Year: 2002
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Software Freedom and the GNU Generation
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Bradley M. Kuhn
 Event: Gnubies
 RecordedBy: Andrew Schaaf
@@ -4187,13 +4187,13 @@
 Description:
 
 Id: rms-200203250
-From: 2002
+Year: 2002
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: Software Patents &ndash; Obstacles to software development
-Subtitle: (Cambridge, UK)
+MoreInfo: (Cambridge, UK)
 By: Richard Stallman
 Organizer: <a href='http://www.fipr.org/'>FIPR</a>
 RecordedBy: Nicholas R. Hill
@@ -4216,13 +4216,13 @@
 Description:
 
 Id: rms-200202120
-From: 2002
+Year: 2002
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: Copyright vs Community in the Age of Computer Networks
-Subtitle: (London)
+MoreInfo: (London)
 By: Richard Stallman
 RecordedBy: Nicholas R. Hill
 Date: February 12, 2002
@@ -4239,14 +4239,14 @@
 Description:
 
 Id: rms-200201300
-From: 2002
+Year: 2002
 Lang: fr
 Type: speech
 Length: long
 Media: audio transcript
 Title: L'éthique du système GNU/Linux et de la communauté des logiciels
 + libres, les tâches à accomplir et les risques à envisager
-Subtitle: (Paris)
+MoreInfo: (Paris)
 By: Richard Stallman
 Event: Linux Expo [<a href='/gnu/linux-and-gnu.html'>sic</a>]
 Date: January 30, 2002
@@ -4265,13 +4265,13 @@
 Description:
 
 Id: rms-200201270
-From: 2002
+Year: 2002
 Lang: fr
 Type: interview
 Length: medium
 Media: audio
 Title: Entretien avec Richard Stallman
-Subtitle: (Paris)
+MoreInfo: (Paris)
 By:
 Hosts: Frédéric Couchet, avec des questions envoyées par
 +     Internet et sélectionées par l'April, et avec l'aide de Loic Dachary
@@ -4291,13 +4291,13 @@
 Description:
 
 Id: rms-200111200
-From: 2001
+Year: 2001
 Lang: fr
 Type: interview
 Length: medium
 Media: audio
 Title: Richard Stallman répond aux questions du public
-Subtitle: (Paris)
+MoreInfo: (Paris)
 By:
 Date: November 20, 2001
 Location: Paris, France
@@ -4347,13 +4347,13 @@
 + </ol>
 
 Id: rms-200107170
-From: 2001
+Year: 2001
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: The Danger of Software Patents
-Subtitle: (Thrikkakara, Kerala)
+MoreInfo: (Thrikkakara, Kerala)
 By: Richard Stallman
 Date: July 17, 2001
 Location: Model Engineering College, Thrikkakara, Kerala, India
@@ -4372,13 +4372,13 @@
 Description:
 
 Id: rms-200105290
-From: 2001
+Year: 2001
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: Free Software: Freedom and Cooperation
-Subtitle: (New York)
+MoreInfo: (New York)
 By: Richard Stallman
 RecordedBy: Joly MacFie from <a href='http://punkcast.com/64/'>Punkcast</a>
 Date: May 29, 2001
@@ -4402,13 +4402,13 @@
 Description:
 
 Id: rms-200104190
-From: 2001
+Year: 2001
 Lang: en
 Type: speech
 Length: long
 Media: audio transcript
 Title: Copyright and Globalization in the Age of Computer Networks
-Subtitle: (Cambridge, MA)
+MoreInfo: (Cambridge, MA)
 By: Richard Stallman
 Event: MIT Communications Forum
 RecordedBy: Mark H. Weaver
@@ -4428,13 +4428,13 @@
 Description:
 
 Id: rms-200101020
-From: 2001
+Year: 2001
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: The Free Software Movement and the GNU/Linux Operating System
-Subtitle: (Cambridge, MA)
+MoreInfo: (Cambridge, MA)
 By: Richard Stallman
 RecordedBy: Mark H. Weaver
 Event: ArsDigita University
@@ -4452,13 +4452,13 @@
 Description:
 
 Id: rms-200010180
-From: 2000
+Year: 2000
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: The Free Software Movement and the GNU/Linux Operating System
-Subtitle: (Ljubljana)
+MoreInfo: (Ljubljana)
 By: Richard Stallman
 Date: October 18, 2000
 Location: Auditorium Smelt, Ljubljana, Slovenia
@@ -4474,13 +4474,13 @@
 Description:
 
 Id: rms-200007010
-From: 2000
+Year: 2000
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: The Free Software Movement and the GNU/Linux Operating System
-Subtitle: (Stuttgart)
+MoreInfo: (Stuttgart)
 By: Richard Stallman
 Event: LinuxTag 2000 [<a href='/gnu/linux-and-gnu.html'>sic</a>]
 RecordedBy: Fabian Wauthier
@@ -4499,13 +4499,13 @@
 Description:
 
 Id: rms-200001240
-From: 2000
+Year: 2000
 Lang: en
 Type: speech
 Length: long
 Media: audio
 Title: The Free Software Movement and the GNU/Linux Operating System
-Subtitle: (Cincinnati)
+MoreInfo: (Cincinnati)
 By: Richard Stallman
 RecordedBy: James Carter
 ThanksTo: the University of Cincinnati and the Cincinnati
@@ -4524,13 +4524,13 @@
 Description:
 
 Id: rms-199903260
-From: 1999
+Year: 1999
 Lang: en
 Type: historical
 Length: short
 Media: video
 Title: Richard Stallman calls for the creation of a Free Universal 
Encyclopedia and Learning Resource
-Subtitle: (New Orleans)
+MoreInfo: (New Orleans)
 By: Richard Stallman
 Event: 30th Technical Symposium of SIGCSE (Association for
 +     Computing Machinery's Special Interest Group on Computer Science
@@ -4555,7 +4555,7 @@
 Description:
 
 Id: rms-198411100
-From: 1984
+Year: 1984
 Lang: en
 Type: historical
 Length: short



reply via email to

[Prev in Thread] Current Thread [Next in Thread]