diff --git a/ABOUT-NLS b/ABOUT-NLS index 960cafb7e..4eba0ce06 100644 --- a/ABOUT-NLS +++ b/ABOUT-NLS @@ -1,205 +1,206 @@ CDS Invenio NATIVE LANGUAGE SUPPORT =================================== Revision: $Id$ About ===== This document describes the Native Language Support (NLS) in CDS Invenio. Contents ======== 1. Native Language Support information for administrators 2. Native Language Support information for translators 3. Native Language Support information for programmers A. Introducing a new language 1. Native Language Support information for administrators ========================================================= CDS Invenio is currently available in the following languages: + bg = Bulgarian ca = Catalan cs = Czech de = German el = Greek en = English es = Spanish fr = French it = Italian ja = Japanese no = Norwegian (Bokmål) pl = Polish pt = Portuguese ru = Russian sk = Slovak sv = Swedish uk = Ukrainian If you are installing CDS Invenio and you want to enable/disable some languages, please just follow the standard installation procedure as described in the INSTALL file. The default language of the installation as well as the list of all user-seen languages can be selected in the general config.wml file, see variables CDSLANG and CDSLANGS. (Please note that some runtime CDS Invenio daemons -- such as webcoll, responsible for updating the collection cache, running every hour or so -- may work twice as long when twice as many user-seen languages are selected, because it creates collection cache page elements for every user-seen language. Therefore, if you have defined thousands of collections and if you find the webcoll speed to be slow in your setup, you may want to try to limit the list of selected languages.) 2. Native Language Support information for translators ====================================================== If you want to contibute a translation to CDS Invenio, then please follow the procedure below: - Please check out the existence of po/LL.po file for your language, where LL stands for the ISO 639 language code (e.g. `el' for Greek). If such a file exists, then this language is already supported, in which case you may want to review the existing translation (see below). If the file does not exist yet, then you can create an empty one by copying the cds-invenio.pot template file into LL.po that you can review as described in the next item. (Please note that you would have to translate some dynamic elements that are currently not located in the PO file, see the appendix A below.) - Please edit LL.po to review existing translation. The PO file format is a standard GNU gettext one and so you can take advantage of dedicated editing modes of programs such as GNU Emacs, KBabel, or poEdit to edit it. Pay special attention to strings marked as fuzzy and untranslated. (E.g. in the Emacs PO mode, press `f' and `u' to find them.) Do not forget to remove fuzzy marks for reviewed translations. (E.g. in the Emacs PO mode, press `TAB' to remove fuzzy status of a string.) - After you are done with translations, please validate your file to make sure it does not contain formatting errors. (E.g. in the Emacs PO mode, press `V' to validate the file.) - If you have access to a test installation of CDS Invenio, you may want to see your modified PO file in action: $ cd po $ emacs ja.po # edit Japanese translation $ make update-gmo $ make install $ sudo apachectl restart $ firefox http://your.site/?ln=ja # check it out in context If you do not have access to a test installation, please contribute your PO file (see next step) and the CDS Invenio developers will install it on a test site and will contact you so that you would be able to check your translations in the global context of the application. - Please contribute your translation by emailing the file to . You help is greatly appreciated and will be properly credited in the CREDITS file. See also the GNU gettext manual, especially the chapters 5, 6 and 11. 3. Native Language Support information for programmers ====================================================== CDS Invenio uses standard GNU gettext I18N and L12N philosophy. In Python programs, all output strings should be made translatable via _() convention: from messages import gettext_set_language [...] def square(x, ln=cdslang): _ = gettext_set_language(ln) print _("Hello there!") print _("The square of %s is %s.") % (x, x*x) In WML source files, the convention is _()_: _(Search Help)_ Please follow the WebSearch module files for an example. Appendix A. Introducing a new language ====================================== If you are introducing a new language for the first time, then please firstly create and edit the PO file as described above in Section 2. This will make the largest portion of the translating work done, but it is not fully enough, because we currently have also to translate some dynamic elements that aren't located in PO files. The development team can edit the respective files ourself, if the translator sends over the following translations by email: - server name: Atlantis Institute of Fictive Science - field names, usually loaded from tabfill.sql.wml: any field title author abstract keyword report number subject reference fulltext collection division year experiment record ID - collection names, usually loaded from democfgdata.sql.wml: Preprints Books Theses Reports Articles Pictures CERN Divisions CERN Experiments Theoretical Physics (TH) Experimental Physics (EP) Articles & Preprints Books & Reports Multimedia & Arts Poetry - the right-hand-side portalbox: ABOUT THIS SITE Welcome to the demo site of the CDS Invenio, a free document server software coming from CERN. Please feel free to explore all the features of this demo site to the full. SEE ALSO The development team will than edit various files (po/LINGUAS, config files, sql files, plenty of Makefile files, etc) as needed. The last phase of the initial introduction of the new language would be to translate some short static HTML pages: - modules/webhelp/web/index.html.wml - modules/websearch/doc/index.html.wml Thanks for helping to internationalize CDS Invenio. - CDS Development Group diff --git a/config/cdswmllib.wml b/config/cdswmllib.wml index ac6eef1ca..140664d65 100644 --- a/config/cdswmllib.wml +++ b/config/cdswmllib.wml @@ -1,118 +1,120 @@ ## $Id$ ## Library of WML functions of general interest. ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## language handling: #use wml::std::lang + ## library of WML functions of general interest: <: sub get_language_name { ## Return long name for a language. ## Input: en ## Output: English ($ln) = @_; %longnames = ('en' => 'English', 'fr' => 'Français', 'de' => 'Deutsch', 'es' => 'Español', 'ca' => 'Català', 'pt' => 'Português', 'it' => 'Italiano', 'ru' => 'Русский', 'sk' => 'Slovensky', 'cs' => 'Česky', 'no' => 'Norsk/Bokmål', 'sv' => 'Svenska', 'el' => 'Ελληνικά', 'uk' => 'Українська', 'ja' => '日本語', - 'pl' => 'Polski'); + 'pl' => 'Polski', + 'bg' => 'Български'); return $longnames{$ln}; } sub generate_language_list_for_python { ## Return Python-ready language list out of user-configured WML language list. ## May return short or long version, depending on the first argument. ## Output example: ['en','fr'] ## Output example: [['en','English'],['fr','French']] ($type) = @_; $out = "["; foreach $ln (split /\s*,\s*/, '') { if ($type) { $out .= "['".$ln."','".get_language_name($ln)."'],"; } else { $out .= "'".$ln."',"; } } $out .= "]"; return $out; } sub generate_language_selection_box_for_html { ## Return HTML-ready language selection box links. ## Output example: ($filenamebase, $filenameextension) = split /\./, '$(WML_SRC_BASENAME)'; $out = "_(This site is also available in the following languages:)_
"; foreach $ln (split /\s*,\s*/, '') { $out .= ' '.get_language_name($ln).'   '; } return substr($out, 0, -2); } sub generate_pretty_version_string { ## Input: CVS DOLLAR Id DOLLAR string ## Output: nicely formatted version number suitable for `bibtaskex --version' ## Example: ``DOLLAR Id: webcoll.wml,v 1.41 2004/04/21 11:20:06 tibor Exp DOLLAR'' ## will generate output like ``CDS Invenio/0.3.2 webcoll/1.41'' ($out) = @_; ($junk, $filename, $revision, $date, $junk) = split / /, $out; $filename =~ s/\.wml,v//g; return "CDS Invenio/ " . $filename . "/" . $revision; } sub generate_pretty_revision_date_string { ## Input: CVS DOLLAR Id DOLLAR string ## Output: nicely formatted revision/date number suitable for Admin Guides ## Example: ``DOLLAR Id: webcoll.wml,v 1.41 2004/04/21 11:20:06 tibor Exp DOLLAR'' ## will generate output like ``CDS Invenio/0.3.2 webcoll/1.41'' ($out) = @_; ($junk, $filename, $revision, $date, $junk) = split / /, $out; return $revision . ", " . $date; } :> diff --git a/config/config.wml b/config/config.wml index f942211de..a050fc223 100644 --- a/config/config.wml +++ b/config/config.wml @@ -1,817 +1,818 @@ ## -*- mode: html; coding: utf-8; -*- ## $Id$ ## This file enables you to configure the parameters of your local CDS ## installation. It should be self-explanatory. Just go ahead and ## change the values within "define-tag" elements according to your ## needs. When done, return to the main CDS Invenio source directory and ## type 'make'. ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## ##################### ## About "config.wml" ## ## ##################### ## This file ('config.wml') consists of several relatively independent ## configuration parts: ## ## Part 1: Essential parameters ## Part 2: CDS page elements ## Part 3: CDS navigation bar ## Part 5: WebSearch parameters ## Part 4: BibHarvest OAI parameters ## Part 6: WebSubmit parameters ## Part 7: Fulltext Archive parameters ## Part 8: BibFormat parameters ## Part 9: BibIndex parameters ## Part 10: Access Control parameters ## ## The configuration is done by editing the content of the "define-tag" ## WML elements below. Feel free to edit as many as you need. When done, ## return to the main CDS Invenio source directory and type 'make'. Good luck! :-) ## Before starting, let's include helper functions: #include "cdswmllib.wml" #include "configbis.wml" ################################### ## Part 1: Essential parameters ## ################################### ## This part defines essential CDS Invenio internal parameters that ## everybody should modify, like the name of the server or the email ## address of the local CDS Invenio administrator. ## CDSNAME -- the visible name of your CDS Invenio installation: ## (example: "My Document Server") Atlantis Institute of Fictive Science ## CDSNAMEINTL -- the international versions of CDSNAME in various ## languages, defined using the standard locale-like language codes. ## (example: "Mon Serveur des Documents") Atlantis Institute of Fictive Science Atlantis Institut des Sciences Fictives Atlantis Institut der fiktiven Wissenschaft Atlantis Instituto de la Ciencia Fictive Institut Atlantis de Ciència Fictícia Instituto Atlantis de Ciência Fictícia Atlantis Istituto di Scienza Fittizia Атлантис Институт фиктивных Наук Atlantis Inštitút Fiktívnych Vied Atlantis Institut Fiktivních Věd Atlantis Institutt for Fiktiv Vitenskap Atlantis Institut för Fiktiv Vetenskap Ινστιτούτο Φανταστικών Επιστημών Ατλαντίδος Інститут вигаданих наук в Атлантісі Fictive 科学のAtlantis の協会 Instytut Fikcyjnej Nauki Atlantis + Atlantis Institute of Fictive Science ## CDSLANG -- the default language of the interface: ## (example: "en") en ## CDSLANGS -- list of all languages the user interface should be ## available in, separated by commas. The order specified below will ## be respected on the interface pages. A good default would be to ## use the alphabetical order. Currently supported languages include -## Catalan, Czech, German, Greek, English, Spanish, French, Italian, -## Japanese, Norwegian, Polish, Portuguese, Russian, Slovak, Swedish, -## and Ukrainian, so that the current eventual maximum you can -## currently select is -## "ca,cs,de,el,en,es,fr,it,ja,no,pl,pt,ru,sk,sv,uk". +## Bulgarian, Catalan, Czech, German, Greek, English, Spanish, French, +## Italian, Japanese, Norwegian, Polish, Portuguese, Russian, Slovak, +## Swedish, and Ukrainian, so that the current eventual maximum you +## can currently select is +## "bg,ca,cs,de,el,en,es,fr,it,ja,no,pl,pt,ru,sk,sv,uk". ## (example: "de,en,fr,it") -ca,cs,de,el,en,es,fr,it,ja,no,pl,pt,ru,sk,sv,uk +bg,ca,cs,de,el,en,es,fr,it,ja,no,pl,pt,ru,sk,sv,uk ## ALERTENGINEEMAIL -- the email address from which the alert emails will appear to be send: ## (example: "cds.alert@cdsware.cern.ch") cds.alert@cdsdev.cern.ch ## SUPPORTEMAIL -- the email address of the support team for this installation: ## (example: "cds.support@cern.ch") cds.support@cern.ch ## ADMINEMAIL -- the email address of the 'superuser' for this ## installation. Enter your email address below and login with this ## address when using CDS Invenio administration modules. You will then ## be automatically recognized as superuser of the system. ## (example: "cds.support@cern.ch") cds.support@cern.ch ## CFG_MAX_RECID -- maximum record ID number possible, i.e. the upper ## estimate of the total number of documents in the database. A ## reasonable estimate is: if you have 500,000 records in the database ## now, and the size is growing by 10,000 records per month, then a ## value of 700,000 sounds reasonable, as it should suffice for two ## years. Note that if in 6 months you'll suddenly have to upload a ## lot of new input records, so that it may grow past the present ## CFG_MAX_RECID limit, nothing bad happens: you only have to change ## this parameter and reindex the full database content. Note also ## that the lower CFG_MAX_RECID, the faster the search engine and the ## indexation engines are, so you have interest not to put it ## unnecessarily high. The relation between the speed and the value ## of CFG_MAX_RECID is about linear, so that cutting CFG_MAX_RECID by ## half will speed up the indexation about twice. ## (example: "8000") 8000 ## CFG_APACHE_PASSWORD_FILE -- where Apache user credentials are stored /soft/httpd-bis/conf/httpd.password ## CFG_APACHE_GROUP_FILE -- where Apache user groups are stored /soft/httpd-bis/conf/httpd.group ## CFG_CERN_SITE -- do we want to enable CERN-specific code, like the ## one that proposes links to famous HEP sites such as Spires and KEK? ## Put "1" for "yes" and "0" for "no". (example: "0") 0 ################################ ## Part 2: CDS page elements ## ################################ ## This part defines CDS portal-like page style and its elements. ## Here is a schematic overview of all the WML-configurable parts: ## ## +-----------------------------------------------------------------------------------------+ ## | CDSPAGEHEADER | ## | (cdspageheaderadd) | ## +-------------------------+------------------------------------+--------------------------+ ## | CDSPAGEBOXLEFTTOP | | CDSPAGEBOXRIGHTTOP | ## | (cdspageboxlefttopadd) | | (cdspageboxrighttopadd) | ## | | | | ## | | | | ## | | | | ## | | | | ## | | main page body | | ## | | | | ## | | | | ## | | | | ## | | | | ## | | | | ## | | | | ## |(cdspageboxleftbottomadd)| |(cdspageboxrightbottomadd)| ## | CDSPAGEBOXLEFTBOTTOM | | CDSPAGEBOXRIGHTBOTTOM | ## +-------------------------+------------------------------------+--------------------------+ ## | (cdspagefooteradd) | ## | CDSPAGEFOOTER | ## +-----------------------------------------------------------------------------------------+ ## ## Here, (i) the upper case elements like CDSPAGEHEADER are globally ## defined in this 'config.wml' file, see below. (ii) the lower case ## elements in parentheses like "(cdspageheaderadd)" are optional ## local add-ons that each WML page can define locally and pass to the ## global WML template as parameters. (iii) Note also that the style ## and colours of all these elements is defined in the cascading style ## sheet in the file 'htdocs/img/cds.css' that you can change at your ## will too. ## CFG_TEMPLATE_SKIN -- what template skin do you want to use? ## (example: "default") default ## CDSPAGEHEADER -- eventual global HTML page header: ## (example: "")
           
## CDSPAGEBOXLEFTTOP -- eventual global HTML left top box: ## (example: "") ## CDSPAGEBOXLEFTBOTTOM -- eventual global HTML left bottom box: ## (example: "") ## CDSPAGEBOXRIGHTTOP -- eventual global HTML right top box: ## (example: "") ## CDSPAGEBOXRIGHTBOTTOM -- eventual global HTML right bottom box: ## (example: "") ## CDSPAGEFOOTER -- eventual global HTML page footer: ## (example: "")
 ::  ::  ::  :: 
CDS Invenio v

################################ ## Part 3: CDS navigation bar ## ################################ ## The navigation bar and sub-bars are defined in a separate ## "cdsnavbar.wml" file. You may want to modify it now, if you ## really know what you are doing. :-) ################################## ## Part 4: WebSearch parameters ## ################################## ## This section contains some WML-based configuration parameters for ## WebSearch module. Please note that WebSearch is mostly configured ## on run-time via its WebSearch Admin web interface. The parameters ## below are the ones that you do not probably want to modify very ## often during the runtime. (Note that you may modify them ## afterwards too, though.) ## CFG_SEARCH_CACHE_SIZE -- how many queries we want to cache in ## memory per one Apache httpd process? This cache is used mainly for ## "next/previous page" functionality, but it caches also "popular" ## user queries if more than one user happen to search for the same ## thing. Note that large numbers may lead to great memory ## consumption. We recommend a value not greater than 100. ## (example: "100") 100 ## CFG_FIELDS_CONVERT -- if you migrate from an older system, you may ## want to map field codes of your old system (such as 'ti') to ## CDS Invenio/MySQL ("title"). Use Python dictionary syntax for the ## translation table, see the example below. Usually you don't want ## to do that, and would use empty dict {}. ## (example: "{'wau':'author', 'wti':'title'}") {} ## CFG_GOOGLE_BOX -- on the search results page, do we want propose ## links to other search engines like Google? Put "1" for "yes" and ## "0" for "no". ## (example: "1") 1 ## CFG_GOOGLE_BOX_SERVERS -- what servers should be proposed in the ## above Google box? See the list of available servers below and put ## "1" for "yes" and "0" for "no" for each server. {'Amazon' : 1, 'CERN Intranet' : 1, 'CERN Agenda' : 1, 'CiteSeer' : 1, 'Google Scholar' : 1, 'Google Web' : 1, 'IEC' : 1, 'IHC' : 1, 'INSPEC' : 1, 'ISO' : 1, 'KEK' : 1, 'NEBIS' : 1, 'SPIRES' : 1} ## CFG_SIMPLESEARCH_PATTERN_BOX_WIDTH -- width of the search pattern ## window in the simple search interface, in characters. ## (example: "50") 40 ## CFG_ADVANCEDSEARCH_PATTERN_BOX_WIDTH -- width of the search pattern ## window in the advanced search interface, in characters. ## (example: "50") 30 ## CFG_NB_RECORDS_TO_SORT -- how many records do we still want to ## sort? For higher numbers we print only a warning and won't perform ## any sorting other than default 'latest records first', as sorting ## would be very time consuming then. We recommend a value of not ## more than a couple of thousands. ## (example: "1000") 1000 ## CFG_CALL_BIBFORMAT -- if a record is being displayed but it was not ## preformatted in the "HTML brief" format, do we want to call ## BibFormatting on the fly? Put "1" for "yes" and "0" for "no". ## Note that "1" will display the record exactly as if it were fully ## preformatted, but it may be slow due to on-the-fly processing; "0" ## will display a default format very fast, but it may not have all ## the fields as in the fully preformatted HTML brief format. When ## usure, set "0" here. ## (example: "0") 0 ## CFG_USE_OLD_SYSNOS -- do we want to make old SYSNOs visible rather ## than MySQL's record IDs? You may use this if you migrate from a ## different e-doc system, and you store your old system numbers into ## 909C0o. Put "1" for "yes" and "0" for "no". Usually you don't want ## to do that, though. ## (example: "0") 0 ## CFG_NB_LATEST_ADDITIONS -- the number of records to display under ## 'Latest Additions' in the web collection pages ## (example: "10") 10 ## CFG_AUTHOR_ET_AL_THRESHOLD -- up to how many author names to print ## explicitely; for more print "et al". Note that this is used in ## default formatting that is seldomly used, as usually BibFormat ## defines all the format. The value below is only used when ## BibFormat fails, for example. ## (example: "3") 3 ## CFG_NARROW_SEARCH_SHOW_GRANDSONS -- whether to show or not ## collection grandsons in Narrow Search boxes (sons are shown ## by default, grandsons are configurable here). Use 0 for no ## and 1 for yes. ## (example: "0") 1 ## CFG_CREATE_SIMILARLY_NAMED_AUTHORS_LINK_BOX -- shall we create help ## links for Ellis, Nick or Ellis, Nicholas and friends when Ellis, N ## was searched for? Useful if you have one author stored in the ## database under several name formats, namely surname comma firstname ## and surname comma initial cataloging policy. Use 0 for no and 1 ## for yes. ## (example: "1") 1 ####################################### ## Part 5: BibHarvest OAI parameters ## ####################################### ## This part defines parameters for the CDS Invenio OAI gateway. ## Useful if you are running CDS Invenio as OAI data provider. ## CFG_OAI_ID_SCHEME -- OAI identifier scheme: ## (example: "oai") oai ## CFG_OAI_ID_TAG -- OAI identifier tag: ## (example: "0248_a") 909COo ## CFG_OAI_SET_TAG -- OAI set tag: ## (example: "0248_p") 909COp ## CFG_OAI_DELETED_TAG -- OAI tag for deleted records mark. OAI record is considered deleted if the value of this field is set to "DELETED" and the OAI deleted records policy is set either to ``transient'' or ``persistent''. ## (example: "980__c") 980__c ## CFG_OAI_DELETED_POLICY -- OAI deletedrecordspolicy ## (example: no/transient/persistent) no ## CFG_OAI_ID_PREFIX -- OAI identifier prefix: ## (example: "cds.cern.ch") atlantis.cern.ch ## CFG_OAI_SAMPLE_IDENTIFIER -- OAI sample identifier: ## (example: "oai:cds.cern.ch:CERN-TH-4036") ::CERN-TH-4036 ## CFG_OAI_IDENTIFY_DESCRIPTION -- description for the OAI Identify verb (optional): ## (example:"") : http:/// Free and unlimited use by anybody with obligation to refer to original record Full content, i.e. preprints may not be harvested by robots Submission restricted. Submitted documents are subject of approval by OAI repository admins. ## CFG_OAI_LOAD -- OAI number of records in a response: ## (example: "1000") 1000 ## CFG_OAI_EXPIRE -- OAI resumptionToken expiration time: ## (example: "1000") 90000 ## CFG_OAI_SLEEP -- service unavailable between two consecutive requests for CFG_OAI_SLEEP seconds ## (example: "10") 10 ################################## ## Part 6: WebSubmit parameters ## ################################## ## This section contains some WML-based configuration parameters for ## WebSubmit module. Please note that WebSubmit is mostly configured ## on run-time via its WebSubmit Admin web interface. The parameters ## below are the ones that you do not probably want to modify during ## the runtime. ## CFG_SUBMIT_COUNTER -- indicates where the counters used by websubmit ## are stored /submit/counters ## CFG_SUBMIT_DIR -- this indicates where the websubmit system will ## keep each submissions running data /submit/storage ######################################### ## Part 7: Fulltext Archive parameters ## ######################################### ## This section contains some WML-based configuration parameters for ## fulltext archive. ## CFG_FILE_DIR -- this indicates where the fulltext files will be ## stored /files ## CFG_FILE_DIR_SIZE -- all attached fulltext files are stored ## under the CFG_FILE_DIR directory, inside subdirectories called gX ## this variable indicates the maximum number of files stored in each ## subdirectories 5000 ################################## ## Part 8: BibFormat parameters ## ################################## ## This section contains some WML-based configuration parameters for ## BibFormat module. Please note that BibFormat is mostly configured ## on run-time via its BibFormat Admin web interface. The parameters ## below are the ones that you do not probably want to modify very ## often during the runtime. ## CFG_BIBFORMAT_TIME_LIMIT -- the time limit of BibFormat process ## after which the task will terminate. This is useful to avoid ## eventual runaways. ## (example: "1000") 1000 ################################# ## Part 9: BibIndex parameters ## ################################# ## This section contains some WML-based configuration parameters for ## BibIndex module. Please note that BibIndex is mostly configured ## on run-time via its BibIndex Admin web interface. The parameters ## below are the ones that you do not probably want to modify very ## often during the runtime. ## CFG_BIBINDEX_FULLTEXT_INDEX_LOCAL_FILES_ONLY -- when fulltext indexing, do ## you want to index locally stored files only, or also external URLs? ## Use "0" to say "no" and "1" to say "yes". ## (example: "0") 0 ## CFG_BIBINDEX_STEMMER_DEFAULT_LANGUAGE -- when indexing, do you want to use ## stemming? If so, stem according to which language? Use '' for ## no stemming, 'fr' for French, 'en' for English, 'no' for Norwegian, ## 'sv' for Swedish, 'de' for German, 'it' for Italian, 'pt' for ## Portuguese'. This feature is still somewhat experimental. We ## recommend to say nothing ("") at this stage of things. ## (example: "") ## CFG_BIBINDEX_REMOVE_STOPWORDS -- when indexing, do we want to remove ## stopwords? Use "0" to say "no" and "1" to say "yes". ## (example: "0") 0 ## CFG_BIBINDEX_PATH_TO_STOPWORDS_FILE -- path to the stopwords file. You ## probably don't want to change this path, although you may want to ## change the content of that file. Note that the file is used by the ## rank engine internally, so it should be given even if stopword ## removal in the indexes is not used. /bibrank/stopwords.kb ## CFG_BIBINDEX_CHARS_ALPHANUMERIC_SEPARATORS -- characters considered as ## alphanumeric separators of word-blocks inside words. You probably ## don't want to change this. ## (example: "\!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~") \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~ ## CFG_BIBINDEX_CHARS_PUNCTUATION -- characters considered as punctuation ## between word-blocks inside words. You probably don't want to ## change this. ## (example: "\.\,\:\;\?\!\"") \.\,\:\;\?\!\" ## CFG_BIBINDEX_REMOVE_HTML_MARKUP -- should we attempt to remove HTML markup ## before indexing? Use 1 if you have HTML markup inside metadata ## (e.g. in abstracts), use 0 otherwise. ## (example: "0") 0 ## CFG_BIBINDEX_MIN_WORD_LENGTH -- minimum word length allowed to be added to ## index. The terms smaller then this amount will be discarded. ## Useful to keep the database clean, however you can safely leave ## this value on 0 for up to 1,000,000 documents. ## (example: "0") 0 ## CFG_BIBINDEX_URLOPENER_USERNAME and CFG_BIBINDEX_URLOPENER_PASSWORD -- ## access credentials to access restricted URLs, interesting only if ## you are fulltext-indexing files located on a remote server that is ## only available via username/password. But it's probably better to ## handle this case via IP or some convention; the current scheme is ## mostly there for demo only. ## (example: "mysuperuser") mysuperuser mysuperpass ######################################## ## Part 10: Access control parameters ## ######################################## ## This section contains some WML-based configuration parameters for ## the access control system. Please note that WebAccess is mostly ## configured on run-time via its WebAccess Admin web interface. The ## parameters below are the ones that you do not probably want to ## modify very often during the runtime. (If you do want to modify ## them during runtime, for example te deny access temporarily because ## of backups, you can edit access_control_config.py directly, no need ## to get back here and no need to redo the make process.) ## CFG_ACCESS_CONTROL_LEVEL_SITE -- defines how open this site is. ## Use 0 for normal operation of the site, 1 for read-only site (all ## write operations temporarily closed), 2 for site fully closed. ## Useful for site maintenance. ## (example: "0") 0 ## CFG_ACCESS_CONTROL_LEVEL_GUESTS -- guest users access policy. Use ## 0 to allow guest users, 1 not to allow them (all users must login). ## (example: "0") 0 ## CFG_ACCESS_CONTROL_LEVEL_ACCOUNTS -- account registration and ## activation policy. When 0, users can register and accounts are ## automatically activated. When 1, users can register but admin must ## activate the accounts. When 2, users cannot register nor update ## their email address, only admin can register accounts. When 3, ## users cannot register nor update email address nor password, only ## admin can register accounts. When 4, the same as 3 applies, nor ## user cannot change his login method. ## (example: "0") 0 ## CFG_ACCESS_CONTROL_LIMIT_REGISTRATION_TO_DOMAIN -- limit account ## registration to certain email addresses? If wanted, give domain ## name below. If not wanted, leave it empty. ## (example: "cern.ch"): ## CFG_ACCESS_CONTROL_NOTIFY_ADMIN_ABOUT_NEW_ACCOUNTS -- send a ## notification email to the administrator when a new account is ## created? Use 0 for no, 1 for yes. ## (example: "0") 0 ## CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_NEW_ACCOUNT -- send a ## notification email to the user when a new account is created? Use ## 0 for no, 1 for yes. ## (example: "0") 0 ## CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_ACTIVATION -- send a ## notification email to the user when a new account is activated? ## Use 0 for no, 1 for yes. ## (example: "0") 0 ## CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_DELETION -- send a ## notification email to the user when a new account is deleted or ## account demand rejected? Use 0 for no, 1 for yes. ## (example: "0") 0 ########################## ## THAT's ALL, FOLKS! ## ########################## ## And this is the end of "config.wml" WML configuration phase. Now ## please return to the main CDS source directory and type 'make'. ## (Note: if you have bravely edited the "cdsnavbar.wml" file too, ## then please do "make clean" before doing "make".) diff --git a/modules/miscutil/demo/democfgdata.sql.wml b/modules/miscutil/demo/democfgdata.sql.wml index e775e5aaa..1d47548bf 100644 --- a/modules/miscutil/demo/democfgdata.sql.wml +++ b/modules/miscutil/demo/democfgdata.sql.wml @@ -1,1147 +1,1168 @@ #include "config.wml" #include "configbis.wml" INSERT INTO collection VALUES (2,'Preprints','collection:PREPRINT',NULL,NULL,NULL); INSERT INTO collection VALUES (3,'Books','collection:BOOK',NULL,NULL,NULL); INSERT INTO collection VALUES (4,'Theses','collection:THESIS',NULL,NULL,'theses'); INSERT INTO collection VALUES (5,'Reports','collection:REPORT',NULL,NULL,NULL); INSERT INTO collection VALUES (6,'Articles','collection:ARTICLE',NULL,NULL,NULL); INSERT INTO collection VALUES (8,'Pictures','collection:PICTURE',NULL,NULL,NULL); INSERT INTO collection VALUES (9,'CERN Divisions',NULL,NULL,NULL,NULL); INSERT INTO collection VALUES (10,'CERN Experiments',NULL,NULL,NULL,NULL); INSERT INTO collection VALUES (11,'Theoretical Physics (TH)','division:TH',NULL,NULL,NULL); INSERT INTO collection VALUES (12,'Experimental Physics (EP)','division:EP',NULL,NULL,NULL); INSERT INTO collection VALUES (13,'ISOLDE','experiment:ISOLDE',NULL,NULL,NULL); INSERT INTO collection VALUES (14,'ALEPH','experiment:ALEPH',NULL,NULL,NULL); INSERT INTO collection VALUES (15,'Articles & Preprints',NULL,NULL,NULL,NULL); INSERT INTO collection VALUES (16,'Books & Reports',NULL,NULL,NULL,NULL); INSERT INTO collection VALUES (17,'Multimedia & Arts',NULL,NULL,NULL,NULL); INSERT INTO collection VALUES (18,'Poetry','collection:POETRY',NULL,NULL,NULL); INSERT INTO collectionname VALUES (2,'en','ln','Preprints'); INSERT INTO collectionname VALUES (2,'fr','ln','Prétirages'); INSERT INTO collectionname VALUES (2,'de','ln','Preprints'); INSERT INTO collectionname VALUES (2,'es','ln','Preprints'); INSERT INTO collectionname VALUES (2,'ca','ln','Preprints'); INSERT INTO collectionname VALUES (2,'pl','ln','Preprinty'); INSERT INTO collectionname VALUES (2,'pt','ln','Preprints'); INSERT INTO collectionname VALUES (2,'it','ln','Preprints'); INSERT INTO collectionname VALUES (2,'ru','ln','Препринты'); INSERT INTO collectionname VALUES (2,'sk','ln','Preprinty'); INSERT INTO collectionname VALUES (2,'cs','ln','Preprinty'); INSERT INTO collectionname VALUES (2,'no','ln','Førtrykk'); INSERT INTO collectionname VALUES (2,'sv','ln','Preprints'); INSERT INTO collectionname VALUES (2,'el','ln','Προδημοσιεύσεις'); INSERT INTO collectionname VALUES (2,'uk','ln','Препринти'); INSERT INTO collectionname VALUES (2,'ja','ln','プレプリント'); +INSERT INTO collectionname VALUES (2,'bg','ln',''); INSERT INTO collectionname VALUES (3,'en','ln','Books'); INSERT INTO collectionname VALUES (3,'fr','ln','Livres'); INSERT INTO collectionname VALUES (3,'de','ln','Bücher'); INSERT INTO collectionname VALUES (3,'es','ln','Libros'); INSERT INTO collectionname VALUES (3,'ca','ln','Llibres'); INSERT INTO collectionname VALUES (3,'pl','ln','Książki'); INSERT INTO collectionname VALUES (3,'pt','ln','Livros'); INSERT INTO collectionname VALUES (3,'it','ln','Libri'); INSERT INTO collectionname VALUES (3,'ru','ln','Книги'); INSERT INTO collectionname VALUES (3,'sk','ln','Knihy'); INSERT INTO collectionname VALUES (3,'cs','ln','Knihy'); INSERT INTO collectionname VALUES (3,'no','ln','Bøker'); INSERT INTO collectionname VALUES (3,'sv','ln',''); INSERT INTO collectionname VALUES (3,'el','ln','Βιβλία'); INSERT INTO collectionname VALUES (3,'uk','ln','Книги'); INSERT INTO collectionname VALUES (3,'ja','ln','本'); +INSERT INTO collectionname VALUES (3,'bg','ln',''); INSERT INTO collectionname VALUES (4,'en','ln','Theses'); INSERT INTO collectionname VALUES (4,'fr','ln','Thèses'); INSERT INTO collectionname VALUES (4,'de','ln','Dissertationen'); INSERT INTO collectionname VALUES (4,'es','ln','Tesis'); INSERT INTO collectionname VALUES (4,'ca','ln','Tesis'); INSERT INTO collectionname VALUES (4,'pl','ln','Prace naukowe'); INSERT INTO collectionname VALUES (4,'pt','ln','Teses'); INSERT INTO collectionname VALUES (4,'it','ln','Tesi'); INSERT INTO collectionname VALUES (4,'ru','ln','Диссертации'); INSERT INTO collectionname VALUES (4,'sk','ln','Dizertácie'); INSERT INTO collectionname VALUES (4,'cs','ln','Disertace'); INSERT INTO collectionname VALUES (4,'no','ln','Avhandlinger'); INSERT INTO collectionname VALUES (4,'sv','ln',''); INSERT INTO collectionname VALUES (4,'el','ln','Διατριβές'); INSERT INTO collectionname VALUES (4,'uk','ln','Дисертації'); INSERT INTO collectionname VALUES (4,'ja','ln','説'); +INSERT INTO collectionname VALUES (4,'bg','ln',''); INSERT INTO collectionname VALUES (5,'en','ln','Reports'); INSERT INTO collectionname VALUES (5,'fr','ln','Rapports'); INSERT INTO collectionname VALUES (5,'de','ln','Reports'); INSERT INTO collectionname VALUES (5,'es','ln','Informes'); INSERT INTO collectionname VALUES (5,'ca','ln','Informes'); INSERT INTO collectionname VALUES (5,'pl','ln','Raporty'); INSERT INTO collectionname VALUES (5,'pt','ln','Relatórios'); INSERT INTO collectionname VALUES (5,'it','ln','Rapporti'); INSERT INTO collectionname VALUES (5,'ru','ln',''); INSERT INTO collectionname VALUES (5,'sk','ln','Správy'); INSERT INTO collectionname VALUES (5,'cs','ln','Zprávy'); INSERT INTO collectionname VALUES (5,'no','ln','Rapporter'); INSERT INTO collectionname VALUES (5,'sv','ln',''); INSERT INTO collectionname VALUES (5,'el','ln','Αναφορές'); INSERT INTO collectionname VALUES (5,'uk','ln','Звіти'); INSERT INTO collectionname VALUES (5,'ja','ln','レポート'); +INSERT INTO collectionname VALUES (5,'bg','ln',''); INSERT INTO collectionname VALUES (6,'en','ln','Articles'); INSERT INTO collectionname VALUES (6,'fr','ln','Articles'); INSERT INTO collectionname VALUES (6,'de','ln','Artikel'); INSERT INTO collectionname VALUES (6,'es','ln','Articulos'); INSERT INTO collectionname VALUES (6,'ca','ln','Articles'); INSERT INTO collectionname VALUES (6,'pl','ln','Artykuły'); INSERT INTO collectionname VALUES (6,'pt','ln','Artigos'); INSERT INTO collectionname VALUES (6,'it','ln','Articoli'); INSERT INTO collectionname VALUES (6,'ru','ln','Статьи'); INSERT INTO collectionname VALUES (6,'sk','ln','Články'); INSERT INTO collectionname VALUES (6,'cs','ln','Články'); INSERT INTO collectionname VALUES (6,'no','ln','Artikler'); INSERT INTO collectionname VALUES (6,'sv','ln',''); INSERT INTO collectionname VALUES (6,'el','ln',"Άρθρα"); INSERT INTO collectionname VALUES (6,'uk','ln','Статті'); INSERT INTO collectionname VALUES (6,'ja','ln','記事'); +INSERT INTO collectionname VALUES (6,'bg','ln',''); INSERT INTO collectionname VALUES (8,'en','ln','Pictures'); INSERT INTO collectionname VALUES (8,'fr','ln','Photos'); INSERT INTO collectionname VALUES (8,'de','ln','Fotos'); INSERT INTO collectionname VALUES (8,'es','ln','Imagenes'); INSERT INTO collectionname VALUES (8,'ca','ln','Imatges'); INSERT INTO collectionname VALUES (8,'pl','ln','Obrazy'); INSERT INTO collectionname VALUES (8,'pt','ln','Fotografias'); INSERT INTO collectionname VALUES (8,'it','ln','Foto'); INSERT INTO collectionname VALUES (8,'ru','ln','Фотографии'); INSERT INTO collectionname VALUES (8,'sk','ln','Fotografie'); INSERT INTO collectionname VALUES (8,'cs','ln','Fotografie'); INSERT INTO collectionname VALUES (8,'no','ln','Fotografier'); INSERT INTO collectionname VALUES (8,'sv','ln',''); INSERT INTO collectionname VALUES (8,'el','ln','Εικόνες'); INSERT INTO collectionname VALUES (8,'uk','ln','Зображення'); INSERT INTO collectionname VALUES (8,'ja','ln','映像'); +INSERT INTO collectionname VALUES (8,'bg','ln',''); INSERT INTO collectionname VALUES (9,'en','ln','CERN Divisions'); INSERT INTO collectionname VALUES (9,'fr','ln','Divisions du CERN'); INSERT INTO collectionname VALUES (9,'de','ln','Abteilungen des CERN'); INSERT INTO collectionname VALUES (9,'es','ln','Divisiones del CERN'); INSERT INTO collectionname VALUES (9,'ca','ln','Divisions del CERN'); INSERT INTO collectionname VALUES (9,'pl','ln','Działy CERN'); INSERT INTO collectionname VALUES (9,'pt','ln','Divisões do CERN'); INSERT INTO collectionname VALUES (9,'it','ln','Divisioni del CERN'); INSERT INTO collectionname VALUES (9,'ru','ln',''); INSERT INTO collectionname VALUES (9,'sk','ln','Oddelenia CERNu'); INSERT INTO collectionname VALUES (9,'cs','ln','Oddělení CERNu'); INSERT INTO collectionname VALUES (9,'no','ln','Divisjoner ved CERN'); INSERT INTO collectionname VALUES (9,'sv','ln',''); INSERT INTO collectionname VALUES (9,'el','ln','Τομείς του CERN'); INSERT INTO collectionname VALUES (9,'uk','ln','Підрозділи CERN'); INSERT INTO collectionname VALUES (9,'ja','ln','CERN 部'); +INSERT INTO collectionname VALUES (9,'bg','ln',''); INSERT INTO collectionname VALUES (10,'en','ln','CERN Experiments'); INSERT INTO collectionname VALUES (10,'fr','ln','Expériences du CERN'); INSERT INTO collectionname VALUES (10,'de','ln','Experimente des CERN'); INSERT INTO collectionname VALUES (10,'es','ln','Experimentos del CERN'); INSERT INTO collectionname VALUES (10,'ca','ln','Experiments del CERN'); INSERT INTO collectionname VALUES (10,'pl','ln','Eksperymenty CERN'); INSERT INTO collectionname VALUES (10,'pt','ln','Experimentos do CERN'); INSERT INTO collectionname VALUES (10,'it','ln','Esperimenti del CERN'); INSERT INTO collectionname VALUES (10,'ru','ln',''); INSERT INTO collectionname VALUES (10,'sk','ln','Experimenty CERNu'); INSERT INTO collectionname VALUES (10,'cs','ln','Experimenty CERNu'); INSERT INTO collectionname VALUES (10,'no','ln','Eksperimenter ved CERN'); INSERT INTO collectionname VALUES (10,'sv','ln',''); INSERT INTO collectionname VALUES (10,'el','ln','Πειράματα του CERN'); INSERT INTO collectionname VALUES (10,'uk','ln','Експерименти CERN'); INSERT INTO collectionname VALUES (10,'ja','ln','CERN の実験'); +INSERT INTO collectionname VALUES (10,'bg','ln',''); INSERT INTO collectionname VALUES (11,'en','ln','Theoretical Physics (TH)'); INSERT INTO collectionname VALUES (11,'fr','ln','Physique Théorique (TH)'); INSERT INTO collectionname VALUES (11,'de','ln','Theoretische Physik (TH)'); INSERT INTO collectionname VALUES (11,'es','ln','Física teórica (TH)'); INSERT INTO collectionname VALUES (11,'ca','ln','Física teòrica (TH)'); INSERT INTO collectionname VALUES (11,'pl','ln','Fizyka Teoretyczna (TH)'); INSERT INTO collectionname VALUES (11,'pt','ln','Física Teórica (TH)'); INSERT INTO collectionname VALUES (11,'it','ln','Fisica Teorica (TH)'); INSERT INTO collectionname VALUES (11,'ru','ln',''); INSERT INTO collectionname VALUES (11,'sk','ln','Teoretická fyzika (TH)'); INSERT INTO collectionname VALUES (11,'cs','ln','Teoretická fyzika (TH)'); INSERT INTO collectionname VALUES (11,'no','ln','Teoretisk fysikk (TH)'); INSERT INTO collectionname VALUES (11,'sv','ln',''); INSERT INTO collectionname VALUES (11,'el','ln','Θεωρητική Φυσική (TH)'); INSERT INTO collectionname VALUES (11,'uk','ln','Теоретична фізика (TH)'); INSERT INTO collectionname VALUES (11,'ja','ln','理論的な物理学 (TH)'); +INSERT INTO collectionname VALUES (10,'bg','ln',''); INSERT INTO collectionname VALUES (12,'en','ln','Experimental Physics (EP)'); INSERT INTO collectionname VALUES (12,'fr','ln','Physique Expérimentale (EP)'); INSERT INTO collectionname VALUES (12,'de','ln','Experimentelle Physik (EP)'); INSERT INTO collectionname VALUES (12,'es','ln','Física experimental (FE)'); INSERT INTO collectionname VALUES (12,'ca','ln','Física experimental (EP)'); INSERT INTO collectionname VALUES (12,'pl','ln','Fizyka Doświadczalna (EP)'); INSERT INTO collectionname VALUES (12,'pt','ln','Física Experimental (EP)'); INSERT INTO collectionname VALUES (12,'it','ln','Fisica Sperimentale (EP)'); INSERT INTO collectionname VALUES (12,'ru','ln',''); INSERT INTO collectionname VALUES (12,'sk','ln','Experimentálna fyzika (EP)'); INSERT INTO collectionname VALUES (12,'cs','ln','Experimentální fyzika (EP)'); INSERT INTO collectionname VALUES (12,'no','ln','Eksperimentell fysikk (EP)'); INSERT INTO collectionname VALUES (12,'sv','ln',''); INSERT INTO collectionname VALUES (12,'el','ln','Πειραματική Φυσική (EP)'); INSERT INTO collectionname VALUES (12,'uk','ln','Експериментальна фізика (EP)'); INSERT INTO collectionname VALUES (12,'ja','ln','実験物理学 (EP)'); +INSERT INTO collectionname VALUES (12,'bg','ln',''); INSERT INTO collectionname VALUES (13,'en','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'fr','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'de','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'es','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'ca','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'pl','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'pt','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'it','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'ru','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'sk','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'cs','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'no','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'sv','ln',''); INSERT INTO collectionname VALUES (13,'el','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'uk','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'ja','ln','ISOLDE'); +INSERT INTO collectionname VALUES (13,'bg','ln',''); INSERT INTO collectionname VALUES (14,'en','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'fr','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'de','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'es','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'ca','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'pl','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'pt','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'it','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'ru','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'sk','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'cs','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'no','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'sv','ln',''); INSERT INTO collectionname VALUES (14,'el','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'uk','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'ja','ln','ALEPH'); +INSERT INTO collectionname VALUES (14,'bg','ln',''); INSERT INTO collectionname VALUES (15,'en','ln','Articles & Preprints'); INSERT INTO collectionname VALUES (15,'fr','ln','Articles et Prétirages'); INSERT INTO collectionname VALUES (15,'de','ln','Artikel & Preprints'); INSERT INTO collectionname VALUES (15,'es','ln','Articulos y preprints'); INSERT INTO collectionname VALUES (15,'ca','ln','Articles i preprints'); INSERT INTO collectionname VALUES (15,'pl','ln','Artykuły i Preprinty'); INSERT INTO collectionname VALUES (15,'pt','ln','Artigos e Preprints'); INSERT INTO collectionname VALUES (15,'it','ln','Articoli e Preprints'); INSERT INTO collectionname VALUES (15,'ru','ln','Статьи и Препринты'); INSERT INTO collectionname VALUES (15,'sk','ln','Články a Preprinty'); INSERT INTO collectionname VALUES (15,'cs','ln','Články a Preprinty'); INSERT INTO collectionname VALUES (15,'no','ln','Artikler og Førtrykk'); INSERT INTO collectionname VALUES (15,'sv','ln',''); INSERT INTO collectionname VALUES (15,'el','ln',"Άρθρα & Προδημοσιεύσεις"); INSERT INTO collectionname VALUES (15,'uk','ln','Статті та Препринти'); INSERT INTO collectionname VALUES (15,'ja','ln','記事及びプレプリント'); +INSERT INTO collectionname VALUES (15,'bg','ln',''); INSERT INTO collectionname VALUES (16,'en','ln','Books & Reports'); INSERT INTO collectionname VALUES (16,'fr','ln','Livres et Rapports'); INSERT INTO collectionname VALUES (16,'de','ln','Monographien & Reports'); INSERT INTO collectionname VALUES (16,'es','ln','Libros e informes'); INSERT INTO collectionname VALUES (16,'ca','ln','Llibres i informes'); INSERT INTO collectionname VALUES (16,'pl','ln','Książki i Raporty'); INSERT INTO collectionname VALUES (16,'pt','ln','Livros e Relatórios'); INSERT INTO collectionname VALUES (16,'it','ln','Libri e Rapporti'); INSERT INTO collectionname VALUES (16,'ru','ln',''); INSERT INTO collectionname VALUES (16,'sk','ln','Knihy a Správy'); INSERT INTO collectionname VALUES (16,'cs','ln','Knihy a Zprávy'); INSERT INTO collectionname VALUES (16,'no','ln','Bøker og Rapporter'); INSERT INTO collectionname VALUES (16,'sv','ln',''); INSERT INTO collectionname VALUES (16,'el','ln','Βιβλία & Αναφορές'); INSERT INTO collectionname VALUES (16,'uk','ln','Книги та Звіти'); INSERT INTO collectionname VALUES (16,'ja','ln','本及びレポート'); +INSERT INTO collectionname VALUES (16,'bg','ln',''); INSERT INTO collectionname VALUES (17,'en','ln','Multimedia & Arts'); INSERT INTO collectionname VALUES (17,'fr','ln','Multimédia et Arts'); INSERT INTO collectionname VALUES (17,'de','ln','Multimedia & Kunst'); INSERT INTO collectionname VALUES (17,'es','ln','Multimedia y artes'); INSERT INTO collectionname VALUES (17,'ca','ln','Multimèdia i arts'); INSERT INTO collectionname VALUES (17,'pl','ln','Multimedia i Sztuka'); INSERT INTO collectionname VALUES (17,'pt','ln','Multimédia e Artes'); INSERT INTO collectionname VALUES (17,'it','ln','Multimedia e Arti'); INSERT INTO collectionname VALUES (17,'ru','ln',''); INSERT INTO collectionname VALUES (17,'sk','ln','Multimédia a Umenie'); INSERT INTO collectionname VALUES (17,'cs','ln','Multimédia a Umění'); INSERT INTO collectionname VALUES (17,'no','ln','Multimedia og Grafikk'); INSERT INTO collectionname VALUES (17,'sv','ln',''); INSERT INTO collectionname VALUES (17,'el','ln','Πολυμέσα & Τέχνες'); INSERT INTO collectionname VALUES (17,'uk','ln','Мультимедіа та Мистецтво'); INSERT INTO collectionname VALUES (17,'ja','ln','マルチメディア及び芸術'); +INSERT INTO collectionname VALUES (17,'bg','ln',''); INSERT INTO collectionname VALUES (18,'en','ln','Poetry'); INSERT INTO collectionname VALUES (18,'fr','ln','Poésie'); INSERT INTO collectionname VALUES (18,'de','ln','Poesie'); INSERT INTO collectionname VALUES (18,'es','ln','Poesía'); INSERT INTO collectionname VALUES (18,'ca','ln','Poesia'); INSERT INTO collectionname VALUES (18,'pl','ln','Poezja'); INSERT INTO collectionname VALUES (18,'pt','ln','Poesia'); INSERT INTO collectionname VALUES (18,'it','ln','Poesia'); INSERT INTO collectionname VALUES (18,'ru','ln','Поэзия'); INSERT INTO collectionname VALUES (18,'sk','ln','Poézia'); INSERT INTO collectionname VALUES (18,'cs','ln','Poezie'); INSERT INTO collectionname VALUES (18,'no','ln','Poesi'); INSERT INTO collectionname VALUES (18,'sv','ln',''); INSERT INTO collectionname VALUES (18,'el','ln','Ποίηση'); INSERT INTO collectionname VALUES (18,'uk','ln','Поезія'); INSERT INTO collectionname VALUES (18,'ja','ln','詩歌'); +INSERT INTO collectionname VALUES (18,'bg','ln',''); INSERT INTO collection_collection VALUES (1,15,'r',60); INSERT INTO collection_collection VALUES (1,16,'r',40); INSERT INTO collection_collection VALUES (1,17,'r',30); INSERT INTO collection_collection VALUES (15,6,'r',20); INSERT INTO collection_collection VALUES (15,2,'r',10); INSERT INTO collection_collection VALUES (16,3,'r',30); INSERT INTO collection_collection VALUES (16,4,'r',20); INSERT INTO collection_collection VALUES (16,5,'r',10); INSERT INTO collection_collection VALUES (17,8,'r',20); INSERT INTO collection_collection VALUES (17,18,'r',10); INSERT INTO collection_collection VALUES (1,9,'v',20); INSERT INTO collection_collection VALUES (1,10,'v',10); INSERT INTO collection_collection VALUES (9,11,'r',10); INSERT INTO collection_collection VALUES (9,12,'r',20); INSERT INTO collection_collection VALUES (10,13,'r',10); INSERT INTO collection_collection VALUES (10,14,'r',20); INSERT INTO collection_example VALUES (1,1,1); INSERT INTO collection_example VALUES (1,5,2); INSERT INTO collection_example VALUES (1,8,3); INSERT INTO collection_example VALUES (1,7,5); INSERT INTO collection_example VALUES (1,6,4); INSERT INTO collection_example VALUES (1,4,6); INSERT INTO collection_example VALUES (1,3,7); INSERT INTO collection_example VALUES (1,13,50); INSERT INTO collection_example VALUES (1,2,8); INSERT INTO collection_example VALUES (2,1,1); INSERT INTO collection_example VALUES (2,5,2); INSERT INTO collection_example VALUES (2,8,3); INSERT INTO collection_example VALUES (2,7,5); INSERT INTO collection_example VALUES (2,6,4); INSERT INTO collection_example VALUES (2,4,6); INSERT INTO collection_example VALUES (2,3,7); INSERT INTO collection_example VALUES (2,2,8); INSERT INTO collection_example VALUES (3,6,30); INSERT INTO collection_example VALUES (3,17,10); INSERT INTO collection_example VALUES (3,18,20); INSERT INTO collection_example VALUES (4,1,1); INSERT INTO collection_example VALUES (4,5,2); INSERT INTO collection_example VALUES (4,8,3); INSERT INTO collection_example VALUES (4,7,5); INSERT INTO collection_example VALUES (4,6,4); INSERT INTO collection_example VALUES (4,4,6); INSERT INTO collection_example VALUES (4,3,7); INSERT INTO collection_example VALUES (4,2,8); INSERT INTO collection_example VALUES (5,1,1); INSERT INTO collection_example VALUES (5,5,2); INSERT INTO collection_example VALUES (5,8,3); INSERT INTO collection_example VALUES (5,7,5); INSERT INTO collection_example VALUES (5,6,4); INSERT INTO collection_example VALUES (5,4,6); INSERT INTO collection_example VALUES (5,3,7); INSERT INTO collection_example VALUES (5,2,8); INSERT INTO collection_example VALUES (6,1,10); INSERT INTO collection_example VALUES (6,5,20); INSERT INTO collection_example VALUES (6,8,30); INSERT INTO collection_example VALUES (6,0,27); INSERT INTO collection_example VALUES (6,4,40); INSERT INTO collection_example VALUES (6,3,60); INSERT INTO collection_example VALUES (6,2,80); INSERT INTO collection_example VALUES (8,14,10); INSERT INTO collection_example VALUES (8,15,20); INSERT INTO collection_example VALUES (8,16,30); INSERT INTO collection_example VALUES (15,0,27); INSERT INTO collection_example VALUES (15,1,1); INSERT INTO collection_example VALUES (15,2,8); INSERT INTO collection_example VALUES (15,3,60); INSERT INTO collection_example VALUES (15,4,40); INSERT INTO collection_example VALUES (15,5,2); INSERT INTO collection_example VALUES (15,6,4); INSERT INTO collection_example VALUES (15,7,5); INSERT INTO collection_example VALUES (15,8,3); INSERT INTO collection_example VALUES (16,1,1); INSERT INTO collection_example VALUES (16,2,8); INSERT INTO collection_example VALUES (16,3,7); INSERT INTO collection_example VALUES (16,4,6); INSERT INTO collection_example VALUES (16,5,2); INSERT INTO collection_example VALUES (16,6,4); INSERT INTO collection_example VALUES (16,7,5); INSERT INTO collection_example VALUES (16,8,3); INSERT INTO collection_example VALUES (17,14,10); INSERT INTO collection_example VALUES (17,15,20); INSERT INTO collection_example VALUES (17,16,30); INSERT INTO collection_field_fieldvalue VALUES (2,7,7,'seo',10,18); INSERT INTO collection_field_fieldvalue VALUES (2,7,6,'seo',10,19); INSERT INTO collection_field_fieldvalue VALUES (2,7,5,'seo',10,20); INSERT INTO collection_field_fieldvalue VALUES (2,7,4,'seo',10,21); INSERT INTO collection_field_fieldvalue VALUES (6,7,1,'seo',2,24); INSERT INTO collection_field_fieldvalue VALUES (6,7,2,'seo',2,23); INSERT INTO collection_field_fieldvalue VALUES (6,7,3,'seo',2,22); INSERT INTO collection_field_fieldvalue VALUES (6,7,4,'seo',2,21); INSERT INTO collection_field_fieldvalue VALUES (6,7,5,'seo',2,20); INSERT INTO collection_field_fieldvalue VALUES (6,7,6,'seo',2,19); INSERT INTO collection_field_fieldvalue VALUES (6,7,7,'seo',2,18); INSERT INTO collection_field_fieldvalue VALUES (6,7,8,'seo',2,17); INSERT INTO collection_field_fieldvalue VALUES (6,7,9,'seo',2,16); INSERT INTO collection_field_fieldvalue VALUES (6,7,10,'seo',2,15); INSERT INTO collection_field_fieldvalue VALUES (6,7,11,'seo',2,14); INSERT INTO collection_field_fieldvalue VALUES (6,7,12,'seo',2,13); INSERT INTO collection_field_fieldvalue VALUES (6,7,13,'seo',2,12); INSERT INTO collection_field_fieldvalue VALUES (6,7,14,'seo',2,11); INSERT INTO collection_field_fieldvalue VALUES (6,7,15,'seo',2,10); INSERT INTO collection_field_fieldvalue VALUES (6,7,16,'seo',2,9); INSERT INTO collection_field_fieldvalue VALUES (6,7,17,'seo',2,8); INSERT INTO collection_field_fieldvalue VALUES (6,7,18,'seo',2,7); INSERT INTO collection_field_fieldvalue VALUES (6,7,19,'seo',2,6); INSERT INTO collection_field_fieldvalue VALUES (6,7,20,'seo',2,5); INSERT INTO collection_field_fieldvalue VALUES (6,7,21,'seo',2,4); INSERT INTO collection_field_fieldvalue VALUES (6,7,22,'seo',2,3); INSERT INTO collection_field_fieldvalue VALUES (6,7,23,'seo',2,2); INSERT INTO collection_field_fieldvalue VALUES (6,7,24,'seo',2,1); INSERT INTO collection_field_fieldvalue VALUES (2,7,3,'seo',10,22); INSERT INTO collection_field_fieldvalue VALUES (2,7,2,'seo',10,23); INSERT INTO collection_field_fieldvalue VALUES (6,8,NULL,'sew',2,0); INSERT INTO collection_field_fieldvalue VALUES (2,7,1,'seo',10,24); INSERT INTO collection_field_fieldvalue VALUES (6,4,NULL,'sew',4,70); INSERT INTO collection_field_fieldvalue VALUES (6,2,NULL,'sew',3,70); INSERT INTO collection_field_fieldvalue VALUES (6,5,NULL,'sew',1,70); INSERT INTO collection_field_fieldvalue VALUES (6,11,25,'seo',1,1); INSERT INTO collection_field_fieldvalue VALUES (6,11,26,'seo',1,2); INSERT INTO collection_field_fieldvalue VALUES (8,7,27,'seo',10,3); INSERT INTO collection_field_fieldvalue VALUES (8,7,28,'seo',10,1); INSERT INTO collection_field_fieldvalue VALUES (8,7,29,'seo',10,4); INSERT INTO collection_field_fieldvalue VALUES (8,7,30,'seo',10,2); INSERT INTO collection_field_fieldvalue VALUES (6,3,NULL,'sew',5,70); INSERT INTO collection_field_fieldvalue VALUES (2,7,8,'seo',10,17); INSERT INTO collection_field_fieldvalue VALUES (2,7,9,'seo',10,16); INSERT INTO collection_field_fieldvalue VALUES (2,7,10,'seo',10,15); INSERT INTO collection_field_fieldvalue VALUES (2,7,11,'seo',10,14); INSERT INTO collection_field_fieldvalue VALUES (2,7,12,'seo',10,13); INSERT INTO collection_field_fieldvalue VALUES (2,7,13,'seo',10,12); INSERT INTO collection_field_fieldvalue VALUES (2,7,14,'seo',10,11); INSERT INTO collection_field_fieldvalue VALUES (2,7,15,'seo',10,10); INSERT INTO collection_field_fieldvalue VALUES (2,7,16,'seo',10,9); INSERT INTO collection_field_fieldvalue VALUES (2,7,17,'seo',10,8); INSERT INTO collection_field_fieldvalue VALUES (2,7,18,'seo',10,7); INSERT INTO collection_field_fieldvalue VALUES (2,7,19,'seo',10,6); INSERT INTO collection_field_fieldvalue VALUES (2,7,20,'seo',10,5); INSERT INTO collection_field_fieldvalue VALUES (2,7,21,'seo',10,4); INSERT INTO collection_field_fieldvalue VALUES (2,7,22,'seo',10,3); INSERT INTO collection_field_fieldvalue VALUES (2,7,23,'seo',10,2); INSERT INTO collection_field_fieldvalue VALUES (2,7,24,'seo',10,1); INSERT INTO collection_field_fieldvalue VALUES (2,8,NULL,'sew',20,0); INSERT INTO collection_field_fieldvalue VALUES (2,4,NULL,'sew',40,70); INSERT INTO collection_field_fieldvalue VALUES (2,2,NULL,'sew',60,70); INSERT INTO collection_field_fieldvalue VALUES (2,5,NULL,'sew',30,70); INSERT INTO collection_field_fieldvalue VALUES (2,11,26,'seo',5,1); INSERT INTO collection_field_fieldvalue VALUES (2,3,NULL,'sew',50,70); INSERT INTO collection_field_fieldvalue VALUES (2,11,25,'seo',5,2); INSERT INTO collection_field_fieldvalue VALUES (2,11,32,'seo',5,0); INSERT INTO collection_field_fieldvalue VALUES (3,2,NULL,'sew',10,0); INSERT INTO collection_field_fieldvalue VALUES (3,3,NULL,'sew',20,0); INSERT INTO collection_field_fieldvalue VALUES (3,12,NULL,'sew',30,0); INSERT INTO collection_field_fieldvalue VALUES (4,4,NULL,'sew',30,0); INSERT INTO collection_field_fieldvalue VALUES (4,3,NULL,'sew',40,0); INSERT INTO collection_field_fieldvalue VALUES (4,12,NULL,'sew',10,0); INSERT INTO collection_field_fieldvalue VALUES (4,2,NULL,'sew',50,0); INSERT INTO collection_field_fieldvalue VALUES (4,6,NULL,'sew',20,0); INSERT INTO collection_field_fieldvalue VALUES (4,7,NULL,'seo',10,0); INSERT INTO collection_field_fieldvalue VALUES (4,7,12,'seo',10,2); INSERT INTO collection_field_fieldvalue VALUES (4,7,8,'seo',10,3); INSERT INTO collection_field_fieldvalue VALUES (4,7,10,'seo',10,1); INSERT INTO collection_field_fieldvalue VALUES (5,6,NULL,'sew',20,0); INSERT INTO collection_field_fieldvalue VALUES (5,12,NULL,'sew',10,0); INSERT INTO collection_field_fieldvalue VALUES (5,4,NULL,'sew',30,0); INSERT INTO collection_field_fieldvalue VALUES (5,3,NULL,'sew',40,0); INSERT INTO collection_field_fieldvalue VALUES (5,2,NULL,'sew',50,0); INSERT INTO collection_field_fieldvalue VALUES (5,7,NULL,'seo',10,0); INSERT INTO collection_field_fieldvalue VALUES (5,7,9,'seo',10,3); INSERT INTO collection_field_fieldvalue VALUES (5,7,12,'seo',10,2); INSERT INTO collection_field_fieldvalue VALUES (8,6,NULL,'sew',10,0); INSERT INTO collection_field_fieldvalue VALUES (8,2,NULL,'sew',50,0); INSERT INTO collection_field_fieldvalue VALUES (8,3,NULL,'sew',40,0); INSERT INTO collection_field_fieldvalue VALUES (8,5,NULL,'sew',20,0); INSERT INTO collection_field_fieldvalue VALUES (8,4,NULL,'sew',30,0); INSERT INTO collection_field_fieldvalue VALUES (6,2,NULL,'soo',40,0); INSERT INTO collection_field_fieldvalue VALUES (6,3,NULL,'soo',30,0); INSERT INTO collection_field_fieldvalue VALUES (6,6,NULL,'soo',20,0); INSERT INTO collection_field_fieldvalue VALUES (6,12,NULL,'soo',10,0); INSERT INTO collection_format VALUES (6,1,100); INSERT INTO collection_format VALUES (6,2,90); INSERT INTO collection_format VALUES (6,3,80); INSERT INTO collection_format VALUES (6,4,70); INSERT INTO collection_format VALUES (6,5,60); INSERT INTO collection_format VALUES (2,1,100); INSERT INTO collection_format VALUES (2,2,90); INSERT INTO collection_format VALUES (2,3,80); INSERT INTO collection_format VALUES (2,4,70); INSERT INTO collection_format VALUES (2,5,60); INSERT INTO collection_format VALUES (3,1,100); INSERT INTO collection_format VALUES (3,2,90); INSERT INTO collection_format VALUES (3,3,80); INSERT INTO collection_format VALUES (3,4,70); INSERT INTO collection_format VALUES (3,5,60); INSERT INTO collection_format VALUES (4,1,100); INSERT INTO collection_format VALUES (4,2,90); INSERT INTO collection_format VALUES (4,3,80); INSERT INTO collection_format VALUES (4,4,70); INSERT INTO collection_format VALUES (4,5,60); INSERT INTO collection_format VALUES (5,1,100); INSERT INTO collection_format VALUES (5,2,90); INSERT INTO collection_format VALUES (5,3,80); INSERT INTO collection_format VALUES (5,4,70); INSERT INTO collection_format VALUES (5,5,60); INSERT INTO collection_format VALUES (8,1,100); INSERT INTO collection_format VALUES (8,2,90); INSERT INTO collection_format VALUES (8,3,80); INSERT INTO collection_format VALUES (8,4,70); INSERT INTO collection_format VALUES (8,5,60); INSERT INTO collection_format VALUES (8,6,96); INSERT INTO collection_format VALUES (8,7,93); INSERT INTO collection_format VALUES (1,1,100); INSERT INTO collection_format VALUES (1,2,90); INSERT INTO collection_format VALUES (1,3,80); INSERT INTO collection_format VALUES (1,4,70); INSERT INTO collection_format VALUES (1,5,60); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,1,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,2,'en','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (6,3,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (6,49,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (6,4,'en','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (2,5,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (2,45,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (2,6,'en','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (3,7,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (3,46,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (3,8,'en','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (4,9,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (4,47,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (4,10,'en','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (5,11,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (5,48,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (8,14,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (8,50,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (9,15,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (10,16,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (11,17,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (12,18,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (13,19,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (14,20,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (15,21,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (15,51,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (16,22,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (16,52,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (17,23,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (17,53,'en','rt',95); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (18,24,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,25,'fr','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,26,'fr','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,27,'sk','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,28,'sk','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,29,'cs','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,30,'cs','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,31,'de','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,32,'de','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,33,'es','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,34,'es','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,35,'it','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,36,'it','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,37,'no','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,38,'no','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,39,'pt','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,40,'pt','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,41,'ru','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,42,'ru','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,43,'sv','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,44,'sv','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,54,'el','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,55,'el','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,56,'uk','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,57,'uk','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,58,'ca','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,59,'ca','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,60,'ja','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,61,'ja','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,62,'pl','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,63,'pl','rt',90); +INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,64,'bg','rt',100); +INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,65,'bg','rt',90); INSERT INTO example VALUES (1,'author search','Search for Ellis, J within author field.'); INSERT INTO example VALUES (2,'word search','Search for quantum within any field.'); INSERT INTO example VALUES (3,'wildcard word search','Search for quant* within any field.'); INSERT INTO example VALUES (4,'phrase search','Search for \'standard model\' within title field.'); INSERT INTO example VALUES (5,'boolean search','Search for quark -sigma +dense within any field.'); INSERT INTO example VALUES (6,'complex boolean search','Search for author:draper title:electrical within any field.'); INSERT INTO example VALUES (7,'complex boolean search','Search for author:ellis -muon* +abstract:\'dense quark matter\' within any field.'); INSERT INTO example VALUES (8,'boolean search','Search for ellis muon* within any field.'); INSERT INTO example VALUES (13,'reference search','Search for Theor. Math. Phys. 2 (1998) 231 within references field.'); INSERT INTO example VALUES (14,'phrase search','Search for Higgs boson within abstract field.'); INSERT INTO example VALUES (15,'wildcard word search','Search for cal* within any field.'); INSERT INTO example VALUES (16,'keyword search','Search for Nobel within keyword field.'); INSERT INTO example VALUES (17,'author search','Search for Cole within author field.'); INSERT INTO example VALUES (18,'phrase search','Search for \'nuclear electronics\' within title field.'); INSERT INTO fieldvalue VALUES (1,'Particle Physics','Particle Physics'); INSERT INTO fieldvalue VALUES (2,'Particle Physics - Experimental Results','Particle Physics - Experimental Results'); INSERT INTO fieldvalue VALUES (3,'Particle Physics - Phenomenology','Particle Physics - Phenomenology'); INSERT INTO fieldvalue VALUES (4,'Particle Physics - Theory','Particle Physics - Theory'); INSERT INTO fieldvalue VALUES (5,'Particle Physics - Lattice','Particle Physics - Lattice'); INSERT INTO fieldvalue VALUES (6,'Nuclear Physics','Nuclear Physics'); INSERT INTO fieldvalue VALUES (7,'General Relativity and Cosmology','General Relativity and Cosmology'); INSERT INTO fieldvalue VALUES (8,'General Theoretical Physics','General Theoretical Physics'); INSERT INTO fieldvalue VALUES (9,'Detectors and Experimental Techniques','Detectors and Experimental Techniques'); INSERT INTO fieldvalue VALUES (10,'Accelerators and Storage Rings','Accelerators and Storage Rings'); INSERT INTO fieldvalue VALUES (11,'Health Physics and Radiation Effects','Health Physics and Radiation Effects'); INSERT INTO fieldvalue VALUES (12,'Computing and Computers','Computing and Computers'); INSERT INTO fieldvalue VALUES (13,'Mathematical Physics and Mathematics','Mathematical Physics and Mathematics'); INSERT INTO fieldvalue VALUES (14,'Astrophysics and Astronomy','Astrophysics and Astronomy'); INSERT INTO fieldvalue VALUES (15,'Nonlinear Systems','Nonlinear Systems'); INSERT INTO fieldvalue VALUES (16,'Condensed Matter','Condensed Matter'); INSERT INTO fieldvalue VALUES (17,'Other Fields of Physics','Other Fields of Physics'); INSERT INTO fieldvalue VALUES (18,'Chemical Physics and Chemistry','Chemical Physics and Chemistry'); INSERT INTO fieldvalue VALUES (19,'Engineering','Engineering'); INSERT INTO fieldvalue VALUES (20,'Information Transfer and Management','Information Transfer and Management'); INSERT INTO fieldvalue VALUES (21,'Other Aspects of Science','Other Aspects of Science'); INSERT INTO fieldvalue VALUES (22,'Commerce, Economics, Social Science','Commerce, Economics, Social Science'); INSERT INTO fieldvalue VALUES (23,'Biography, Geography, History','Biography, Geography, History'); INSERT INTO fieldvalue VALUES (24,'Other Subjects','Other Subjects'); INSERT INTO fieldvalue VALUES (25,'CERN TH','TH'); INSERT INTO fieldvalue VALUES (26,'CERN PPE','PPE'); INSERT INTO fieldvalue VALUES (27,'Experiments and Tracks','Experiments and Tracks'); INSERT INTO fieldvalue VALUES (28,'Personalities and History of CERN','Personalities and History of CERN'); INSERT INTO fieldvalue VALUES (29,'Diagrams and Charts','Diagrams and Charts'); INSERT INTO fieldvalue VALUES (30,'Life at CERN','Life at CERN'); INSERT INTO fieldvalue VALUES (31,'CERN ETT','ETT'); INSERT INTO fieldvalue VALUES (32,'CERN EP','EP'); INSERT INTO oaiARCHIVE VALUES (2,'CERN experimental papers','cern:experiment','','','',NULL,'*','','','','','',NULL,NULL,NULL); INSERT INTO oaiARCHIVE VALUES (3,'CERN theoretical papers','cern:theory','','','',NULL,'*','','','','','',NULL,NULL,NULL); INSERT INTO portalbox VALUES (1,'ABOUT THIS SITE','Welcome to the demo site of the CDS Invenio, a free document server software coming from CERN. Please feel free to explore all the features of this demo site to the full.'); INSERT INTO portalbox VALUES (2,'SEE ALSO','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (3,'ABOUT ARTICLES','The Articles collection contains all the papers published in scientific journals by our staff. The collection starts from 1998.'); INSERT INTO portalbox VALUES (4,'SEE ALSO','arXiv.org
CDS
ChemWeb
MathSciNet'); INSERT INTO portalbox VALUES (5,'ABOUT PREPRINTS','The Preprints collection contains not-yet-published papers and research results obtained at the institute. The collection starts from 2001.'); INSERT INTO portalbox VALUES (6,'SEE ALSO','arXiv.org
CDS'); INSERT INTO portalbox VALUES (7,'ABOUT BOOKS','The Books collection contains monographs published by institute staff as well as pointers to interesting online e-books available in fulltext.'); INSERT INTO portalbox VALUES (8,'SEE ALSO','UV e-Books
Project Gutenberg'); INSERT INTO portalbox VALUES (9,'ABOUT THESES','The Theses collection contains all students\' theses defended at the institute. The collection starts from 1950.'); INSERT INTO portalbox VALUES (10,'SEE ALSO','NDLTD Theses
Thesis.DE'); INSERT INTO portalbox VALUES (11,'ABOUT REPORTS','The Reports collection contains miscellaneous technical reports, unpublished elsewhere. The collection starts from 1950.'); INSERT INTO portalbox VALUES (12,'TEST portal box','this is a test portal box'); INSERT INTO portalbox VALUES (13,'test','this is a test portal box'); INSERT INTO portalbox VALUES (14,'ABOUT PICTURES','The Pictures collection contains selected photographs and illustrations. Please note that photographs are copyrighted. The collection includes historical archive that starts from 1950.'); INSERT INTO portalbox VALUES (15,'ABOUT CERN DIVISIONS','These virtual collections present a specific point of view on the database content from CERN Divisions persective.'); INSERT INTO portalbox VALUES (16,'ABOUT CERN EXPERIMENTS','These virtual collections present a specific point of view on the database content from CERN Experiments persective.'); INSERT INTO portalbox VALUES (17,'ABOUT TH','This virtual collection groups together all the documents written by authors from CERN TH Division.'); INSERT INTO portalbox VALUES (18,'ABOUT EP','This virtual collection groups together all the documents written by authors from CERN EP Division.'); INSERT INTO portalbox VALUES (19,'ABOUT ISOLDE','This virtual collection groups together all the documents about ISOLDE CERN experiment.'); INSERT INTO portalbox VALUES (20,'ABOUT ALEPH','This virtual collection groups together all the documents about ALEPH CERN experiment.'); INSERT INTO portalbox VALUES (21,'ABOUT ARTICLES AND PREPRINTS','This collection groups together all published and non-published articles, many of which in electronic fulltext form.'); INSERT INTO portalbox VALUES (22,'ABOUT BOOKS AND REPORTS','This collection groups together all monograph-like publications, be they books, theses, reports, book chapters, proceedings, and so on.'); INSERT INTO portalbox VALUES (23,'ABOUT MULTIMEDIA & OUTREACH','This collection groups together all multimedia- and outreach- oriented material.'); INSERT INTO portalbox VALUES (24,'ABOUT POETRY','This collection presents poetry excerpts, mainly to demonstrate and test the treatment of various languages.

Vitrum edere possum; mihi non nocet.
Μπορώ να φάω σπασμένα γυαλιά χωρίς να πάθω τίποτα.
Pòdi manjar de veire, me nafrariá pas.
Ég get etið gler án þess að meiða mig.
Ic mæg glæs eotan ond hit ne hearmiað me.
ᛁᚳ᛫ᛗᚨᚷ᛫ᚷᛚᚨᛋ᛫ᛖᚩᛏᚪᚾ᛫ᚩᚾᛞ᛫ᚻᛁᛏ᛫ᚾᛖ᛫ᚻᛖᚪᚱᛗᛁᚪᚧ᛫ᛗᛖ᛬
⠊⠀⠉⠁⠝⠀⠑⠁⠞⠀⠛⠇⠁⠎⠎⠀⠁⠝⠙⠀⠊⠞⠀⠙⠕⠑⠎⠝⠞⠀⠓⠥⠗⠞⠀⠍⠑
Pot să mănânc sticlă și ea nu mă rănește.
Meg tudom enni az üveget, nem lesz tőle bajom.
Môžem jesť sklo. Nezraní ma.
אני יכול לאכול זכוכית וזה לא מזיק לי.
איך קען עסן גלאָז און עס טוט מיר נישט װײ.
أنا قادر على أكل الزجاج و هذا لا يؤلمني.
Я могу есть стекло, оно мне не вредит.
მინას ვჭამ და არა მტკივა.
Կրնամ ապակի ուտել և ինծի անհանգիստ չըներ։
मैं काँच खा सकता हूँ, मुझे उस से कोई पीडा नहीं होती.
काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥
ฉันกินกระจกได้ แต่มันไม่ทำให้ฉันเจ็บ
Tôi có thể ăn thủy tinh mà không hại gì.
我能吞下玻璃而不伤身体。
私はガラスを食べられます。それは私を傷つけません。
나는 유리를 먹을 수 있어요. 그래도 아프지 않아요
(http://www.columbia.edu/kermit/utf8.html)'); INSERT INTO portalbox VALUES (25,'À PROPOS DE CE SITE','Bienvenue sur le site de démonstration de CDS Invenio, un logiciel libre pour des serveurs des documents, venant du CERN. Veuillez explorer les possibilités de ce site de démonstration de tous ses côtés.'); INSERT INTO portalbox VALUES (26,'VOIR AUSSI','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (27,'O TÝCHTO STRÁNKACH','Vitajte na demonštračných stránkach CDS Invenio, voľne dostupného softwaru pre dokumentové servery, pochádzajúceho z CERNu. Prehliadnite si možnosti našeho demonštračného serveru podla ľubovôle.'); INSERT INTO portalbox VALUES (28,'VIĎ TIEŽ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (29,'O TĚCHTO STRÁNKÁCH','Vítejte na demonstračních stránkách CDS Invenio, volně dostupného softwaru pro dokumentové servery, pocházejícího z CERNu. Prohlédněte si možnosti našeho demonstračního serveru podle libosti.'); INSERT INTO portalbox VALUES (30,'VIZ TÉŽ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (31,'ÜBER DIESEN SEITEN','Willkommen Sie bei der Demo-Seite des CDS Invenio, des Dokument Management Systems Software aus CERN. Hier können Sie den System gleich und frei ausprobieren.'); INSERT INTO portalbox VALUES (32,'SEHEN SIE AUCH','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (33,'ACERCA DE ESTAS PÁGINAS','Bienvenidos a las páginas de demostración de CDS Invenio, un software gratuito desarrollado por el CERN que permite crear un servidor de documentos. Le invitamos a explorar a fondo todas las funcionalidades ofrecidas por estas páginas de demostración.'); INSERT INTO portalbox VALUES (34,'VEA TAMBIÉN','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (35,'A PROPOSITO DI QUESTO SITO','Benvenuti nel sito demo di CDS Invenio, un software libre per server di documenti sviluppato al CERN. Vi invitiamo ad esplorare a fondo tutte le caratteristiche di questo sito demo.'); INSERT INTO portalbox VALUES (36,'VEDI ANCHE','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (37,'OM DENNE SIDEN','Velkommen til demosiden for CDS Invenio, en gratis dokumentserver fra CERN. Vennligst føl deg fri til å utforske alle mulighetene i denne demoen til det fulle.'); INSERT INTO portalbox VALUES (38,'SE OGSÅ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (39,'SOBRE ESTE SITE','Bem vindo ao site de demonstração do CDS Invenio, um servidor de documentos livre desenvolvido pelo CERN. Sinta-se à vontade para explorar plenamente todos os recursos deste site demonstração.'); INSERT INTO portalbox VALUES (40,'VEJA TAMBÉM','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (41,'ОБ ЭТОМ САЙТЕ','Добро пожаловать на наш демонстрационный сайт CDS Invenio. CDS Invenio -- свободная программа для серверов документов, разработанная в CERNе. Пожалуйста пользуйтесь свободно этим сайтом.'); INSERT INTO portalbox VALUES (42,'СМОТРИТЕ ТАКЖЕ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (43,'OM DENNA WEBBPLATS','Välkommen till demoinstallationen av CDS Invenio, en fri programvara för hantering av dokument, från CERN. Välkommen att undersöka alla funktioner i denna installation.'); INSERT INTO portalbox VALUES (44,'SE ÄVEN','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (45,'SUBMIT PREPRINT','/submit.py?doctype=TEXT\">Submit a new preprint'); INSERT INTO portalbox VALUES (46,'SUBMIT BOOK','/submit.py?doctype=TEXT\">Submit a new book'); INSERT INTO portalbox VALUES (47,'SUBMIT THESIS','/submit.py?doctype=TEXT\">Submit a new thesis'); INSERT INTO portalbox VALUES (48,'SUBMIT REPORT','/submit.py?doctype=TEXT\">Submit a new report'); INSERT INTO portalbox VALUES (49,'SUBMIT ARTICLE','/submit.py?doctype=TEXT\">Submit a new article'); INSERT INTO portalbox VALUES (50,'SUBMIT PICTURE','/submit.py?doctype=PICT\">Submit a new picture'); INSERT INTO portalbox VALUES (51,'SUBMIT NEW DOCUMENT','/submit.py?doctype=TEXT\">Submit a new article
/submit.py?doctype=TEXT\">Submit a new preprint'); INSERT INTO portalbox VALUES (52,'SUBMIT NEW DOCUMENT','/submit.py?doctype=TEXT\">Submit a new book
/submit.py?doctype=TEXT\">Submit a new thesis
/submit.py?doctype=TEXT\">Submit a new report'); INSERT INTO portalbox VALUES (53,'SUBMIT NEW DOCUMENT','/submit.py?doctype=PICT\">Submit a new picture'); INSERT INTO portalbox VALUES (54,'ΣΧΕΤΙΚΑ ΜΕ ΤΗΝ ΣΕΛΙΔΑ','Καλως ήλθατε στον δικτυακό τόπο του CDS Invenio, ενός δωρεάν εξυπηρετητή για έγγραφα προερχόμενο απο το CERN. Είστε ευπρόσδεκτοι να εξερευνήσετε σε βάθος τις δυνατότητες που σας παρέχει ο δικτυακός αυτός τόπος.'); INSERT INTO portalbox VALUES (55,'ΔΕΙΤΕ ΕΠΙΣΗΣ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (56,'ПРО ЦЕЙ САЙТ','Ласкаво просимо до демонстраційного сайту CDS Invenio, вільного програмного забезпечення, розробленого CERN. Випробуйте всі можливості цього демонстраційного сайту в повному обсязі.'); INSERT INTO portalbox VALUES (57,'ДИВИСЬ ТАКОЖ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (58,'SOBRE AQUEST LLOC','Benvinguts al lloc de demo de CDS Invenio, un servidor de documents lliure originat al CERN. Us convidem a explorar a fons totes les funcionalitats ofertes en aquestes pàgines de demostració.'); INSERT INTO portalbox VALUES (59,'VEGEU TAMBÉ','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (60,'この場所について','CDS Invenioデモンストレーションの場所への歓迎, CERN から来る自由な文書のサーバーソフトウェア, このデモンストレーションの場所の特徴すべてを探検する自由の感じ'); INSERT INTO portalbox VALUES (61,'また見なさい','CDS Invenio
CERN
Google'); INSERT INTO portalbox VALUES (62,'O TEJ STRONIE','Witamy w wersji demo systemu CDS Invenio, darmowego oprogramowania do obsługi serwera dokumentów, stworzonego w CERN. Zachęcamy do odkrywania wszelkich funkcjonalności oferowanych przez tę stronę.'); INSERT INTO portalbox VALUES (63,'ZOBACZ TAKŻE','CDS Invenio
CERN
Google'); +INSERT INTO portalbox VALUES (64,'FIXME BG: O TEJ STRONIE','Witamy w wersji demo systemu CDS Invenio, darmowego oprogramowania do obsługi serwera dokumentów, stworzonego w CERN. Zachęcamy do odkrywania wszelkich funkcjonalności oferowanych przez tę stronę.'); +INSERT INTO portalbox VALUES (65,'FIXME BG: ZOBACZ TAKŻE','CDS Invenio
CERN
Google'); INSERT INTO sbmCOLLECTION VALUES (36,'Document Types'); INSERT INTO sbmCOLLECTION_sbmCOLLECTION VALUES (0,36,1); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'PICT',3); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'TEXT',0); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'RTEXT',2); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'RPICT',4); INSERT INTO sbmCATEGORIES VALUES ('RPICT','DIAG','Diagrams and Charts'); INSERT INTO sbmCATEGORIES VALUES ('RPICT','HIST','Personalities and History of CERN'); INSERT INTO sbmCATEGORIES VALUES ('RPICT','LIFE','Life at CERN'); INSERT INTO sbmCATEGORIES VALUES ('RPICT','TRACK','Experiments and Tracks'); INSERT INTO sbmCATEGORIES VALUES ('PICT','DIAG','Diagrams and Charts'); INSERT INTO sbmCATEGORIES VALUES ('PICT','HIST','Personalities and History of CERN'); INSERT INTO sbmCATEGORIES VALUES ('PICT','LIFE','Life at CERN'); INSERT INTO sbmCATEGORIES VALUES ('PICT','TRACK','Experiments and Tracks'); INSERT INTO sbmCATEGORIES VALUES ('TEXT','ARTICLE','Article'); INSERT INTO sbmCATEGORIES VALUES ('TEXT','BOOK','Book'); INSERT INTO sbmCATEGORIES VALUES ('TEXT','POETRY','Poetry'); INSERT INTO sbmCATEGORIES VALUES ('TEXT','PREPRINT','Preprint'); INSERT INTO sbmCATEGORIES VALUES ('TEXT','REPORT','Report'); INSERT INTO sbmCATEGORIES VALUES ('TEXT','THESIS','Thesis'); INSERT INTO sbmCATEGORIES VALUES ('RTEXT','ARTICLE','Article'); INSERT INTO sbmCATEGORIES VALUES ('RTEXT','BOOK','Book'); INSERT INTO sbmCATEGORIES VALUES ('RTEXT','POETRY','Poetry'); INSERT INTO sbmCATEGORIES VALUES ('RTEXT','PREPRINT','Preprint'); INSERT INTO sbmCATEGORIES VALUES ('RTEXT','REPORT','Report'); INSERT INTO sbmCATEGORIES VALUES ('RTEXT','THESIS','Thesis'); INSERT INTO sbmDOCTYPE VALUES ('textual document (Article, Preprint, Thesis, etc) with simple refereeing','RTEXT','2002-05-06','2002-06-20',''); INSERT INTO sbmDOCTYPE VALUES ('textual document (Article, Preprint, Thesis, etc)','TEXT','2002-05-03','2002-06-21','This is a template for a text type of document with direct integration after submission\r\nUse it as a reference to create your new document types and submissions (clone).'); INSERT INTO sbmDOCTYPE VALUES ('pictorial document (Picture)','PICT','2002-05-03','2002-06-20','This is a template for a picture-like type of document with direct integration after submission\r\nUse it as a reference to create your new document types and submissions (clone).'); INSERT INTO sbmDOCTYPE VALUES ('pictorial document (Picture) with simple refereeing','RPICT','2002-05-07','2002-06-20',''); INSERT INTO sbmFIELD VALUES ('APPRTEXT',1,3,'COM','
Enter here your additional comments:
','O','comments','','2002-05-06','2002-05-28','',''); INSERT INTO sbmFIELD VALUES ('APPRTEXT',1,2,'decision','

Your decision: ','M','decision','','2002-05-06','2002-05-28','',''); INSERT INTO sbmFIELD VALUES ('APPRTEXT',1,1,'RNTEST2','Please enter the reference number of the document you wish to approve/reject: ','M','reference','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('MBIRPICT',1,3,'EndButton2','

','O','','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIRPICT',1,2,'TEXTChange','
Please select all the fields you want to modify:
','M','fields to modify','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SRVRTEXT',1,2,'EndButton2','

','O','','','2002-05-06','2004-02-05','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',3,1,'AB','



Abstract:
','O','Abstract','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',2,4,'KW','

Keywords (one per line):
','O','Keywords','','2002-05-06','2002-06-12','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',1,3,'AF','
Affiliation:
','O','affiliation','','2002-05-06','2002-06-18',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIRTEXT',1,3,'EndButton2','

','O','','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIRTEXT',1,2,'TEXTChange','
Please select all the fields you want to modify:
','M','fields to modify','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIRTEXT',1,1,'RNTEST2','Please enter the Report Number of the document you want to modify:','M','reference','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',1,3,'AF','
Affiliation:
','O','affiliation','','2002-05-06','2002-06-19','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',4,3,'EndButton','

','O','','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',4,1,'NO','Optional
Author\'s Comments:
','O','Comments','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',4,2,'Rep','
Optional
Other reference number(s) (eg: from other institutes):
','O','Report Number(s)','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',2,2,'Num','Number of pages (optional) :','O','Number of pages','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',1,1,'TI','Title:
','M','Title','','2002-05-06','2002-06-11','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',1,2,'AU','

ALL author(s) of paper: (one per line)
(in the form: Name, Initial(s))
','M','Author(s)','AUCheck','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SRVRTEXT',1,1,'RNTEST2','Please enter the number of the revised document: ','M','reference','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SRVPICT',1,1,'RNPHO2','Please enter the number of the revised document: ','M','reference','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('MBIRPICT',1,1,'RNPHO2','Please enter the reference of the picture you want to modify:','M','reference','','2002-05-07','2002-06-12','',''); INSERT INTO sbmFIELD VALUES ('APPRTEXT',1,4,'button_validate','

','O','','','2002-05-06','2002-05-28','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',2,1,'LANG','Language:','M','Language','','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('SBIRTEXT',2,3,'Dat','

Date of creation (dd/mm/yyyy): ','M','Date of creation','DatCheckNew','2002-05-06','2002-05-06','',''); INSERT INTO sbmFIELD VALUES ('APPRPICT',1,2,'decision','

Your decision: ','M','decision','','2002-05-07','2002-05-28','',''); INSERT INTO sbmFIELD VALUES ('APPRPICT',1,3,'COM','
Enter here your additional comments:
','O','comments','','2002-05-07','2002-05-28','',''); INSERT INTO sbmFIELD VALUES ('APPRPICT',1,1,'RNPHO2','Please enter the reference of the picture you wish to approve/reject: ','M','reference','','2002-05-07','2002-05-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIRPICT',4,3,'EndButton','

','O','','','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',4,2,'Rep','
Optional
Other reference number(s) (eg: from other institutes):
','O','Report Number(s)','','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',4,1,'NO','Optional
Comments:
','O','Comments','','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',3,1,'AB','



Description:
','O','Description','','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',2,2,'KW','

Keywords (one per line):
','O','Keywords','','2002-05-07','2002-06-12','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',2,1,'Dat','

Date of creation (dd/mm/yyyy): ','M','Date of creation','DatCheckNew','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',1,1,'TI','Title of the Picture:
','M','Title','','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIRPICT',1,2,'AU','

Photographer (in the form: Name, Initial(s)):
','O','Photographer','AUCheck','2002-05-07','2002-05-07','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',1,2,'AU','

Photographer (in the form: Name, Initial(s)):
','O','Photographer','AUCheck','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',1,1,'TI','Title of the Picture:
','M','Title','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',2,1,'Dat','

Date of creation (dd/mm/yyyy): ','M','Date of creation','DatCheckNew','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',2,2,'KW','

Keywords (one per line):
','O','Keywords','','2002-05-03','2002-06-12','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',3,1,'AB','



Description:
','O','Description','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',4,2,'Rep','
Optional
Other reference number(s) (eg: from other institutes):
','O','Report Number(s)','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',4,1,'NO','Optional
Comments:
','O','Comments','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBIPICT',4,3,'EndButton','

','O','','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('MBIPICT',1,1,'RNPHO2','Please enter the reference of the picture you want to modify:','M','reference','','2002-05-06','2002-06-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIPICT',1,3,'EndButton2','

','O','','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBITEXT',1,3,'EndButton2','

','O','','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBITEXT',1,2,'TEXTChange','
Please select all the fields you want to modify:
','M','fields to modify','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBITEXT',1,1,'RNTEST2','Please enter the Report Number of the document you want to modify:','M','reference','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',4,3,'EndButton','

','O','','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',4,1,'NO','Optional
Author\'s Comments:
','O','Comments','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',4,2,'Rep','
Optional
Other reference number(s) (eg: from other institutes):
','O','Report Number(s)','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',2,4,'KW','

Keywords (one per line):
','O','Keywords','','2002-05-03','2002-06-12','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',3,1,'AB','



Abstract:
','O','Abstract','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',2,3,'Dat','

Date of creation (dd/mm/yyyy): ','M','Date of creation','DatCheckNew','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',2,1,'LANG','Language:','M','Language','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',2,2,'Num','Number of pages (optional) :','O','Number of pages','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',1,1,'TI','Title:
','M','Title','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SBITEXT',1,2,'AU','

ALL author(s) of paper: (one per line)
(in the form: Name, Initial(s))
','M','Author(s)','AUCheck','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SRVTEXT',1,1,'RNTEST2','Please enter the number of the revised document: ','M','reference','','2002-05-03','2002-05-03','',''); INSERT INTO sbmFIELD VALUES ('SRVTEXT',1,2,'EndButton2','

','O','','','2002-05-03','2004-02-02','',''); INSERT INTO sbmFIELD VALUES ('SRVPICT',1,2,'EndButton2','

','O','','','2002-05-03','2004-02-02','',''); INSERT INTO sbmFIELD VALUES ('MBIPICT',1,2,'TEXTChange','
Please select all the fields you want to modify:
','M','fields to modify','','0000-00-00','0000-00-00',NULL,NULL); INSERT INTO sbmFIELD VALUES ('APPRPICT',1,4,'button_validate','

','O','','','2002-05-07','2002-05-28','',''); INSERT INTO sbmFIELDDESC VALUES ('TI','TI','245__a','T',0,5,60,0,'','','1998-08-17','2002-06-11','
Please correct the title:
','',0); INSERT INTO sbmFIELDDESC VALUES ('AU','100__a','100__a','T',0,6,30,0,'','','1998-08-17','2002-02-08','
Please correct the list of authors:
','',0); INSERT INTO sbmFIELDDESC VALUES ('AF','AF','','T',0,2,50,0,'','','1998-08-17','0000-00-00','','',0); INSERT INTO sbmFIELDDESC VALUES ('KW','KW','650__a','T',0,2,50,0,'','','1998-08-17','2002-05-06','
Please correct the keywords:
','',0); INSERT INTO sbmFIELDDESC VALUES ('NO','NO','500__a','T',0,3,60,0,'','','1998-08-17','2001-11-19','
Please correct the note:
','',0); INSERT INTO sbmFIELDDESC VALUES ('Rep','FN','088__a','T',0,2,30,0,'','','1998-08-17','2002-05-06','
Please correct the list of other report numbers:
','',0); INSERT INTO sbmFIELDDESC VALUES ('Num','','','I',10,0,0,0,'','','1998-08-17','0000-00-00','','',0); INSERT INTO sbmFIELDDESC VALUES ('Dat','IM','','I',10,0,0,0,'','','1998-08-17','2002-04-09','','',1); INSERT INTO sbmFIELDDESC VALUES ('LANG','LN','041__a','S',0,0,0,0,'','','1998-08-17','2001-11-19','
Please correct the language:
','',0); INSERT INTO sbmFIELDDESC VALUES ('AB','AB','520__a','T',0,12,80,0,'','','1998-08-17','2001-11-19','
Please correct the abstract:
','',0); INSERT INTO sbmFIELDDESC VALUES ('EndButton','','','D',0,0,0,0,'','

\r\n\r\n
','1998-08-18','1998-10-28','','',0); INSERT INTO sbmFIELDDESC VALUES ('EndButton2','','','D',0,0,0,0,'','
\r\n\r\n
','1998-08-18','2004-02-02','','',0); INSERT INTO sbmFIELDDESC VALUES ('COM','','','T',0,6,50,0,'','','1998-08-18','0000-00-00','','',0); INSERT INTO sbmFIELDDESC VALUES ('decision','','','S',NULL,NULL,NULL,NULL,NULL,'','2001-11-08','2004-02-04',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('button_validate','','','D',NULL,NULL,NULL,NULL,NULL,'
\r\n\r\n
','2001-11-08','2001-11-08',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('RNTEST2','','marccode','I',30,NULL,NULL,30,'TEST---???',NULL,'2001-11-22','2001-11-22',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('RNPHO2','','marccode','I',30,NULL,NULL,0,'PICTURE-TEST---???',NULL,'2002-05-06','2002-05-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('TEXTChange','','','S',NULL,NULL,NULL,NULL,NULL,'','0000-00-00','0000-00-00',NULL,NULL,0); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Get_Sysno',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Create_Modify_Interface',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Upload_Files',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Print_Success_MBI',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Send_Modify_Mail',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RTEXT','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Insert_Record',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Make_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Get_Sysno',20,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Update_Approval_DB',40,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Print_Success_APP',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Move_to_Pending',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Send_Approval_Request',50,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Mail_Submitter',35,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Print_Success',30,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','CaseEDS',40,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Is_Referee',30,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Create_Recid',30,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Test_Status',20,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Is_Referee',30,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','CaseEDS',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Is_Original_Submitter',25,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Report_Number_Generation',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Move_to_Done',100,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Print_Success_SRV',70,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Send_SRV_Mail',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Upload_Files',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Report_Number_Generation',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Upload_Files',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Get_Sysno',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Create_Modify_Interface',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Print_Success_MBI',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Send_Modify_Mail',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','PICT','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Set_Archive_Files',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Insert_Modify_Record',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Make_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Send_Modify_Mail',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Print_Success_MBI',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Create_Modify_Interface',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Get_Sysno',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','TEXT','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Upload_Files',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Print_Success',70,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Mail_Submitter',80,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Send_SRV_Mail',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Print_Success_SRV',70,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Move_to_Done',100,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Get_Sysno',15,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Move_to_Pending',70,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Send_Approval_Request',50,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','RTEXT','Get_Sysno',15,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Update_Approval_DB',40,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Mail_Submitter',30,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RTEXT','Upload_Files',20,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Update_Approval_DB',120,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Move_From_Pending',20,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Create_Recid',35,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Make_Record',70,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Insert_Record',80,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Get_Info',40,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Send_APP_Mail',90,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Get_Report_Number',10,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Get_Info',30,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Update_Approval_DB',60,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Print_Success_APP',40,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Send_APP_Mail',50,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Finish_Submission',130,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Move_to_Done',140,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Move_to_Done',70,3); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Print_Success',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Report_Number_Generation',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Get_Sysno',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Create_Modify_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Print_Success_MBI',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Send_Modify_Mail',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Make_Modify_Record',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','RPICT','Insert_Modify_Record',80,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','RPICT','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Print_Success_APP',70,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Update_Approval_DB',50,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Move_From_Pending',30,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Make_Record',80,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Insert_Record',90,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Test_Status',20,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Get_Info',40,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Send_APP_Mail',120,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Get_Report_Number',10,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Get_Info',30,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Update_Approval_DB',40,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Print_Success_APP',50,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Send_APP_Mail',60,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Finish_Submission',130,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Move_to_Done',140,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Move_to_Done',70,3); INSERT INTO sbmFUNCTIONS VALUES ('SRV','TEXT','Upload_Files',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Report_Number_Generation',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Get_Sysno',20,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Make_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Insert_Record',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Print_Success',70,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Mail_Submitter',80,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','RPICT','Move_From_Pending',20,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','RTEXT','Move_From_Pending',20,3); INSERT INTO sbmFUNCTIONS VALUES ('SBI','TEXT','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Get_Sysno',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Send_SRV_Mail',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Print_Success_SRV',70,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Upload_Files',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Move_to_Done',100,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','PICT','Get_Sysno',15,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','PICT','Get_Sysno',20,2); INSERT INTO sbmIMPLEMENT VALUES ('RTEXT','SBI','Y','SBIRTEXT',4,'2002-05-06','2002-06-19',1,'','1',1,1,''); INSERT INTO sbmIMPLEMENT VALUES ('RTEXT','MBI','Y','MBIRTEXT',1,'2002-05-06','2004-02-04',2,'','0',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('PICT','SBI','Y','SBIPICT',4,'2002-05-03','2004-02-05',1,'','1',1,1,''); INSERT INTO sbmIMPLEMENT VALUES ('RTEXT','SRV','Y','SRVRTEXT',1,'2002-05-06','2004-02-05',3,'','0',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('PICT','MBI','Y','MBIPICT',1,'2002-05-03','2004-02-05',2,'','0',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('TEXT','MBI','Y','MBITEXT',1,'2002-05-03','2004-01-30',2,'','0',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('TEXT','SBI','Y','SBITEXT',4,'2002-05-03','2002-06-21',1,'','1',1,1,''); INSERT INTO sbmIMPLEMENT VALUES ('TEXT','SRV','Y','SRVTEXT',1,'2002-05-03','2004-02-02',3,'','0',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('RTEXT','APP','Y','APPRTEXT',1,'2002-05-06','2002-05-28',4,'0','0',0,1,'0'); INSERT INTO sbmIMPLEMENT VALUES ('RPICT','MBI','Y','MBIRPICT',1,'2002-05-07','2004-02-05',2,'','0',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('RPICT','SBI','Y','SBIRPICT',4,'2002-05-07','2002-06-20',1,'','1',1,1,''); INSERT INTO sbmIMPLEMENT VALUES ('RPICT','APP','Y','APPRPICT',1,'2002-05-07','2002-05-28',4,'0','0',0,1,'0'); INSERT INTO sbmIMPLEMENT VALUES ('PICT','SRV','Y','SRVPICT',1,'2004-02-26','0000-00-00',3,'','0',0,0,''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','directory','TEST'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','categformatDAM','TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','authorfile','AU'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','counterpath','lastid_test_categ'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','noteFile','NO'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('PICT','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','authorfile','AU'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','categformatDAM','TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','counterpath','lastid_test_categ'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','edsrn','RNTEST2'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','fieldnameMBI','TEXTChange'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','filetype','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','firstfile','MainFiles'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','formatARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('TEXT','formatFTT','Format'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','iconsize','180'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','maxsize','20000000'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','minsize','10'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','pathARCHIVE','TEST'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','rnformat','TEST-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','rnin','comboTEXT'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','secondfile','AdditionalFiles'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','sourceDoc','Preprints'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','sourceModify','EDSTEXT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','sourceSubmit','EDSTEXT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','textMailFTT',''); INSERT INTO sbmPARAMETERS VALUES ('TEXT','titleFile','TI'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','variablesARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('TEXT','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','mysqlInsert','EDSTEXTmysql.tpl'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','mysqlModify','EDSTEXTmysql_Modify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','categformatAPP','TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','casedefault',''); INSERT INTO sbmPARAMETERS VALUES ('TEXT','casesteps','2,3'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','casevalues','approve,reject'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','casevariable','decision'); INSERT INTO sbmPARAMETERS VALUES ('PICT','authorfile','AU'); INSERT INTO sbmPARAMETERS VALUES ('PICT','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('PICT','categformatDAM','TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('PICT','counterpath','lastid_picture_test_categ'); INSERT INTO sbmPARAMETERS VALUES ('PICT','edsrn','RNPHO2'); INSERT INTO sbmPARAMETERS VALUES ('PICT','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('PICT','fieldnameMBI','TEXTChange'); INSERT INTO sbmPARAMETERS VALUES ('PICT','filetype','picture'); INSERT INTO sbmPARAMETERS VALUES ('PICT','firstfile','PictureFiles'); INSERT INTO sbmPARAMETERS VALUES ('PICT','formatARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('PICT','formatFTT','Format'); INSERT INTO sbmPARAMETERS VALUES ('PICT','iconsize','100'); INSERT INTO sbmPARAMETERS VALUES ('PICT','maxsize','20000000'); INSERT INTO sbmPARAMETERS VALUES ('PICT','minsize','10'); INSERT INTO sbmPARAMETERS VALUES ('PICT','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('PICT','pathARCHIVE','pictures'); INSERT INTO sbmPARAMETERS VALUES ('PICT','rnformat','PICTURE-TEST-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('PICT','rnin','comboPICT'); INSERT INTO sbmPARAMETERS VALUES ('PICT','secondfile','OtherPictures'); INSERT INTO sbmPARAMETERS VALUES ('PICT','sourceDoc','photos'); INSERT INTO sbmPARAMETERS VALUES ('PICT','sourceModify','EDSPICT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','sourceSubmit','EDSPICT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','textMailFTT',''); INSERT INTO sbmPARAMETERS VALUES ('PICT','titleFile','TI'); INSERT INTO sbmPARAMETERS VALUES ('PICT','variablesARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('PICT','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('PICT','mysqlInsert','EDSPICTmysql.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','mysqlModify','EDSPICTmysql_Modify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','categformatAPP','TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('PICT','casedefault',''); INSERT INTO sbmPARAMETERS VALUES ('PICT','casesteps','2,3'); INSERT INTO sbmPARAMETERS VALUES ('PICT','casevalues','approve,reject'); INSERT INTO sbmPARAMETERS VALUES ('PICT','casevariable','decision'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','noteFile','NO'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','edsrn','RNTEST2'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','fieldnameMBI','TEXTChange'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','filetype','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','firstfile','MainFile'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','formatARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','formatFTT','Format'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','iconsize','180'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','maxsize','2000000'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','minsize','10'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','pathARCHIVE','TEST'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','rnformat','TEST-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','rnin','comboRTEXT'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','secondfile','IncludedFiles'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','sourceDoc','Preprints (with simple approval)'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','sourceModify','EDSTEXT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','sourceSubmit','EDSRTEXT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','textMailFTT',''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','titleFile','TI'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','variablesARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','mysqlInsert','EDSRTEXTmysql.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','mysqlModify','EDSTEXTmysql_Modify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','categformatAPP','TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','casedefault',''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','casesteps','2,3'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','casevalues','approve,reject'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','casevariable','decision'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','status','APPROVAL'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','authorfile','AU'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','categformatDAM','PICTURE-TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','counterpath','lastid_picture_test_categ'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','edsrn','RNPHO2'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','fieldnameMBI','TEXTChange'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','filetype','picture'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','firstfile','PictureFiles'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','formatARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('RPICT','formatFTT','Format'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','iconsize','100'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','maxsize','20000000'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','minsize','10'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','pathARCHIVE','pictures'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','rnformat','PICTURE-TEST-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','rnin','comboRPICT'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','secondfile','OtherPictures'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','sourceDoc','photos (with simple approval)'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','sourceModify','EDSPICT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','sourceSubmit','EDSRPICT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','textMailFTT',''); INSERT INTO sbmPARAMETERS VALUES ('RPICT','titleFile','TI'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','variablesARCHIVE',''); INSERT INTO sbmPARAMETERS VALUES ('RPICT','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','mysqlInsert','EDSRPICTmysql.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','mysqlModify','EDSPICTmysql_Modify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','categformatAPP','PICTURE-TEST--.*'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','casedefault',''); INSERT INTO sbmPARAMETERS VALUES ('RPICT','casesteps','2,3'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','casevalues','approve,reject'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','casevariable','decision'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','directory','pictures'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','status','APPROVAL'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','sourceTemplate','EDSTEXT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','createTemplate','EDSTEXTcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('TEXT','modifyTemplate','EDSTEXTmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','addressesDAM',''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','sourceTemplate','EDSRTEXT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','createTemplate','EDSRTEXTcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','modifyTemplate','EDSRTEXTmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','sourceTemplate','EDSPICT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','createTemplate','EDSPICTcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','modifyTemplate','EDSPICTcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','sourceTemplate','EDSRPICT.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','createTemplate','EDSRPICTcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','modifyTemplate','EDSRPICTmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('PICT','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('PICT','noteFile','NO'); INSERT INTO sbmPARAMETERS VALUES ('RTEXT','type','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('TEXT','type','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('PICT','type','picture'); INSERT INTO sbmPARAMETERS VALUES ('RPICT','type','picture'); INSERT INTO rnkMETHOD (id,name,last_updated) VALUES (2,'demo_jif','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (15,2,90); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'en','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'fr','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'de','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'es','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'ca','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'pt','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'it','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'ru','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'sk','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'cs','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'no','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'sv','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'uk','ln','journal impact factor'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'ja','ln','journal impact factor'); +INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (2,'bg','ln','journal impact factor'); diff --git a/modules/miscutil/lib/config.py.wml b/modules/miscutil/lib/config.py.wml index 96d39bad9..0ef3b82b4 100644 --- a/modules/miscutil/lib/config.py.wml +++ b/modules/miscutil/lib/config.py.wml @@ -1,177 +1,178 @@ ## $Id$ ## CDS Invenio config file, to be read by all Python programs. ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## read config variables: #include "config.wml" #include "configbis.wml" ## start Python: ## -*- coding: utf-8 -*- ## $Id$ ## DO NOT EDIT THIS FILE! IT WAS AUTOMATICALLY GENERATED FROM CDS Invenio WML SOURCES. """CDS Invenio config file, to be read by all Python programs.""" ## fill all the generally-interesting config variables from WML: cdsname = "" cdslang = "" supportemail = "" adminemail = "" alertengineemail = "" webdir = "" weburl = "" sweburl = "" bindir = "" pylibdir = "/python" cachedir = "" logdir = "" tmpdir = "" etcdir = "" version = "" cfg_template_skin = "" localedir = "" ## intl versions of CDSNAME of this installation: cdsnameintl = {} cdsnameintl['de'] = "" cdsnameintl['en'] = "" cdsnameintl['es'] = "" cdsnameintl['ca'] = "" cdsnameintl['pt'] = "" cdsnameintl['fr'] = "" cdsnameintl['it'] = "" cdsnameintl['ru'] = "" cdsnameintl['sk'] = "" cdsnameintl['cs'] = "" cdsnameintl['no'] = "" cdsnameintl['sv'] = "" cdsnameintl['el'] = "" cdsnameintl['uk'] = "" cdsnameintl['ja'] = "" cdsnameintl['pl'] = "" +cdsnameintl['bg'] = "" ## Apache password/group files: cfg_apache_password_file = "" cfg_apache_group_file = "" ## are we running CERN specifics? cfg_cern_site = ## page elements: cdspageheader = """""" cdspageboxlefttop = """""" cdspageboxleftbottom = """""" cdspageboxrighttop = """""" cdspageboxrightbottom = """""" cdspagefooter = """""" ## helper programs: pdftotext = "" pstotext = "" pstoascii = "" antiword = "" catdoc = "" wvtext = "" ppthtml = "" xlhtml = "" htmltotext = "" gfile = "" gzip = "" tar = "" gunzip = "" acroread = "" distiller = "" convert = "" ## for search_engine_config: cfg_max_recID = cfg_instant_browse = cfg_author_et_al_threshold = cfg_search_cache_size = cfg_nb_records_to_sort = cfg_call_bibformat = cfg_use_aleph_sysnos = cfg_fields_convert = cfg_simplesearch_pattern_box_width = cfg_advancedsearch_pattern_box_width = cfg_narrow_search_show_grandsons = cfg_oaiidtag = "" cfg_create_similarly_named_authors_link_box = cfg_google_box = cfg_google_box_servers = ## for websubmit_config: images = "/img" urlpath = "" accessurl = "/search" counters = "" storage = "" filedir = "" filedirsize = bibupload = "/bibupload" bibformat = "/bibformat" bibwords = "/bibwords" bibconvert = "/bibconvert" bibconvertconf = "/bibconvert/config" htdocsurl = "" ## for access_control_config: CFG_ACCESS_CONTROL_LEVEL_SITE = CFG_ACCESS_CONTROL_LEVEL_GUESTS = CFG_ACCESS_CONTROL_LEVEL_ACCOUNTS = CFG_ACCESS_CONTROL_LIMIT_REGISTRATION_TO_DOMAIN = "" CFG_ACCESS_CONTROL_NOTIFY_ADMIN_ABOUT_NEW_ACCOUNTS = CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_NEW_ACCOUNT = CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_ACTIVATION = CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_DELETION = ## for oai_repository_config: cfg_oai_id_prefix = "" cfg_oai_sample_identifier = "" cfg_oai_identify_description = """""" cfg_oai_id_field = "" cfg_oai_set_field = "" cfg_oai_deleted_policy = "" cfg_oai_expire = cfg_oai_sleep = cfg_oai_load = ## for bibindex_engine_config: cfg_bibindex_fulltext_index_local_files_only = cfg_bibindex_stemmer_default_language = "" cfg_bibindex_remove_stopwords = cfg_bibindex_path_to_stopwords_file = "" cfg_bibindex_chars_alphanumeric_separators = r"[]" cfg_bibindex_chars_punctuation = r"[]" cfg_bibindex_remove_html_markup = cfg_bibindex_min_word_length = cfg_bibindex_urlopener_username = "" cfg_bibindex_urlopener_password = "" ## for commenting: cfg_webcomment_allow_comments = 1 cfg_webcomment_allow_reviews = 1 cfg_webcomment_nb_reports_before_send_email_to_admin = 5 cfg_webcomment_nb_comments_in_detailed_view = 1 cfg_webcomment_nb_reviews_in_detailed_view = 1 cfg_webcomment_admin_notification_level = 1 cfg_webcomment_timelimit_processing_comments_in_seconds = 20 cfg_webcomment_timelimit_processing_reviews_in_seconds = 20 cfg_webcomment_timelimit_vote_validity_in_days = 365 cfg_webcomment_timelimit_report_validity_in_days = 100 diff --git a/modules/miscutil/sql/tabfill.sql.wml b/modules/miscutil/sql/tabfill.sql.wml index 6904e0799..b7caa2414 100644 --- a/modules/miscutil/sql/tabfill.sql.wml +++ b/modules/miscutil/sql/tabfill.sql.wml @@ -1,1626 +1,1642 @@ ## -*- mode: sql; coding: utf-8; -*- ## $Id$ ## Fills configuration tables with defaults. ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## read config variables: #include "config.wml" #include "configbis.wml" ## local defaults, i.e. WML config variables are to be used: INSERT INTO collection VALUES (1,'',NULL,NULL,NULL,NULL); INSERT INTO collectionname VALUES (1,'en','ln',''); INSERT INTO collectionname VALUES (1,'fr','ln',''); INSERT INTO collectionname VALUES (1,'de','ln',''); INSERT INTO collectionname VALUES (1,'es','ln',''); INSERT INTO collectionname VALUES (1,'ca','ln',''); INSERT INTO collectionname VALUES (1,'pl','ln',''); INSERT INTO collectionname VALUES (1,'pt','ln',''); INSERT INTO collectionname VALUES (1,'it','ln',''); INSERT INTO collectionname VALUES (1,'ja','ln',''); INSERT INTO collectionname VALUES (1,'ru','ln',''); INSERT INTO collectionname VALUES (1,'sk','ln',''); INSERT INTO collectionname VALUES (1,'cs','ln',''); INSERT INTO collectionname VALUES (1,'no','ln',''); INSERT INTO collectionname VALUES (1,'sv','ln',''); INSERT INTO collectionname VALUES (1,'el','ln',''); INSERT INTO collectionname VALUES (1,'uk','ln',''); +INSERT INTO collectionname VALUES (1,'bg','ln',''); INSERT INTO user VALUES (1, '', '', NULL, NULL, 'admin', ''); INSERT INTO flxLINKTYPES VALUES ('AUTHOR_SEARCH','N','EXT','',''); INSERT INTO flxLINKTYPES VALUES ('KEYWORD_SEARCH','N','EXT','',''); INSERT INTO flxLINKTYPECONDITIONS VALUES ('AUTHOR_SEARCH',0,' \"\"=\"\" ','\"/search?f=author&p=\" urlencode($author)','EXT','',''); INSERT INTO flxLINKTYPECONDITIONS VALUES ('KEYWORD_SEARCH',0,' \"\"=\"\" ','\"/search?f=keyword&p=\" urlencode($keyword)','EXT','',''); INSERT INTO flxLINKTYPECONDITIONSACTIONS VALUES ('AUTHOR_SEARCH',0,0,'\"/search?f=author&p=\" urlencode($author)'); INSERT INTO flxLINKTYPECONDITIONSACTIONS VALUES ('KEYWORD_SEARCH',0,0,'\"/search?f=keyword&p=\" urlencode($keyword)'); INSERT INTO flxLINKTYPEPARAMS VALUES ('AUTHOR_SEARCH','AUTHOR',0); INSERT INTO flxLINKTYPEPARAMS VALUES ('KEYWORD_SEARCH','KEYWORD',0); ## generally suitable defaults: INSERT INTO rnkMETHOD (id,name,last_updated) VALUES (1,'wrd','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (1,1,100); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'en','ln','word similarity'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'fr','ln','similarité de mots'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'de','ln','Wortähnlichkeit'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'es','ln','similitud de palabras'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'ca','ln','semblança de paraules'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'pl','ln','word similarity'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'pt','ln','similaridade por palavra'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'it','ln','word similarity'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'ja','ln','word similarity'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'ru','ln','word similarity'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'sk','ln','podobnosť slov'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'cs','ln','podobnost slov'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'no','ln','ord-likhet'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'sv','ln','ord-likhet'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'el','ln','ομοιότητα λέξης'); INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'uk','ln','подібні слова'); +INSERT INTO rnkMETHODNAME (id_rnkMETHOD,ln,type,value) VALUES (1,'bg','ln','FIXME BG: подібні слова'); INSERT INTO field VALUES (1,'any field','anyfield'); INSERT INTO field VALUES (2,'title','title'); INSERT INTO field VALUES (3,'author','author'); INSERT INTO field VALUES (4,'abstract','abstract'); INSERT INTO field VALUES (5,'keyword','keyword'); INSERT INTO field VALUES (6,'report number','reportnumber'); INSERT INTO field VALUES (7,'subject','subject'); INSERT INTO field VALUES (8,'reference','reference'); INSERT INTO field VALUES (9,'fulltext','fulltext'); INSERT INTO field VALUES (10,'collection','collection'); INSERT INTO field VALUES (11,'division','division'); INSERT INTO field VALUES (12,'year','year'); INSERT INTO field VALUES (13,'experiment','experiment'); INSERT INTO field VALUES (14,'record ID','recid'); INSERT INTO fieldname VALUES (1,'en','ln','any field'); INSERT INTO fieldname VALUES (1,'fr','ln','tous les champs'); INSERT INTO fieldname VALUES (1,'de','ln','alle Felder'); INSERT INTO fieldname VALUES (1,'es','ln','cualquier campo'); INSERT INTO fieldname VALUES (1,'ca','ln','qualsevol camp'); INSERT INTO fieldname VALUES (1,'pl','ln','dowolne pole'); INSERT INTO fieldname VALUES (1,'pt','ln','qualquer campo'); INSERT INTO fieldname VALUES (1,'it','ln','tutti i campi'); INSERT INTO fieldname VALUES (1,'ru','ln','любое поле'); INSERT INTO fieldname VALUES (1,'sk','ln','všetky polia'); INSERT INTO fieldname VALUES (1,'cs','ln','všechna pole'); INSERT INTO fieldname VALUES (1,'no','ln','alle felt'); INSERT INTO fieldname VALUES (1,'sv','ln','samtliga fält'); INSERT INTO fieldname VALUES (1,'el','ln','οποιοδήποτε πεδίο'); INSERT INTO fieldname VALUES (1,'uk','ln','всі поля'); INSERT INTO fieldname VALUES (1,'ja','ln','だれでも分野'); +INSERT INTO fieldname VALUES (1,'bg','ln',''); INSERT INTO fieldname VALUES (2,'en','ln','title'); INSERT INTO fieldname VALUES (2,'fr','ln','titre'); INSERT INTO fieldname VALUES (2,'de','ln','Titel'); INSERT INTO fieldname VALUES (2,'es','ln','título'); INSERT INTO fieldname VALUES (2,'ca','ln','títol'); INSERT INTO fieldname VALUES (2,'pl','ln','tytuł'); INSERT INTO fieldname VALUES (2,'pt','ln','título'); INSERT INTO fieldname VALUES (2,'it','ln','titolo'); INSERT INTO fieldname VALUES (2,'ru','ln','название'); INSERT INTO fieldname VALUES (2,'sk','ln','názov'); INSERT INTO fieldname VALUES (2,'cs','ln','název'); INSERT INTO fieldname VALUES (2,'no','ln','tittel'); INSERT INTO fieldname VALUES (2,'sv','ln','titel'); INSERT INTO fieldname VALUES (2,'el','ln','τίτλος'); INSERT INTO fieldname VALUES (2,'uk','ln','назва'); INSERT INTO fieldname VALUES (2,'ja','ln','タイトル'); +INSERT INTO fieldname VALUES (2,'bg','ln',''); INSERT INTO fieldname VALUES (3,'en','ln','author'); INSERT INTO fieldname VALUES (3,'fr','ln','auteur'); INSERT INTO fieldname VALUES (3,'de','ln','Autor'); INSERT INTO fieldname VALUES (3,'es','ln','autor'); INSERT INTO fieldname VALUES (3,'ca','ln','autor'); INSERT INTO fieldname VALUES (3,'pl','ln','autor'); INSERT INTO fieldname VALUES (3,'pt','ln','autor'); INSERT INTO fieldname VALUES (3,'it','ln','autore'); INSERT INTO fieldname VALUES (3,'ru','ln','автор'); INSERT INTO fieldname VALUES (3,'sk','ln','autor'); INSERT INTO fieldname VALUES (3,'cs','ln','autor'); INSERT INTO fieldname VALUES (3,'no','ln','forfatter'); INSERT INTO fieldname VALUES (3,'sv','ln','författare'); INSERT INTO fieldname VALUES (3,'el','ln','συγγραφέας'); INSERT INTO fieldname VALUES (3,'uk','ln','автор'); INSERT INTO fieldname VALUES (3,'ja','ln','著者'); +INSERT INTO fieldname VALUES (3,'bg','ln',''); INSERT INTO fieldname VALUES (4,'en','ln','abstract'); INSERT INTO fieldname VALUES (4,'fr','ln','abstract'); INSERT INTO fieldname VALUES (4,'de','ln','Abstrakt'); INSERT INTO fieldname VALUES (4,'es','ln','resumen'); INSERT INTO fieldname VALUES (4,'ca','ln','resum'); INSERT INTO fieldname VALUES (4,'pl','ln','abstrakt'); INSERT INTO fieldname VALUES (4,'pt','ln','resumo'); INSERT INTO fieldname VALUES (4,'it','ln','riassunto'); INSERT INTO fieldname VALUES (4,'ru','ln','абстракт'); INSERT INTO fieldname VALUES (4,'sk','ln','abstrakt'); INSERT INTO fieldname VALUES (4,'cs','ln','abstrakt'); INSERT INTO fieldname VALUES (4,'no','ln','sammendrag'); INSERT INTO fieldname VALUES (4,'sv','ln','sammanfattning'); INSERT INTO fieldname VALUES (4,'el','ln','περίληψη'); INSERT INTO fieldname VALUES (4,'uk','ln','резюме'); INSERT INTO fieldname VALUES (4,'ja','ln','概要'); +INSERT INTO fieldname VALUES (4,'bg','ln',''); INSERT INTO fieldname VALUES (5,'en','ln','keyword'); INSERT INTO fieldname VALUES (5,'fr','ln','mot clé'); INSERT INTO fieldname VALUES (5,'de','ln','Kennwort'); INSERT INTO fieldname VALUES (5,'es','ln','palabra clave'); INSERT INTO fieldname VALUES (5,'ca','ln','paraula clau'); INSERT INTO fieldname VALUES (5,'pl','ln','słowo kluczowe'); INSERT INTO fieldname VALUES (5,'pt','ln','palavra chave'); INSERT INTO fieldname VALUES (5,'it','ln','parola chiave'); INSERT INTO fieldname VALUES (5,'ru','ln','ключевое слово'); INSERT INTO fieldname VALUES (5,'sk','ln','kľúčové slovo'); INSERT INTO fieldname VALUES (5,'cs','ln','klíčové slovo'); INSERT INTO fieldname VALUES (5,'no','ln','nøkkelord'); INSERT INTO fieldname VALUES (5,'sv','ln','nyckelord'); INSERT INTO fieldname VALUES (5,'el','ln','λέξη κλειδί'); INSERT INTO fieldname VALUES (5,'uk','ln','ключеве слово'); INSERT INTO fieldname VALUES (5,'ja','ln','キーワード'); +INSERT INTO fieldname VALUES (5,'bg','ln',''); INSERT INTO fieldname VALUES (6,'en','ln','report number'); INSERT INTO fieldname VALUES (6,'fr','ln','numéro de rapport'); INSERT INTO fieldname VALUES (6,'de','ln','Reportnummer'); INSERT INTO fieldname VALUES (6,'es','ln','número de reporte'); INSERT INTO fieldname VALUES (6,'ca','ln','número d\'informe'); INSERT INTO fieldname VALUES (6,'pl','ln','numer raportu'); INSERT INTO fieldname VALUES (6,'pt','ln','número de registro'); INSERT INTO fieldname VALUES (6,'it','ln','numero del rapporto'); INSERT INTO fieldname VALUES (6,'ru','ln','номер документа'); INSERT INTO fieldname VALUES (6,'sk','ln','číslo správy'); INSERT INTO fieldname VALUES (6,'cs','ln','číslo zprávy'); INSERT INTO fieldname VALUES (6,'no','ln','rapportnummer'); INSERT INTO fieldname VALUES (6,'sv','ln','rapportnummer'); INSERT INTO fieldname VALUES (6,'el','ln','αριθμός αναφοράς'); INSERT INTO fieldname VALUES (6,'uk','ln','номер документа'); INSERT INTO fieldname VALUES (6,'ja','ln','レポート数'); +INSERT INTO fieldname VALUES (6,'bg','ln',''); INSERT INTO fieldname VALUES (7,'en','ln','subject'); INSERT INTO fieldname VALUES (7,'fr','ln','sujet'); INSERT INTO fieldname VALUES (7,'de','ln','Thema'); INSERT INTO fieldname VALUES (7,'es','ln','materia'); INSERT INTO fieldname VALUES (7,'ca','ln','matèria'); INSERT INTO fieldname VALUES (7,'pl','ln','temat'); INSERT INTO fieldname VALUES (7,'pt','ln','assunto'); INSERT INTO fieldname VALUES (7,'it','ln','soggetto'); INSERT INTO fieldname VALUES (7,'ru','ln',''); INSERT INTO fieldname VALUES (7,'sk','ln','predmet'); INSERT INTO fieldname VALUES (7,'cs','ln','předmět'); INSERT INTO fieldname VALUES (7,'no','ln','emne'); INSERT INTO fieldname VALUES (7,'sv','ln',''); INSERT INTO fieldname VALUES (7,'el','ln','θέμα'); INSERT INTO fieldname VALUES (7,'uk','ln','тема'); INSERT INTO fieldname VALUES (7,'ja','ln','ツ 主題'); +INSERT INTO fieldname VALUES (7,'bg','ln',''); INSERT INTO fieldname VALUES (8,'en','ln','reference'); INSERT INTO fieldname VALUES (8,'fr','ln','référence'); INSERT INTO fieldname VALUES (8,'de','ln','Referenz'); INSERT INTO fieldname VALUES (8,'es','ln','referencia'); INSERT INTO fieldname VALUES (8,'ca','ln','referència'); INSERT INTO fieldname VALUES (8,'pl','ln','odnośnik'); INSERT INTO fieldname VALUES (8,'pt','ln','referência'); INSERT INTO fieldname VALUES (8,'it','ln','referenza'); INSERT INTO fieldname VALUES (8,'ru','ln','ссылка'); INSERT INTO fieldname VALUES (8,'sk','ln','referencie'); INSERT INTO fieldname VALUES (8,'cs','ln','reference'); INSERT INTO fieldname VALUES (8,'no','ln','referanse'); INSERT INTO fieldname VALUES (8,'sv','ln','referens'); INSERT INTO fieldname VALUES (8,'el','ln','αναφορά'); INSERT INTO fieldname VALUES (8,'uk','ln','посилання'); INSERT INTO fieldname VALUES (8,'ja','ln','参照'); +INSERT INTO fieldname VALUES (8,'bg','ln',''); INSERT INTO fieldname VALUES (9,'en','ln','fulltext'); INSERT INTO fieldname VALUES (9,'fr','ln','fulltext'); INSERT INTO fieldname VALUES (9,'de','ln','Volltext'); INSERT INTO fieldname VALUES (9,'es','ln','texto completo'); INSERT INTO fieldname VALUES (9,'ca','ln','text complert'); INSERT INTO fieldname VALUES (9,'pl','ln','pełny tekst'); INSERT INTO fieldname VALUES (9,'pt','ln','texto completo'); INSERT INTO fieldname VALUES (9,'it','ln','testo completo'); INSERT INTO fieldname VALUES (9,'ru','ln','полный текст'); INSERT INTO fieldname VALUES (9,'sk','ln','plný text'); INSERT INTO fieldname VALUES (9,'cs','ln','plný text'); INSERT INTO fieldname VALUES (9,'no','ln','fulltekst'); INSERT INTO fieldname VALUES (9,'sv','ln','fulltext'); INSERT INTO fieldname VALUES (9,'el','ln','πλήρες κείμενο'); INSERT INTO fieldname VALUES (9,'uk','ln','повний текст'); INSERT INTO fieldname VALUES (9,'ja','ln','フルテキスト'); +INSERT INTO fieldname VALUES (9,'bg','ln',''); INSERT INTO fieldname VALUES (10,'en','ln','collection'); INSERT INTO fieldname VALUES (10,'fr','ln','collection'); INSERT INTO fieldname VALUES (10,'de','ln','Sammlung'); INSERT INTO fieldname VALUES (10,'es','ln','colección'); INSERT INTO fieldname VALUES (10,'ca','ln','col·lecció'); INSERT INTO fieldname VALUES (10,'pl','ln','zbiór'); INSERT INTO fieldname VALUES (10,'pt','ln','coleção'); INSERT INTO fieldname VALUES (10,'it','ln','collezione'); INSERT INTO fieldname VALUES (10,'ru','ln','набор'); INSERT INTO fieldname VALUES (10,'sk','ln','kolekcia'); INSERT INTO fieldname VALUES (10,'cs','ln','kolekce'); INSERT INTO fieldname VALUES (10,'no','ln','samling'); INSERT INTO fieldname VALUES (10,'sv','ln','samlingen'); INSERT INTO fieldname VALUES (10,'el','ln','συλλογή'); INSERT INTO fieldname VALUES (10,'uk','ln','розділ'); INSERT INTO fieldname VALUES (10,'ja','ln','コレクション'); +INSERT INTO fieldname VALUES (10,'bg','ln',''); INSERT INTO fieldname VALUES (11,'en','ln','division'); INSERT INTO fieldname VALUES (11,'fr','ln','division'); INSERT INTO fieldname VALUES (11,'de','ln','Abteilung'); INSERT INTO fieldname VALUES (11,'es','ln','división'); INSERT INTO fieldname VALUES (11,'ca','ln','divisió'); INSERT INTO fieldname VALUES (11,'pl','ln','podział'); INSERT INTO fieldname VALUES (11,'pt','ln','divisão'); INSERT INTO fieldname VALUES (11,'it','ln','divisione'); INSERT INTO fieldname VALUES (11,'ru','ln',''); INSERT INTO fieldname VALUES (11,'sk','ln','oddelenie'); INSERT INTO fieldname VALUES (11,'cs','ln','oddělení'); INSERT INTO fieldname VALUES (11,'no','ln','divisjon'); INSERT INTO fieldname VALUES (11,'sv','ln',''); INSERT INTO fieldname VALUES (11,'el','ln','τμήμα'); INSERT INTO fieldname VALUES (11,'uk','ln','підрозділ'); INSERT INTO fieldname VALUES (11,'ja','ln','部'); +INSERT INTO fieldname VALUES (11,'bg','ln',''); INSERT INTO fieldname VALUES (12,'en','ln','year'); INSERT INTO fieldname VALUES (12,'fr','ln','année'); INSERT INTO fieldname VALUES (12,'de','ln','Jahr'); INSERT INTO fieldname VALUES (12,'es','ln','año'); INSERT INTO fieldname VALUES (12,'ca','ln','any'); INSERT INTO fieldname VALUES (12,'pl','ln','rok'); INSERT INTO fieldname VALUES (12,'pt','ln','ano'); INSERT INTO fieldname VALUES (12,'it','ln','anno'); INSERT INTO fieldname VALUES (12,'ru','ln','год'); INSERT INTO fieldname VALUES (12,'sk','ln','rok'); INSERT INTO fieldname VALUES (12,'cs','ln','rok'); INSERT INTO fieldname VALUES (12,'no','ln','år'); INSERT INTO fieldname VALUES (12,'sv','ln','år'); INSERT INTO fieldname VALUES (12,'el','ln','έτος'); INSERT INTO fieldname VALUES (12,'uk','ln','рік'); INSERT INTO fieldname VALUES (12,'ja','ln','年'); +INSERT INTO fieldname VALUES (12,'bg','ln',''); INSERT INTO fieldname VALUES (13,'en','ln','experiment'); INSERT INTO fieldname VALUES (13,'fr','ln','expérience'); INSERT INTO fieldname VALUES (13,'de','ln','Experiment'); INSERT INTO fieldname VALUES (13,'es','ln','experimento'); INSERT INTO fieldname VALUES (13,'ca','ln','experiment'); INSERT INTO fieldname VALUES (13,'pl','ln','eksperyment'); INSERT INTO fieldname VALUES (13,'pt','ln','experimento'); INSERT INTO fieldname VALUES (13,'it','ln','esperimento'); INSERT INTO fieldname VALUES (13,'ru','ln',''); INSERT INTO fieldname VALUES (13,'sk','ln','experiment'); INSERT INTO fieldname VALUES (13,'cs','ln','experiment'); INSERT INTO fieldname VALUES (13,'no','ln','eksperiment'); INSERT INTO fieldname VALUES (13,'sv','ln',''); INSERT INTO fieldname VALUES (13,'el','ln','πείραμα'); INSERT INTO fieldname VALUES (13,'uk','ln','експеримент'); INSERT INTO fieldname VALUES (13,'ja','ln','実験'); +INSERT INTO fieldname VALUES (13,'bg','ln',''); INSERT INTO fieldname VALUES (14,'en','ln','record ID'); INSERT INTO fieldname VALUES (14,'fr','ln','notice ID'); INSERT INTO fieldname VALUES (14,'de','ln','Datensatz-ID'); INSERT INTO fieldname VALUES (14,'es','ln','registro núm.'); INSERT INTO fieldname VALUES (14,'ca','ln','registre núm.'); INSERT INTO fieldname VALUES (14,'pl','ln','ID rekordu'); INSERT INTO fieldname VALUES (14,'pt','ln','ID do registro'); INSERT INTO fieldname VALUES (14,'it','ln','ID della notizia'); INSERT INTO fieldname VALUES (14,'ru','ln',''); INSERT INTO fieldname VALUES (14,'sk','ln','ID záznamu'); INSERT INTO fieldname VALUES (14,'cs','ln','ID záznamu'); INSERT INTO fieldname VALUES (14,'no','ln','post ID'); INSERT INTO fieldname VALUES (14,'sv','ln',''); INSERT INTO fieldname VALUES (14,'el','ln','record ID'); INSERT INTO fieldname VALUES (14,'uk','ln','номер запису'); INSERT INTO fieldname VALUES (14,'ja','ln','記録的なID'); +INSERT INTO fieldname VALUES (14,'bg','ln',''); INSERT INTO field_tag VALUES (1,100,10); INSERT INTO field_tag VALUES (1,101,10); INSERT INTO field_tag VALUES (1,102,10); INSERT INTO field_tag VALUES (1,103,10); INSERT INTO field_tag VALUES (1,104,10); INSERT INTO field_tag VALUES (1,105,10); INSERT INTO field_tag VALUES (1,106,10); INSERT INTO field_tag VALUES (1,107,10); INSERT INTO field_tag VALUES (1,108,10); INSERT INTO field_tag VALUES (1,109,10); INSERT INTO field_tag VALUES (1,110,10); INSERT INTO field_tag VALUES (1,111,10); INSERT INTO field_tag VALUES (1,112,10); INSERT INTO field_tag VALUES (1,113,10); INSERT INTO field_tag VALUES (1,114,10); INSERT INTO field_tag VALUES (1,16,10); INSERT INTO field_tag VALUES (1,17,10); INSERT INTO field_tag VALUES (1,18,10); INSERT INTO field_tag VALUES (1,19,10); INSERT INTO field_tag VALUES (1,20,10); INSERT INTO field_tag VALUES (1,21,10); INSERT INTO field_tag VALUES (1,22,10); INSERT INTO field_tag VALUES (1,23,10); INSERT INTO field_tag VALUES (1,24,10); INSERT INTO field_tag VALUES (1,25,10); INSERT INTO field_tag VALUES (1,26,10); INSERT INTO field_tag VALUES (1,27,10); INSERT INTO field_tag VALUES (1,28,10); INSERT INTO field_tag VALUES (1,29,10); INSERT INTO field_tag VALUES (1,30,10); INSERT INTO field_tag VALUES (1,31,10); INSERT INTO field_tag VALUES (1,32,10); INSERT INTO field_tag VALUES (1,33,10); INSERT INTO field_tag VALUES (1,34,10); INSERT INTO field_tag VALUES (1,35,10); INSERT INTO field_tag VALUES (1,36,10); INSERT INTO field_tag VALUES (1,37,10); INSERT INTO field_tag VALUES (1,38,10); INSERT INTO field_tag VALUES (1,39,10); INSERT INTO field_tag VALUES (1,40,10); INSERT INTO field_tag VALUES (1,41,10); INSERT INTO field_tag VALUES (1,42,10); INSERT INTO field_tag VALUES (1,43,10); INSERT INTO field_tag VALUES (1,44,10); INSERT INTO field_tag VALUES (1,45,10); INSERT INTO field_tag VALUES (1,46,10); INSERT INTO field_tag VALUES (1,47,10); INSERT INTO field_tag VALUES (1,48,10); INSERT INTO field_tag VALUES (1,49,10); INSERT INTO field_tag VALUES (1,50,10); INSERT INTO field_tag VALUES (1,51,10); INSERT INTO field_tag VALUES (1,52,10); INSERT INTO field_tag VALUES (1,53,10); INSERT INTO field_tag VALUES (1,54,10); INSERT INTO field_tag VALUES (1,55,10); INSERT INTO field_tag VALUES (1,56,10); INSERT INTO field_tag VALUES (1,57,10); INSERT INTO field_tag VALUES (1,58,10); INSERT INTO field_tag VALUES (1,59,10); INSERT INTO field_tag VALUES (1,60,10); INSERT INTO field_tag VALUES (1,61,10); INSERT INTO field_tag VALUES (1,62,10); INSERT INTO field_tag VALUES (1,63,10); INSERT INTO field_tag VALUES (1,64,10); INSERT INTO field_tag VALUES (1,65,10); INSERT INTO field_tag VALUES (1,66,10); INSERT INTO field_tag VALUES (1,67,10); INSERT INTO field_tag VALUES (1,68,10); INSERT INTO field_tag VALUES (1,69,10); INSERT INTO field_tag VALUES (1,70,10); INSERT INTO field_tag VALUES (1,71,10); INSERT INTO field_tag VALUES (1,72,10); INSERT INTO field_tag VALUES (1,73,10); INSERT INTO field_tag VALUES (1,74,10); INSERT INTO field_tag VALUES (1,75,10); INSERT INTO field_tag VALUES (1,76,10); INSERT INTO field_tag VALUES (1,77,10); INSERT INTO field_tag VALUES (1,78,10); INSERT INTO field_tag VALUES (1,79,10); INSERT INTO field_tag VALUES (1,80,10); INSERT INTO field_tag VALUES (1,81,10); INSERT INTO field_tag VALUES (1,82,10); INSERT INTO field_tag VALUES (1,83,10); INSERT INTO field_tag VALUES (1,84,10); INSERT INTO field_tag VALUES (1,85,10); INSERT INTO field_tag VALUES (1,86,10); INSERT INTO field_tag VALUES (1,87,10); INSERT INTO field_tag VALUES (1,88,10); INSERT INTO field_tag VALUES (1,89,10); INSERT INTO field_tag VALUES (1,90,10); INSERT INTO field_tag VALUES (1,91,10); INSERT INTO field_tag VALUES (1,92,10); INSERT INTO field_tag VALUES (1,93,10); INSERT INTO field_tag VALUES (1,94,10); INSERT INTO field_tag VALUES (1,95,10); INSERT INTO field_tag VALUES (1,96,10); INSERT INTO field_tag VALUES (1,97,10); INSERT INTO field_tag VALUES (1,98,10); INSERT INTO field_tag VALUES (1,99,10); INSERT INTO field_tag VALUES (10,11,100); INSERT INTO field_tag VALUES (11,14,100); INSERT INTO field_tag VALUES (12,15,10); INSERT INTO field_tag VALUES (13,116,10); INSERT INTO field_tag VALUES (2,3,100); INSERT INTO field_tag VALUES (2,4,90); INSERT INTO field_tag VALUES (3,1,100); INSERT INTO field_tag VALUES (3,2,90); INSERT INTO field_tag VALUES (4,5,100); INSERT INTO field_tag VALUES (5,6,100); INSERT INTO field_tag VALUES (6,7,30); INSERT INTO field_tag VALUES (6,8,10); INSERT INTO field_tag VALUES (6,9,20); INSERT INTO field_tag VALUES (7,12,100); INSERT INTO field_tag VALUES (7,13,90); INSERT INTO field_tag VALUES (8,10,100); INSERT INTO field_tag VALUES (9,115,100); INSERT INTO field_tag VALUES (14,117,100); INSERT INTO format VALUES (1,'HTML brief','hb'); INSERT INTO format VALUES (2,'HTML detailed','hd'); INSERT INTO format VALUES (6,'portfolio','hp'); INSERT INTO format VALUES (7,'photo captions only','hc'); INSERT INTO format VALUES (8,'BibTeX','hx'); INSERT INTO format VALUES (4,'Dublin Core','xd'); INSERT INTO format VALUES (3,'MARC','hm'); INSERT INTO format VALUES (5,'MARCXML','xm'); INSERT INTO tag VALUES (1,'first author','100__%'); INSERT INTO tag VALUES (2,'additional author','700__%'); INSERT INTO tag VALUES (3,'main title','245__%'); INSERT INTO tag VALUES (4,'additional title','246__%'); INSERT INTO tag VALUES (5,'abstract','520__%'); INSERT INTO tag VALUES (6,'keyword','6531_a'); INSERT INTO tag VALUES (7,'primary report number','037__a'); INSERT INTO tag VALUES (8,'additional report number','088__a'); INSERT INTO tag VALUES (9,'added report number','909C0r'); INSERT INTO tag VALUES (10,'reference','999C5%'); INSERT INTO tag VALUES (11,'collection identifier','980__%'); INSERT INTO tag VALUES (12,'main subject','65017a'); INSERT INTO tag VALUES (13,'additional subject','65027a'); INSERT INTO tag VALUES (14,'division','909C0p'); INSERT INTO tag VALUES (15,'year','909C0y'); INSERT INTO tag VALUES (16,'00x','00%'); INSERT INTO tag VALUES (17,'01x','01%'); INSERT INTO tag VALUES (18,'02x','02%'); INSERT INTO tag VALUES (19,'03x','03%'); INSERT INTO tag VALUES (20,'04x','04%'); INSERT INTO tag VALUES (21,'05x','05%'); INSERT INTO tag VALUES (22,'06x','06%'); INSERT INTO tag VALUES (23,'07x','07%'); INSERT INTO tag VALUES (24,'08x','08%'); INSERT INTO tag VALUES (25,'09x','09%'); INSERT INTO tag VALUES (26,'10x','10%'); INSERT INTO tag VALUES (27,'11x','11%'); INSERT INTO tag VALUES (28,'12x','12%'); INSERT INTO tag VALUES (29,'13x','13%'); INSERT INTO tag VALUES (30,'14x','14%'); INSERT INTO tag VALUES (31,'15x','15%'); INSERT INTO tag VALUES (32,'16x','16%'); INSERT INTO tag VALUES (33,'17x','17%'); INSERT INTO tag VALUES (34,'18x','18%'); INSERT INTO tag VALUES (35,'19x','19%'); INSERT INTO tag VALUES (36,'20x','20%'); INSERT INTO tag VALUES (37,'21x','21%'); INSERT INTO tag VALUES (38,'22x','22%'); INSERT INTO tag VALUES (39,'23x','23%'); INSERT INTO tag VALUES (40,'24x','24%'); INSERT INTO tag VALUES (41,'25x','25%'); INSERT INTO tag VALUES (42,'26x','26%'); INSERT INTO tag VALUES (43,'27x','27%'); INSERT INTO tag VALUES (44,'28x','28%'); INSERT INTO tag VALUES (45,'29x','29%'); INSERT INTO tag VALUES (46,'30x','30%'); INSERT INTO tag VALUES (47,'31x','31%'); INSERT INTO tag VALUES (48,'32x','32%'); INSERT INTO tag VALUES (49,'33x','33%'); INSERT INTO tag VALUES (50,'34x','34%'); INSERT INTO tag VALUES (51,'35x','35%'); INSERT INTO tag VALUES (52,'36x','36%'); INSERT INTO tag VALUES (53,'37x','37%'); INSERT INTO tag VALUES (54,'38x','38%'); INSERT INTO tag VALUES (55,'39x','39%'); INSERT INTO tag VALUES (56,'40x','40%'); INSERT INTO tag VALUES (57,'41x','41%'); INSERT INTO tag VALUES (58,'42x','42%'); INSERT INTO tag VALUES (59,'43x','43%'); INSERT INTO tag VALUES (60,'44x','44%'); INSERT INTO tag VALUES (61,'45x','45%'); INSERT INTO tag VALUES (62,'46x','46%'); INSERT INTO tag VALUES (63,'47x','47%'); INSERT INTO tag VALUES (64,'48x','48%'); INSERT INTO tag VALUES (65,'49x','49%'); INSERT INTO tag VALUES (66,'50x','50%'); INSERT INTO tag VALUES (67,'51x','51%'); INSERT INTO tag VALUES (68,'52x','52%'); INSERT INTO tag VALUES (69,'53x','53%'); INSERT INTO tag VALUES (70,'54x','54%'); INSERT INTO tag VALUES (71,'55x','55%'); INSERT INTO tag VALUES (72,'56x','56%'); INSERT INTO tag VALUES (73,'57x','57%'); INSERT INTO tag VALUES (74,'58x','58%'); INSERT INTO tag VALUES (75,'59x','59%'); INSERT INTO tag VALUES (76,'60x','60%'); INSERT INTO tag VALUES (77,'61x','61%'); INSERT INTO tag VALUES (78,'62x','62%'); INSERT INTO tag VALUES (79,'63x','63%'); INSERT INTO tag VALUES (80,'64x','64%'); INSERT INTO tag VALUES (81,'65x','65%'); INSERT INTO tag VALUES (82,'66x','66%'); INSERT INTO tag VALUES (83,'67x','67%'); INSERT INTO tag VALUES (84,'68x','68%'); INSERT INTO tag VALUES (85,'69x','69%'); INSERT INTO tag VALUES (86,'70x','70%'); INSERT INTO tag VALUES (87,'71x','71%'); INSERT INTO tag VALUES (88,'72x','72%'); INSERT INTO tag VALUES (89,'73x','73%'); INSERT INTO tag VALUES (90,'74x','74%'); INSERT INTO tag VALUES (91,'75x','75%'); INSERT INTO tag VALUES (92,'76x','76%'); INSERT INTO tag VALUES (93,'77x','77%'); INSERT INTO tag VALUES (94,'78x','78%'); INSERT INTO tag VALUES (95,'79x','79%'); INSERT INTO tag VALUES (96,'80x','80%'); INSERT INTO tag VALUES (97,'81x','81%'); INSERT INTO tag VALUES (98,'82x','82%'); INSERT INTO tag VALUES (99,'83x','83%'); INSERT INTO tag VALUES (100,'84x','84%'); INSERT INTO tag VALUES (101,'85x','85%'); INSERT INTO tag VALUES (102,'86x','86%'); INSERT INTO tag VALUES (103,'87x','87%'); INSERT INTO tag VALUES (104,'88x','88%'); INSERT INTO tag VALUES (105,'89x','89%'); INSERT INTO tag VALUES (106,'90x','90%'); INSERT INTO tag VALUES (107,'91x','91%'); INSERT INTO tag VALUES (108,'92x','92%'); INSERT INTO tag VALUES (109,'93x','93%'); INSERT INTO tag VALUES (110,'94x','94%'); INSERT INTO tag VALUES (111,'95x','95%'); INSERT INTO tag VALUES (112,'96x','96%'); INSERT INTO tag VALUES (113,'97x','97%'); INSERT INTO tag VALUES (114,'98x','98%'); INSERT INTO tag VALUES (115,'url','8564_u'); INSERT INTO tag VALUES (116,'experiment','909C0e'); INSERT INTO tag VALUES (117,'record ID','001'); INSERT INTO idxINDEX VALUES (1,'global','This index contains words/phrases from global fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (2,'collection','This index contains words/phrases from collection identifiers fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (3,'abstract','This index contains words/phrases from abstract fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (4,'author','This index contains words/phrases from author fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (5,'keyword','This index contains words/phrases from keyword fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (6,'reference','This index contains words/phrases from references fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (7,'reportnumber','This index contains words/phrases from report numbers fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (8,'title','This index contains words/phrases from title fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (9,'fulltext','This index contains words/phrases from fulltext fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX VALUES (10,'year','This index contains words/phrases from year fields.','0000-00-00 00:00:00'); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (1,1); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (2,10); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (3,4); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (4,3); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (5,5); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (6,8); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (7,6); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (8,2); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (9,9); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (10,12); INSERT INTO flxFORMATS VALUES ('DEFAULT_HTML_BRIEF','\"\" format(\"_DEFAULT_TITLE\") \" \"\r\nif(count($100.a)!=\"0\" || count($700.a)!=\"0\")\r\n{\r\n \" / \" format(\"_DEFAULT_AUTHORS\") \" \"\r\n}\r\nforall($088.a)\r\n{ \" [\" $088.a \"] \" }\r\nforall($037.a)\r\n{ \" [\" $037.a \"] \" }\r\nforall($520.a)\r\n{ \"
\" format(\"_DEFAULT_ABSTRACT_FIRST_SENTENCE\") \"\" }\r\nforall($8564.u)\r\n{ \"
\" format(\"_DEFAULT_URL\") \"\" }','This is the default brief HTML format.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:8:\"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"_DEFAULT_TITLE\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\" / \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:16:\"_DEFAULT_AUTHORS\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:26:\" [\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"] \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:26:\" [\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"] \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:32:\"_DEFAULT_ABSTRACT_FIRST_SENTENCE\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:8:\"\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"_DEFAULT_URL\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:8:\"\";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_DEFAULT_AUTHORS',' if(gt(sum( count($700.a), count($100.a) ),\"4\")!=\"\") \r\n{ \r\n if(count($100.a)!=\"0\") \r\n { \r\n link(\"author_search\", $100.a)\r\n {\r\n \"\" $100.a \"\"\r\n if($100.e!=\"\") { \" (\" $100.e \")\" }\r\n \" et al \" \r\n } \r\n } \r\n else \r\n { \r\n if(count($700.a)!=\"0\") \r\n { \r\n link(\"author_search\", $700.a)\r\n { \r\n \"\" $700.a \"\"\r\n if($700.e!=\"\") { \" (\" $700.e \")\" }\r\n \" et al.\" \r\n } \r\n } \r\n } \r\n} \r\nelse \r\n{ \r\n forall($100) \r\n { \r\n if($100.a!=\"\") \r\n { \r\n link(\"author_search\", $100.a){\"\" $100.a \"\" } \r\n separator(\"; \") \r\n } \r\n } \r\n if(count($100.a)!=\"0\") \r\n { \r\n if(count($700.a)!=\"0\") \r\n { \"; \" } \r\n } \r\n forall($700) \r\n { \r\n if($700.a!=\"\") \r\n { \r\n link(\"author_search\", $700.a){\"\" $700.a \"\" } \r\n separator(\"; \") \r\n } \r\n } \r\n} ','This is the default subformat to format author lists.','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:2:\"GT\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:3:\"SUM\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"4\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"author_search\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\")\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:17:\" et al \";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"author_search\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\")\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\" et al.\";s:4:\"sons\";a:0:{}}}}}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"author_search\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"author_search\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_DEFAULT_TITLE','$245.a \r\nif($245.b!=\"\"){ \" : \" $245.b } \r\nif($250.a!=\"\"){ \" ; \" $250.a } ','HTML for displaying the title in brief formats','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\" : \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"250\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\" ; \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"250\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_DEFAULT_ABSTRACT_FIRST_SENTENCE','limw_l($520.a, \".\") \". [...]\"','This is the default subformat to yield the first sentence of the abstract.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:6:\"LIMW_L\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\".\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\". [...]\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO flxFORMATS VALUES ('DEFAULT_HTML_DETAILED','format(\"_full_topbanner\") \r\nformat(\"_full_title\") \r\n\"

\" \r\nformat(\"_full_author\")\r\nformat(\"_full_affiliation\")\r\nformat(\"_full_datedoc\") \"
\"\r\nformat(\"_full_imprint\")\r\n\"
\"\r\n\r\n\"

\"\r\n\r\nformat(\"_full_abstract\")\r\nformat(\"_full_daterec\")\r\n\r\nformat(\"_full_keyword\")\r\n\r\nformat(\"_full_note\") \r\nformat(\"_full_publiinfo\")\r\n\"
\"\r\nformat(\"_full_url\")\r\nformat(\"_full_citedby\")\r\n\"

\" \r\nformat(\"_full_references\")\r\n','This is the default HTML detailed format.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"_full_topbanner\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"_full_title\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"

\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"_full_author\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:17:\"_full_affiliation\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_datedoc\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_imprint\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:40:\"

\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"_full_abstract\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_daterec\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_keyword\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"_full_note\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"_full_publiinfo\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"_full_url\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_citedby\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"

\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:16:\"_full_references\";s:4:\"sons\";a:0:{}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_ABSTRACT','if($520.a!=\"\"||$520.b!=\"\"){\r\n \"\r\n Abstract: \"\r\n $520.a\"
\"$520.b\" \"\r\n \"

\r\n \"\r\n} \r\nif($590.a!=\"\"||$590.b!=\"\"){\r\n \"\r\n Texte: \"\r\n $590.a\"
\"$590.b\r\n \"

\r\n \"\r\n} ','HTML Abstract display','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:37:\"\r\n Abstract: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"

\r\n \";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"590\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"590\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:34:\"\r\n Texte: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"590\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"590\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"

\r\n \";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_TITLE','if($245.a!=\"\"){\r\n \"

\"\r\n $245.a\r\n if($245.b!=\"\"){ \": \" $245.b }\r\n \"
\"\r\n}\r\n\r\nif($0248.a!=\"\"){\r\n \"
\"\r\n $0248.a\r\n \"
\"\r\n}\r\n\r\nif($246.a!=\"\"){\r\n \"
\"\r\n $246.a\r\n \"
\"\r\n}\r\n\r\nif($246_1.a!=\"\"){\r\n \"
\"\r\n $246_1.a\r\n \"
\"\r\n}\r\n\r\nif($210.a!=\"\"){\r\n \"(\"\r\n $210.a\r\n \") \"\r\n}\r\n','HTML Title display ','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:26:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\": \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:30:\"
\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"0248\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:30:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"0248\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:30:\"
\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"246\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:30:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"246\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:30:\"
\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:33:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:34:\"
\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"210\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:8:\"(\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"210\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\") \";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('PICTURE_HTML_DETAILED','format(\"_full_topbanner\")\r\nformat(\"_full_title\")\r\n\r\nformat(\"_full_note\")\r\nif($260.c!=\"\"){\"
\" $260.c \"
\"}\r\nformat(\"_full_contact\")\r\nif($100.a!=\"\"){\r\n \"
Photographer: \"\r\n format(\"_full_author\")\r\n \"
\"\r\n}\r\n\r\n\"
\"\r\n\r\nformat(\"_full_keyword\")\r\n\r\n\r\n\r\n\"\r\n\r\n\"\r\n\r\n\"\" \r\n\r\n\"\r\n\r\n\r\n\r\n\r\n
\" \r\nif($909CP.s!=\"\"){\"
Original ref.: \"$909CP.s\" \"}\r\nif($909CP.t!=\"\"){\"
Available pictures: \"$909CP.t\" \"}\r\n\r\nif ($520.a!=\"\"){\r\n \"

\r\n Caption
\" \r\n \"\" \r\n $520.a\r\n \"

\"\r\n}\r\nif ($590.a!=\"\"){\r\n \"

\r\n Légende
\" \r\n \"\" \r\n $590.a\r\n \"

\"\r\n}\r\n\r\nif ($909C4!=\"\"){\r\n \"

See also:
\" \r\n}\r\nforall ($909C4){\r\n \"\" $909C4.p \"
\"\r\n}\r\n\r\n\"
\" \r\nformat(\"_full_photo_resources\")\r\n\"
\r\n © CERN Geneva: \r\nThe use of photos requires prior authorization (from CERN copyright). \r\nThe words CERN Photo must be quoted for each use. \r\n
\r\n

\"','The detailed HTML format suitable for displaying pictures.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"_full_topbanner\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"_full_title\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"_full_note\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:8:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"
\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_contact\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:29:\"
Photographer: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"_full_author\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:17:\"
\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"_full_keyword\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:46:\"\r\n\r\n\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:17:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:310:\"\r\n\r\n\r\n\r\n\r\n
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"S\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:37:\"
Original ref.: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"S\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:41:\"
Available pictures: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:67:\"

\r\n Caption
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"

\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"590\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:68:\"

\r\n Légende
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"590\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"

\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:64:\"

See also:
\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:16:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:16:\"
\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:21:\"_full_photo_resources\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\r\n © CERN Geneva: \r\nThe use of photos requires prior authorization (from CERN copyright). \r\nThe words CERN Photo must be quoted for each use. \r\n
\r\n

\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO `flxFORMATS` VALUES ('PICTURE_HTML_BRIEF',' \"
\r\n \r\n \r\n \r\n
\"\r\n\"\" format(\"_DEFAULT_TITLE\") \"\"\r\nforall($246_1.a)\r\n{ \"
\" $246_1.a\" \" } \r\nforall($260.c)\r\n{ \"
\" $260.c }\r\nforall($520.a) {\r\n rep_prefix(\"

Abstract: \")\r\n format(\"_DEFAULT_ABSTRACT_FIRST_SENTENCE\")\r\n \"

\"\r\n}\r\nforall($6531.a)\r\n{ \r\n rep_prefix(\"
Keyword: \") \r\n link(\"KEYWORD_SEARCH\", $6531.a)\r\n { \"\" $6531.a \"\" } separator(\", \")\r\n}\r\nforall($037.a)\r\n{\"
Picture number: \" $037.a }\r\nforall($909CP.t)\r\n{ rep_prefix(\"
Available picture(s):\") xml_text($909CP.t) }\r\n\r\n\"

\"\r\nforall($8564)\r\n{ if(($8564.x=\"icon\")&&($8564.u=\"\"))\r\n { \"

\" }\r\n}\r\n\r\n\"
© CERN Geneva\" \r\n\"
\" link(\"EXT\", $8564.u, $8564.z){ $link }\r\n\"

\"','The brief HTML format suitable for displaying pictures.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:69:\"
\r\n \r\n \r\n \r\n
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"_DEFAULT_TITLE\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"520\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"REP_PREFIX\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:20:\"

Abstract: \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:32:\"_DEFAULT_ABSTRACT_FIRST_SENTENCE\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"

\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"6531\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"REP_PREFIX\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:21:\"
Keyword: \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"KEYWORD_SEARCH\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"6531\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"6531\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\", \";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:27:\"
Picture number: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"REP_PREFIX\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:32:\"
Available picture(s):\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"XML_TEXT\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:38:\"

\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:6;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"X\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"icon\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:20:\"

\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:56:\"
© CERN Geneva\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"EXT\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Z\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"LINK\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:29:\"

\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_AUTHOR','if($700.a!=\"\"||$100.a!=\"\"||$270.p!=\"\"){\r\n\r\n forall($100){\r\n LINK(\"AUTHOR_SEARCH\",$100.a){\r\n \"\"$100.a\" \"\r\n if ($100.e!=\"\"){\" (\"$100.e\")\"}\r\n separator(\"; \")\r\n }\r\n }\r\n if(count($100.a)!=\"0\") \r\n { \r\n if(count($700.a)!=\"0\") \r\n { \"; \" } \r\n } \r\n forall($700){\r\n LINK(\"AUTHOR_SEARCH\",$700.a){\r\n \" \"$700.a\" \"\r\n if ($700.e!=\"\"){\" (\"$700.e\")\"}\r\n separator(\"; \")\r\n }\r\n } \r\n \r\n forall($270){\r\n LINK(\"AUTHOR_SEARCH\",$270.p){\r\n \" \"$270.p\" \"\r\n if ($270.g!=\"\"){\r\n \" (\"\r\n $270.g\r\n \")\"\r\n }\r\n separator(\"; \")\r\n }\r\n }\r\n \r\n} ','HTML linked author display','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"270\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"AUTHOR_SEARCH\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\")\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:17;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"AUTHOR_SEARCH\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\")\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"270\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"AUTHOR_SEARCH\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"270\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"270\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"270\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"G\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"270\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"G\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\")\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_AFFILIATION','if($909C1.u!=\"\"){\r\n \"
\"\r\n forall($909C1){\r\n $909C1.u\" \"\r\n }\r\n} \r\n','HTML Affiliation display','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:5:\"909C1\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\" \";s:4:\"sons\";a:0:{}}}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_DATEDOC','if($260.c!=\"\"){\r\n \"
\"\r\n $260.c\" \r\n \"\r\n} \r\n','HTML Imprint date','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\" \r\n \";s:4:\"sons\";a:0:{}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_IMPRINT','if($260.b!=\"\"){\r\n if($260.b!=\"sine nomine\"){\r\n \"\"\r\n $260.b\r\n if($260.a!=\"\"){\r\n if($260.a!=\"sine loco\"){\": \"$260.a}\r\n }\r\n \" \"\r\n }\r\n}\r\n','HTML Imprint display (not the date)','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"sine nomine\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"sine loco\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\": \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_DATEREC','if($909C1.c!=\"\"){\r\n \"
Arrived: \"\r\n $909C1.c\" \"\r\n}\r\n','',NULL); INSERT INTO flxFORMATS VALUES ('_FULL_KEYWORD','forall($6531.a){\r\n REP_PREFIX(\"
Keyword(s): \")\r\n \"\"\r\n LINK(\"KEYWORD_SEARCH\",$6531.a){ \r\n \"\"$6531.a\" \"\r\n separator(\";\")\r\n }\r\n \"\r\n \"\r\n} \r\n','HTML keyword display with search link','O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"6531\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"REP_PREFIX\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:48:\"
Keyword(s): \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"KEYWORD_SEARCH\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"6531\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"6531\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\";\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"\r\n \";s:4:\"sons\";a:0:{}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_NOTE','if($594.p!=\"\"){\r\n \"
Note: \"\r\n xml_text($594.p)\" \"\r\n}\r\nif($500.a!=\"\"){\r\n \"
Note: \"\r\n forall($500){xml_text($500.a)\"; \"}\r\n \"\"\r\n} \r\nif($502.a!=\"\"||$909CC.r!=\"\"||$909CP.n!=\"\"||$711.a!=\"\"){\r\n \"
Note: \"\r\n $502.a\" \"\r\n $909CC.r\" \"\r\n $909CC.d\" \"\r\n $909CP.n\" \"\r\n $711.a \" \"\r\n} \r\nif($596.a!=\"\"){\r\n \"
Notes: \"\r\n $596.a \" \"\r\n} \r\n\r\n','HTML note display (various note fields)','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"594\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:34:\"
Note: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"XML_TEXT\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"594\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"500\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:34:\"
Note: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"500\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"XML_TEXT\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"500\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"; \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:8:\"\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CC\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"R\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"711\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:34:\"
Note: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CC\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"R\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CC\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"D\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909CP\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"711\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"596\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:35:\"
Notes: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"596\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_PUBLIINFO','if($909C4.p!=\"\"){ \r\n \"

Published in: \"\r\n if (KB($909C4.p,\"ejournals\")!=\"\") {\r\n if ($909C4.v!=\"\") { \r\n \"\"$909C4.p\": \"\r\n $909C4.v \" (\"$909C4.y\") \"$909C4.c \r\n \" \" \r\n } else {\r\n $909C4.p\": \"\r\n if($909C4.y!=\"\"){\" (\"$909C4.y\") \"}\r\n if($909C4.n!=\"\"){\"no. \"$909C4.n\", \"}\r\n if($909C4.c!=\"\"){\"pp.\"$909C4.c }\r\n }\r\n } else {\r\n $909C4.p \": \"\r\n if($909C4.v!=\"\"){ $909C4.v }\r\n if($909C4.y!=\"\"){\" (\"$909C4.y\") \"}\r\n if($909C4.n!=\"\"){\"no. \"$909C4.n\", \"}\r\n if($909C4.c!=\"\"){\"pp.\"$909C4.c } \r\n }\r\n}\r\n','HTML publication information display possibly with link to ejournal','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:39:\"

Published in: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"ejournals\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:61:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\": \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\") \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\": \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\") \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"no. \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\", \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"pp.\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\": \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\") \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"no. \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\", \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"pp.\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}}}}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_YEAR','if ($909C0.y!=\"\"){\"
Year: \"\r\n $909C0.y\r\n}','HTML Year display','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C0\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:27:\"
Year: \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C0\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_TOPBANNER','\" \r\n\" \r\nforall($088){\"\"} \r\nif($037.a!=\"\"){\"\"} \r\n\"
\"KB($980.a,\"dbcollid2coll\")\" \"\r\nif($65017.a!=\"XX\"){\r\n \" / \" $65017.a\r\n}\r\n\" \"$65027.a\r\n\"\"$088.a\" \"$037.a\"

\" ','HTML top page banner containing category, rep. number, etc','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:74:\" \r\n\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:19:\"\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:26:\"\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:17:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"dbcollid2coll\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"65017\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"XX\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\" / \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"65017\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"65027\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:23:\" \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"

\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO flxFORMATS VALUES ('_DEFAULT_URL','\"\" $8564.u \"\"','This is the default format for formatting URLs.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_URL','forall($8564)\r\n{\r\n\"
\" $8564.z \" : \" $8564.u \"\"\r\n}','HTML URL display','O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Z\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:29:\" : \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"\";s:4:\"sons\";a:0:{}}}}}}'); INSERT INTO flxFORMATS VALUES ('DEFAULT_HTML_CAPTIONS','format(\"_default_title\")','HTML \"captions only\" format','O:7:\"aelnode\":3:{s:3:\"cat\";i:13;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"_default_title\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO `flxFORMATS` VALUES ('DEFAULT_HTML_PORTFOLIO','forall($8564)\r\n{ if(($8564.x=\"icon\")&&($8564.u=\"\"))\r\n { \"

\" }\r\n} ','HTML \"portfolio\" format','O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:6;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"X\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"icon\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:20:\"

\";s:4:\"sons\";a:0:{}}}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_PHOTO_RESOURCES','\"
Resources
\"\r\n\r\nforall($8564)\r\n{ \r\n if(($8564.x=\"icon\")&&($8564.u=\"\")) { \r\n \"

\" \r\n }\r\n if($8564.x=\"1\") {\r\n \"
High resolution: \" $8564.q \"\"\r\n }\r\n \r\n}\r\n\r\n\"
© CERN Geneva\" \r\n\"
\" link(\"EXT\", $8564.u, $8564.z){ $link } \r\n','Prints image and link to photo resources.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:60:\"
Resources
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:6;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"X\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"icon\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"

\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"X\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"1\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:42:\"
High resolution: \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Q\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:47:\"
© CERN Geneva\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:14;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"EXT\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:15;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"U\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"8564\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Z\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:4:\"LINK\";s:4:\"sons\";a:0:{}}}}}}'); INSERT INTO `flxFORMATS` VALUES ('_FULL_CITEDBY','if($037.a!=\"\" || $088.a!=\"\") {\r\n \"

Cited by: try citation search for \"\r\n forall($037.a) {\r\n \"\" $037.a \"\"\r\n separator(\";\")\r\n }\r\n if($037.a!=\"\" && $088.a!=\"\") {\r\n \" ; \"\r\n }\r\n forall($088.a) {\r\n \"\" $088.a \"\"\r\n separator(\";\")\r\n }\r\n}','HTML \"cited by\" link creation, based on report numbers.','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:59:\"

Cited by: try citation search for \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:33:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\";\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:6;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\" ; \";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:33:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"SEPARATOR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\";\";s:4:\"sons\";a:0:{}}}}}}}}}}}}'); INSERT INTO `flxFORMATS` VALUES ('_FULL_REFERENCES','if ($999C5!=\"\") {\r\n\"

\"\r\n\"References:\"\r\n\"
    \" \r\nforall($999C5){ \r\n\r\nif($999C5.o!=\"\")\r\n {\"
  • \"$999C5.o \" \"} \r\n\r\nif ($999C5.m!=\"\")\r\n {\" \" $999C5.m \" \"}\r\n\r\nif ($999C5.r!=\"\")\r\n {\" [\"$999C5.r\"]
    \"} \r\n\r\nif ($999C5.t!=\"\")\r\n {if (KB($999C5.t,\"ejournals\")!=\"\")\r\n { \r\n \" \"$999C5.t\": \"$999C5.v\" (\"$999C5.y\") \"$999C5.p \r\n \"
    \"\r\n } \r\n else\r\n {\" \" $999C5.t\" \"$999C5.v\" \"$999C5.y\" \"$999C5.p \"
    \"\r\n }\r\n }\r\n\r\n} \r\n\"
\"\r\n\r\n\"

Warning: references are automatically extracted and standardized from the PDF document and may therefore contain errors. If you think they are incorrect or incomplete, look at the fulltext document itself.
\"\r\n\"

\"\r\n}','HTML references','O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:28:\"References:\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"
    \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"O\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:12:\"
  • \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"O\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\" \";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"M\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"M\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\" \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"R\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:46:\" [\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"R\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:20:\"]
    \";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"ejournals\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:70:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\": \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\" (\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\") \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:18:\"
    \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\" \";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"T\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\" \";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"999C5\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:14:\"
    \";s:4:\"sons\";a:0:{}}}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:241:\"

Warning: references are automatically extracted and standardized from the PDF document and may therefore contain errors. If you think they are incorrect or incomplete, look at the fulltext document itself.
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"

\";s:4:\"sons\";a:0:{}}}}}}'); INSERT INTO flxFORMATS VALUES ('_FULL_BIBTEX','\"
\"\r\n\"@\" \r\n\r\nif (kb($980.a, \"DBCOLLID2BIBTEX\") = \"\"){\r\n    \"article\"\r\n}else{\r\n    kb($980.a, \"DBCOLLID2BIBTEX\")\r\n}\r\n\r\n\"{\"\r\n\r\nif($100.a != \"\"){\r\n    GET_NAME($100.a) \":\" $001 \",
\"\r\n}else{\r\n if($700.a != \"\"){\r\n GET_NAME($700.a) \":\" $001 \",
\"\r\n }else{\r\n if($037.a != \"\"){\r\n $037.a \",
\"\r\n }else{\r\n if($088.a != \"\"){\r\n $088.a \",
\"\r\n }else{\r\n if($245.a != \"\"){\r\n GET_NAME($245.a) \":\" $001 \",
\"\r\n }else{\r\n $001 \",
\"\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"article\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"book\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"inproceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"misc\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"phdthesis\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"techreport\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"unpublished\"){\r\n if ($100.a != \"\" || $700.a != \"\" || $110.b != \"\" || $110.a != \"\" || $710.a != \"\"){\r\n STR_BUFFER(\"add\",\" author = \\\"\", \"0\", \"0\")\r\n\r\n if($100.a != \"\"){\r\n STR_BUFFER(\"add\", $100.a \" and \", \"0\", \"0\")\r\n }\r\n\r\n forall($700.a){\r\n if ($700.e != \"ed.\"){\r\n STR_BUFFER(\"add\", $700.a \" and \", \"0\", \"0\")\r\n }\r\n }\r\n\r\n forall($110.b){\r\n STR_BUFFER(\"add\", $110.b \" and \", \"0\", \"0\")\r\n }\r\n\r\n forall($110.a){\r\n STR_BUFFER(\"add\", $110.a \" and \", \"0\", \"0\")\r\n }\r\n\r\n forall($710.a){\r\n STR_BUFFER(\"add\", $710.a \" and \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"5\", \"22\"), \"72\", \"22\")\r\n }else{\r\n SPLIT_LINE(\" key = \\\"\" $001 \"\\\",
\", \"72\", \"22\")\r\n }\r\n}\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"inproceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"proceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"phdthesis\"){\r\n if ($700.a != \"\"){\r\n STR_BUFFER(\"add\", \" editor = \\\"\", \"0\", \"0\")\r\n\r\n forall($700){\r\n if ($700.e = \"ed.\"){\r\n STR_BUFFER(\"add\", $700.a \" and \", \"0\", \"0\")\r\n }\r\n }\r\n \r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"5\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif ($245.a != \"\" || $245.b != \"\" || $246.a != \"\" || $246_1.a != \"\"){\r\n\r\n STR_BUFFER(\"add\", \" title = \\\"\", \"0\", \"0\")\r\n\r\n if($245.a != \"\"){\r\n STR_BUFFER(\"add\", $245.a \". \", \"0\", \"0\")\r\n }\r\n\r\n if($245.b != \"\"){\r\n STR_BUFFER(\"add\", $245.b \". \", \"0\", \"0\")\r\n }\r\n\r\n if($246.a != \"\"){\r\n STR_BUFFER(\"add\", $246.a \". \", \"0\", \"0\")\r\n }\r\n\r\n if($246_1.a != \"\"){\r\n STR_BUFFER(\"add\", $246_1.a \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n}\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"techreport\"){\r\n if ($269.b != \"\"){\r\n SPLIT_LINE(\" institution = \\\"\" $269.b \"\\\",
\", \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"inproceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"proceedings\"){\r\n if ($260.b != \"\" || $269.b != \"\"){\r\n\r\n STR_BUFFER(\"add\", \" organization = \\\"\", \"0\", \"0\")\r\n\r\n if($260.b != \"\"){\r\n STR_BUFFER(\"add\", $260.b \". \", \"0\", \"0\")\r\n }\r\n\r\n if($269.b != \"\"){\r\n STR_BUFFER(\"add\", $269.b \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"book\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"inproceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"proceedings\"){\r\n if ($260.b != \"\" || $269.b != \"\" || $933.b != \"\" || $934.b != \"\"){\r\n\r\n STR_BUFFER(\"add\", \" publisher = \\\"\", \"0\", \"0\")\r\n\r\n if($260.b != \"\"){\r\n STR_BUFFER(\"add\", $260.b \". \", \"0\", \"0\")\r\n }\r\n\r\n if($269.b != \"\"){\r\n STR_BUFFER(\"add\", $269.b \". \", \"0\", \"0\")\r\n }\r\n\r\n if($933.b != \"\"){\r\n STR_BUFFER(\"add\", $933.b \". \", \"0\", \"0\")\r\n }\r\n\r\n if($934.b != \"\"){\r\n STR_BUFFER(\"add\", $934.b \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"article\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"\"){\r\n if ($773.p != \"\" || $909C4.p != \"\"){\r\n STR_BUFFER(\"add\", \" journal = \\\"\", \"0\", \"0\")\r\n\r\n if($909C4.p != \"\"){\r\n STR_BUFFER(\"add\", $909C4.p \". \", \"0\", \"0\")\r\n }\r\n\r\n if($773.p != \"\"){\r\n STR_BUFFER(\"add\", $773.p \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n\r\n }\r\n}\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"phdthesis\"){\r\n if ($502.b != \"\"){\r\n SPLIT_LINE(\" school = \\\"\" $502.b \"\\\",
\", \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"book\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"inproceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"proceedings\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"phdthesis\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"techreport\"){\r\n if ($260.a != \"\" || $269.a != \"\" || $933.a != \"\" || $934.a != \"\"){\r\n STR_BUFFER(\"add\", \" address = \\\"\", \"0\", \"0\")\r\n\r\n if($260.a != \"\"){\r\n STR_BUFFER(\"add\", $260.a \". \", \"0\", \"0\")\r\n }\r\n\r\n forall($269.a){\r\n STR_BUFFER(\"add\", $269.a \". \", \"0\", \"0\")\r\n }\r\n\r\n forall($933.a){\r\n STR_BUFFER(\"add\", $933.a \". \", \"0\", \"0\")\r\n }\r\n\r\n forall($934.a){\r\n STR_BUFFER(\"add\", $934.a \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"article\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"techreport\"){\r\n if ($037.a != \"\" || $088.a != \"\" || $773.n != \"\" || $909C4.n){\r\n\r\n STR_BUFFER(\"add\", \" number = \\\"\", \"0\", \"0\")\r\n\r\n if($037.a != \"\"){\r\n STR_BUFFER(\"add\", $037.a \". \", \"0\", \"0\")\r\n }\r\n\r\n forall($088.a) {\r\n if($088.a != \"\"){\r\n STR_BUFFER(\"add\", $088.a \". \", \"0\", \"0\")\r\n }\r\n }\r\n\r\n if($773.n != \"\"){\r\n STR_BUFFER(\"add\", $773.n \". \", \"0\", \"0\")\r\n }\r\n\r\n if($909C4.n != \"\"){\r\n STR_BUFFER(\"add\", $909C4.n \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"article\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"book\"){\r\n if ($773.v != \"\" || $909C4.v != \"\"){\r\n\r\n STR_BUFFER(\"add\",\" volume = \\\"\", \"0\", \"0\")\r\n\r\n if($909C4.v != \"\"){\r\n STR_BUFFER(\"add\", $909C4.v \". \", \"0\", \"0\")\r\n }\r\n\r\n if($773.v != \"\"){\r\n STR_BUFFER(\"add\", $773.v \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"book\"){\r\n if ($490.a != \"\"){\r\n SPLIT_LINE(\" series = \\\"\" $490.a \"\\\",
\", \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\nif (KB($980.a, \"DBCOLLID2BIBTEX\") = \"article\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"\" || KB($980.a, \"DBCOLLID2BIBTEX\") = \"inproceedings\"){\r\n if ($773.c != \"\" || $909C4.c != \"\" || $300.a != \"\"){\r\n\r\n STR_BUFFER(\"add\", \" pages = \\\"\", \"0\", \"0\")\r\n\r\n if($773.c != \"\"){\r\n STR_BUFFER(\"add\", $773.c \". \", \"0\", \"0\")\r\n }\r\n\r\n if($909C4.c != \"\"){\r\n STR_BUFFER(\"add\", $909C4.c \". \", \"0\", \"0\")\r\n }\r\n\r\n if($300.a != \"\"){\r\n STR_BUFFER(\"add\", $300.a \". \", \"0\", \"0\")\r\n }\r\n\r\n SPLIT_LINE(STR_BUFFER(\"print\", \"\\\",
\", \"2\", \"22\"), \"72\", \"22\")\r\n }\r\n}\r\n\r\n\r\n\r\nSTR_BUFFER(\"add\", \" month = \\\"\", \"0\", \"0\")\r\nif($269.c != \"\"){\r\n STR_BUFFER(\"add\", GET_MONTH($269.c), \"0\", \"0\")\r\n}else{\r\n if($260.c != \"\"){\r\n STR_BUFFER(\"add\", GET_MONTH($260.c), \"0\", \"0\")\r\n }else{\r\n if($502.c != \"\"){\r\n STR_BUFFER(\"add\", GET_MONTH($502.c), \"0\", \"0\")\r\n }\r\n }\r\n}\r\nSTR_BUFFER(\"print\", \"\\\",
\", \"0\", \"22\")\r\n\r\n\r\nSTR_BUFFER(\"add\", \" year = \\\"\", \"0\", \"0\")\r\nif($269.c != \"\"){\r\n STR_BUFFER(\"add\", GET_YEAR($269.c), \"0\", \"0\")\r\n}else{\r\n if($260.c != \"\"){\r\n STR_BUFFER(\"add\", GET_YEAR($260.c), \"0\", \"0\")\r\n }else{\r\n if($502.c != \"\"){\r\n STR_BUFFER(\"add\", GET_YEAR($502.c), \"0\", \"0\")\r\n }else{\r\n if($909C0.y != \"\"){\r\n STR_BUFFER(\"add\", GET_YEAR($909C0.y), \"0\", \"0\") \r\n }\r\n }\r\n }\r\n}\r\nSTR_BUFFER(\"print\", \"\\\",
\", \"0\", \"22\")\r\n\r\n\r\n\r\nif ($500.a != \"\"){\r\n SPLIT_LINE(\" note = \\\"\" $500.a \"\\\",
\", \"72\", \"22\")\r\n}\r\n\r\n\"}\"\r\n\"
\"','Creates BibTeX format for a record.','O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"
\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"@\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"article\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"{\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_NAME\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\":\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"001\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\",
\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_NAME\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\":\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"001\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\",
\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\",
\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\",
\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_NAME\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\":\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"001\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\",
\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"001\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\",
\";s:4:\"sons\";a:0:{}}}}}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"article\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"book\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"inproceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"misc\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"phdthesis\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"techreport\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"unpublished\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"110\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"110\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"710\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" author = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"100\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" and \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"ed.\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" and \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"110\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"110\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" and \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"110\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"110\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" and \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"710\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"710\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" and \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"5\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" key = \"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"001\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"inproceedings\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"proceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"phdthesis\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" editor = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:3:{i:0;N;i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"E\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"ed.\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"700\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\" and \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"5\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"246\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" title = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"245\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"246\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"246\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"246_1\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"techreport\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" institution = \"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"inproceedings\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"proceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" organization = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"book\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"inproceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"proceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"933\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"934\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" publisher = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"933\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"933\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"934\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"934\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"article\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" journal = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"P\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"phdthesis\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" school = \"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"B\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"book\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"inproceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:11:\"proceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:9:\"phdthesis\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"techreport\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"933\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"934\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" address = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"933\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"933\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"934\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"934\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"article\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:10:\"techreport\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" number = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"037\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:3;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}i:1;N;i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"088\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"N\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"article\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"book\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" volume = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"V\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:4:\"book\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"490\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" series = \"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"490\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:7:\"article\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:7;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:16;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:15:\"DBCOLLID2BIBTEX\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"980\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:13:\"inproceedings\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:5;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"300\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" pages = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"773\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C4\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"300\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"300\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\". \";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"2\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" month = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"GET_MONTH\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"GET_MONTH\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:9:\"GET_MONTH\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" year = \"\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_YEAR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"269\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_YEAR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"260\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_YEAR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"502\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"C\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C0\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:3:\"add\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:8:\"GET_YEAR\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:5:\"909C0\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"Y\";s:4:\"sons\";a:0:{}}}}}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}}}}}}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"STR_BUFFER\";s:4:\"sons\";a:4:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:5:\"print\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"0\";s:4:\"sons\";a:0:{}}i:3;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:4;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:8;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"500\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:2;s:3:\"lex\";s:10:\"SPLIT_LINE\";s:4:\"sons\";a:3:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:11;s:3:\"lex\";s:0:\"\";s:4:\"sons\";a:2:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:22:\" note = \"\";s:4:\"sons\";a:0:{}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:0;s:3:\"lex\";s:3:\"500\";s:4:\"sons\";a:1:{i:0;O:7:\"aelnode\":3:{s:3:\"cat\";i:12;s:3:\"lex\";s:1:\"A\";s:4:\"sons\";a:0:{}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"\",
\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"72\";s:4:\"sons\";a:0:{}}i:2;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:2:\"22\";s:4:\"sons\";a:0:{}}}}}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:1:\"}\";s:4:\"sons\";a:0:{}}}}i:1;O:7:\"aelnode\":3:{s:3:\"cat\";i:1;s:3:\"lex\";s:6:\"
\";s:4:\"sons\";a:0:{}}}}'); INSERT INTO flxKBS VALUES ('DBCOLLID2COLL','flxKBDBCOLLID2COLL','DbCollID to Coll name correspondance.'); INSERT INTO flxKBS VALUES ('EJOURNALS','flxKBEJOURNALS','Knowledge base of all known electronic journals. Useful for reference linking.'); INSERT INTO flxKBS VALUES ('DBCOLLID2BIBTEX','flxKBDBCOLLID2BIBTEX','Mapping between the 980 field and BibTeX entry types.'); INSERT INTO flxKBDBCOLLID2COLL VALUES ('ARTICLE','Published Article'); INSERT INTO flxKBDBCOLLID2COLL VALUES ('PREPRINT','Preprint'); INSERT INTO flxKBDBCOLLID2COLL VALUES ('THESIS','Thesis'); INSERT INTO flxKBDBCOLLID2COLL VALUES ('BOOK','Book'); INSERT INTO flxKBDBCOLLID2COLL VALUES ('REPORT','Report'); INSERT INTO flxKBDBCOLLID2COLL VALUES ('PICTURE','Pictures'); INSERT INTO flxKBEJOURNALS VALUES ('AAS Photo Bull.','AAS Photo Bull.'); INSERT INTO flxKBEJOURNALS VALUES ('Accredit. Qual. Assur.','Accredit. Qual. Assur.'); INSERT INTO flxKBEJOURNALS VALUES ('Acoust. Phys.','Acoust. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Acoust. Res. Lett.','Acoust. Res. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Acta Astron.','Acta Astron.'); INSERT INTO flxKBEJOURNALS VALUES ('Adv. Comput. Math.','Adv. Comput. Math.'); INSERT INTO flxKBEJOURNALS VALUES ('Aequ. Math.','Aequ. Math.'); INSERT INTO flxKBEJOURNALS VALUES ('Afr. Skies','Afr. Skies'); INSERT INTO flxKBEJOURNALS VALUES ('Algorithmica','Algorithmica'); INSERT INTO flxKBEJOURNALS VALUES ('Am. J. Phys.','Am. J. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Ann. Phys.','Ann. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Annu. Rev. Astron. Astrophys.','Annu. Rev. Astron. Astrophys.'); INSERT INTO flxKBEJOURNALS VALUES ('Annu. Rev. Earth Planet. Sci.','Annu. Rev. Earth Planet. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Appl. Phys. Lett.','Appl. Phys. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Appl. Phys., A','Appl. Phys., A'); INSERT INTO flxKBEJOURNALS VALUES ('Appl. Phys., B','Appl. Phys., B'); INSERT INTO flxKBEJOURNALS VALUES ('Appl. Radiat. Isot.','Appl. Radiat. Isot.'); INSERT INTO flxKBEJOURNALS VALUES ('Appl. Surf. Sci.','Appl. Surf. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Arch. Appl. Mech.','Arch. Appl. Mech.'); INSERT INTO flxKBEJOURNALS VALUES ('Arch. Envir. Contam. Toxicol.','Arch. Envir. Contam. Toxicol.'); INSERT INTO flxKBEJOURNALS VALUES ('Arch. Rational Mech. Analys.','Arch. Rational Mech. Analys.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. Astrophys. Rev.','Astron. Astrophys. Rev.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. Astrophys.','Astron. Astrophys.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. Astrophys., Suppl.','Astron. Astrophys., Suppl.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. J.','Astron. J.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. Lett.','Astron. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. Nachr.','Astron. Nachr.'); INSERT INTO flxKBEJOURNALS VALUES ('Astron. Rep.','Astron. Rep.'); INSERT INTO flxKBEJOURNALS VALUES ('Astropart. Phys.','Astropart. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Astrophys. J.','Astrophys. J.'); INSERT INTO flxKBEJOURNALS VALUES ('Astrophys. Norvegica','Astrophys. Norvegica'); INSERT INTO flxKBEJOURNALS VALUES ('Balt. Astron.','Balt. Astron.'); INSERT INTO flxKBEJOURNALS VALUES ('Bioimaging','Bioimaging'); INSERT INTO flxKBEJOURNALS VALUES ('Biol. Cybern.','Biol. Cybern.'); INSERT INTO flxKBEJOURNALS VALUES ('Bull. Astron. Belgrade','Bull. Astron. Belgrade'); INSERT INTO flxKBEJOURNALS VALUES ('Bull. Astron. Inst. Czech.','Bull. Astron. Inst. Czech.'); INSERT INTO flxKBEJOURNALS VALUES ('Bull. Astron. Soc. India','Bull. Astron. Soc. India'); INSERT INTO flxKBEJOURNALS VALUES ('Bull. Eng. Geol. Environ.','Bull. Eng. Geol. Environ.'); INSERT INTO flxKBEJOURNALS VALUES ('Bull. Environ. Contam. Toxicol.','Bull. Environ. Contam. Toxicol.'); INSERT INTO flxKBEJOURNALS VALUES ('Calc. Var. Partial Differ. Equ.','Calc. Var. Partial Differ. Equ.'); INSERT INTO flxKBEJOURNALS VALUES ('Chaos','Chaos'); INSERT INTO flxKBEJOURNALS VALUES ('Chaos Solitons Fractals','Chaos Solitons Fractals'); INSERT INTO flxKBEJOURNALS VALUES ('Chem. Phys.','Chem. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Chem. Phys. Lett.','Chem. Phys. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Chin. Astron. Astrophys.','Chin. Astron. Astrophys.'); INSERT INTO flxKBEJOURNALS VALUES ('Chin. J. Astron. Astrophys.','Chin. J. Astron. Astrophys.'); INSERT INTO flxKBEJOURNALS VALUES ('Class. Quantum Gravity','Class. Quantum Gravity'); INSERT INTO flxKBEJOURNALS VALUES ('Clim. Dyn.','Clim. Dyn.'); INSERT INTO flxKBEJOURNALS VALUES ('Colloid Polym. Sci.','Colloid Polym. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Combinatorica','Combinatorica'); INSERT INTO flxKBEJOURNALS VALUES ('Combust. Theory Model.','Combust. Theory Model.'); INSERT INTO flxKBEJOURNALS VALUES ('Commun. Math. Phys.','Commun. Math. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Comment. Math. Helv.','Comment. Math. Helv.'); INSERT INTO flxKBEJOURNALS VALUES ('Comput. Mech.','Comput. Mech.'); INSERT INTO flxKBEJOURNALS VALUES ('Comput. Phys.','Comput. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Comput. Phys. Commun.','Comput. Phys. Commun.'); INSERT INTO flxKBEJOURNALS VALUES ('Comput. Sci. Eng.','Comput. Sci. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('Comput. Vis. Sci.','Comput. Vis. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Computing','Computing'); INSERT INTO flxKBEJOURNALS VALUES ('Constr. Approx.','Constr. Approx.'); INSERT INTO flxKBEJOURNALS VALUES ('Contin. Mech. Thermodyn.','Contin. Mech. Thermodyn.'); INSERT INTO flxKBEJOURNALS VALUES ('Contrib. Astron. Obs. Skaln. Pleso','Contrib. Astron. Obs. Skaln. Pleso'); INSERT INTO flxKBEJOURNALS VALUES ('Contrib. Astron. Obs. Skaln. Pleso Suppl.','Contrib. Astron. Obs. Skaln. Pleso Suppl.'); INSERT INTO flxKBEJOURNALS VALUES ('Cryogenics','Cryogenics'); INSERT INTO flxKBEJOURNALS VALUES ('Crystallogr. Rep.','Crystallogr. Rep.'); INSERT INTO flxKBEJOURNALS VALUES ('Curr. Appl. Phys.','Curr. Appl. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Curr. Opin. Solid State Mater. Sci.','Curr. Opin. Solid State Mater. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Discret. Comput. Geom.','Discret. Comput. Geom.'); INSERT INTO flxKBEJOURNALS VALUES ('Displays','Displays'); INSERT INTO flxKBEJOURNALS VALUES ('Distrib. Comput.','Distrib. Comput.'); INSERT INTO flxKBEJOURNALS VALUES ('Distrib. Syst. Eng.','Distrib. Syst. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('Dokl. Phys.','Dokl. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Electrochem. Solid State Lett.','Electrochem. Solid State Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Electron. Lett.','Electron. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Elem. Math.','Elem. Math.'); INSERT INTO flxKBEJOURNALS VALUES ('Environ. Geol.','Environ. Geol.'); INSERT INTO flxKBEJOURNALS VALUES ('Environ. Manage.','Environ. Manage.'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Biophys. J. Biophys. Lett.','Eur. Biophys. J. Biophys. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. J. Phys.','Eur. J. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Phys. J., A','Eur. Phys. J., A'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Phys. J., Appl. Phys.','Eur. Phys. J., Appl. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Phys. J., B','Eur. Phys. J., B'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Phys. J., C','Eur. Phys. J., C'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Phys. J., D','Eur. Phys. J., D'); INSERT INTO flxKBEJOURNALS VALUES ('Eur. Phys. J., E','Eur. Phys. J., E'); INSERT INTO flxKBEJOURNALS VALUES ('Europhys. Lett.','Europhys. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Europhys. News','Europhys. News'); INSERT INTO flxKBEJOURNALS VALUES ('Exp. Fluids','Exp. Fluids'); INSERT INTO flxKBEJOURNALS VALUES ('Few-Body Syst.','Few-Body Syst.'); INSERT INTO flxKBEJOURNALS VALUES ('Finan. Stoch.','Finan. Stoch.'); INSERT INTO flxKBEJOURNALS VALUES ('Fluid Dyn. Res.','Fluid Dyn. Res.'); INSERT INTO flxKBEJOURNALS VALUES ('Geom. Funct. Anal.','Geom. Funct. Anal.'); INSERT INTO flxKBEJOURNALS VALUES ('Heat Mass Transf.','Heat Mass Transf.'); INSERT INTO flxKBEJOURNALS VALUES ('High Energy Phys. Libr. Webzine','High Energy Phys. Libr. Webzine'); INSERT INTO flxKBEJOURNALS VALUES ('High Perform. Polym.','High Perform. Polym.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Circ. Devices Syst.','IEE Proc., Circ. Devices Syst.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Commun.','IEE Proc., Commun.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Comput. Digit. Tech.','IEE Proc., Comput. Digit. Tech.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Control Theory Appl.','IEE Proc., Control Theory Appl.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Electr. Power Appl.','IEE Proc., Electr. Power Appl.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Gener. Transm. Distrib.','IEE Proc., Gener. Transm. Distrib.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Microw. Antennas Propag.','IEE Proc., Microw. Antennas Propag.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Optoelectron.','IEE Proc., Optoelectron.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Radar, Sonar Navig.','IEE Proc., Radar, Sonar Navig.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Sci. Meas. Technol.','IEE Proc., Sci. Meas. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Softw. Eng.','IEE Proc., Softw. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('IEE Proc., Vis. Image Signal Process.','IEE Proc., Vis. Image Signal Process.'); INSERT INTO flxKBEJOURNALS VALUES ('Image Vis. Comput.','Image Vis. Comput.'); INSERT INTO flxKBEJOURNALS VALUES ('Inform. Forsch. Entwickl.','Inform. Forsch. Entwickl.'); INSERT INTO flxKBEJOURNALS VALUES ('Inform. Spektr.','Inform. Spektr.'); INSERT INTO flxKBEJOURNALS VALUES ('Infrared Phys. Technol.','Infrared Phys. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('Int. J. Digit. Libr.','Int. J. Digit. Libr.'); INSERT INTO flxKBEJOURNALS VALUES ('Int. J. Doc. Anal. Recogn.','Int. J. Doc. Anal. Recogn.'); INSERT INTO flxKBEJOURNALS VALUES ('Int. J. Nonlinear Mech.','Int. J. Nonlinear Mech.'); INSERT INTO flxKBEJOURNALS VALUES ('Int. J. Softw. Tools Technol. Transf.','Int. J. Softw. Tools Technol. Transf.'); INSERT INTO flxKBEJOURNALS VALUES ('Invent. Math.','Invent. Math.'); INSERT INTO flxKBEJOURNALS VALUES ('Inverse Probl.','Inverse Probl.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Acoust. Soc. Am.','J. Acoust. Soc. Am.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Aerosp. Eng.','J. Aerosp. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Alloys. Compounds','J. Alloys. Compounds'); INSERT INTO flxKBEJOURNALS VALUES ('J. Am. Assoc. Var. Star Obs.','J. Am. Assoc. Var. Star Obs.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Appl. Mech.','J. Appl. Mech.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Appl. Phys.','J. Appl. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Atmos. Solar Terrest. Phys.','J. Atmos. Solar Terrest. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Br. Astron. Assoc.','J. Br. Astron. Assoc.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Chem. Phys.','J. Chem. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Classif.','J. Classif.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Comput. Inf. Sci. Eng.','J. Comput. Inf. Sci. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Constr. Eng. Manage.','J. Constr. Eng. Manage.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Cryptol.','J. Cryptol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Cryst. Growth','J. Cryst. Growth'); INSERT INTO flxKBEJOURNALS VALUES ('J. Dyn. Syst. Meas. Control','J. Dyn. Syst. Meas. Control'); INSERT INTO flxKBEJOURNALS VALUES ('J. Electrochem. Soc.','J. Electrochem. Soc.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Electron Spectrosc. Relat. Phen.','J. Electron Spectrosc. Relat. Phen.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Electron. Imaging','J. Electron. Imaging'); INSERT INTO flxKBEJOURNALS VALUES ('J. Electron. Packag.','J. Electron. Packag.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Energy Eng.','J. Energy Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Energy Resour. Technol.','J. Energy Resour. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Eng. Mater. Technol.','J. Eng. Mater. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Eng. Mech.','J. Eng. Mech.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Environ. Eng.','J. Environ. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Exp. Theor. Phys., JETP','J. Exp. Theor. Phys., JETP'); INSERT INTO flxKBEJOURNALS VALUES ('J. Fluids Eng.','J. Fluids Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Geom. Phys.','J. Geom. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Heat Transf.','J. Heat Transf.'); INSERT INTO flxKBEJOURNALS VALUES ('J. High Energy Phys.','J. High Energy Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Korean Astron. Soc.','J. Korean Astron. Soc.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Lumin.','J. Lumin.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Magn. Magn. Mater.','J. Magn. Magn. Mater.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Manage. Eng.','J. Manage. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Manuf. Sci. Eng.','J. Manuf. Sci. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Mater. Civ. Eng.','J. Mater. Civ. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Math. Biol.','J. Math. Biol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Math. Phys.','J. Math. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Mech. Des.','J. Mech. Des.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Micromech. Microeng.','J. Micromech. Microeng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Opt.','J. Opt.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys., A','J. Phys., A'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys., B','J. Phys., B'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys., Condens. Matter','J. Phys., Condens. Matter'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys., D','J. Phys., D'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys., G','J. Phys., G'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys. I','J. Phys. I'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys. II','J. Phys. II'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys. III','J. Phys. III'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys. Chem. Ref. Data','J. Phys. Chem. Ref. Data'); INSERT INTO flxKBEJOURNALS VALUES ('J. Phys. Chem. Solids','J. Phys. Chem. Solids'); INSERT INTO flxKBEJOURNALS VALUES ('J. Quant. Spectrosc. Radiat. Transf.','J. Quant. Spectrosc. Radiat. Transf.'); INSERT INTO flxKBEJOURNALS VALUES ('J. R. Astron. Soc. Can.','J. R. Astron. Soc. Can.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Radio. Prot.','J. Radio. Prot.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Rheol.','J. Rheol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Solar Energy Eng.','J. Solar Energy Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Solid State Electrochem.','J. Solid State Electrochem.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Struct. Eng.','J. Struct. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Surv. Eng.','J. Surv. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Tribol.','J. Tribol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Turbomach.','J. Turbomach.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Vac. Sci. Technol.','J. Vac. Sci. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('J. Vac. Sci. Technol., A','J. Vac. Sci. Technol., A'); INSERT INTO flxKBEJOURNALS VALUES ('J. Vac. Sci. Technol., B','J. Vac. Sci. Technol., B'); INSERT INTO flxKBEJOURNALS VALUES ('J. Vib. Acoust.','J. Vib. Acoust.'); INSERT INTO flxKBEJOURNALS VALUES ('JETP','JETP'); INSERT INTO flxKBEJOURNALS VALUES ('JETP Lett.','JETP Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Low Temp. Phys.','Low Temp. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Mach. Vis. Appl.','Mach. Vis. Appl.'); INSERT INTO flxKBEJOURNALS VALUES ('Mater. Res. Innov.','Mater. Res. Innov.'); INSERT INTO flxKBEJOURNALS VALUES ('Mater. Sci. Eng., B','Mater. Sci. Eng., B'); INSERT INTO flxKBEJOURNALS VALUES ('Math. Ann.','Math. Ann.'); INSERT INTO flxKBEJOURNALS VALUES ('Math. Model. Numer. Anal.','Math. Model. Numer. Anal.'); INSERT INTO flxKBEJOURNALS VALUES ('Math. Program.','Math. Program.'); INSERT INTO flxKBEJOURNALS VALUES ('Math. Z.','Math. Z.'); INSERT INTO flxKBEJOURNALS VALUES ('Meas. Sci. Technol.','Meas. Sci. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('Med. Phys.','Med. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Meteorit. Planet. Sci.','Meteorit. Planet. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Microelectron. Eng.','Microelectron. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('Micron','Micron'); INSERT INTO flxKBEJOURNALS VALUES ('Microsc. Microanal.','Microsc. Microanal.'); INSERT INTO flxKBEJOURNALS VALUES ('Microsyst. Technol.','Microsyst. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('Mon. Not. R. Astron. Soc.','Mon. Not. R. Astron. Soc.'); INSERT INTO flxKBEJOURNALS VALUES ('Multim. Syst.','Multim. Syst.'); INSERT INTO flxKBEJOURNALS VALUES ('Nanotech.','Nanotech.'); INSERT INTO flxKBEJOURNALS VALUES ('Naturwiss.','Naturwiss.'); INSERT INTO flxKBEJOURNALS VALUES ('Network','Network'); INSERT INTO flxKBEJOURNALS VALUES ('New Astron.','New Astron.'); INSERT INTO flxKBEJOURNALS VALUES ('New Astron. Rev.','New Astron. Rev.'); INSERT INTO flxKBEJOURNALS VALUES ('Nonlinearity','Nonlinearity'); INSERT INTO flxKBEJOURNALS VALUES ('Nucl. Instrum. Methods Phys. Res., A','Nucl. Instrum. Methods Phys. Res., A'); INSERT INTO flxKBEJOURNALS VALUES ('Nucl. Instrum. Methods Phys. Res., B','Nucl. Instrum. Methods Phys. Res., B'); INSERT INTO flxKBEJOURNALS VALUES ('Nucl. Phys. B, Proc. Suppl.','Nucl. Phys. B, Proc. Suppl.'); INSERT INTO flxKBEJOURNALS VALUES ('Nucl. Phys., A','Nucl. Phys., A'); INSERT INTO flxKBEJOURNALS VALUES ('Nucl. Phys., B','Nucl. Phys., B'); INSERT INTO flxKBEJOURNALS VALUES ('Num. Math.','Num. Math.'); INSERT INTO flxKBEJOURNALS VALUES ('Nuovo Cimento, A','Nuovo Cimento, A'); INSERT INTO flxKBEJOURNALS VALUES ('Nuovo Cimento, B','Nuovo Cimento, B'); INSERT INTO flxKBEJOURNALS VALUES ('Nuovo Cimento, C','Nuovo Cimento, C'); INSERT INTO flxKBEJOURNALS VALUES ('Nuovo Cimento, D','Nuovo Cimento, D'); INSERT INTO flxKBEJOURNALS VALUES ('Obs.','Obs.'); INSERT INTO flxKBEJOURNALS VALUES ('Opt. Commun.','Opt. Commun.'); INSERT INTO flxKBEJOURNALS VALUES ('Opt. Eng.','Opt. Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('Opt. Lasers Eng.','Opt. Lasers Eng.'); INSERT INTO flxKBEJOURNALS VALUES ('Opt. Mater.','Opt. Mater.'); INSERT INTO flxKBEJOURNALS VALUES ('Opt. Spectrosc.','Opt. Spectrosc.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. At. Nucl.','Phys. At. Nucl.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Chem. Miner.','Phys. Chem. Miner.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Educ.','Phys. Educ.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Fluids','Phys. Fluids'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Fluids, A','Phys. Fluids, A'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Fluids, B','Phys. Fluids, B'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Lett., A','Phys. Lett., A'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Lett., B','Phys. Lett., B'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Med. Biol.','Phys. Med. Biol.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Part. Nucl.','Phys. Part. Nucl.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Plasmas','Phys. Plasmas'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rep.','Phys. Rep.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev., A','Phys. Rev., A'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev., B','Phys. Rev., B'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev., C','Phys. Rev., C'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev., D','Phys. Rev., D'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev., E','Phys. Rev., E'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev., ser. 1','Phys. Rev., ser. 1'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev. Lett.','Phys. Rev. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev. Spec. Top. Accel. Beams','Phys. Rev. Spec. Top. Accel. Beams'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Rev.','Phys. Rev.'); INSERT INTO flxKBEJOURNALS VALUES ('Phys. Solid State','Phys. Solid State'); INSERT INTO flxKBEJOURNALS VALUES ('Physica, A','Physica, A'); INSERT INTO flxKBEJOURNALS VALUES ('Physica, B','Physica, B'); INSERT INTO flxKBEJOURNALS VALUES ('Physica, C','Physica, C'); INSERT INTO flxKBEJOURNALS VALUES ('Physica, D','Physica, D'); INSERT INTO flxKBEJOURNALS VALUES ('Physica, E','Physica, E'); INSERT INTO flxKBEJOURNALS VALUES ('Physiol. Meas.','Physiol. Meas.'); INSERT INTO flxKBEJOURNALS VALUES ('Planet. Space Sci.','Planet. Space Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Plasma Phys. Control. Fusion','Plasma Phys. Control. Fusion'); INSERT INTO flxKBEJOURNALS VALUES ('Plasma Phys. Rep.','Plasma Phys. Rep.'); INSERT INTO flxKBEJOURNALS VALUES ('Plasma Sources Sci. Technol.','Plasma Sources Sci. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('Polym. Bull.','Polym. Bull.'); INSERT INTO flxKBEJOURNALS VALUES ('Powder Diffraction','Powder Diffraction'); INSERT INTO flxKBEJOURNALS VALUES ('Probab. Theory Relat. Fields','Probab. Theory Relat. Fields'); INSERT INTO flxKBEJOURNALS VALUES ('Proc. Astron. Soc. Aust.','Proc. Astron. Soc. Aust.'); INSERT INTO flxKBEJOURNALS VALUES ('Proc. Nat. Acad. Sci.','Proc. Nat. Acad. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Prog. Cryst. Growth Charact. Mat.','Prog. Cryst. Growth Charact. Mat.'); INSERT INTO flxKBEJOURNALS VALUES ('Prog. Part. Nucl. Phys.','Prog. Part. Nucl. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Prog. Quantum Electron.','Prog. Quantum Electron.'); INSERT INTO flxKBEJOURNALS VALUES ('Prog. Surf. Sci.','Prog. Surf. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Program','Program'); INSERT INTO flxKBEJOURNALS VALUES ('Publ. Astron. Soc. Aust.','Publ. Astron. Soc. Aust.'); INSERT INTO flxKBEJOURNALS VALUES ('Publ. Astron. Soc. Jpn.','Publ. Astron. Soc. Jpn.'); INSERT INTO flxKBEJOURNALS VALUES ('Publ. Astron. Soc. Pac.','Publ. Astron. Soc. Pac.'); INSERT INTO flxKBEJOURNALS VALUES ('Publ. Underst. Sci.','Publ. Underst. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Pure Appl. Opt.: J. Eur. Opt. Soc. P. A','Pure Appl. Opt.: J. Eur. Opt. Soc. P. A'); INSERT INTO flxKBEJOURNALS VALUES ('Quantum Semiclass. Opt.: J. Eur. Opt. Soc. P. B','Quantum Semiclass. Opt.: J. Eur. Opt. Soc. P. B'); INSERT INTO flxKBEJOURNALS VALUES ('Radiat. Environ. Biophys.','Radiat. Environ. Biophys.'); INSERT INTO flxKBEJOURNALS VALUES ('Radiat. Meas.','Radiat. Meas.'); INSERT INTO flxKBEJOURNALS VALUES ('Radiat. Phys. Chem.','Radiat. Phys. Chem.'); INSERT INTO flxKBEJOURNALS VALUES ('Radiologe','Radiologe'); INSERT INTO flxKBEJOURNALS VALUES ('Radioprotection','Radioprotection'); INSERT INTO flxKBEJOURNALS VALUES ('Rep. Math. Phys.','Rep. Math. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Rep. Prog. Phys.','Rep. Prog. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Res. Exp. Med.','Res. Exp. Med.'); INSERT INTO flxKBEJOURNALS VALUES ('Rev. Mex. Astron. Astrofis.','Rev. Mex. Astron. Astrofis.'); INSERT INTO flxKBEJOURNALS VALUES ('Rev. Mod. Phys.','Rev. Mod. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Rev. Sci. Instrum.','Rev. Sci. Instrum.'); INSERT INTO flxKBEJOURNALS VALUES ('Sel. Math., New Ser.','Sel. Math., New Ser.'); INSERT INTO flxKBEJOURNALS VALUES ('Semicond.','Semicond.'); INSERT INTO flxKBEJOURNALS VALUES ('Semicond. Sci. Technol.','Semicond. Sci. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('Shock Waves','Shock Waves'); INSERT INTO flxKBEJOURNALS VALUES ('SIAM J. Appl. Math.','SIAM J. Appl. Math.'); INSERT INTO flxKBEJOURNALS VALUES ('SIAM J. Comput.','SIAM J. Comput.'); INSERT INTO flxKBEJOURNALS VALUES ('SIAM J. Math. Anal.','SIAM J. Math. Anal.'); INSERT INTO flxKBEJOURNALS VALUES ('SIAM J. Numer. Anal.','SIAM J. Numer. Anal.'); INSERT INTO flxKBEJOURNALS VALUES ('SIAM J. Optim.','SIAM J. Optim.'); INSERT INTO flxKBEJOURNALS VALUES ('SIAM Rev.','SIAM Rev.'); INSERT INTO flxKBEJOURNALS VALUES ('Smart Mat. Struct.','Smart Mat. Struct.'); INSERT INTO flxKBEJOURNALS VALUES ('Soft Comput.','Soft Comput.'); INSERT INTO flxKBEJOURNALS VALUES ('Softw. Concepts Tools','Softw. Concepts Tools'); INSERT INTO flxKBEJOURNALS VALUES ('Solar Phys.','Solar Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Solid State Commun.','Solid State Commun.'); INSERT INTO flxKBEJOURNALS VALUES ('Solid State Electron.','Solid State Electron.'); INSERT INTO flxKBEJOURNALS VALUES ('Solid State Ion.','Solid State Ion.'); INSERT INTO flxKBEJOURNALS VALUES ('Sov. Astron. Lett.','Sov. Astron. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Superconductor Science and Technology','Superconductor Science and Technology'); INSERT INTO flxKBEJOURNALS VALUES ('Surf. Coatings Techn.','Surf. Coatings Techn.'); INSERT INTO flxKBEJOURNALS VALUES ('Surf. Sci.','Surf. Sci.'); INSERT INTO flxKBEJOURNALS VALUES ('Surf. Sci. Rep.','Surf. Sci. Rep.'); INSERT INTO flxKBEJOURNALS VALUES ('Surf. Sci. Spectra','Surf. Sci. Spectra'); INSERT INTO flxKBEJOURNALS VALUES ('Synth. Metals','Synth. Metals'); INSERT INTO flxKBEJOURNALS VALUES ('Syst. Fam.','Syst. Fam.'); INSERT INTO flxKBEJOURNALS VALUES ('Tech. Phys.','Tech. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Tech. Phys. Lett.','Tech. Phys. Lett.'); INSERT INTO flxKBEJOURNALS VALUES ('Theor. Comput. Fluid Dyn.','Theor. Comput. Fluid Dyn.'); INSERT INTO flxKBEJOURNALS VALUES ('Theory Comput. Syst.','Theory Comput. Syst.'); INSERT INTO flxKBEJOURNALS VALUES ('Thin Solid Films','Thin Solid Films'); INSERT INTO flxKBEJOURNALS VALUES ('Tribol. Int.','Tribol. Int.'); INSERT INTO flxKBEJOURNALS VALUES ('Ultramicroscopy','Ultramicroscopy'); INSERT INTO flxKBEJOURNALS VALUES ('Vacuum','Vacuum'); INSERT INTO flxKBEJOURNALS VALUES ('VLDB J.','VLDB J.'); INSERT INTO flxKBEJOURNALS VALUES ('Virtual J. Nanoscale Sci. Technol.','Virtual J. Nanoscale Sci. Technol.'); INSERT INTO flxKBEJOURNALS VALUES ('Virtual J. Biol. Phys. Res.','Virtual J. Biol. Phys. Res.'); INSERT INTO flxKBEJOURNALS VALUES ('Vis. Comput.','Vis. Comput.'); INSERT INTO flxKBEJOURNALS VALUES ('Wave Motion','Wave Motion'); INSERT INTO flxKBEJOURNALS VALUES ('Waves Random Media','Waves Random Media'); INSERT INTO flxKBEJOURNALS VALUES ('Wear','Wear'); INSERT INTO flxKBEJOURNALS VALUES ('Z. Angew. Math. Phys.','Z. Angew. Math. Phys.'); INSERT INTO flxKBEJOURNALS VALUES ('Z. Phys., A','Z. Phys., A'); INSERT INTO flxKBEJOURNALS VALUES ('Z. Phys., B','Z. Phys., B'); INSERT INTO flxKBEJOURNALS VALUES ('Z. Phys., C','Z. Phys., C'); INSERT INTO flxKBEJOURNALS VALUES ('Zphys-e.C','Zphys-e.C'); INSERT INTO flxKBEJOURNALS VALUES ('ATLAS eNews','ATLAS eNews'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('PICTURE','unpublished'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('PREPRINT','techreport'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('ARTICLE','article'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('REPORT','techreport'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('BOOK','book'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('THESIS','phdthesis'); INSERT INTO flxKBDBCOLLID2BIBTEX VALUES ('POETRY','unpublished'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CD','909','C','D','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','520','520','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','590','590','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909C0','909','C','0','N','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','110','110','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','583','583','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','270','270','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909C1','909','C','1','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CL','909','C','L','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','700','700','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','100','100','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','506','506','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CE','909','C','E','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CI','909','C','I','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','710','710','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','030','030','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CZ','909','C','Z','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CA','909','C','A','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','111','111','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','711','711','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','524','524','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909C4','909','C','4','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CP','909','C','P','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CM','909','C','M','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','8560','856','0','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','037','037','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','8564','856','4','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','866','866','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','260','260','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','300','300','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','690C','690','C','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','020','020','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','022','022','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','654','654','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','6531','653','1','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','6532','653','2','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CK','909','C','K','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','041','041','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','852','852','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','340','340','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','600','600','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','595','595','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','500','500','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','502','502','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CC','909','C','C','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','596','596','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','591','591','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CO','909','C','O','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','594','594','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','856','856','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','598','598','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CR','909','C','R','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CH','909','C','H','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CF','909','C','F','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','088','088','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','246','246','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','770','770','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','772','772','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','780','780','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','785','785','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','787','787','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','541','541','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','0248','024','8','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','490','490','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','65017','650','1','7','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','65027','650','2','7','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909CS','909','C','S','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','044','044','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','310','310','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','909C2','909','C','2','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','655','655','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','245','245','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','250','250','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','130','130','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','246_1','246','','1','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','246_3','246','','3','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','210','210','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','85642','856','4','2','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','080','080','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','999C5','999','C','5','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','040','040','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','980','980','','','S','DATAFIELD'); INSERT INTO flxXMLMARCEXTRULES VALUES ('DEFAULT','001','001','','','S','CONTROLFIELD'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','','',''); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','z','z'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','520','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','520','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','590','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','590','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','110','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','583','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C1','u','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','700','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','700','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','700','u','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','100','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','100','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','506','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','506','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','m','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CE','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','l','l'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','m','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','710','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','110','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C1','o','o'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C1','l','l'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C1','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C1','m','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','030','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CZ','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CZ','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CZ','m','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CZ','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CZ','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CZ','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909Cz','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','9','9'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','111','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','9','9'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','711','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','524','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','v','v'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','y','y'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','710','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','P','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CP','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','l','l'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','k','k'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','z','z'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','583','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CM','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','110','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CM','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8560','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8560','x','x'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','037','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8564','z','z'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8564','u','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8564','q','q'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8564','x','x'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CM','h','h'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','866','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','866','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','866','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','866','z','z'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','866','x','x'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','866','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CM','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','260','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','300','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','260','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','260','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','260','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','V','v'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','690C','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','020','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','022','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','654','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','6531','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','6532','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C','$','$'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CK','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CK','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CK','k','k'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CK','l','l'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CK','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','041','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','852','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','852','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','m','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','8564','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','340','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','600','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','595','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','500','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','502','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CP','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CC','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CC','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CC','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CC','h','h'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CC','l','l'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','596','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','591','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','o','o'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','o','o'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CO','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CP','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CO','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CP','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','594','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','594','c','c'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','594','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','856','k','k'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','u','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','598','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CR','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CR','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CR','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CR','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CR','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CR','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CP','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CF','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CF','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CH','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CF','g','g'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CF','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CF','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','088','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','246','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','770','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','772','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','780','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','785','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','787','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CA','q','q'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','246','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','770','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','772','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','780','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','785','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','787','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','541','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','541','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','541','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','0248','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CI','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CE','m','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','490','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','490','v','v'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CE','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CE','d','d'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','65017','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','65017','2','2'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','6502','$','$'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','65027','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CS','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','044','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','310','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C2','i','i'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C2','f','f'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C2','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CS','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CS','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CS','y','y'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','o','o'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','655','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','245','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','250','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','245','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','130','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','130','s','s'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','130','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','246','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','246_1','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','246_3','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','210','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CP','t','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','85642','r','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','85642','z','z'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','85642','u','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','b','b'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','270','e','e'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','v','v'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CD','x','x'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','080','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','u','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','245','n','n'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','245','p','p'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CM','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CM','l','l'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909CL','x','x'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C1','y','y'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C0','y','y'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','T','t'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','040','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','770','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','772','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','780','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','785','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','787','w','w'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','M','m'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','Y','y'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','R','r'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','U','u'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','Z','z'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','999C5','O','o'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','980','a','a'); INSERT INTO flxXMLMARCEXTRULESUBFIELDS VALUES ('DEFAULT','909C4','D','d'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('DEFAULT',100,0,'record','\" \r\n hb \r\n \" \r\nxml_text(format(\"DEFAULT_HTML_BRIEF\"))\r\n\" \r\n \r\n \r\n hd \r\n \" \r\nxml_text(format(\"DEFAULT_HTML_DETAILED\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HB',100,0,'','\"\r\n \" $001 \"\r\n \r\n hb \r\n \" \r\nxml_text(format(\"DEFAULT_HTML_BRIEF\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HP',0,0,'','\"\r\n \" $001 \"\r\n \r\n hp \r\n \" \r\nxml_text(format(\"DEFAULT_HTML_PORTFOLIO\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HC',0,0,'','\"\r\n \" $001 \"\r\n \r\n hc \r\n \" \r\nxml_text(format(\"DEFAULT_HTML_CAPTIONS\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HD',100,100,'','\"\r\n \" $001 \"\r\n \r\n hd \r\n \" \r\nxml_text(format(\"DEFAULT_HTML_DETAILED\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HB',0,0,'','\"\r\n \" $001 \"\r\n \r\n hb \r\n \" \r\nxml_text(format(\"PICTURE_HTML_BRIEF\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HD',90,0,'','\"\r\n \" $001 \"\r\n \r\n hd \r\n \" \r\nxml_text(format(\"PICTURE_HTML_DETAILED\"))\r\n\" \r\n \r\n\"'); INSERT INTO flxBEHAVIORCONDITIONSACTIONS VALUES ('HX',0,0,'','format(\"_FULL_BIBTEX\")'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('DEFAULT',100,'\"\"=\"\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HB',0,'$980.a=\"PICTURE\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HB',100,'\"\"=\"\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HP',0,'\"\"=\"\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HC',0,'\"\"=\"\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HD',100,'\"\"=\"\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HD',90,'$980.a=\"PICTURE\"'); INSERT INTO flxBEHAVIORCONDITIONS VALUES ('HX',0,'\"\"=\"\"'); INSERT INTO flxBEHAVIORS VALUES ('DEFAULT','IENRICH','Creates DEFAULT formats and includes them in the input XML OAI MARC record in the \"FMT\" element'); INSERT INTO flxBEHAVIORS VALUES ('HB','NORMAL','Produces HTML brief format. Useful for reformatting records existing in the database.'); INSERT INTO flxBEHAVIORS VALUES ('HP','NORMAL','PRODUCES HTML PORTFOLIO FORMAT. USEFUL FOR REFORMATTING RECORDS EXISTING IN THE DATABASE.'); INSERT INTO flxBEHAVIORS VALUES ('HC','NORMAL','PRODUCES HTML CAPTIONS FORMAT. USEFUL FOR REFORMATTING RECORDS\r\nEXISTING IN THE DATABASE.'); INSERT INTO flxBEHAVIORS VALUES ('HD','NORMAL','PRODUCES HTML DETAILED FORMAT. USEFUL FOR REFORMATTING RECORDS EXISTING IN THE DATABASE.'); INSERT INTO flxBEHAVIORS VALUES ('HX','NORMAL','PRODUCES HTML BibTeX format.'); INSERT INTO flxUDFS VALUES ('URLENCODE','return urlencode($url);','STRING',NULL); INSERT INTO flxUDFS VALUES ('UPPER','return strtoupper($s);','STRING','Purpose: Returns characters of string s into uppercase characters\r\nExample: upper(\"test12\") gives as result \"TEST12\"'); INSERT INTO flxUDFS VALUES ('SUBSTR','return substr($s, $start, $end-$start+1);','STRING','Purpose: Returns substring between position start and end from the string s\r\nExample: substr(\"test\", 2, 3) gives as result \"st\"'); INSERT INTO flxUDFS VALUES ('ADD','if($prefix!=\"\")\r\n $value=$prefix.$value;\r\nif($postfix!=\"\")\r\n $value=$value.$postfix;\r\nreturn $value;\r\n','STRING','Purpose: This function adds prefix at the begining and postfix at the end, of value\r\nExample: add(\"test\",\"pre\",\"post\") gives as result \"pretestpost\"\r\nNote: Defined to keep compatibility with uploader\'s languaje'); INSERT INTO flxUDFS VALUES ('MINFO','return \"More Info\";','STRING',''); INSERT INTO flxUDFS VALUES ('RNETC','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('EXT','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('MARK','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('SEPARATOR','if(!$LAST_ITERATION)\r\n return $str;\r\nreturn \"\";','STRING',NULL); INSERT INTO flxUDFS VALUES ('TIONE','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('BRBER','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('MINFA','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('INDIS','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('INHLD','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('LKR','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('NIUCO','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('HOL','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('SNLNK','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('AUFU','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('LKRFU','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('SP','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('HO','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('SREF','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('QUOT','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('MARKF','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('LATEX','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('DI','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('REP_PREFIX','if($FIRST_ITERATION) return $str; return \"\";','STRING',NULL); INSERT INTO flxUDFS VALUES ('XML_TEXT','return htmlspecialchars($str,ENT_QUOTES); \r\n\r\n','STRING',''); INSERT INTO flxUDFS VALUES ('REP','return str_replace($search, $replacement, $str); \r\n\r\n','STRING','Purpose: Replaces any occurence of string search inside string str by the \r\nreplacement one.\r\nExample: rep(\"test12test\", \"12\", \"-\") gives as result \"test-test\"'); INSERT INTO flxUDFS VALUES ('SAVETOFILE','$fh=fopen($filename, \"w\"); if(!$fh) return \"ERROR OPENING FILE \'$filename\'\"; fwrite($fh, $code); fclose($fh); return \"\"; ','STRING',NULL); INSERT INTO flxUDFS VALUES ('FORMAT_EXIST','$format_name=strtoupper(trim($format_name)); \r\n$res=\"\"; \r\n$db=mysql_pconnect(\"cdsdb.cern.ch\", \"flexelink\", \"2flexible\"); \r\nmysql_selectdb(\"flexelink\"); \r\n$qry=\"select name from FORMATS where name=\'$format_name\'\"; \r\n$qh=mysql_query($qry); \r\nif(mysql_num_rows($qh)==1) \r\n $res=\"Y\"; \r\nreturn $res; ','STRING','Purpose: Tells if a format exists in the FlexElink formats database. Returns non-empty string when a format called format_name doesn\'t exist in the format db, empty string in\r\n other case\r\nNote: To be migrated to FlexElink EL internal fuction'); INSERT INTO flxUDFS VALUES ('TOC','return \"\";','STRING','Temporary defined for \"automatic format migration\" compatibility. Gives empty string.'); INSERT INTO flxUDFS VALUES ('DATE','return date(\"j M Y H:i:s\");','STRING','Purpose: Gives the current date in the following format \"day month_name year2k hh:mm:ss\"'); INSERT INTO flxUDFS VALUES ('FILTER_PAGENR','$temp=explode(\"-\", $str);\r\nreturn $temp[0];','STRING',''); INSERT INTO flxUDFS VALUES ('LOWER','return strtolower($str);','STRING','Purpose: Returns characters of string s into lowercase characters \r\nExample: lower(\"TEsT12\") gives as result \"test12\"'); INSERT INTO flxUDFS VALUES ('SUBSTR_END','return substr($str, $start);','STRING','Purpose: Returns a substring from the string s, from position start to the end of the string. \r\nNote that characters into a string are always numerated starting in 0\r\nExample: substr(\"test\", 2) gives as result \"st\"'); INSERT INTO flxUDFS VALUES ('LIMW_L','$temp=explode($token, $str, 2);\r\nreturn $temp[0];','STRING','Purpose: Returns a substring from the string str, containing all characters found in it\r\nbefore the first occurrence of string token.\r\nExample: substr_bef_token(\"test1@test2@test3\", \"@\") gives as result \"test1\"'); INSERT INTO flxUDFS VALUES ('LIMW_R','$temp=explode($token, $str, 2); \r\nreturn $temp[1];','STRING','Purpose: Returns a substring from the string str, containing all characters found in it\r\nafter the first acourrence of string token.\r\nExample: substr_bef_token(\"test1@test2@test3\", \"@\") gives as result \"test2@test3\"'); INSERT INTO flxUDFS VALUES ('FILE_EXISTS','$fh=@fopen($url, \"r\");\r\n$res=\"\";\r\nif($fh)\r\n $res=$url;\r\nreturn $res;','STRING','Purpose: Checks if the given url exists. If so it returns the url, if not it gives back an empty string.\r\nExample: file_exists(\"/not/exists\") gives \"\" as far as file \"/not/exists\" doesn\'t exist'); INSERT INTO flxUDFS VALUES ('CUT_FILE','$fh=@fopen($url, \"r\");\r\n$res=\"\";\r\nif($fh)\r\n{\r\n $found=false;\r\n if($start_token==\"\")\r\n {\r\n $found=true;\r\n }\r\n while(!feof($fh))\r\n {\r\n if(!$found)\r\n {\r\n $line=fgets($fh, 4096);\r\n $pos=strpos($line, $start_token);\r\n if($pos === false)\r\n continue;\r\n $res=substr($line, $pos, strlen($start_tag));\r\n $line=substr($line, $pos+strlen($start_tag));\r\n $found=true;\r\n }\r\n else\r\n {\r\n $pos=strpos($line, $end_token);\r\n if($pos === false)\r\n {\r\n $res.=$line;\r\n $line=fgets($fh, 4096);\r\n }\r\n else\r\n {\r\n $res.=substr($line, 0, $pos+strlen($end_token));\r\n break;\r\n }\r\n }\r\n }\r\n fclose($fh);\r\n}\r\n\r\nreturn $res;','STRING','Purpose: This function opens the file pointed by the URL url. If it\'s accessible, it parses it and \r\nreturns all characters between first occurence of string start_token and first occurrence of \r\nstring end_token.\r\nExample: cut_file(\"/local/pp.txt\", \"PEPE\", \"JOSE\") and \"/local/pp.txt\" file contains the\r\n following text \r\n\"In spanish PEPE means JOSE and PACO means FRANCISCO\", \r\nwould give as result \"PEPE means JOSE\"'); INSERT INTO flxUDFS VALUES ('STRPOS','$pos=strpos($str, $substr);\r\nif($pos === false)\r\n{\r\n return \"\";\r\n}\r\nelse\r\n{\r\n return \"$pos\";\r\n}','STRING',''); INSERT INTO flxUDFS VALUES ('GET_FROM_SETLINKURL','$url=parse_url( $url );\r\n$res=\"\";\r\nif(trim($url[query])!=\"\")\r\n{\r\n $params=explode(\"&\", $url[query]);\r\n foreach($params as $param)\r\n {\r\n $param=explode(\"=\", $param);\r\n if(trim($param[0])==$field)\r\n {\r\n $res=trim($param[1]);\r\n break;\r\n }\r\n } \r\n}\r\nreturn $res;','STRING',''); INSERT INTO flxUDFS VALUES ('FILTER_CDS_ID','$temp=explode(\"-\", $str, 2); \r\nreturn $temp[0];','STRING',''); INSERT INTO flxUDFS VALUES ('COPY','return substr($str, $start, $length);','STRING','Purpose: Returns a substring from string str, that starts in position start\r\n and that is length characters long from there\r\nExample: copy(\"test\", \"1\", \"2\") gives as result \"es\"'); INSERT INTO flxUDFS VALUES ('TERMINATOR','if($LAST_ITERATION)\r\n return $str;','STRING',''); INSERT INTO flxUDFS VALUES ('SUM','return $v1+$v2;','STRING','Purpose: Gives the result of adding v1 to v2 (v1+v2)\r\nExample: add(\"3\", \"4\") gives as result \"7\"'); INSERT INTO flxUDFS VALUES ('GT','if($v1>$v2)\r\n return \"1\";\r\nreturn \"\";','STRING','Purpose: \"Greater than\" function; returns \"1\" if v1>v2, \"\" in other case\r\nExample: gt(\"3\", \"4\") gives as result \"\"'); INSERT INTO flxUDFS VALUES ('EXTRACT_EMAIL','if(ereg(\"([^ <\\t\\n]+@[^ >\\t\\n]+)\", $str, $res))\r\n{\r\n return $res[1];\r\n}\r\nelse\r\n return \"\";\r\n','STRING','Purpose: Returns the first valid (filtered) email address found in string str. \r\nIf there\'s no valid email address in it, it returns \"\"\r\nExample: extract_email(\"Hector Sanchez \") gives \"Hector.Sanchez@cern.ch\".'); INSERT INTO flxUDFS VALUES ('GE','if($v1>=$v2)\r\n return \"1\";\r\nreturn \"\";','STRING','Purpose: \"Greater or equal than\" function; returns \"1\" if v1>=v2, \"\" in other case\r\nExample: ge(\"3\", \"4\") gives as result \"\"'); INSERT INTO flxUDFS VALUES ('LE','if($v1<=$v2)\r\n return \"1\";\r\nreturn \"\";','STRING','Purpose: \"Lower or equal than\" function; returns \"1\" if v1<=v2, \"\" in other case\r\nExample: ge(\"3\", \"4\") gives as result \"\"'); INSERT INTO flxUDFS VALUES ('ISO_NUM','$iso=substr($str, strlen($str_iso));\r\n$temp=explode(\"-\", $iso, 2);\r\n$isonum=$temp[0]; \r\nreturn $isonum;\r\n','STRING',''); INSERT INTO flxUDFS VALUES ('ISO_PART','$iso=substr($str, strlen($str_iso)); \r\n$temp=explode(\"-\", $iso, 2); \r\n$isopart=\"\";\r\nif(count($temp)>1)\r\n{\r\n $isopart=$temp[1]; \r\n}\r\nreturn $isopart; \r\n','STRING',''); INSERT INTO flxUDFS VALUES ('ISO_NUMPART_LINK','$iso=substr($str, strlen($str_iso));\r\n$temp=explode(\"-\", $iso, 2);\r\n$isolink=$temp[0]; \r\nif(count($temp)>1)\r\n{\r\n if(strlen($temp[1])>0)\r\n {\r\n $isolink.=\"&part=\";\r\n $isolink.=str_replace(\"-\", \"&se=\", $temp[1]);\r\n }\r\n}\r\nreturn $isolink;\r\n','STRING',''); INSERT INTO flxUDFS VALUES ('STRIP_SPACES','return str_replace(\" \", \"\", $str);','STRING',''); INSERT INTO flxUDFS VALUES ('LFILL','if(strlen($char)==0) return $str;\r\nif(strlen($str)>$digits) \r\n $str=substr($str, strlen($str)-$digits);\r\nelse\r\n $str=sprintf(\"%0\".$digits.\"u\", $str);\r\nreturn $str;','STRING','Purpose: Returns a string consisting in the string str with the character char \r\nadded to its left the numer of times needed until the lenght digits is reached. If the length\r\nof str is bigger than digits, a left truncated string to length digit is returned.\r\nExample: lfill(\"12\", \"0\", \"5\") gives as result \"00012\", while lfill(\"12345\", \"0\", \"3\") gives as result \"345\", while'); INSERT INTO flxUDFS VALUES ('STR_BUFFER','return add_text($action, $str_to_add, $remove_end_before_print, $min_length_for_print);\r\n\r\nfunction add_text($action, $str_to_add, $remove_end_before_print, $min_length_for_print) {\r\n static $whole_str_buffer = \'\';\r\n\r\n if($action === \'print\') {\r\n if (strlen($whole_str_buffer) > $min_length_for_print){ \r\n $retrn_val = substr($whole_str_buffer, 0, strlen($whole_str_buffer) - $remove_end_before_print) . $str_to_add;\r\n $whole_str_buffer = \'\';\r\n \r\n return $retrn_val;\r\n }\r\n $whole_str_buffer = \'\';\r\n return \'\';\r\n }elseif($action === \'add\'){\r\n $whole_str_buffer .= $str_to_add;\r\n return \'\';\r\n }elseif($action ===\'reset\'){\r\n $whole_str_buffer = \'\';\r\n return \'\';\r\n }else{\r\n return \'\';\r\n }\r\n}','','Purpose:Concatenates strings into static buffer without printing it out before you say so.\r\nParameters:\r\naction: If action is \"add\", then it adds the string to the buffer, if the action is \"print\", then it first removes the end of the string, then adds str_to_add, then prints out. If action is \"reset\", then it resets the buffer to \"\". When you do a \"print\", it also resets the buffer.\r\nstr_to_add: The string you want to add to the already stored string. If action is \"print\" then this part will be added after the function has taken away the end of the string.\r\nremove_end_before_print: Only works when action is \"print\", then it removes the number of chars you have specified before adding the rest of the string, and prints out.\r\nmin_length_for_print: If string is shorter then this when action is \"print\", then it will return \"\". This parameter is only in use when action is \"print\".\r\nExample:\r\nSTR_BUFFER(\"add\", \"\\\"Øyvind and \", \"0\", \"0\");\r\nSTR_BUFFER(\"print\", \"\\\"\", \"5\", \"3\");\r\noutputs: \"Øyvind\"'); INSERT INTO flxUDFS VALUES ('GET_NAME','$pos=strpos($names, \',\');\r\n\r\nif($pos === false){\r\n $name_ar = preg_split(\"/[\\s+]+/\", $names);\r\n $names = \"\";\r\n\r\n for($i = 0; $i < count($name_ar); $i++){\r\n if(strlen($name_ar[$i]) >= strlen($names)){\r\n $names = $name_ar[$i];\r\n }\r\n }\r\n return $names;\r\n}\r\n\r\n$newname = substr($names, 0, $pos);\r\n\r\nreturn str_replace(\" \", \"\", $newname);','','Purpose: Tryes to find the last name in a string, and returns it.\r\nExample: GET_NAME(\"Østlund, Øyvind B\"); returns \"Østlund\".'); INSERT INTO flxUDFS VALUES ('SPLIT_LINE','$start_index = 0;\r\n$result_string;\r\n$done = false;\r\n$firstline = true;\r\n\r\nwhile (!$done){\r\n\r\n if($start_index + $str_len >= strlen($split_str)){\r\n $done = true;\r\n $split = strlen($split_str) - $start_index;\r\n $result_string .= substr($split_str, $start_index);\r\n }else{\r\n $found = false;\r\n\r\n if($firstline == true){\r\n $split = $str_len + $indentation;\r\n $firstline = false;\r\n }else{\r\n $split = $str_len;\r\n }\r\n\r\n while ($split > 0 && $found == false){\r\n if($split_str[$start_index + $split] == \' \'){\r\n $found = true;\r\n }else{\r\n $split --;\r\n }\r\n }\r\n\r\n $result_string .= substr($split_str, $start_index, $split) . \'
\' . str_repeat(\' \', $indentation);\r\n $start_index += $split + 1;\r\n }\r\n}\r\n\r\n\r\nreturn $result_string;\r\n\r\n\r\n\r\n','','Purpose: Splits a line after a certain amount of letters. Does not split a word in two, but finds the nearest word break. \r\nNotice: Indentation is only for line 2->n, not line 1.\r\nNotice: First line will be the length of str_len + indentation.\r\nNotice: If there is HTML tags in the string, they will be counted too.\r\nExample: SPLIT_LINE(\"title = Nuclear matter with off-shell propagation\", \"35\", \"15\");\r\nReturns:
title        = Nuclear matter with\r\n               off-shell propagation
'); INSERT INTO flxUDFS VALUES ('GET_MONTH','if(eregi(\'jan\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'feb\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'mar\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'apr\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'may\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'jun\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'jul\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'aug\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'sep\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'oct\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'nov\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(eregi(\'dec\', $date, $res)){\r\n return ucfirst(strtolower($res[0]));\r\n}elseif(preg_match(\'/(?<=[-\\/])\\n\\n(?=[-\\/])/i\', $date, $res)){\r\n if($res[0] === \'01\' || $res[0] === \'1\'){\r\n return \'Jan\';\r\n }elseif($res[0] === \'02\' || $res[0] === \'2\'){\r\n return \'Feb\';\r\n }elseif($res[0] === \'03\' || $res[0] === \'3\'){\r\n return \'Mar\';\r\n }elseif($res[0] === \'04\' || $res[0] === \'4\'){\r\n return \'Apr\';\r\n }elseif($res[0] === \'05\' || $res[0] === \'5\'){\r\n return \'May\';\r\n }elseif($res[0] === \'06\' || $res[0] === \'6\'){\r\n return \'Jun\';\r\n }elseif($res[0] === \'07\' || $res[0] === \'7\'){\r\n return \'Jul\';\r\n }elseif($res[0] === \'08\' || $res[0] === \'8\'){\r\n return \'Aug\';\r\n }elseif($res[0] === \'09\' || $res[0] === \'9\'){\r\n return \'Sep\';\r\n }elseif($res[0] === \'10\'){\r\n return \'Oct\';\r\n }elseif($res[0] === \'11\'){\r\n return \'Nov\';\r\n }elseif($res[0] === \'12\'){\r\n return \'Dec\';\r\n }\r\n}\r\n\r\nreturn \"\";','','Purpose: Takes a string as input, and returns a 3 letter abrivation of the month if the string contains it.\r\nExample: Accepted string format is e.g. 17 February 2004, 2004/02/17, 17-Feb-2004, etc. (Almost any English date format!)'); INSERT INTO flxUDFS VALUES ('GET_YEAR','if(ereg(\'[[:digit:]][[:digit:]][[:digit:]][[:digit:]]\', $date, $res)){\r\n return $res[0];\r\n}elseif(ereg(\'[[:digit:]][[:digit:]][[:digit:]][[:digit:]]\', $date, $res)){\r\n return $res[0];\r\n}','','Purpose: Takes a string as input, and returns a 4 digit year if the string contains it.'); INSERT INTO flxUDFPARAMS VALUES ('URLENCODE','url',0); INSERT INTO flxUDFPARAMS VALUES ('ADD','postfix',2); INSERT INTO flxUDFPARAMS VALUES ('SUBSTR','end',2); INSERT INTO flxUDFPARAMS VALUES ('UPPER','s',0); INSERT INTO flxUDFPARAMS VALUES ('SUBSTR','s',0); INSERT INTO flxUDFPARAMS VALUES ('SUBSTR','start',1); INSERT INTO flxUDFPARAMS VALUES ('MINFO','sysno',0); INSERT INTO flxUDFPARAMS VALUES ('SEPARATOR','str',0); INSERT INTO flxUDFPARAMS VALUES ('REP_PREFIX','str',0); INSERT INTO flxUDFPARAMS VALUES ('XML_TEXT','str',0); INSERT INTO flxUDFPARAMS VALUES ('REP','search',1); INSERT INTO flxUDFPARAMS VALUES ('REP','str',0); INSERT INTO flxUDFPARAMS VALUES ('SAVETOFILE','filename',0); INSERT INTO flxUDFPARAMS VALUES ('SAVETOFILE','code',1); INSERT INTO flxUDFPARAMS VALUES ('REP','replacement',2); INSERT INTO flxUDFPARAMS VALUES ('FORMAT_EXIST','format_name',0); INSERT INTO flxUDFPARAMS VALUES ('FILTER_PAGENR','str',0); INSERT INTO flxUDFPARAMS VALUES ('LOWER','str',0); INSERT INTO flxUDFPARAMS VALUES ('ADD','value',0); INSERT INTO flxUDFPARAMS VALUES ('ADD','prefix',1); INSERT INTO flxUDFPARAMS VALUES ('STRPOS','substr',1); INSERT INTO flxUDFPARAMS VALUES ('STRPOS','str',0); INSERT INTO flxUDFPARAMS VALUES ('CUT_FILE','end_token',2); INSERT INTO flxUDFPARAMS VALUES ('CUT_FILE','start_token',1); INSERT INTO flxUDFPARAMS VALUES ('CUT_FILE','url',0); INSERT INTO flxUDFPARAMS VALUES ('FILE_EXISTS','url',0); INSERT INTO flxUDFPARAMS VALUES ('SUBSTR_END','str',0); INSERT INTO flxUDFPARAMS VALUES ('SUBSTR_END','start',1); INSERT INTO flxUDFPARAMS VALUES ('LIMW_R','str',0); INSERT INTO flxUDFPARAMS VALUES ('LIMW_L','str',0); INSERT INTO flxUDFPARAMS VALUES ('LIMW_L','token',1); INSERT INTO flxUDFPARAMS VALUES ('LIMW_R','token',1); INSERT INTO flxUDFPARAMS VALUES ('GET_FROM_SETLINKURL','url',0); INSERT INTO flxUDFPARAMS VALUES ('GET_FROM_SETLINKURL','field',1); INSERT INTO flxUDFPARAMS VALUES ('FILTER_CDS_ID','str',0); INSERT INTO flxUDFPARAMS VALUES ('COPY','str',0); INSERT INTO flxUDFPARAMS VALUES ('COPY','start',1); INSERT INTO flxUDFPARAMS VALUES ('TERMINATOR','str',0); INSERT INTO flxUDFPARAMS VALUES ('SUM','v1',0); INSERT INTO flxUDFPARAMS VALUES ('GT','v1',0); INSERT INTO flxUDFPARAMS VALUES ('SUM','v2',1); INSERT INTO flxUDFPARAMS VALUES ('EXTRACT_EMAIL','str',0); INSERT INTO flxUDFPARAMS VALUES ('GT','v2',1); INSERT INTO flxUDFPARAMS VALUES ('GE','v2',1); INSERT INTO flxUDFPARAMS VALUES ('GE','v1',0); INSERT INTO flxUDFPARAMS VALUES ('LE','v1',0); INSERT INTO flxUDFPARAMS VALUES ('LE','v2',1); INSERT INTO flxUDFPARAMS VALUES ('ISO_NUM','str_iso',0); INSERT INTO flxUDFPARAMS VALUES ('ISO_NUM','str',1); INSERT INTO flxUDFPARAMS VALUES ('ISO_PART','str_iso',0); INSERT INTO flxUDFPARAMS VALUES ('ISO_PART','str',1); INSERT INTO flxUDFPARAMS VALUES ('ISO_NUMPART_LINK','str_iso',0); INSERT INTO flxUDFPARAMS VALUES ('ISO_NUMPART_LINK','str',1); INSERT INTO flxUDFPARAMS VALUES ('STRIP_SPACES','str',0); INSERT INTO flxUDFPARAMS VALUES ('LFILL','digits',2); INSERT INTO flxUDFPARAMS VALUES ('LFILL','char',1); INSERT INTO flxUDFPARAMS VALUES ('LFILL','str',0); INSERT INTO flxUDFPARAMS VALUES ('COPY','length',2); INSERT INTO flxUDFPARAMS VALUES ('STR_BUFFER','action',0); INSERT INTO flxUDFPARAMS VALUES ('STR_BUFFER','str_to_add',1); INSERT INTO flxUDFPARAMS VALUES ('STR_BUFFER','min_length_for_print',3); INSERT INTO flxUDFPARAMS VALUES ('STR_BUFFER','remove_end_before_print',2); INSERT INTO flxUDFPARAMS VALUES ('GET_YEAR','date',0); INSERT INTO flxUDFPARAMS VALUES ('GET_MONTH','date',0); INSERT INTO flxUDFPARAMS VALUES ('GET_NAME','names',0); INSERT INTO flxUDFPARAMS VALUES ('SPLIT_LINE','indentation',2); INSERT INTO flxUDFPARAMS VALUES ('SPLIT_LINE','split_str',0); INSERT INTO flxUDFPARAMS VALUES ('SPLIT_LINE','str_len',1); INSERT INTO flxUSERS VALUES (1); INSERT INTO oaiARCHIVE VALUES (1,'','global','','','',NULL,'*','','','','','',NULL,NULL,NULL); INSERT INTO sbmACTION VALUES ('Submit New Record','SBI','running','1998-08-17','2001-08-08','','Submit New Record'); INSERT INTO sbmACTION VALUES ('Modify Record','MBI','modify','1998-08-17','2001-11-07','','Modify Record'); INSERT INTO sbmACTION VALUES ('Submit New File','SRV','revise','0000-00-00','2001-11-07','','Submit New File'); INSERT INTO sbmACTION VALUES ('Approve Record','APP','approve','2001-11-08','2002-06-11','','Approve Record'); INSERT INTO sbmALLFUNCDESCR VALUES ('CaseEDS',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Create_Modify_Interface',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Create_Recid',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Finish_Submission',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Get_Info',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Get_Report_Number',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Get_Sysno',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Insert_Modify_Record',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Insert_Record',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Is_Original_Submitter',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Is_Referee','This function checks whether the logged user is a referee for the current document'); INSERT INTO sbmALLFUNCDESCR VALUES ('Mail_Submitter',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Make_Modify_Record',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Make_Record',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_From_Pending',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_to_Done',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_to_Pending',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_APP',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_MBI',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_SRV',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Report_Number_Generation',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_Approval_Request',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_APP_Mail',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_Modify_Mail',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_SRV_Mail',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Test_Status',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Update_Approval_DB',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Upload_Files',''); INSERT INTO sbmCHECKS VALUES ('AUCheck','function AUCheck(txt) {\r\n var res=1;\r\n tmp=txt.indexOf(\"\\015\");\r\n while (tmp != -1) {\r\n left=txt.substring(0,tmp);\r\n right=txt.substring(tmp+2,txt.length);\r\n txt=left + \"\\012\" + right;\r\n tmp=txt.indexOf(\"\\015\");\r\n }\r\n tmp=txt.indexOf(\"\\012\");\r\n if (tmp==-1){\r\n line=txt;\r\n txt=\'\';}\r\n else{\r\n line=txt.substring(0,tmp);\r\n txt=txt.substring(tmp+1,txt.length);}\r\n while (line != \"\"){\r\n coma=line.indexOf(\",\");\r\n left=line.substring(0,coma);\r\n right=line.substring(coma+1,line.length);\r\n coma2=right.indexOf(\",\");\r\n space=right.indexOf(\" \");\r\n if ((coma==-1)||(left==\"\")||(right==\"\")||(space!=0)||(coma2!=-1)){\r\n res=0;\r\n error_log=line;\r\n }\r\n tmp=txt.indexOf(\"\\012\");\r\n if (tmp==-1){\r\n line=txt;\r\n txt=\'\';}\r\n else{\r\n line=txt.substring(0,tmp-1);\r\n txt=txt.substring(tmp+1,txt.length);}\r\n }\r\n if (res == 0){\r\n alert(\"This author name cannot be managed \\: \\012\\012\" + error_log + \" \\012\\012It is not in the required format!\\012Put one author per line and a comma (,) between the name and the firstname initial letters. \\012The name is going first, followed by the firstname initial letters.\\012Don\'t forget the whitespace after the comma!!!\\012\\012Example \\: Put\\012\\012Le Meur, J Y \\012Baron, T \\012\\012for\\012\\012Le Meur Jean-Yves & Baron Thomas.\");\r\n return 0;\r\n } \r\n return 1; \r\n}','1998-08-18','0000-00-00','',''); INSERT INTO sbmCHECKS VALUES ('DatCheckNew','function DatCheckNew(txt) {\r\n var res=1;\r\n if (txt.length != 10){res=0;}\r\n if (txt.indexOf(\"/\") != 2){res=0;}\r\n if (txt.lastIndexOf(\"/\") != 5){res=0;}\r\n tmp=parseInt(txt.substring(0,2),10);\r\n if ((tmp > 31)||(tmp < 1)||(isNaN(tmp))){res=0;}\r\n tmp=parseInt(txt.substring(3,5),10);\r\n if ((tmp > 12)||(tmp < 1)||(isNaN(tmp))){res=0;}\r\n tmp=parseInt(txt.substring(6,10),10);\r\n if ((tmp < 1)||(isNaN(tmp))){res=0;}\r\n if (txt.length == 0){res=1;}\r\n if (res == 0){\r\n alert(\"Please enter a correct Date \\012Format: dd/mm/yyyy\");\r\n return 0;\r\n }\r\n return 1; \r\n}','0000-00-00','0000-00-00','',''); INSERT INTO sbmFORMATEXTENSION VALUES ('WORD','.doc'); INSERT INTO sbmFORMATEXTENSION VALUES ('PostScript','.ps'); INSERT INTO sbmFORMATEXTENSION VALUES ('PDF','.pdf'); INSERT INTO sbmFORMATEXTENSION VALUES ('JPEG','.jpg'); INSERT INTO sbmFORMATEXTENSION VALUES ('JPEG','.jpeg'); INSERT INTO sbmFORMATEXTENSION VALUES ('GIF','.gif'); INSERT INTO sbmFORMATEXTENSION VALUES ('PPT','.ppt'); INSERT INTO sbmFORMATEXTENSION VALUES ('HTML','.htm'); INSERT INTO sbmFORMATEXTENSION VALUES ('HTML','.html'); INSERT INTO sbmFORMATEXTENSION VALUES ('Latex','.tex'); INSERT INTO sbmFORMATEXTENSION VALUES ('Compressed PostScript','.ps.gz'); INSERT INTO sbmFORMATEXTENSION VALUES ('Tarred Tex (.tar)','.tar'); INSERT INTO sbmFORMATEXTENSION VALUES ('Text','.txt'); INSERT INTO sbmFUNDESC VALUES ('Get_Report_Number','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Send_Modify_Mail','addressesMBI'); INSERT INTO sbmFUNDESC VALUES ('Send_Modify_Mail','sourceDoc'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','autorngen'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','rnin'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','counterpath'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','rnformat'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','yeargen'); INSERT INTO sbmFUNDESC VALUES ('Mail_Submitter','authorfile'); INSERT INTO sbmFUNDESC VALUES ('Mail_Submitter','status'); INSERT INTO sbmFUNDESC VALUES ('Send_Approval_Request','authorfile'); INSERT INTO sbmFUNDESC VALUES ('Create_Modify_Interface','fieldnameMBI'); INSERT INTO sbmFUNDESC VALUES ('Send_Modify_Mail','fieldnameMBI'); INSERT INTO sbmFUNDESC VALUES ('Update_Approval_DB','categformatDAM'); INSERT INTO sbmFUNDESC VALUES ('Send_SRV_Mail','categformatDAM'); INSERT INTO sbmFUNDESC VALUES ('Send_SRV_Mail','addressesSRV'); INSERT INTO sbmFUNDESC VALUES ('Send_Approval_Request','directory'); INSERT INTO sbmFUNDESC VALUES ('Send_Approval_Request','categformatDAM'); INSERT INTO sbmFUNDESC VALUES ('Send_Approval_Request','addressesDAM'); INSERT INTO sbmFUNDESC VALUES ('Send_Approval_Request','titleFile'); INSERT INTO sbmFUNDESC VALUES ('Send_APP_Mail','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Mail_Submitter','titleFile'); INSERT INTO sbmFUNDESC VALUES ('Send_Modify_Mail','emailFile'); INSERT INTO sbmFUNDESC VALUES ('Get_Info','authorFile'); INSERT INTO sbmFUNDESC VALUES ('Get_Info','emailFile'); INSERT INTO sbmFUNDESC VALUES ('Get_Info','titleFile'); INSERT INTO sbmFUNDESC VALUES ('Make_Modify_Record','modifyTemplate'); INSERT INTO sbmFUNDESC VALUES ('Send_APP_Mail','addressesAPP'); INSERT INTO sbmFUNDESC VALUES ('Send_APP_Mail','categformatAPP'); INSERT INTO sbmFUNDESC VALUES ('Send_APP_Mail','newrnin'); INSERT INTO sbmFUNDESC VALUES ('CaseEDS','casevariable'); INSERT INTO sbmFUNDESC VALUES ('CaseEDS','casevalues'); INSERT INTO sbmFUNDESC VALUES ('CaseEDS','casesteps'); INSERT INTO sbmFUNDESC VALUES ('CaseEDS','casedefault'); INSERT INTO sbmFUNDESC VALUES ('Send_SRV_Mail','noteFile'); INSERT INTO sbmFUNDESC VALUES ('Send_SRV_Mail','emailFile'); INSERT INTO sbmFUNDESC VALUES ('Mail_Submitter','emailFile'); INSERT INTO sbmFUNDESC VALUES ('Mail_Submitter','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Mail_Submitter','newrnin'); INSERT INTO sbmFUNDESC VALUES ('Upload_Files','maxsize'); INSERT INTO sbmFUNDESC VALUES ('Upload_Files','minsize'); INSERT INTO sbmFUNDESC VALUES ('Upload_Files','iconsize'); INSERT INTO sbmFUNDESC VALUES ('Upload_Files','type'); INSERT INTO sbmFUNDESC VALUES ('Make_Record','sourceTemplate'); INSERT INTO sbmFUNDESC VALUES ('Make_Record','createTemplate'); INSERT INTO sbmFUNDESC VALUES ('Print_Success','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Print_Success','newrnin'); INSERT INTO sbmFUNDESC VALUES ('Print_Success','status'); INSERT INTO sbmFUNDESC VALUES ('Make_Modify_Record','sourceTemplate'); INSERT INTO sbmGFILERESULT VALUES ('HTML','HTML document'); INSERT INTO sbmGFILERESULT VALUES ('WORD','data'); INSERT INTO sbmGFILERESULT VALUES ('PDF','PDF document'); INSERT INTO sbmGFILERESULT VALUES ('PostScript','PostScript document'); INSERT INTO sbmGFILERESULT VALUES ('PostScript','data '); INSERT INTO sbmGFILERESULT VALUES ('PostScript','HP Printer Job Language data'); INSERT INTO sbmGFILERESULT VALUES ('jpg','JPEG image'); INSERT INTO sbmGFILERESULT VALUES ('Compressed PostScript','gzip compressed data'); INSERT INTO sbmGFILERESULT VALUES ('Tarred Tex (.tar)','tar archive'); INSERT INTO sbmGFILERESULT VALUES ('JPEG','JPEG image'); INSERT INTO sbmGFILERESULT VALUES ('GIF','GIF'); INSERT INTO accROLE VALUES (1,'superadmin','superuser with all rights'); INSERT INTO accROLE VALUES (2,'photoadmin','Photo collection administrator'); INSERT INTO accROLE VALUES (3,'webaccessadmin','WebAccess administrator'); INSERT INTO user_accROLE VALUES (1,1); INSERT INTO user_accROLE VALUES (1,3); INSERT INTO accACTION VALUES (1,'cfgwebsearch','configure WebSearch','','no'); INSERT INTO accACTION VALUES (2,'cfgbibformat','configure BibFormat','','no'); INSERT INTO accACTION VALUES (3,'runbibindex','run BibIndex','','no'); INSERT INTO accACTION VALUES (4,'runbibupload','run BibUpload','','no'); INSERT INTO accACTION VALUES (5,'runwebcoll','run webcoll','collection','yes'); INSERT INTO accACTION VALUES (6,'runbibformat','run BibFormat','format','yes'); INSERT INTO accACTION VALUES (7,'cfgwebaccess','configure WebAccess','','no'); INSERT INTO accACTION VALUES (8,'accdelegaterole','delegate subroles inside WebAccess','role','no'); INSERT INTO accACTION VALUES (9,'runbibtaskex','run BibTaskEx example', '','no'); INSERT INTO accACTION VALUES (11,'submit','use webSubmit','doctype,act','no'); INSERT INTO accACTION VALUES (12,'cfgwebsubmit','configure webSubmit','','no'); INSERT INTO accACTION VALUES (13,'referee','referee document type doctype','doctype,categ','yes'); INSERT INTO accACTION VALUES (14,'runbibrank','run BibRank','','no'); INSERT INTO accACTION VALUES (15,'cfgbibrank','configure BibRank','','no'); INSERT INTO accACTION VALUES (16,'cfgbibindex','configure BibIndex','','no'); INSERT INTO accACTION VALUES (17,'cfgbibharvest','configure BibHarvest','','no'); INSERT INTO accACTION VALUES (18,'runoaiharvest','run BibHarvest periodical harvesting','','no'); INSERT INTO accACTION VALUES (19,'cfgwebcomment','configure WebComment','','no'); INSERT INTO accACTION VALUES (20,'runoaiarchive','run OAI archive','','no'); INSERT INTO accACTION VALUES (21,'runbibedit','run BibEdit','','no'); INSERT INTO accARGUMENT VALUES (1,'collection','Pictures'); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,1, 0, 0); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,2, 0, 0); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,3, 0, 0); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,4, 0, 0); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,6,-1,-1); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,7, 0, 0); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (2,5, 1, 1); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (3,7, 0, 0); INSERT INTO accROLE_accACTION_accARGUMENT VALUES (1,9, 0, 0);
diff --git a/modules/webhelp/web/Makefile.am b/modules/webhelp/web/Makefile.am index f4872be9e..7a9d03851 100644 --- a/modules/webhelp/web/Makefile.am +++ b/modules/webhelp/web/Makefile.am @@ -1,53 +1,54 @@ ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. SUBDIRS = admin hacking docdir = $(localstatedir)/www/help -doc_DATA=index.en.html index.fr.html index.de.html index.pl.html index.pt.html index.es.html index.ca.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.uk.html +doc_DATA=index.en.html index.fr.html index.de.html index.pl.html index.pt.html index.es.html index.ca.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.bg.html index.uk.html FILESWML = $(wildcard $(srcdir)/*.wml) EXTRA_DIST = $(FILESWML:$(srcdir)/%=%) CLEANFILES = $(doc_DATA) *~ *.tmp LINGUAS = $(shell grep -v '^\#' $(top_srcdir)/po/LINGUAS) MO = $(LINGUAS:%=$(top_builddir)/po/%.gmo) -%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) +%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.bg.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) $(WML) -o\(ALL-LANG_*\)+LANG_EN:$*.en.html \ -o\(ALL-LANG_*\)+LANG_FR:$*.fr.html \ -o\(ALL-LANG_*\)+LANG_DE:$*.de.html \ -o\(ALL-LANG_*\)+LANG_ES:$*.es.html \ -o\(ALL-LANG_*\)+LANG_CA:$*.ca.html \ -o\(ALL-LANG_*\)+LANG_PL:$*.pl.html \ -o\(ALL-LANG_*\)+LANG_PT:$*.pt.html \ -o\(ALL-LANG_*\)+LANG_IT:$*.it.html \ -o\(ALL-LANG_*\)+LANG_JA:$*.ja.html \ -o\(ALL-LANG_*\)+LANG_RU:$*.ru.html \ -o\(ALL-LANG_*\)+LANG_SK:$*.sk.html \ -o\(ALL-LANG_*\)+LANG_CS:$*.cs.html \ -o\(ALL-LANG_*\)+LANG_NO:$*.no.html \ -o\(ALL-LANG_*\)+LANG_SV:$*.sv.html \ -o\(ALL-LANG_*\)+LANG_EL:$*.el.html \ + -o\(ALL-LANG_*\)+LANG_BG:$*.bg.html \ -o\(ALL-LANG_*\)+LANG_UK:$*.uk.html $< for lang in $(LINGUAS); do \ $(PYTHON) $(top_srcdir)/po/i18n_update_wml_target.py $${lang} "$*.$${lang}.html" ; \ done diff --git a/modules/webhelp/web/admin/Makefile.am b/modules/webhelp/web/admin/Makefile.am index c89b384da..3b9be48a8 100644 --- a/modules/webhelp/web/admin/Makefile.am +++ b/modules/webhelp/web/admin/Makefile.am @@ -1,53 +1,54 @@ ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. SUBDIRS = howto docdir = $(localstatedir)/www/admin -doc_DATA=index.en.html index.fr.html index.de.html index.es.html index.ca.html index.pl.html index.pt.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.uk.html +doc_DATA = index.en.html index.fr.html index.de.html index.es.html index.ca.html index.pl.html index.pt.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.bg.html index.uk.html -FILESWML = $(wildcard $(srcdir)/*.wml) +FILESWML = $(wildcard $(srcdir)/*.wml) EXTRA_DIST = $(FILESWML:$(srcdir)/%=%) CLEANFILES = $(doc_DATA) *~ *.tmp LINGUAS = $(shell grep -v '^\#' $(top_srcdir)/po/LINGUAS) MO = $(LINGUAS:%=$(top_builddir)/po/%.gmo) -%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) +%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.bg.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) $(WML) -o\(ALL-LANG_*\)+LANG_EN:$*.en.html \ -o\(ALL-LANG_*\)+LANG_FR:$*.fr.html \ -o\(ALL-LANG_*\)+LANG_DE:$*.de.html \ -o\(ALL-LANG_*\)+LANG_ES:$*.es.html \ -o\(ALL-LANG_*\)+LANG_CA:$*.ca.html \ -o\(ALL-LANG_*\)+LANG_PL:$*.pl.html \ -o\(ALL-LANG_*\)+LANG_PT:$*.pt.html \ -o\(ALL-LANG_*\)+LANG_IT:$*.it.html \ -o\(ALL-LANG_*\)+LANG_JA:$*.ja.html \ -o\(ALL-LANG_*\)+LANG_RU:$*.ru.html \ -o\(ALL-LANG_*\)+LANG_SK:$*.sk.html \ -o\(ALL-LANG_*\)+LANG_CS:$*.cs.html \ -o\(ALL-LANG_*\)+LANG_NO:$*.no.html \ -o\(ALL-LANG_*\)+LANG_SV:$*.sv.html \ -o\(ALL-LANG_*\)+LANG_EL:$*.el.html \ + -o\(ALL-LANG_*\)+LANG_BG:$*.bg.html \ -o\(ALL-LANG_*\)+LANG_UK:$*.uk.html $< for lang in $(LINGUAS); do \ $(PYTHON) $(top_srcdir)/po/i18n_update_wml_target.py $${lang} "$*.$${lang}.html" ; \ done diff --git a/modules/webhelp/web/index.html.wml b/modules/webhelp/web/index.html.wml index beb30be5f..e994ca2dd 100644 --- a/modules/webhelp/web/index.html.wml +++ b/modules/webhelp/web/index.html.wml @@ -1,83 +1,86 @@ ## -*- mode: html; coding: utf-8; -*- ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. #include "cdspage.wml" \ title="_(Help Central)_" \ navbar_name="help" \ navtrail_previous_links="" \ navbar_select="tips"

Welcome to _(Help Central)_ of the . Bienvenu au _(Help Central)_ de . Herzlich Willkommen in der _(Help Central)_ von . Welcome to _(Help Central)_ of the . Benvinguts al _(Help Central)_ de . Welcome to _(Help Central)_ of the . Bem vindo à _(Help Central)_ do . Benvenuti nell'_(Help Central)_ di . Welcome to _(Help Central)_ of the . Víta Vás _(Help Central)_ . Vítá Vás _(Help Central)_ . Velkommen til _(Help Central)_ for . Välkommen till _(Help Central)_en för . Welcome to _(Help Central)_ of the . Welcome to _(Help Central)_ of the . Welcome to _(Help Central)_ of the . +Welcome to _(Help Central)_ of the .

_(Search Help)_
Get help with searching . Obtenez de l'aide avec la recherche sur . Hier können Sie die Suchhilfe für den konsultieren. Get help with searching . Ajuda en la cerca de . Get help with searching . Obtenha ajuda em buscas no . Aiuto alla ricerca in . Get help with searching . Pomoc pre hľadanie . Nápověda pro hledání . Få hjelp til søking i . För hjälp med sökning av . Get help with searching . Get help with searching . Get help with searching . + Get help with searching .
_(Submit Help)_
Get help with submitting to . Obtenez de l'aide avec la soumission dans . Hier können Sie die Eintragehilfe für den konsultieren. Get help with submitting to . Ajuda per la tramesa de documents a . Get help with submitting to . Obtenha ajuda em submissões ao . Aiuto per la sottomissione di documenti ad . Get help with submitting to . Pomoc pre pridávanie do . Nápověda pro přidávaní do . Få hjelp til innsending til . För hjälp med publicering i . Get help with submitting to . Get help with submitting to . Get help with submitting to . + Get help with submitting to .
diff --git a/modules/websearch/doc/Makefile.am b/modules/websearch/doc/Makefile.am index f33d62f95..37e292cc3 100644 --- a/modules/websearch/doc/Makefile.am +++ b/modules/websearch/doc/Makefile.am @@ -1,56 +1,57 @@ ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. SUBDIRS = admin hacking docdir = $(localstatedir)/www/help/search -doc_DATA=index.en.html index.fr.html index.de.html index.es.html index.ca.html index.pl.html index.pt.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.uk.html \ - tips.en.html tips.fr.html tips.de.html tips.pl.html tips.pt.html tips.es.html tips.ca.html tips.it.html tips.ja.html tips.ru.html tips.sk.html tips.cs.html tips.no.html tips.sv.html tips.el.html tips.uk.html \ - guide.en.html guide.fr.html guide.de.html guide.pl.html guide.pt.html guide.es.html guide.ca.html guide.it.html guide.ja.html guide.ru.html guide.sk.html guide.cs.html guide.no.html guide.sv.html guide.el.html guide.uk.html +doc_DATA=index.en.html index.fr.html index.de.html index.es.html index.ca.html index.pl.html index.pt.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.bg.html index.uk.html \ + tips.en.html tips.fr.html tips.de.html tips.pl.html tips.pt.html tips.es.html tips.ca.html tips.it.html tips.ja.html tips.ru.html tips.sk.html tips.cs.html tips.no.html tips.sv.html tips.el.html tips.bg.html tips.uk.html \ + guide.en.html guide.fr.html guide.de.html guide.pl.html guide.pt.html guide.es.html guide.ca.html guide.it.html guide.ja.html guide.ru.html guide.sk.html guide.cs.html guide.no.html guide.sv.html guide.el.html guide.bg.html guide.uk.html FILESWML = $(wildcard $(srcdir)/*.wml) EXTRA_DIST = $(FILESWML:$(srcdir)/%=%) CLEANFILES = $(doc_DATA) *~ *.tmp LINGUAS = $(shell grep -v '^\#' $(top_srcdir)/po/LINGUAS) MO = $(LINGUAS:%=$(top_builddir)/po/%.gmo) -%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) +%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.bg.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) $(WML) -o\(ALL-LANG_*\)+LANG_EN:$*.en.html \ -o\(ALL-LANG_*\)+LANG_FR:$*.fr.html \ -o\(ALL-LANG_*\)+LANG_DE:$*.de.html \ -o\(ALL-LANG_*\)+LANG_ES:$*.es.html \ -o\(ALL-LANG_*\)+LANG_CA:$*.ca.html \ -o\(ALL-LANG_*\)+LANG_PT:$*.pt.html \ -o\(ALL-LANG_*\)+LANG_PL:$*.pl.html \ -o\(ALL-LANG_*\)+LANG_IT:$*.it.html \ -o\(ALL-LANG_*\)+LANG_JA:$*.ja.html \ -o\(ALL-LANG_*\)+LANG_RU:$*.ru.html \ -o\(ALL-LANG_*\)+LANG_SK:$*.sk.html \ -o\(ALL-LANG_*\)+LANG_CS:$*.cs.html \ -o\(ALL-LANG_*\)+LANG_NO:$*.no.html \ -o\(ALL-LANG_*\)+LANG_SV:$*.sv.html \ -o\(ALL-LANG_*\)+LANG_EL:$*.el.html \ + -o\(ALL-LANG_*\)+LANG_BG:$*.bg.html \ -o\(ALL-LANG_*\)+LANG_UK:$*.uk.html $< for lang in $(LINGUAS); do \ $(PYTHON) $(top_srcdir)/po/i18n_update_wml_target.py $${lang} "$*.$${lang}.html" ; \ done diff --git a/modules/websearch/doc/guide.html.wml b/modules/websearch/doc/guide.html.wml index b15873c6c..30df03380 100644 --- a/modules/websearch/doc/guide.html.wml +++ b/modules/websearch/doc/guide.html.wml @@ -1,1894 +1,1943 @@ ## -*- mode: html; coding: utf-8; -*- ## $Id$ ## ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. #include "cdspage.wml" \ title="Search Guide" \ navbar_name="search-new" \ navtrail_previous_links="/help/>_(Help Central)_ > /help/search/>_(Search Help)_" \ navbar_select="guide"

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Unsere Suchmaschine bietet den heutigen Stand der Web-Such Technologie, die auch von bekannten Suchmaschinen wie zum Beispiel Google angeboten werden. Im Detail unterscheidet sich jedoch die bibliographische Suche von einer Web-Suche. Wir bieten mehrere Erweiterungen an, damit eine komplexe und genau strukturierte Suche möglich wird, inklusiv einer kombinierten Metadatensuche, Volltextsuche und Referenzsuche. Diese Seite stellt Tipps und Tricks vor, die für eine effektive Suche nützlich sind.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect.

Our search engine tries to offer today's typical web searching experience, as gained with popular search engines such as Google. The nature of bibliographic searching differs from that of a web page searching, though. We provide many extensions to enable a complex and precise structured search, including an combined metadata, fulltext and reference search in one go. This page lists several tips and tricks that you may find useful to this effect. + +

Our search engine tries to offer today's typical web searching +experience, as gained with popular search engines such as Google. The nature of bibliographic +searching differs from that of a web page searching, though. We +provide many extensions to enable a complex and precise structured +search, including an combined metadata, fulltext and reference search +in one go. This page lists several tips and tricks that you may find +useful to this effect. +

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Einfache versus erweiterte Suche
    Grundlagen
    Suche nach Wörtern und Wortgruppen
    Boolsche Suche
    Spezielle Zeichen und Notation
    Internationale Zeichen
    Trunkierung
    Strukturierte Metadatensuche
    Regular expressions
    Bereichs-Recherche
    Kombinierte Metadaten-/Volltext-/Zitatsuche
    FAQ
        Wie wähle ich am geschicktesten meinen Suchbegriff
        Wie suche ich nach Publikationen eines bestimmten Autors
        Wie lasse ich Ergebnisse auf eine bestimmte Weise sortieren
        Wie bekomme ich Dokumente anderer Server (Google, SPIRES, KEK)
        Wie kann ich in verknüpften Volltextdateien suchen
        Wie kann ich nach Zitaten suchen

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Frequently asked questions
    Combined metadata/fulltext/citation search
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations

    Simple versus advanced search
    Search guidance
    Searching for words versus phrases
    Boolean queries
    Special characters and punctuation
    International characters
    Word truncation/stemming
    Structured metadata search
    Regular expressions
    Span queries
    Combined metadata/fulltext/citation search
    Frequently asked questions
        How to wisely choose your search terms (speed-wise)
        How to search for publications by a given author
        How to sort according to a certain pattern
        How to get documents from other servers (Google, SPIRES, KEK)
        How to search in fulltext files
        How to search for citations
+ +

+    Simple versus advanced search +
    Search guidance +
    Searching for words versus phrases +
    Boolean queries +
    Special characters and punctuation +
    International characters +
    Word truncation/stemming +
    Structured metadata search +
    Regular expressions +
    Span queries +
    Combined metadata/fulltext/citation search +
    Frequently asked questions +
        How to wisely choose your search terms (speed-wise) +
        How to search for publications by a given author +
        How to sort according to a certain pattern +
        How to get documents from other servers (Google, SPIRES, KEK) +
        How to search in fulltext files +
        How to search for citations +

Simple versus advanced search Simple versus advanced search Einfache versus erweiterte Suche Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search Simple versus advanced search +Simple versus advanced search

The default search mode is simple search that basically provides you with one input box where you can type your query, followed by a possibility to choose one of the common indexes to search within. You would usually simply type the keywords you are interested in and hit return. For example, if you are interested in documents on standard model that are written by (or mention) Ellis, you would type:

and on the search results page you could further add/remove keywords to get more precisely at what you are looking for, as is mentioned below.

The advanced search interface provides you with explicit tools to play with: you can change the matching type from the default word matching to phrase searching or the regular matching; you can use boolean queries in several indexes, etc. For example, to find all the documents written by Ellis, J spelled exactly that way that contain either of the words muon or neutrino in the title and that were published in 2001, you would type:

 

Note that Simple Search can provide you basically the same functionality, if you make use of special syntax that is explained in the text below. The simple-versus-advanced does not refer to the functionality that is being provided but rather to the amount of parametrization you can "tweak". We conform to the common use of the simple/advanced terms as found in other search engines.

Much of what follows will deal with a question on "how a power user would use the simple search interface". Recall that you can always go to the Advanced Search for more query assistance.

Search guidance Search guidance Grundlagen Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance Search guidance +Search guidance

After you submit your query, the search engine will analyze it and will try to always guide you in case no exact match could be found. For example, it would print you a list of closest indexed terms in case of spelling troubles:

Alternative choices will be printed in red. The search engine will similarly warn you when your search terms could not be found, or when they could but your boolean query couldn't be met. The search engine will also silently try to search for alternative forms (e.g. remove punctuation), etc.

Thanks to multiple search stages and the guidance provided at each stage, it is usually sufficient to simple type what you are looking for and see what the system says in return. If you aren't satisfied, you would then add/remove words from your query until the satisfactory reply.

Searching for words versus phrases Searching for words versus phrases Suche nach Wörtern und Wortgruppen Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases Searching for words versus phrases +Searching for words versus phrases

The default search mode is a search for words. This means that any whitespace you type is not significant, but is rather interpreted to mean "add an automatic boolean AND between words", like Google does. For example, to find all records that contain both the word ellis and the word muon anywhere in the record, type:

The whitespace would be significant if you include it within quotes. There are two phrase searching modes:
  1. The double quotes instruct the search engine to search for exact phrase. This phrase search mode will match if and only if the given metadata field is exactly equal to the input pattern. For example, to find all documents written by Ellis, J spelled exactly that way, type:
  2. The single quotes instruct the search engine to search for partial phrase. Unlike the exact phrase search, this mode allows for an extra text appearing before/after given pattern. This is somewhat similar to the "phrase search mode" common on Google and other fulltext engines that search for phrase expressions inside Web pages. For example, to find all the titles containing the expression muon decay regardless of the position of the expression in the title, type:
    Now you see how to search for an author spelled sometimes as Ellis, J and sometimes as Ellis, Jonathan Richard (and other authors, such as De Lellis, Jim) at the same time:
    (See also our specific author searching tips.)

The difference between exact and partial phrase searching modes may not be obvious upon first look. While the latter is more similar to what ``phrase search'' usually means in the context of web page search engines, the former one is usually an order of magnitude faster if you know the precise values you are looking for.

Another interesting searching mode besides the word and phrase searches is the regular expression search, introduced by slashes instead of quotes. For example, the above partial phrase query 'muon decay' is fully equivalent to the regular expression query /muon decay/. The regular expression syntax is very powerful and permits you to construct very complex queries. For more information, please consult the regular expression section of this guide.

Boolean queries Boolean queries Boolsche Suche Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries Boolean queries +Boolean queries

We have already seen how whitespace adds a silent boolean AND in the search for words. The other boolean operators include:
+
AND
ellis +muon matches all records that contain both the word ellis and the the word muon
ellis muon ditto, syntactic sugar
ellis and muon ditto, syntactic sugar
-
NOT
ellis -muon matches all records that contain the word ellis but that do not contain the word muon
ellis not muon ditto, syntactic sugar
|
OR
ellis |muon matches all records that contain at least one of the words
ellis or muon ditto, syntactic sugar

Logical operations are automatically chained from left to right. For example, if you want to search for documents written by Ellis on muons or kaons, write:

which looks for (muon or kaon) and ellis. Note that this gives different results from:
which would search for (ellis and muon) or kaon.

The left-to-right chaining behaviour permits you to easily refine your search by adding/removing words with and/not or +/- operators. For example, to exclude the documents on decay from the above search, append -decay:

to get a refined list. Keep adding/removing terms until you are satisfied.

Special characters and punctuation Special characters and punctuation Spezielle Zeichen und Notation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation Special characters and punctuation +Special characters and punctuation

When indexing words, an attention is paid to index it both with and without punctuation, so that you should be able to search for terms containing special characters, such as C++, verbatim:

For example, to find records containing the LaTeX expression $e^{+}e^{-}$ in the title, type:
For example, to find document with the report number hep-ph/0204133, type:
Note that the search is case-insensitive:

International characters International characters Internationale Zeichen International characters International characters International characters International characters International characters International characters International characters International characters International characters International characters International characters International characters International characters +International characters

The search engine works with Unicode UTF-8 so you can type your query strings in any language stored in the database. For example, to find the documents written by (or on) Пушкин, type:

Note that you don't have to type accents to find accented results. For example, type Lemaitre to find papers by Lemaître:
" "1" "

IMPORTANT NOTE
Currently, words that include accented characters can only be retrieved by entering accented characters in the query.
">

Word truncation/stemming Word truncation/stemming Trunkierung Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming Word truncation/stemming +Word truncation/stemming

The word truncation is supported via asterisk (*) wildcard character. The wildcard instructs the search engine to match any number of characters in that place. For example, to find records that contain words muon, muons, muonic etc, type:

The wildcard query works both in prefix and infix position. For example, to get all the words that start by CERN-TH and end by 31, type:
Note that the wildcard will be ignored if you try to apply it to very short words, such as a*:
The wildcard character can be used also in the phrase searching mode. For example, to find all the documents whose title starts by "Neutrino mass", type:
Recall that we have introduced exact and partial phrase search modes. Actually, a partial phrase search mode launches an exact search enclosed within wildcards: we could say that 'foo bar baz' equals to "*foo bar baz*". Now you can see why the partial phrase search is slow: due to the usage of two asterisks in front and after the text, each and every title in the database has to be looked up to determine whether it matches or not. (There are currently no partial phrase indexes.)

Structured metadata search Structured metadata search Strukturierte Metadatensuche Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search Structured metadata search +Structured metadata search

Searching within various bibliograpic fields (such as title, author) is supported via Google's "site:" like syntax. If a search term is preceded by a field name and a colon, then the term is searched for inside this field only. For example, to find documents containing the word ellis within author index, type:

To select documents written by Ellis that contain words like muon, muons, muonic within title, type:
To select documents written by the NA60 experiment from the year 2001, type:
The most common fields you may want to use are author, title, reportnumber, abstract, keyword, year, experiment, fulltext, and reference.

Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions Regular expressions +Regular expressions

The regular expression searching mode is mostly for the power users acquainted with the traditional Unix/POSIX regexp syntax. In the Simple Search interface you can trigger it by using slashes instead of quotes:

while in the Advanced Search interface you can select the matching type explicitely by using the selection box menu. The above example will find all the titles that start by the letter E, followed by any number of any characters, and end by the letter s.

Another example could be an author search for an author expressed in the database as either Ellis, J or Ellis, John:

The regular expression search enables you to formulate very specific word proximity queries. For example, let us find all titles containing words dense and matter that are separated by at most one word that doesn't contain the letter l:

Note that you can also use character intervals such as [a-k] and occurrence counts such as {3}. For example, let us find all preprints that do not follow the year cataloguing policy, that is YYYY to denote year, optionally followed by ? or by another -YYYY:

You can use also character classes such [:alnum:], so that the above query is equivalent to:

To learn more about POSIX regular expressions, please consult the Wikipedia regexp article and the MySQL regexp documentation.

Span queries Span queries Bereichs-Recherche Span queries Span queries Span queries Span queries Span queries Span queries Span queries Span queries Span queries Span queries Span queries Span queries Span queries +Span queries

The span query is provided via a -> sign. For example, to search for all documents on muon decay published between 1983 and 1992, type:

To find all documents by authors with names ranging from Ellis, J to Ellis, Qqq, type:

Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Kombinierte Metadaten-/Volltext-/Zitatsuche Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search Combined metadata/fulltext/citation search +Combined metadata/fulltext/citation search

All the syntax mentioned above can be combined together in one query. For example, to find documents that have the word ellis inside author fields, that do not contain words like muon, 'muonic' etc in any field, that contain the phrase (or the substring, to be more precise) 'dense quark matter' inside abstract fields, and that were published in year starting by digits '200', type:

Note that the default "any field" global index does contain only the metadata terms, not the citation nor fulltext terms. You have to explicitely mention fulltext or reference index to search there. For example, to find the term Higgs in either metadata, references or fulltext files, type:
This permits an interesting combination of metadata, fulltext and citation search in the same query. For example, to get all documents written by Lin whose fulltext files contain the words Schwarzschild and AdS, and who cite journal Adv. Theor. Math. Phys., type:
" "1" "

IMPORTANT NOTE
Currently, fulltext files and references are not fully searchable on the CERN site. Assumed operational time: Q1 2007.
">

Frequently asked questions Frequently asked questions FAQ Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions Frequently asked questions +Frequently asked questions

How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) Wie wähle ich am geschicktesten meinen Suchbegriff How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) How to wisely choose your search terms (speed-wise) +How to wisely choose your search terms (speed-wise)

  • Whenever possible, prefer word searches instead of phrase searches. Search rather for black hole than for "black hole".
  • Avoid common terms such as and, of, or CERN.
  • If you are searching for a specific metadata information, such as a report number, choose corresponding index.
  • If you are looking for a specific document collection, such as Theses, choose the Theses collection first, and start your search from there.

How to search for publications by a given author How to search for publications by a given author Wie suche ich nach Publikationen eines bestimmten Autors How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author How to search for publications by a given author +How to search for publications by a given author

You can search for an author in many ways, each having its own advantages and disadvantages.

  1. First of all, note that searching for words isn't usually what you would want here. If you choose to search for the words Ellis J within the author index, it means that two queries (for the words Ellis and J) are effected first and a boolean AND is performed next:

    Such a query would match also a document whose first author is Ellis, R and the second author Finch, A J, which is probably not what you wanted. While the search is very fast and you would have found the results for the author you were looking for, such a technique could have returned you many false positives, as the one cited above. Instead of searching for words, a more suitable technique to apply in this case is to search for phrases which will permit you to achieve higher search precisions.

  2. The author names are usually stored in a form containing initials only, such as Ellis, J. To get the list of publications of an author whose name is spelled exactly that way, type:

    This way of searching gives you the highest precision and no false positives. (Assuming there are no other authors whose names are spelled Ellis, J, an assumption that is often false*.) The search is very fast.

  3. Sometimes an author's first name may be spelled abbreviated on some documents (such as Ellis, J) and sometimes full on others (such as Ellis, John; eventually also with the middle name: Ellis, John Rolfe). To get the list of publications for all these forms at the same time, you could use a boolean OR query:

    This way of searching still keeps the highest precision and no false positives. (Assuming there are no other authors whose names are spelled Ellis, J or Ellis, John, an assumption that is often false*.) The search is fast.

  4. To match all of the above forms in a single search term, you can try to use a wildcard query:

    It would match all author names that start by the text Ellis, J, i.e. not only the wanted forms Ellis, J and Ellis, John, but also Ellis, Jim, or Ellis, John Rolfe, or Ellis, Jonathan Richard.

    This way of searching returns you more results, which may be suitable in case you don't know how the names are spelled in the database. But you also risk the eventuality of getting false positives. The search is relatively fast.

  5. Yet another, the most general alternative is to use a partial phrase matching:

    It would find not only all the authors mentioned above, but also the ones whose names contain the expression Ellis, J anywhere inside the name, such as De Lellis, Jim. It thus gives you the largest possible number of hits at the largest risk of false positives. The search is relatively slow.

    (Note though that this way of searching may be very handy in case of compound family names such Pepe-Altarelli, M or 't Hooft, G where a casual user query for Hooft, G would match the wanted author, unlike the methods mentioned above.)

  6. Finally, let us note that you can use the regular expression syntax to construct any complex author query. A simple example is to search for an author expressed in the database as either Ellis, J or Ellis, John:
    Please consult regular expression searching tips to know more about regular expression search possibilities.

*NOTE: If you produce your own list of publications and you notice that sometimes your first name is spelled abbreviated and sometimes in full, or if you want to identify your publications among several authors with the same abbreviation, please contact the administrators of so that they could work with you on inputting a consistently spelled and properly formatted first name everywhere. Only the consistent database content will ensure a proper author searching behaviour.

How to sort according to a certain pattern How to sort according to a certain pattern Wie lasse ich Ergebnisse auf eine bestimmte Weise sortieren How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern How to sort according to a certain pattern +How to sort according to a certain pattern

You may select a certain field according to which sort the search results, for example to sort the results by main title. However, sometimes you may want to sort by a report number and it happens that your documents have several of them. For example, the report numbers hep-ph/0204140, CERN-TH-2002-069 and RM3-TH-02-4 all denote the same document. Now if you sort your search results set containing this document, the system will take into consideration the first report number, that may be either of these three. Sometimes you may want to classify this document under its hep-ph number, sometimes under its CERN number, depending on whether you produce a list of CERN or hep-ph publications. How can you influence the search engine to prefer one report number rather than the other?

In other words, the search engine by default answers a query like "sort by first author" or "sort by first report number", but sometimes you may want to ask the search engine to "sort by first report number that starts by the text CERN-". The latter possibility is available via a "silent" sort parameter called sp (for "sort pattern") that sorts preferentially according to the given textual pattern if they can be found. The parameter is "silent" in a way that it is not present in the search interface, you have to add it manually to your search URL. For example, to get all CERN-TH publications of the year 2001 sorted by their CERN-TH numbers, you would search for CERN-TH-2001* within reportnumber index, and on the search results page, being satisfied with the results, you would add &sp=CERN-TH to the URL to sort the results preferentially by CERN-TH report numbers, to get a nicely sorted list of all CERN-TH 2001 publications.

How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) Wie bekomme ich Dokumente anderer Server (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) How to get documents from other servers (Google, SPIRES, KEK) +How to get documents from other servers (Google, SPIRES, KEK)

On the search results page, links to other servers like Google, SPIRES or KEK are automatically proposed in a box entitled "Try your search on". You can simply click on the proposed links to run your query on these search engines.

Note that the links aren't printed if the search engine doesn't support it. For example, SPIRES or KEK cannot search for terms within "any field", so we don't link to them in these cases. " "1" "

Note also that KEK has scanned a lot of old CERN reports. If you find that we don't have fulltext to some old CERN report, it may be worthy to look there. For example, search for CERN ISR-MA/73-17 in our system:

and you will see that CDS contains the document in the archives only, i.e. not in a electronic format. However, if you follow the proposed KEK search link, you will see that KEK proposes "scanned images" that you can download. ">

How to search in fulltext files How to search in fulltext files Wie kann ich in verknüpften Volltextdateien suchen How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files How to search in fulltext files +How to search in fulltext files

If a metadata record contains some associated fulltext files, tries to extract the textual information from the files and index it into a separate fulltext index. To search for all records that contain the term e- in their fulltext files, type:

Recall that fulltext words aren't included in the default global ``any field'' index, but that you may freely combine a fulltext and metadata search. For example, to find all articles written by Ellis that contain the word muon either in the metadata or in the fulltext, type:
" "1" "

IMPORTANT NOTE
Currently, the fulltext indexes aren't available on the CERN site. Assumed operational time: Q1 2007. Please use the old fulltext interface instead in the meantime.
">

How to search for citations How to search for citations Wie kann ich nach Zitaten suchen How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations How to search for citations +How to search for citations

If a metadata record contains an associated fulltext file, tries to extract references automatically from that file and index them into a separate reference index. To search for all records that cite Ellis in their reference lists, type:

To search for all records that cite preprint hep-ph/0103062 in their reference lists, type:
To search for all records that cite an article from Giddings and Ross published in Physical Review D in volume 61 in year 2000, type:
Recall that citation terms aren't included in the default global "any field" index, but that you may freely combine a citation search with a metadata search. For example, to find all articles on standard model that aren't written by Ellis but that do cite him, type:
" "1" "

IMPORTANT NOTE
Currently, the reference indexes aren't available on the CERN site. The citation search is therefore impossible at the moment. Assumed operational time: Q1 2007.
"> diff --git a/modules/websearch/doc/index.html.wml b/modules/websearch/doc/index.html.wml index 2e41247cd..c18a00c2c 100644 --- a/modules/websearch/doc/index.html.wml +++ b/modules/websearch/doc/index.html.wml @@ -1,154 +1,161 @@ ## -*- mode: html; coding: utf-8; -*- ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. #include "cdspage.wml" \ title="_(Search Help)_" \ navbar_name="search-new" \ navtrail_previous_links="/help/>_(Help Central)_" \ navbar_select="tips"

Find out all about searching Trouvez tout sur la recherche de Lernen Sie alles über den Suchemöglichkeiten beim Find out all about searching Trobeu tota l'ajuda sobre la cerca Find out all about searching Descubra tudo sobre buscas no Tutto quanto vi serve per poter ricercare in Find out all about searching Tu nájdete všetko čo sa týka hľadania na serveri Zde naleznete vše co se týče vyhledávání na serveru Finn ut alt om søking i Finn ut allt om sökning av Find out all about searching Find out all about searching Find out all about searching + Find out all about searching :

_(Search Tips)_
This page presents you with useful tips and techniques in order to help you use the site to the full. Cette page vous présente des suggestions et des techniques qui puissent vous être utiles afin d'utiliser le site de à plein. Diese Seite zeigt Ihnen alle nützliche Tipps und Techniken die beim zur Verfügung stehen. This page presents you with useful tips and techniques in order to help you use the site to the full. Aquesta pàgina us presenta suggeriments i tècniques que us poden resultar útils per usar en totes les seves possibilitats. This page presents you with useful tips and techniques in order to help you use the site to the full. Esta página oferece dicas úteis e técnicas para ajuda-lo a usar o sítio do em toda sua potencialidade. Questa pagina vi fornisce utili consigli per servirvi al meglio . This page presents you with useful tips and techniques in order to help you use the site to the full. Táto stránka Vám ponúka užitočné tipy a triky ktoré Vám umožnia plne využívať možností . Tato stránka Vám nabízí užitečné tipy a triky které Vám umožní plně využívat možností . Denne siden presenter nyttige tips og teknikker slik at du lettere kan få fullt utbytte av sine sider. Denna sida ger dig användbara tips och tekniker för att hjälpa dig att till fullo använda denna webbplats som erbjuder dig. This page presents you with useful tips and techniques in order to help you use the site to the full. This page presents you with useful tips and techniques in order to help you use the site to the full. This page presents you with useful tips and techniques in order to help you use the site to the full. + + This page presents you with useful tips and techniques in order to + help you use the site to the full. +
Search Guide Guide de Recherche Search Guide Search Guide Guia de Cerca Search Guide Guia de buscas Search Guide Search Guide Search Guide Search Guide Search Guide Search Guide Search Guide Search Guide Search Guide + Search Guide
Full guide on how to search Le guide complet sur comment rechercher sur Full guide on how to search Full guide on how to search Guia completa de com cercar a l' Full guide on how to search Guia completo de como realizar buscas no Full guide on how to search Full guide on how to search Full guide on how to search Full guide on how to search Full guide on how to search Full guide on how to search Full guide on how to search Full guide on how to search Full guide on how to search + Full guide on how to search .
diff --git a/modules/websearch/lib/websearch_templates.py b/modules/websearch/lib/websearch_templates.py index ac8e7af21..dbb7032f3 100644 --- a/modules/websearch/lib/websearch_templates.py +++ b/modules/websearch/lib/websearch_templates.py @@ -1,2466 +1,2467 @@ # -*- coding: utf-8 -*- ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. import urllib import time import cgi import gettext import string import locale import sre from invenio.config import * from invenio.dbquery import run_sql from invenio.messages import gettext_set_language from invenio.search_engine_config import * from invenio.urlutils import make_canonical_urlargd, drop_default_urlargd, a_href def get_fieldvalues(recID, tag): """Return list of field values for field TAG inside record RECID. FIXME: should be imported commonly for search_engine too.""" out = [] if tag == "001___": # we have asked for recID that is not stored in bibXXx tables out.append(str(recID)) else: # we are going to look inside bibXXx tables digit = tag[0:2] bx = "bib%sx" % digit bibx = "bibrec_bib%sx" % digit query = "SELECT bx.value FROM %s AS bx, %s AS bibx WHERE bibx.id_bibrec='%s' AND bx.id=bibx.id_bibxxx AND bx.tag LIKE '%s'" \ "ORDER BY bibx.field_number, bx.tag ASC" % (bx, bibx, recID, tag) res = run_sql(query) for row in res: out.append(row[0]) return out class Template: # This dictionary maps CDS Invenio language code to locale codes (ISO 639) tmpl_localemap = { + 'bg': 'bg_BG', 'ca': 'ca_ES', 'de': 'de_DE', 'el': 'el_GR', 'en': 'en_US', 'es': 'es_ES', 'pt': 'pt_BR', 'fr': 'fr_FR', 'it': 'it_IT', 'ru': 'ru_RU', 'sk': 'sk_SK', 'cs': 'cs_CZ', 'no': 'no_NO', 'sv': 'sv_SE', 'uk': 'uk_UA', 'ja': 'ja_JA', 'pl': 'pl_PL' } tmpl_default_locale = "en_US" # which locale to use by default, useful in case of failure # Type of the allowed parameters for the web interface for search results search_results_default_urlargd = { 'cc': (str, cdsname), 'c': (list, []), 'p': (str, ""), 'f': (str, ""), 'rg': (int, 10), 'sf': (str, ""), 'so': (str, "d"), 'sp': (str, ""), 'rm': (str, ""), 'of': (str, "hb"), 'ot': (list, []), 'as': (int, 0), 'p1': (str, ""), 'f1': (str, ""), 'm1': (str, ""), 'op1':(str, ""), 'p2': (str, ""), 'f2': (str, ""), 'm2': (str, ""), 'op2':(str, ""), 'p3': (str, ""), 'f3': (str, ""), 'm3': (str, ""), 'sc': (int, 0), 'jrec': (int, 0), 'recid': (int, -1), 'recidb': (int, -1), 'sysno': (str, ""), 'id': (int, -1), 'idb': (int, -1), 'sysnb': (str, ""), 'action': (str, "search"), 'action_search': (str, ""), 'action_browse': (str, ""), 'd1y': (int, 0), 'd1m': (int, 0), 'd1d': (int, 0), 'd2y': (int, 0), 'd2m': (int, 0), 'd2d': (int, 0), 'ap': (int, 1), 'verbose': (int, 0), } # ...and for search interfaces search_interface_default_urlargd = { 'as': (int, 0), 'verbose': (int, 0)} def build_search_url(self, known_parameters={}, **kargs): """ Helper for generating a canonical search url. 'known_parameters' is the list of query parameters you inherit from your current query. You can then pass keyword arguments to modify this query. build_search_url(known_parameters, of="xm") The generated URL is absolute. """ parameters = {} parameters.update(known_parameters) parameters.update(kargs) # Now, we only have the arguments which have _not_ their default value parameters = drop_default_urlargd(parameters, self.search_results_default_urlargd) # Asking for a recid? Return a /record/ URL if 'recid' in parameters: target = "%s/record/%d" % (weburl, parameters['recid']) del parameters['recid'] target += make_canonical_urlargd(parameters, self.search_results_default_urlargd) return target return "%s/search%s" % (weburl, make_canonical_urlargd(parameters, self.search_results_default_urlargd)) def build_search_interface_url(self, known_parameters={}, **kargs): """ Helper for generating a canonical search interface URL.""" parameters = {} parameters.update(known_parameters) parameters.update(kargs) c = parameters['c'] del parameters['c'] # Now, we only have the arguments which have _not_ their default value if c and c != cdsname: base = weburl + '/collection/' + urllib.quote(c) else: base = weburl return base + make_canonical_urlargd(parameters, self.search_results_default_urlargd) def tmpl_record_page_header_content(self, req, recid, ln): """ Provide extra information in the header of /record pages """ _ = gettext_set_language(ln) title = get_fieldvalues(recid, "245__a") if title: title = _("Record #%d: %s") %(recid, title[0]) else: title = _("Record #%d") % recid keywords = ', '.join(get_fieldvalues(recid, "6531_a")) description = ' '.join(get_fieldvalues(recid, "520__a")) description += "\n" description += '; '.join(get_fieldvalues(recid, "100__a") + get_fieldvalues(recid, "700__a")) return [cgi.escape(x, True) for x in (title, description, keywords)] def tmpl_navtrail_links(self, as, ln, dads): """ Creates the navigation bar at top of each search page (*Home > Root collection > subcollection > ...*) Parameters: - 'as' *bool* - Should we display an advanced search box? - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'separator' *string* - The separator between two consecutive collections - 'dads' *list* - A list of parent links, eachone being a dictionary of ('name', 'longname') """ out = [] for url, name in dads: out.append(a_href(name, href=self.build_search_interface_url(c=url, as=as, ln=ln), _class='navtrail')) return ' > '.join(out) def tmpl_webcoll_body(self, ln, collection, te_portalbox, searchfor, np_portalbox, narrowsearch, focuson, instantbrowse, ne_portalbox): """ Creates the body of the main search page. Parameters: - 'ln' *string* - language of the page being generated - 'collection' - collection id of the page being generated - 'te_portalbox' *string* - The HTML code for the portalbox on top of search - 'searchfor' *string* - The HTML code for the search options - 'np_portalbox' *string* - The HTML code for the portalbox on bottom of search - 'searchfor' *string* - The HTML code for the search categories (left bottom of page) - 'focuson' *string* - The HTML code for the "focuson" categories (right bottom of page) - 'ne_portalbox' *string* - The HTML code for the bottom of the page """ if not narrowsearch: narrowsearch = instantbrowse body = '''
%(searchfor)s %(np_portalbox)s ''' % { 'weburl' : weburl, 'searchfor' : searchfor, 'np_portalbox' : np_portalbox, 'narrowsearch' : narrowsearch } if focuson: body += """""" body += """
%(narrowsearch)s""" + focuson + """
%(ne_portalbox)s
""" % {'ne_portalbox' : ne_portalbox} return body def tmpl_portalbox(self, title, body): """Creates portalboxes based on the parameters Parameters: - 'title' *string* - The title of the box - 'body' *string* - The HTML code for the body of the box """ out = """
%(title)s
%(body)s
""" % {'title' : title, 'body' : body} return out def tmpl_searchfor_simple(self, ln, collection_id, collection_name, record_count, middle_option): """Produces simple *Search for* box for the current collection. Parameters: - 'ln' *string* - The language to display - 'header' *string* - header of search form - 'middle_option' *string* - HTML code for the options (any field, specific fields ...) """ # load the right message language _ = gettext_set_language(ln) out = ''' ''' argd = drop_default_urlargd({'ln': ln, 'cc': collection_id, 'sc': 1}, self.search_results_default_urlargd) # Only add non-default hidden values for field, value in argd.items(): out += self.tmpl_input_hidden(field, value) header = _("Search %s records for:") % \ self.tmpl_nbrecs_info(record_count, "","") asearchurl = self.build_search_interface_url(c=collection_id, as=1, ln=ln) # print commentary start: out += ''' ''' % {'ln' : ln, 'weburl' : weburl, 'asearch' : a_href(_('Advanced Search'), href=asearchurl), 'header' : header, 'middle_option' : middle_option, 'msg_search' : _('Search'), 'msg_browse' : _('Browse'), 'msg_search_tips' : _('Search Tips')} return out def tmpl_searchfor_advanced(self, ln, # current language collection_id, collection_name, record_count, middle_option_1, middle_option_2, middle_option_3, searchoptions, sortoptions, rankoptions, displayoptions, formatoptions ): """ Produces advanced *Search for* box for the current collection. Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'ssearchurl' *string* - The URL to simple search form - 'header' *string* - header of search form - 'middle_option_1' *string* - HTML code for the first row of options (any field, specific fields ...) - 'middle_option_2' *string* - HTML code for the second row of options (any field, specific fields ...) - 'middle_option_3' *string* - HTML code for the third row of options (any field, specific fields ...) - 'searchoptions' *string* - HTML code for the search options - 'sortoptions' *string* - HTML code for the sort options - 'rankoptions' *string* - HTML code for the rank options - 'displayoptions' *string* - HTML code for the display options - 'formatoptions' *string* - HTML code for the format options """ # load the right message language _ = gettext_set_language(ln) out = ''' ''' argd = drop_default_urlargd({'ln': ln, 'as': 1, 'cc': collection_id, 'sc': 1}, self.search_results_default_urlargd) # Only add non-default hidden values for field, value in argd.items(): out += self.tmpl_input_hidden(field, value) header = _("Search %s records for:") % \ self.tmpl_nbrecs_info(record_count, "","") ssearchurl = self.build_search_interface_url(c=collection_id, as=0, ln=ln) out += ''' ''' % {'ln' : ln, 'weburl' : weburl, 'ssearch' : a_href(_("Simple Search"), href=ssearchurl), 'header' : header, 'matchbox_m1' : self.tmpl_matchtype_box('m1', ln=ln), 'middle_option_1' : middle_option_1, 'andornot_op1' : self.tmpl_andornot_box('op1', ln=ln), 'matchbox_m2' : self.tmpl_matchtype_box('m2', ln=ln), 'middle_option_2' : middle_option_2, 'andornot_op2' : self.tmpl_andornot_box('op2', ln=ln), 'matchbox_m3' : self.tmpl_matchtype_box('m3', ln=ln), 'middle_option_3' : middle_option_3, 'msg_search' : _("Search"), 'msg_browse' : _("Browse"), 'msg_search_tips' : _("Search Tips")} if (searchoptions): out += """""" % { 'searchheader' : _("Search options:"), 'searchoptions' : searchoptions } out += """ """ % { 'added' : _("Added since:"), 'until' : _("until:"), 'date_added' : self.tmpl_inputdate("d1", ln=ln), 'date_until' : self.tmpl_inputdate("d2", ln=ln), 'msg_sort' : _("Sort by:"), 'msg_display' : _("Display results:"), 'msg_format' : _("Output format:"), 'sortoptions' : sortoptions, 'rankoptions' : rankoptions, 'displayoptions' : displayoptions, 'formatoptions' : formatoptions } return out def tmpl_matchtype_box(self, name='m', value='', ln='en'): """Returns HTML code for the 'match type' selection box. Parameters: - 'name' *string* - The name of the produced select - 'value' *string* - The selected value (if any value is already selected) - 'ln' *string* - the language to display """ # load the right message language _ = gettext_set_language(ln) out = """ """ % {'name' : name, 'sela' : self.tmpl_is_selected('a', value), 'opta' : _("All of the words:"), 'selo' : self.tmpl_is_selected('o', value), 'opto' : _("Any of the words:"), 'sele' : self.tmpl_is_selected('e', value), 'opte' : _("Exact phrase:"), 'selp' : self.tmpl_is_selected('p', value), 'optp' : _("Partial phrase:"), 'selr' : self.tmpl_is_selected('r', value), 'optr' : _("Regular expression:") } return out def tmpl_is_selected(self, var, fld): """ Checks if *var* and *fld* are equal, and if yes, returns ' selected'. Useful for select boxes. Parameters: - 'var' *string* - First value to compare - 'fld' *string* - Second value to compare """ if var == fld: return " selected" else: return "" def tmpl_andornot_box(self, name='op', value='', ln='en'): """ Returns HTML code for the AND/OR/NOT selection box. Parameters: - 'name' *string* - The name of the produced select - 'value' *string* - The selected value (if any value is already selected) - 'ln' *string* - the language to display """ # load the right message language _ = gettext_set_language(ln) out = """ """ % {'name' : name, 'sela' : self.tmpl_is_selected('a', value), 'opta' : _("AND"), 'selo' : self.tmpl_is_selected('o', value), 'opto' : _("OR"), 'seln' : self.tmpl_is_selected('n', value), 'optn' : _("AND NOT") } return out def tmpl_inputdate(self, name, ln, sy = 0, sm = 0, sd = 0): """ Produces *From Date*, *Until Date* kind of selection box. Suitable for search options. Parameters: - 'name' *string* - The base name of the produced selects - 'ln' *string* - the language to display """ # load the right message language _ = gettext_set_language(ln) box = """ """ # month box += """ """ # year box += """ """ return box def tmpl_narrowsearch(self, as, ln, type, father, has_grandchildren, sons, display_grandsons, grandsons): """ Creates list of collection descendants of type *type* under title *title*. If as==1, then links to Advanced Search interfaces; otherwise Simple Search. Suitable for 'Narrow search' and 'Focus on' boxes. Parameters: - 'as' *bool* - Should we display an advanced search box? - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'title' *string* - The title of the produced box - 'type' *string* - The type of the produced box (virtual collections or normal collections) - 'father' *collection* - The current collection - 'has_grandchildren' *bool* - If the current collection has grand children - 'sons' *list* - The list of the sub-collections (first level) - 'display_grandsons' *bool* - If the grand children collections should be displayed (2 level deep display) - 'grandsons' *list* - The list of sub-collections (second level) """ # load the right message language _ = gettext_set_language(ln) title = {'r': _("Narrow by collection:"), 'v': _("Focus on:")}[type] if has_grandchildren: style_prolog = "" style_epilog = "" else: style_prolog = "" style_epilog = "" out = """""" % {'title' : title} # iterate through sons: i = 0 for son in sons: out += """""" % {'name' : son.name } else: out += """ """ % {'name' : son.name } out += """""" i += 1 out += "
%(title)s
""" if type=='r': if son.restricted_p() and son.restricted_p() != father.restricted_p(): out += """ %(link)s%(recs)s """ % { 'link': a_href(style_prolog + son.get_name(ln) + style_epilog, href=self.build_search_interface_url(c=son.name, ln=ln, as=as)), 'recs' : self.tmpl_nbrecs_info(son.nbrecs, ln=ln)} if son.restricted_p(): out += """ [%(msg)s]""" % { 'msg' : _("restricted") } if display_grandsons and len(grandsons[i]): # iterate trough grandsons: out += """
""" for grandson in grandsons[i]: out += """ %(link)s%(nbrec)s """ % { 'link': a_href(grandson.get_name(ln), href=self.build_search_interface_url(c=grandson.name, ln=ln, as=as)), 'nbrec' : self.tmpl_nbrecs_info(grandson.nbrecs, ln=ln)} out += """
" return out def tmpl_nbrecs_info(self, number, prolog=None, epilog=None, ln=cdslang): """ Return information on the number of records. Parameters: - 'number' *string* - The number of records - 'prolog' *string* (optional) - An HTML code to prefix the number (if **None**, will be '(') - 'epilog' *string* (optional) - An HTML code to append to the number (if **None**, will be ')') """ if number is None: return '' if prolog is None: prolog = ''' (''' if epilog is None: epilog = ''')''' return prolog + self.tmpl_nice_number(number, ln) + epilog def tmpl_box_restricted_content(self, ln): """ Displays a box containing a *restricted content* message Parameters: - 'ln' *string* - The language to display """ # load the right message language _ = gettext_set_language(ln) return _("The contents of this collection is restricted.") def tmpl_box_no_records(self, ln): """ Displays a box containing a *no content* message Parameters: - 'ln' *string* - The language to display """ # load the right message language _ = gettext_set_language(ln) return _("This collection does not contain any document yet.") def tmpl_instant_browse(self, as, ln, recids, more_link = None): """ Formats a list of records (given in the recids list) from the database. Parameters: - 'as' *int* - Advanced Search interface or not (0 or 1) - 'ln' *string* - The language to display - 'recids' *list* - the list of records from the database - 'more_link' *string* - the "More..." link for the record. If not given, will not be displayed """ # load the right message language _ = gettext_set_language(ln) body = '''''' for recid in recids: body += ''' ''' % {'date': recid['date'], 'body': recid['body'] } body += "
%(date)s %(body)s
" if more_link: body += '
' + \ a_href('[>> %s]' % _("more"), href=more_link) + \ '
' return '''
%(header)s
%(body)s
''' % {'header' : _("Latest additions:"), 'body' : body, } def tmpl_searchwithin_select(self, ln, fieldname, selected, values): """ Produces 'search within' selection box for the current collection. Parameters: - 'ln' *string* - The language to display - 'fieldname' *string* - the name of the select box produced - 'selected' *string* - which of the values is selected - 'values' *list* - the list of values in the select """ out = '""" return out def tmpl_select(self, fieldname, values, selected=None, css_class=''): """ Produces a generic select box Parameters: - 'css_class' *string* - optional, a css class to display this select with - 'fieldname' *list* - the name of the select box produced - 'selected' *string* - which of the values is selected - 'values' *list* - the list of values in the select """ if css_class != '': class_field = ' class="%s"' % css_class else: class_field = '' out = '""" return out def tmpl_record_links(self, weburl, recid, ln): """ Displays the *More info* and *Find similar* links for a record Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'recid' *string* - the id of the displayed record """ # load the right message language _ = gettext_set_language(ln) out = '''
%(detailed)s - %(similar)s''' % { 'detailed': a_href(_("Detailed record"), _class="moreinfo", href=self.build_search_url(recid=recid, ln=ln)), 'similar': a_href(_("Similar records"), _class="moreinfo", href=self.build_search_url(p="recid:%d" % recid, rm='wrd', ln=ln))} if cfg_experimental_features: out += ''' - %s ''' % \ a_href(_("Cited by"), _class="moreinfo", href=self.build_search_url(p='recid:%d' % recid, rm='cit', ln=ln)) return out def tmpl_record_body(self, weburl, titles, authors, dates, rns, abstracts, urls_u, urls_z, ln): """ Displays the "HTML basic" format of a record Parameters: - 'weburl' *string* - The base URL for the site - 'authors' *list* - the authors (as strings) - 'dates' *list* - the dates of publication - 'rns' *list* - the quicknotes for the record - 'abstracts' *list* - the abstracts for the record - 'urls_u' *list* - URLs to the original versions of the notice - 'urls_z' *list* - Not used """ out = "" for title in titles: out += "%(title)s " % { 'title' : cgi.escape(title) } if authors: out += " / " for author in authors[:cfg_author_et_al_threshold]: out += '%s; ' % \ a_href(cgi.escape(author), href=self.build_search_url(p=author, f='author', ln=ln)) if len(authors) > cfg_author_et_al_threshold: out += "et al" for date in dates: out += " %s." % cgi.escape(date) for rn in rns: out += """ [%(rn)s]""" % {'rn' : cgi.escape(rn)} for abstract in abstracts: out += "
%(abstract)s [...]" % {'abstract' : cgi.escape(abstract[:1+string.find(abstract, '.')]) } for idx in range(0,len(urls_u)): out += """
%(name)s""" % { 'url' : urls_u[idx], 'name' : urls_u[idx] } return out def tmpl_search_in_bibwords(self, p, f, ln, nearest_box): """ Displays the *Words like current ones* links for a search Parameters: - 'p' *string* - Current search words - 'f' *string* - the fields in which the search was done - 'nearest_box' *string* - the HTML code for the "nearest_terms" box - most probably from a create_nearest_terms_box call """ # load the right message language _ = gettext_set_language(ln) out = "

%(words)s %(p)s " % { 'words' : _("Words nearest to"), 'p' : p, } if f: out += "%(inside)s %(f)s " %{ 'inside' : _("inside"), 'f' : f, } out += _("in any collection are:") + "
" out += nearest_box return out def tmpl_nearest_term_box(self, p, ln, f, terminfo, intro): """ Displays the *Nearest search terms* box Parameters: - 'p' *string* - Current search words - 'f' *string* - a collection description (if the search has been completed in a collection) - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'terminfo': tuple (term, hits, argd) for each near term - 'intro' *string* - the intro HTML to prefix the box with """ out = '''''' for term, hits, argd in terminfo: if hits: hitsinfo = str(hits) else: hitsinfo = '-' term = cgi.escape(term) if term == p: # print search word for orientation: nearesttermsboxbody_class = "nearesttermsboxbodyselected" if hits > 0: term = a_href(term, href=self.build_search_url(argd), _class="nearesttermsselected") else: nearesttermsboxbody_class = "nearesttermsboxbody" term = a_href(term, href=self.build_search_url(argd), _class="nearestterms") out += '''\ ''' % {'hits': hitsinfo, 'nearesttermsboxbody_class': nearesttermsboxbody_class, 'term': term} out += "
%(hits)s   %(term)s
" return intro + "

" + out + "
" def tmpl_browse_pattern(self, f, ln, browsed_phrases_in_colls, colls): """ Displays the *Nearest search terms* box Parameters: - 'f' *string* - a field name (i18nized) - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'browsed_phrases_in_colls' *array* - the phrases to display - 'colls' *array* - the list of collection parameters of the search (c's) """ # load the right message language _ = gettext_set_language(ln) out = """""" % { 'hits' : _("Hits"), 'f' : f } if len(browsed_phrases_in_colls) == 1: # one hit only found: phrase, nbhits = browsed_phrases_in_colls[0][0], browsed_phrases_in_colls[0][1] query = {'c': colls, 'ln': ln, 'p': '"%s"' % phrase, 'f': f} out += """""" % {'nbhits': nbhits, 'link': a_href(phrase, href=self.build_search_url(query))} elif len(browsed_phrases_in_colls) > 1: # first display what was found but the last one: for phrase, nbhits in browsed_phrases_in_colls[:-1]: query = {'c': colls, 'ln': ln, 'p': '"%s"' % phrase, 'f': f} out += """""" % {'nbhits' : nbhits, 'link': a_href(phrase, href=self.build_search_url(query))} # now display last hit as "next term": phrase, nbhits = browsed_phrases_in_colls[-1] query = {'c': colls, 'ln': ln, 'p': phrase, 'f': f} out += """""" % {'link': a_href(_("next"), href=self.build_search_url(query, action='browse')), 'weburl' : weburl} out += """
%(hits)s   %(f)s
%(nbhits)s   %(link)s
%(nbhits)s   %(link)s
  %(link)s
""" return out def tmpl_search_box(self, ln, as, cc, cc_intl, ot, sp, action, fieldslist, f1, f2, f3, m1, m2, m3, p1, p2, p3, op1, op2, rm, p, f, coll_selects, d1y, d2y, d1m, d2m, d1d, d2d, sort_formats, sf, so, ranks, sc, rg, formats, of, pl, jrec): """ Displays the *Nearest search terms* box Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'as' *bool* - Should we display an advanced search box? - 'cc_intl' *string* - the i18nized current collection name - 'cc' *string* - the internal current collection name - 'ot', 'sp' *string* - hidden values - 'action' *string* - the action demanded by the user - 'fieldlist' *list* - the list of all fields available in CDSWare, for use in select within boxes in advanced search - 'p, f, f1, f2, f3, m1, m2, m3, p1, p2, p3, op1, op2, op3, rm' *strings* - the search parameters - 'coll_selects' *array* - a list of lists, each containing the collections selects to display - 'd1y, d2y, d1m, d2m, d1d, d2d' *int* - the search between dates - 'sort_formats' *array* - the select information for the sorting format - 'sf' *string* - the currently selected sort format - 'so' *string* - the currently selected sort order ("a" or "d") - 'ranks' *array* - ranking methods - 'rm' *string* - selected ranking method - 'sc' *string* - split by collection or not - 'rg' *string* - selected results/page - 'formats' *array* - available output formats - 'of' *string* - the selected output format - 'pl' *string* - `limit to' search pattern """ # load the right message language _ = gettext_set_language(ln) # These are hidden fields the user does not manipulate # directly argd = drop_default_urlargd({ 'ln': ln, 'as': as, 'cc': cc, 'ot': ot, 'sp': sp, }, self.search_results_default_urlargd) out = '''

%(ccname)s

''' % {'ccname' : cc_intl, 'weburl' : weburl} # Only add non-default hidden values for field, value in argd.items(): out += self.tmpl_input_hidden(field, value) leadingtext = _("Search") if action == 'browse': leadingtext = _("Browse") if as == 1: # print Advanced Search form: google = '' if cfg_google_box and (p1 or p2 or p3): google = ' :: %(search_smwhere)s' % { 'search_smwhere' : _("Try your search on...") } # define search box elements: out += ''' ''' % { 'simple_search': a_href(_("Simple Search"), href=self.build_search_url(p=p1, f=f1, rm=rm, cc=cc, ln=ln, jrec=jrec, rg=rg)), 'leading' : leadingtext, 'sizepattern' : cfg_advancedsearch_pattern_box_width, 'matchbox1' : self.tmpl_matchtype_box('m1', m1, ln=ln), 'p1' : cgi.escape(p1,1), 'searchwithin1' : self.tmpl_searchwithin_select( ln = ln, fieldname = 'f1', selected = f1, values = self._add_mark_to_field(value = f1, fields = fieldslist, ln = ln) ), 'andornot1' : self.tmpl_andornot_box( name = 'op1', value = op1, ln = ln ), 'matchbox2' : self.tmpl_matchtype_box('m2', m2, ln=ln), 'p2' : cgi.escape(p2,1), 'searchwithin2' : self.tmpl_searchwithin_select( ln = ln, fieldname = 'f2', selected = f2, values = self._add_mark_to_field(value = f2, fields = fieldslist, ln = ln) ), 'andornot2' : self.tmpl_andornot_box( name = 'op2', value = op2, ln = ln ), 'matchbox3' : self.tmpl_matchtype_box('m3', m3, ln=ln), 'p3' : cgi.escape(p3,1), 'searchwithin3' : self.tmpl_searchwithin_select( ln = ln, fieldname = 'f3', selected = f3, values = self._add_mark_to_field(value = f3, fields = fieldslist, ln = ln) ), 'search' : _("Search"), 'browse' : _("Browse"), 'weburl' : weburl, 'ln' : ln, 'search_tips': _("Search Tips"), 'google' : google, } else: # print Simple Search form: google = '' if cfg_google_box and (p1 or p2 or p3): google = ''' :: %(search_smwhere)s''' % { 'search_smwhere' : _("Try your search on...") } out += ''' ''' % { 'advanced_search': a_href(_("Advanced Search"), href=self.build_search_url(p1=p, f1=f, rm=rm, as=1, cc=cc, jrec=jrec, ln=ln, rg=rg)), 'leading' : leadingtext, 'sizepattern' : cfg_advancedsearch_pattern_box_width, 'p' : cgi.escape(p, 1), 'searchwithin' : self.tmpl_searchwithin_select( ln = ln, fieldname = 'f', selected = f, values = self._add_mark_to_field(value=f, fields=fieldslist, ln=ln) ), 'search' : _("Search"), 'browse' : _("Browse"), 'weburl' : weburl, 'ln' : ln, 'search_tips': _("Search Tips"), 'google' : google, } ## secondly, print Collection(s) box: selects = '' for sel in coll_selects: selects += self.tmpl_select(fieldname='c', values=sel) out += """ """ % { 'leading' : leadingtext, 'msg_coll' : _("collections"), 'colls' : selects, } ## thirdly, print search limits, if applicable: if action != _("Browse") and pl: out += """""" % { 'limitto' : _("Limit to"), 'sizepattern' : cfg_advancedsearch_pattern_box_width, 'pl' : cgi.escape(pl, 1), } ## fourthly, print from/until date boxen, if applicable: if action == _("Browse") or (d1y==0 and d1m==0 and d1d==0 and d2y==0 and d2m==0 and d2d==0): pass # do not need it else: cell_6_a = self.tmpl_inputdate("d1", ln, d1y, d1m, d1d) cell_6_b = self.tmpl_inputdate("d2", ln, d2y, d2m, d2d) out += """""" % { 'added' : _("Added since:"), 'until' : _("until:"), 'date1' : self.tmpl_inputdate("d1", ln, d1y, d1m, d1d), 'date2' : self.tmpl_inputdate("d2", ln, d2y, d2m, d2d), } ## fifthly, print Display results box, including sort/rank, formats, etc: if action != _("Browse"): rgs = [] for i in [10, 25, 50, 100, 250, 500]: rgs.append({ 'value' : i, 'text' : "%d %s" % (i, _("results"))}) # sort by: out += """""" % { 'sort_by' : _("Sort by:"), 'display_res' : _("Display results:"), 'out_format' : _("Output format:"), 'select_sf' : self.tmpl_select(fieldname = 'sf', values = sort_formats, selected = sf, css_class = 'address'), 'select_so' : self.tmpl_select(fieldname = 'so', values = [{ 'value' : 'a', 'text' : _("asc.") }, { 'value' : 'd', 'text' : _("desc.") }], selected = so, css_class = 'address'), 'select_rm' : self.tmpl_select(fieldname = 'rm', values = ranks, selected = rm, css_class = 'address'), 'select_rg' : self.tmpl_select(fieldname = 'rg', values = rgs, selected = rg, css_class = 'address'), 'select_sc' : self.tmpl_select(fieldname = 'sc', values = [{ 'value' : 0, 'text' : _("single list") }, { 'value' : 1, 'text' : _("split by collection") }], selected = sc, css_class = 'address'), 'select_of' : self.tmpl_searchwithin_select( ln = ln, fieldname = 'of', selected = of, values = self._add_mark_to_field(value = of, fields = formats, chars = 3, ln = ln) ), } ## last but not least, print end of search box: out += """
""" return out def tmpl_input_hidden(self, name, value): "Produces the HTML code for a hidden field " return """""" % { 'name' : cgi.escape(str(name), 1), 'value' : cgi.escape(str(value), 1), } def _add_mark_to_field(self, value, fields, ln, chars = 1): """Adds the current value as a MARC tag in the fields array Useful for advanced search""" # load the right message language _ = gettext_set_language(ln) out = fields if value and str(value[0:chars]).isdigit(): out.append({'value' : value, 'text' : str(value) + " " + _("MARC tag") }) return out def tmpl_google_box(self, ln, cc, p, f, prolog_start, prolog_end, column_separator, link_separator, epilog): """Creates the box that proposes links to other useful search engines like Google. Parameters: - 'ln' *string* - The language to display in - 'cc' *string* - the internal current collection name - 'p' *string* - the search query - 'f' *string* - the current field - 'prolog_start, prolog_end, column_separator, link_separator, epilog' *strings* - default HTML code for the specified position in the box """ # load the right message language _ = gettext_set_language(ln) out_links = [] p_quoted = urllib.quote(p) # Amazon if cfg_google_box_servers.get('Amazon', 0): if string.find(cc, "Book") >= 0: if f == "author": out_links.append("""%s %s Amazon""" % (p_quoted, p, _('in'))) else: out_links.append("""%s %s Amazon""" % (p_quoted, p, _('in'))) # CERN Intranet: if cfg_google_box_servers.get('CERN Intranet', 0): out_links.append("""%s %s CERN Intranet""" % (urllib.quote(string.replace(p, ' ', ' +')), p, _('in'))) # CERN Agenda: if cfg_google_box_servers.get('CERN Agenda', 0): if f == "author": out_links.append("""%s %s CERN Agenda""" % (p_quoted, p, _('in'))) elif f == "title": out_links.append("""%s %s CERN Agenda""" % (p_quoted, p, _('in'))) # CERN EDMS: if cfg_google_box_servers.get('CERN Agenda', 0): # FIXME: reusing CERN Agenda config variable until we can enter CERN EDMS into config.wml if f == "author": out_links.append("""%s %s CERN EDMS""" % (p_quoted, p, _("in"))) elif f == "title" or f == "abstract" or f == "keyword": out_links.append("""%s %s CERN EDMS""" % (p_quoted, p, _("in"))) elif f == "reportnumber": out_links.append("""%s %s CERN EDMS""" % (p_quoted, p, _("in"))) else: out_links.append("""%s %s CERN EDMS""" % (p_quoted, p, _("in"))) # CiteSeer: if cfg_google_box_servers.get('CiteSeer', 0): out_links.append("""%s %s CiteSeer""" % (p_quoted, p, _('in'))) # Google Print: if cfg_google_box_servers.get('Google Scholar', 0): # FIXME: reusing Google Scholar config variable until we can enter Google Print into config.wml if string.find(cc, "Book") >= 0: out_links.append("""%s %s Google Print""" % (p_quoted, p, _("in"))) # Google Scholar: if cfg_google_box_servers.get('Google Scholar', 0): if f == "author": out_links.append("""%s %s Google Scholar""" % (p_quoted, p, _('in'))) else: out_links.append("""%s %s Google Scholar""" % (p_quoted, p, _('in'))) # Google Web: if cfg_google_box_servers.get('Google Web', 0): if f == "author": p_google = p if string.find(p, ",") >= 0 and (not p.startswith('"')) and (not p.endswith('"')): p_lastname, p_firstnames = string.split(p, ",", 1) p_google = '"%s %s" OR "%s %s"' % (p_lastname, p_firstnames, p_firstnames, p_lastname) out_links.append("""%s %s Google Web""" % (urllib.quote(p_google), p_google, _('in'))) else: out_links.append("""%s %s Google Web""" % (p_quoted, p, _('in'))) # IEC if cfg_google_box_servers.get('IEC', 0): if string.find(cc, "Standard") >= 0: out_links.append("""%s %s IEC""" % (p_quoted, p, _('in'))) # IHS if cfg_google_box_servers.get('IHS', 0): if string.find(cc, "Standard") >= 0: out_links.append("""%s %s IHS""" % (p_quoted, p, _('in'))) # INSPEC if cfg_google_box_servers.get('INSPEC', 0): if f == "author": p_inspec = sre.sub(r'(, )| ', '-', p) p_inspec = sre.sub(r'(-\w)\w+$', '\\1', p_inspec) out_links.append("""%s %s INSPEC""" % (urllib.quote(p_inspec), p_inspec, _('in'))) elif f == "title": out_links.append("""%s %s INSPEC""" % (p_quoted, p, _('in'))) elif f == "abstract": out_links.append("""%s %s INSPEC""" % (p_quoted, p, _('in'))) elif f == "year": out_links.append("""%s %s INSPEC""" % (p_quoted, p, _('in'))) # ISO if cfg_google_box_servers.get('ISO', 0): if string.find(cc, "Standard") >= 0: out_links.append("""%s %s ISO""" % (p_quoted, p, _('in'))) # KEK if cfg_google_box_servers.get('KEK', 0): kek_search_title = "KEK KISS Preprints" kek_search_baseurl = "http://www-lib.kek.jp/cgi-bin/kiss_prepri?" if string.find(cc, "Book") >= 0: kek_search_title = "KEK Library Books" kek_search_baseurl = "http://www-lib.kek.jp/cgi-bin/kiss_book?DSP=1&" elif string.find(cc, "Periodical") >= 0: kek_search_title = "KEK Library Journals" kek_search_baseurl = "http://www-lib.kek.jp/cgi-bin/kiss_book?DSP=2&" if f == "author": out_links.append("""%s %s %s""" % \ (kek_search_baseurl, p_quoted, p, _('in'), kek_search_title)) elif f == "title": out_links.append("""%s %s %s""" % \ (kek_search_baseurl, p_quoted, p, _('in'), kek_search_title)) elif f == "reportnumber": out_links.append("""%s %s %s""" % \ (kek_search_baseurl, p_quoted, p, _('in'), kek_search_title)) # NEBIS if cfg_google_box_servers.get('NEBIS', 0): if string.find(cc, "Book") >= 0: if f == "author": out_links.append("""%s %s NEBIS""" % (p_quoted, p, _('in'))) elif f == "title": out_links.append("""%s %s NEBIS""" % (p_quoted, p, _('in'))) else: out_links.append("""%s %s NEBIS""" % (p_quoted, p, _('in'))) # Scirus: if cfg_google_box_servers.get('Google Scholar', 0): # FIXME: reusing Google Scholar config variable until we can enter Scirus into config.wml if f == "author": out_links.append("""%s %s Scirus""" % (p_quoted, p, _("in"))) elif f == "title": out_links.append("""%s %s Scirus""" % (p_quoted, p, _("in"))) elif f == "keyword": out_links.append("""%s %s Scirus""" % (p_quoted, p, _("in"))) else: out_links.append("""%s %s Scirus""" % (p_quoted, p, _("in"))) # SPIRES if cfg_google_box_servers.get('SPIRES', 0): spires_search_title = "SLAC SPIRES HEP" spires_search_baseurl = "http://www.slac.stanford.edu/spires/find/hep/" if string.find(cc, "Book") >= 0: spires_search_title = "SLAC Library Books" spires_search_baseurl = "http://www.slac.stanford.edu/spires/find/books/" elif string.find(cc, "Periodical") >= 0: spires_search_title = "SLAC Library Journals" spires_search_baseurl = "http://www.slac.stanford.edu/spires/find/tserials/" if f == "author": out_links.append("""%s %s %s""" % \ (spires_search_baseurl, p_quoted, p, _('in'), spires_search_title)) elif f == "title": out_links.append("""%s %s %s""" % \ (spires_search_baseurl, p_quoted, p, _('in'), spires_search_title)) elif f == "reportnumber": out_links.append("""%s %s %s""" % \ (spires_search_baseurl, p_quoted, p, _('in'), spires_search_title)) elif f == "keyword": out_links.append("""%s %s %s""" % \ (spires_search_baseurl, p_quoted, p, _('in'), spires_search_title)) else: # invent a poor man's any field search since SPIRES doesn't support one out_links.append("""%s %s %s""" % \ (spires_search_baseurl, p_quoted, p_quoted, p_quoted, p_quoted, p_quoted, p, _('in'), spires_search_title)) # okay, so print the box now: out = "" if out_links: out += """""" out += prolog_start + _("Haven't found what you were looking for? Try your search on other servers:") + prolog_end nb_out_links_in_one_column = len(out_links)/2 out += string.join(out_links[:nb_out_links_in_one_column], link_separator) out += column_separator out += string.join(out_links[nb_out_links_in_one_column:], link_separator) out += epilog return out def tmpl_search_pagestart(self, ln) : "page start for search page. Will display after the page header" return """
""" def tmpl_search_pageend(self, ln) : "page end for search page. Will display just before the page footer" return """
""" def tmpl_print_warning(self, msg, type, prologue, epilogue): """Prints warning message and flushes output. Parameters: - 'msg' *string* - The message string - 'type' *string* - the warning type - 'prologue' *string* - HTML code to display before the warning - 'epilogue' *string* - HTML code to display after the warning """ out = '\n%s' % (prologue) if type: out += '%s: ' % type out += '%s%s' % (msg, epilogue) return out def tmpl_print_search_info(self, ln, weburl, middle_only, collection, collection_name, collection_id, as, sf, so, rm, rg, nb_found, of, ot, p, f, f1, f2, f3, m1, m2, m3, op1, op2, p1, p2, p3, d1y, d1m, d1d, d2y, d2m, d2d, all_fieldcodes, cpu_time, pl_in_url, jrec, sc, sp): """Prints stripe with the information on 'collection' and 'nb_found' results and CPU time. Also, prints navigation links (beg/next/prev/end) inside the results set. If middle_only is set to 1, it will only print the middle box information (beg/netx/prev/end/etc) links. This is suitable for displaying navigation links at the bottom of the search results page. Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'middle_only' *bool* - Only display parts of the interface - 'collection' *string* - the collection name - 'collection_name' *string* - the i18nized current collection name - 'as' *bool* - if we display the advanced search interface - 'sf' *string* - the currently selected sort format - 'so' *string* - the currently selected sort order ("a" or "d") - 'rm' *string* - selected ranking method - 'rg' *int* - selected results/page - 'nb_found' *int* - number of results found - 'of' *string* - the selected output format - 'ot' *string* - hidden values - 'p' *string* - Current search words - 'f' *string* - the fields in which the search was done - 'f1, f2, f3, m1, m2, m3, p1, p2, p3, op1, op2' *strings* - the search parameters - 'jrec' *int* - number of first record on this page - 'd1y, d2y, d1m, d2m, d1d, d2d' *int* - the search between dates - 'all_fieldcodes' *array* - all the available fields - 'cpu_time' *float* - the time of the query in seconds """ # load the right message language _ = gettext_set_language(ln) out = "" # left table cells: print collection name if not middle_only: out += ''' %(collection_name)s
''' % { 'collection_name': a_href('', name=collection), 'weburl' : weburl, 'collection_link': a_href(collection_name, href=self.build_search_interface_url(c=collection, as=as, ln=ln)), } else: out += """
""" % { 'weburl' : weburl } # middle table cell: print beg/next/prev/end arrows: if not middle_only: out += """
" else: out += "" # right table cell: cpu time info if not middle_only: if cpu_time > -1: out += """""" % { 'time' : _("Search took %.2f seconds.") % cpu_time, } out += "
%(collection_link)s %(recs_found)s  """ % { 'recs_found' : _("%s records found") % self.tmpl_nice_number(nb_found, ln) } else: out += "" if nb_found > rg: out += "" + collection_name + " : " + _("%s records found") % self.tmpl_nice_number(nb_found, ln) + "   " if nb_found > rg: # navig.arrows are needed, since we have many hits query = {'p': p, 'f': f, 'cc': collection, 'sf': sf, 'so': so, 'sp': sp, 'rm': rm, 'of': of, 'ot': ot, 'as': as, 'ln': ln, 'p1': p1, 'p2': p2, 'p3': p3, 'f1': f1, 'f2': f2, 'f3': f3, 'm1': m1, 'm2': m2, 'm3': m3, 'op1': op1, 'op2': op2, 'sc': 0, 'd1y': d1y, 'd1m': d1m, 'd1d': d1d, 'd2y': d2y, 'd2m': d2m, 'd2d': d2d, } # @todo here def img(gif, txt): return '%(txt)s' % { 'txt': txt, 'gif': gif, 'weburl': weburl} if jrec-rg > 1: out += a_href(img('sb', _("begin")), _class='img', href=self.build_search_url(query, jrec=1, rg=rg)) if jrec > 1: out += a_href(img('sp', _("previous")), _class='img', href=self.build_search_url(query, jrec=max(jrec-rg, 1), rg=rg)) if jrec+rg-1 < nb_found: out += "%d - %d" % (jrec, jrec+rg-1) else: out += "%d - %d" % (jrec, nb_found) if nb_found >= jrec+rg: out += a_href(img('sn', _("next")), _class='img', href=self.build_search_url(query, jrec=jrec+rg, rg=rg)) if nb_found >= jrec+rg+rg: out += a_href(img('se', _("end")), _class='img', href=self.build_search_url(query, jrec=nb_found-rg+1, rg=rg)) # still in the navigation part cc = collection sc = 0 for var in ['p', 'cc', 'f', 'sf', 'so', 'of', 'rg', 'as', 'ln', 'p1', 'p2', 'p3', 'f1', 'f2', 'f3', 'm1', 'm2', 'm3', 'op1', 'op2', 'sc', 'd1y', 'd1m', 'd1d', 'd2y', 'd2m', 'd2d']: out += self.tmpl_input_hidden(name = var, value = vars()[var]) for var in ['ot', 'sp', 'rm']: if vars()[var]: out += self.tmpl_input_hidden(name = var, value = vars()[var]) if pl_in_url: fieldargs = cgi.parse_qs(pl_in_url) for fieldcode in all_fieldcodes: # get_fieldcodes(): if fieldargs.has_key(fieldcode): for val in fieldargs[fieldcode]: out += self.tmpl_input_hidden(name = fieldcode, value = val) out += """  %(jump)s """ % { 'jump' : _("jump to record:"), 'jrec' : jrec, } if not middle_only: out += "%(time)s 
" else: out += "" out += "
" return out def tmpl_nice_number(self, number, ln=cdslang): "Returns nicely printed number NUM in language LN using the locale." if number is None: return None # Temporarily switch the numeric locale to the requeted one, and format the number # In case the system has no locale definition, use the vanilla form ol = locale.getlocale(locale.LC_NUMERIC) try: locale.setlocale(locale.LC_NUMERIC, self.tmpl_localemap.get(ln, self.tmpl_default_locale)) except locale.Error: return str(number) number = locale.format('%d', number, True) locale.setlocale(locale.LC_NUMERIC, ol) return number def tmpl_records_format_htmlbrief(self, ln, weburl, rows, relevances_prologue, relevances_epilogue): """Returns the htmlbrief format of the records Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'rows' *array* - Parts of the interface to display, in the format: - 'rows[number]' *int* - The order number - 'rows[recid]' *int* - The recID - 'rows[relevance]' *string* - The relevance of the record - 'rows[record]' *string* - The formatted record - 'relevances_prologue' *string* - HTML code to prepend the relevance indicator - 'relevances_epilogue' *string* - HTML code to append to the relevance indicator (used mostly for formatting) """ # load the right message language _ = gettext_set_language(ln) out = """
""" % { 'weburl' : weburl, } for row in rows: out += """ """ % row['record'] out += """
%(number)s. """ % row if row['relevance']: out += """
""" % { 'prologue' : relevances_prologue, 'epilogue' : relevances_epilogue, 'relevance' : row['relevance'] } out += """
%s

""" % { 'basket' : _("ADD TO BASKET") } return out def tmpl_records_format_other(self, ln, weburl, rows, format, url_argd): """Returns other formats of the records Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'rows' *array* - Parts of the interface to display, in the format: - 'rows[record]' *string* - The formatted record - 'rows[number]' *int* - The order number - 'rows[recid]' *int* - The recID - 'rows[relevance]' *string* - The relevance of the record - 'format' *string* - The current format - 'url_argd' *string* - Parameters of the search query """ # load the right message language _ = gettext_set_language(ln) out = """

%(format)s: """ % { 'format' : _("Format") } result = [] for abbrev, name in (('hd', 'HTML'), ('hx', 'BibTeX'), ('xd', 'DC'), ('hm', 'MARC'), ('xm', 'MARCXML')): if format == abbrev: result.append(name) else: result.append(a_href(name, href=self.build_search_url(url_argd, of=abbrev))) out += " | ".join(result) out += "
" for row in rows: out += row ['record'] if format.startswith("hd"): # do not print further information but for HTML detailed formats if row ['creationdate']: out += '''
%(dates)s

%(similar)s


''' % { 'dates': _("Record created %s, last modified %s") % (row['creationdate'], row['modifydate']), 'weburl': weburl, 'recid': row['recid'], 'ln': ln, 'similar': a_href(_("Similar records"), _class="moreinfo", href=self.build_search_url(p='recid:%d' % row['recid'], rm='wrd', ln=ln)), 'basket' : _("ADD TO BASKET") } out += '' if row.has_key ('citinglist'): cs = row ['citinglist'] similar = self.tmpl_print_record_list_for_similarity_boxen( _("Cited by: %s records") % len (cs), cs, ln) out += ''' ''' % { 'more': a_href(_("more"), href=self.build_search_url(p='recid:%d' % row['recid'], rm='cit', ln=ln)), 'similar': similar} if row.has_key ('cociting'): cs = row ['cociting'] similar = self.tmpl_print_record_list_for_similarity_boxen ( _("Co-cited with: %s records") % len (cs), cs, ln) out += ''' ''' % { 'more': a_href(_("more"), href=self.build_search_url(p='cocitedwith:%d' % row['recid'], ln=ln)), 'similar': similar} if row.has_key ('citationhistory'): out += '' % row ['citationhistory'] if row.has_key ('downloadsimilarity'): cs = row ['downloadsimilarity'] similar = self.tmpl_print_record_list_for_similarity_boxen ( _("People who downloaded this document also downloaded:"), cs, ln) out += ''' ''' % { 'weburl': weburl, 'recid': row ['recid'], 'ln': ln, 'similar': similar, 'more': _("more"), 'graph': row ['downloadhistory'] } out += '
%(similar)s %(more)s

%(similar)s %(more)s
%s
%(graph)s
%(similar)s
' if row.has_key ('viewsimilarity'): out += '

 ' out += self.tmpl_print_record_list_for_similarity_boxen ( _("People who viewed this page also viewed:"), row ['viewsimilarity'], ln) if row.has_key ('reviews'): out += '

 ' out += row['reviews'] if row.has_key ('comments'): out += row['comments'] out += "

 " return out def tmpl_print_results_overview(self, ln, weburl, results_final_nb_total, cpu_time, results_final_nb, colls): """Prints results overview box with links to particular collections below. Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'results_final_nb_total' *int* - The total number of hits for the query - 'colls' *array* - The collections with hits, in the format: - 'coll[code]' *string* - The code of the collection (canonical name) - 'coll[name]' *string* - The display name of the collection - 'results_final_nb' *array* - The number of hits, indexed by the collection codes: - 'cpu_time' *string* - The time the query took - 'url_args' *string* - The rest of the search query """ if len(colls) == 1: # if one collection only, print nothing: return "" # load the right message language _ = gettext_set_language(ln) # first find total number of hits: out = """

%(founds)s
""" % { 'founds' : _("Results overview: Found %s records in %.2f seconds.") % (self.tmpl_nice_number(results_final_nb_total, ln), cpu_time) } # then print hits per collection: for coll in colls: if results_final_nb.has_key(coll['code']) and results_final_nb[coll['code']] > 0: out += '''%(coll_name)s, %(number)s
''' % { 'coll' : urllib.quote(coll['code']), 'coll_name' : coll['name'], 'number' : _("%s records found") % self.tmpl_nice_number(results_final_nb[coll['code']], ln) } out += "
" return out def tmpl_search_no_boolean_hits(self, ln, nearestterms): """No hits found, proposes alternative boolean queries Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'nearestterms' *array* - Parts of the interface to display, in the format: - 'nearestterms[nbhits]' *int* - The resulting number of hits - 'nearestterms[url_args]' *string* - The search parameters - 'nearestterms[p]' *string* - The search terms """ # load the right message language _ = gettext_set_language(ln) out = _("Boolean query returned no hits. Please combine your search terms differently.") out += '''

''' for term, hits, argd in nearestterms: out += '''\ ''' % {'hits' : hits, 'link': a_href(cgi.escape(term), _class="nearestterms", href=self.build_search_url(argd))} out += """
%(hits)s   %(link)s
""" return out def tmpl_similar_author_names(self, authors, ln): """No hits found, proposes alternative boolean queries Parameters: - 'authors': a list of (name, hits) tuples - 'ln' *string* - The language to display """ # load the right message language _ = gettext_set_language(ln) out = ''' ''' % { 'similar' : _("See also: similar author names") } for author, hits in authors: out += '''\ ''' % {'link': a_href(cgi.escape(author), _class="google", href=self.build_search_url(p=author, f='author', ln=ln)), 'nb' : hits} out += """
%(similar)s
%(nb)d %(link)s
""" return out def tmpl_print_record_detailed(self, recID, ln, weburl): """Displays a detailed on-the-fly record Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'recID' *int* - The record id """ # okay, need to construct a simple "Detailed record" format of our own: out = "

 " # secondly, title: titles = get_fieldvalues(recID, "245__a") for title in titles: out += "

%s
" % title # thirdly, authors: authors = get_fieldvalues(recID, "100__a") + get_fieldvalues(recID, "700__a") if authors: out += "

" for author in authors: out += '%s; ' % a_href(cgi.escape(author), href=self.build_search_url(ln=ln, p=author, f='author')) out += "
" # fourthly, date of creation: dates = get_fieldvalues(recID, "260__c") for date in dates: out += "

%s
" % date # fifthly, abstract: abstracts = get_fieldvalues(recID, "520__a") for abstract in abstracts: out += """

Abstract: %s

""" % abstract # fifthly bis, keywords: keywords = get_fieldvalues(recID, "6531_a") if len(keywords): out += """

Keyword(s):""" for keyword in keywords: out += '%s; ' % a_href(cgi.escape(keyword), href=self.build_search_url(ln=ln, p=keyword, f='keyword')) out += '' # fifthly bis bis, published in: prs_p = get_fieldvalues(recID, "909C4p") prs_v = get_fieldvalues(recID, "909C4v") prs_y = get_fieldvalues(recID, "909C4y") prs_n = get_fieldvalues(recID, "909C4n") prs_c = get_fieldvalues(recID, "909C4c") for idx in range(0,len(prs_p)): out += """

Publ. in: %s""" % prs_p[idx] if prs_v and prs_v[idx]: out += """%s""" % prs_v[idx] if prs_y and prs_y[idx]: out += """(%s)""" % prs_y[idx] if prs_n and prs_n[idx]: out += """, no.%s""" % prs_n[idx] if prs_c and prs_c[idx]: out += """, p.%s""" % prs_c[idx] out += """.""" # sixthly, fulltext link: urls_z = get_fieldvalues(recID, "8564_z") urls_u = get_fieldvalues(recID, "8564_u") for idx in range(0,len(urls_u)): link_text = "URL" try: if urls_z[idx]: link_text = urls_z[idx] except IndexError: pass out += """

%s: %s""" % (link_text, urls_u[idx], urls_u[idx]) # print some white space at the end: out += "

" return out def tmpl_print_record_list_for_similarity_boxen(self, title, score_list, ln=cdslang): """Print list of records in the "hs" (HTML Similarity) format for similarity boxes. FIXME: bad symbol names again, e.g. SCORE_LIST is *not* a list of scores. Humph. """ from invenio.search_engine import print_record out = '''
%(title)s
''' % { 'title': title } for recid, score in score_list [:5]: out += ''' ''' % { 'score': score, 'info' : print_record(recid, format="hs", ln=ln), } out += """
(%(score)s)  %(info)s
""" return out def tmpl_print_record_brief(self, ln, recID, weburl): """Displays a brief record on-the-fly Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'recID' *int* - The record id """ out = "" # record 'recID' does not exist in format 'format', so print some default format: # firstly, title: titles = get_fieldvalues(recID, "245__a") # secondly, authors: authors = get_fieldvalues(recID, "100__a") + get_fieldvalues(recID, "700__a") # thirdly, date of creation: dates = get_fieldvalues(recID, "260__c") # thirdly bis, report numbers: rns = get_fieldvalues(recID, "037__a") rns = get_fieldvalues(recID, "088__a") # fourthly, beginning of abstract: abstracts = get_fieldvalues(recID, "520__a") # fifthly, fulltext link: urls_z = get_fieldvalues(recID, "8564_z") urls_u = get_fieldvalues(recID, "8564_u") return self.tmpl_record_body( weburl = weburl, titles = titles, authors = authors, dates = dates, rns = rns, abstracts = abstracts, urls_u = urls_u, urls_z = urls_z, ln=ln) def tmpl_print_record_brief_links(self, ln, recID, weburl): """Displays links for brief record on-the-fly Parameters: - 'ln' *string* - The language to display - 'weburl' *string* - The base URL for the site - 'recID' *int* - The record id """ # load the right message language _ = gettext_set_language(ln) out = "" if cfg_use_aleph_sysnos: alephsysnos = get_fieldvalues(recID, "970__a") if len(alephsysnos)>0: alephsysno = alephsysnos[0] out += '
%s' % \ a_href(_("Detailed record"), _class="moreinfo", href=self.build_search_url(sysno=alephsysno, ln=ln)) else: out += '
%s' % \ a_href(_("Detailed record"), _class="moreinfo", href=self.build_search_url(recid=recID, ln=ln)) else: out += '
%s' % \ a_href(_("Detailed record"), _class="moreinfo", href=self.build_search_url(recid=recID, ln=ln)) out += ' - %s' % \ a_href(_("Similar records"), _class="moreinfo", href=self.build_search_url(p="recid:%d" % recID, rm="wrd", ln=ln)) if cfg_experimental_features: out += ' - %s' % \ a_href(_("Cited by"), _class="moreinfo", href=self.build_search_url(p="recid:%d" % recID, rm="cit", ln=ln)) return out diff --git a/modules/websubmit/doc/Makefile.am b/modules/websubmit/doc/Makefile.am index f32b3679c..ac8cc790a 100644 --- a/modules/websubmit/doc/Makefile.am +++ b/modules/websubmit/doc/Makefile.am @@ -1,68 +1,69 @@ ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. SUBDIRS = admin hacking docdir = $(localstatedir)/www/help/submit -doc_DATA=access.en.html access.fr.html access.de.html access.es.html access.ca.html access.pl.html access.pt.html access.it.html access.ja.html access.ru.html access.sk.html access.cs.html access.no.html access.sv.html access.el.html access.uk.html \ - actions.en.html actions.fr.html actions.de.html actions.es.html actions.ca.html actions.pl.html actions.pt.html actions.it.html actions.ja.html actions.ru.html actions.sk.html actions.cs.html actions.no.html actions.sv.html actions.el.html actions.uk.html \ - approval.en.html approval.fr.html approval.de.html approval.pl.html approval.pt.html approval.es.html approval.ca.html approval.it.html approval.ja.html approval.ru.html approval.sk.html approval.cs.html approval.no.html approval.sv.html approval.el.html approval.uk.html \ - bibliographic_fields.en.html bibliographic_fields.fr.html bibliographic_fields.de.html bibliographic_fields.es.html bibliographic_fields.ca.html bibliographic_fields.pl.html bibliographic_fields.pt.html bibliographic_fields.it.html bibliographic_fields.ja.html bibliographic_fields.ru.html bibliographic_fields.sk.html bibliographic_fields.cs.html bibliographic_fields.no.html bibliographic_fields.sv.html bibliographic_fields.el.html bibliographic_fields.uk.html \ - description.en.html description.fr.html description.de.html description.pl.html description.pt.html description.es.html description.ca.html description.it.html description.ja.html description.ru.html description.sk.html description.cs.html description.no.html description.sv.html description.el.html description.uk.html \ - file_transfer.en.html file_transfer.fr.html file_transfer.de.html file_transfer.es.html file_transfer.ca.html file_transfer.pl.html file_transfer.pt.html file_transfer.it.html file_transfer.ja.html file_transfer.ru.html file_transfer.sk.html file_transfer.cs.html file_transfer.no.html file_transfer.sv.html file_transfer.el.html file_transfer.uk.html \ - index.en.html index.fr.html index.de.html index.pl.html index.pt.html index.es.html index.ca.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.uk.html \ - introduction.en.html introduction.fr.html introduction.de.html introduction.es.html introduction.ca.html introduction.pl.html introduction.pt.html introduction.it.html introduction.ja.html introduction.ru.html introduction.sk.html introduction.cs.html introduction.no.html introduction.sv.html introduction.el.html introduction.uk.html \ - login.en.html login.fr.html login.de.html login.pl.html login.pt.html login.es.html login.ca.html login.it.html login.ja.html login.ru.html login.sk.html login.cs.html login.no.html login.sv.html login.el.html login.uk.html \ - modification.en.html modification.fr.html modification.de.html modification.es.html modification.ca.html modification.pl.html modification.pt.html modification.it.html modification.ja.html modification.ru.html modification.sk.html modification.cs.html modification.no.html modification.sv.html modification.el.html modification.uk.html \ - password.en.html password.fr.html password.de.html password.es.html password.ca.html password.pl.html password.pt.html password.it.html password.ja.html password.ru.html password.sk.html password.cs.html password.no.html password.sv.html password.el.html password.uk.html \ - pending.en.html pending.fr.html pending.de.html pending.es.html pending.ca.html pending.pl.html pending.pt.html pending.it.html pending.ja.html pending.ru.html pending.sk.html pending.cs.html pending.no.html pending.sv.html pending.el.html pending.uk.html \ - approvals.en.html approvals.fr.html approvals.de.html approvals.es.html approvals.ca.html approvals.pl.html approvals.pt.html approvals.it.html approvals.ja.html approvals.ru.html approvals.sk.html approvals.cs.html approvals.no.html approvals.sv.html approvals.el.html approvals.uk.html \ - revised_version.en.html revised_version.fr.html revised_version.de.html revised_version.es.html revised_version.ca.html revised_version.pl.html revised_version.pt.html revised_version.it.html revised_version.ja.html revised_version.ru.html revised_version.sk.html revised_version.cs.html revised_version.no.html revised_version.sv.html revised_version.el.html revised_version.uk.html \ - submission.en.html submission.fr.html submission.de.html submission.es.html submission.ca.html submission.pl.html submission.pt.html submission.it.html submission.ja.html submission.ru.html submission.sk.html submission.cs.html submission.no.html submission.sv.html submission.el.html submission.uk.html \ - subnumber.en.html subnumber.fr.html subnumber.de.html subnumber.es.html subnumber.ca.html subnumber.pl.html subnumber.pt.html subnumber.it.html subnumber.ja.html subnumber.ru.html subnumber.sk.html subnumber.cs.html subnumber.no.html subnumber.sv.html subnumber.el.html subnumber.uk.html +doc_DATA=access.en.html access.fr.html access.de.html access.es.html access.ca.html access.pl.html access.pt.html access.it.html access.ja.html access.ru.html access.sk.html access.cs.html access.no.html access.sv.html access.el.html access.bg.html access.uk.html \ + actions.en.html actions.fr.html actions.de.html actions.es.html actions.ca.html actions.pl.html actions.pt.html actions.it.html actions.ja.html actions.ru.html actions.sk.html actions.cs.html actions.no.html actions.sv.html actions.el.html actions.bg.html actions.uk.html \ + approval.en.html approval.fr.html approval.de.html approval.pl.html approval.pt.html approval.es.html approval.ca.html approval.it.html approval.ja.html approval.ru.html approval.sk.html approval.cs.html approval.no.html approval.sv.html approval.el.html approval.bg.html approval.uk.html \ + bibliographic_fields.en.html bibliographic_fields.fr.html bibliographic_fields.de.html bibliographic_fields.es.html bibliographic_fields.ca.html bibliographic_fields.pl.html bibliographic_fields.pt.html bibliographic_fields.it.html bibliographic_fields.ja.html bibliographic_fields.ru.html bibliographic_fields.sk.html bibliographic_fields.cs.html bibliographic_fields.no.html bibliographic_fields.sv.html bibliographic_fields.el.html bibliographic_fields.bg.html bibliographic_fields.uk.html \ + description.en.html description.fr.html description.de.html description.pl.html description.pt.html description.es.html description.ca.html description.it.html description.ja.html description.ru.html description.sk.html description.cs.html description.no.html description.sv.html description.el.html description.bg.html description.uk.html \ + file_transfer.en.html file_transfer.fr.html file_transfer.de.html file_transfer.es.html file_transfer.ca.html file_transfer.pl.html file_transfer.pt.html file_transfer.it.html file_transfer.ja.html file_transfer.ru.html file_transfer.sk.html file_transfer.cs.html file_transfer.no.html file_transfer.sv.html file_transfer.el.html file_transfer.bg.html file_transfer.uk.html \ + index.en.html index.fr.html index.de.html index.pl.html index.pt.html index.es.html index.ca.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.bg.html index.uk.html \ + introduction.en.html introduction.fr.html introduction.de.html introduction.es.html introduction.ca.html introduction.pl.html introduction.pt.html introduction.it.html introduction.ja.html introduction.ru.html introduction.sk.html introduction.cs.html introduction.no.html introduction.sv.html introduction.el.html introduction.bg.html introduction.uk.html \ + login.en.html login.fr.html login.de.html login.pl.html login.pt.html login.es.html login.ca.html login.it.html login.ja.html login.ru.html login.sk.html login.cs.html login.no.html login.sv.html login.el.html login.bg.html login.uk.html \ + modification.en.html modification.fr.html modification.de.html modification.es.html modification.ca.html modification.pl.html modification.pt.html modification.it.html modification.ja.html modification.ru.html modification.sk.html modification.cs.html modification.no.html modification.sv.html modification.el.html modification.bg.html modification.uk.html \ + password.en.html password.fr.html password.de.html password.es.html password.ca.html password.pl.html password.pt.html password.it.html password.ja.html password.ru.html password.sk.html password.cs.html password.no.html password.sv.html password.el.html password.bg.html password.uk.html \ + pending.en.html pending.fr.html pending.de.html pending.es.html pending.ca.html pending.pl.html pending.pt.html pending.it.html pending.ja.html pending.ru.html pending.sk.html pending.cs.html pending.no.html pending.sv.html pending.el.html pending.bg.html pending.uk.html \ + approvals.en.html approvals.fr.html approvals.de.html approvals.es.html approvals.ca.html approvals.pl.html approvals.pt.html approvals.it.html approvals.ja.html approvals.ru.html approvals.sk.html approvals.cs.html approvals.no.html approvals.sv.html approvals.el.html approvals.bg.html approvals.uk.html \ + revised_version.en.html revised_version.fr.html revised_version.de.html revised_version.es.html revised_version.ca.html revised_version.pl.html revised_version.pt.html revised_version.it.html revised_version.ja.html revised_version.ru.html revised_version.sk.html revised_version.cs.html revised_version.no.html revised_version.sv.html revised_version.el.html revised_version.bg.html revised_version.uk.html \ + submission.en.html submission.fr.html submission.de.html submission.es.html submission.ca.html submission.pl.html submission.pt.html submission.it.html submission.ja.html submission.ru.html submission.sk.html submission.cs.html submission.no.html submission.sv.html submission.el.html submission.bg.html submission.uk.html \ + subnumber.en.html subnumber.fr.html subnumber.de.html subnumber.es.html subnumber.ca.html subnumber.pl.html subnumber.pt.html subnumber.it.html subnumber.ja.html subnumber.ru.html subnumber.sk.html subnumber.cs.html subnumber.no.html subnumber.sv.html subnumber.el.html subnumber.bg.html subnumber.uk.html FILESWML = $(wildcard $(srcdir)/*.wml) EXTRA_DIST = $(FILESWML:$(srcdir)/%=%) CLEANFILES = $(doc_DATA) *~ *.tmp *.php LINGUAS = $(shell grep -v '^\#' $(top_srcdir)/po/LINGUAS) MO = $(LINGUAS:%=$(top_builddir)/po/%.gmo) -%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) +%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.bg.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) $(WML) -o\(ALL-LANG_*\)+LANG_EN:$*.en.html \ -o\(ALL-LANG_*\)+LANG_FR:$*.fr.html \ -o\(ALL-LANG_*\)+LANG_DE:$*.de.html \ -o\(ALL-LANG_*\)+LANG_ES:$*.es.html \ -o\(ALL-LANG_*\)+LANG_CA:$*.ca.html \ -o\(ALL-LANG_*\)+LANG_PL:$*.pl.html \ -o\(ALL-LANG_*\)+LANG_PT:$*.pt.html \ -o\(ALL-LANG_*\)+LANG_IT:$*.it.html \ -o\(ALL-LANG_*\)+LANG_JA:$*.ja.html \ -o\(ALL-LANG_*\)+LANG_RU:$*.ru.html \ -o\(ALL-LANG_*\)+LANG_SK:$*.sk.html \ -o\(ALL-LANG_*\)+LANG_CS:$*.cs.html \ -o\(ALL-LANG_*\)+LANG_NO:$*.no.html \ -o\(ALL-LANG_*\)+LANG_SV:$*.sv.html \ -o\(ALL-LANG_*\)+LANG_EL:$*.el.html \ + -o\(ALL-LANG_*\)+LANG_BG:$*.bg.html \ -o\(ALL-LANG_*\)+LANG_UK:$*.uk.html $< for lang in $(LINGUAS); do \ $(PYTHON) $(top_srcdir)/po/i18n_update_wml_target.py $${lang} "$*.$${lang}.html" ; \ done diff --git a/modules/websubmit/doc/admin/Makefile.am b/modules/websubmit/doc/admin/Makefile.am index 135bcd402..5bc25a522 100644 --- a/modules/websubmit/doc/admin/Makefile.am +++ b/modules/websubmit/doc/admin/Makefile.am @@ -1,75 +1,76 @@ ## $Id$ ## This file is part of CDS Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. ## ## CDS Invenio is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License as ## published by the Free Software Foundation; either version 2 of the ## License, or (at your option) any later version. ## ## CDS Invenio is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with CDS Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. docdir = $(localstatedir)/www/admin/websubmit/guide -doc_DATA=actionimplement.en.html actionimplement.fr.html actionimplement.de.html actionimplement.es.html actionimplement.ca.html actionimplement.pl.html actionimplement.pt.html actionimplement.it.html actionimplement.ja.html actionimplement.ru.html actionimplement.sk.html actionimplement.cs.html actionimplement.no.html actionimplement.sv.html actionimplement.el.html actionimplement.uk.html \ - actionmodify.en.html actionmodify.fr.html actionmodify.de.html actionmodify.es.html actionmodify.ca.html actionmodify.pl.html actionmodify.pt.html actionmodify.it.html actionmodify.ja.html actionmodify.ru.html actionmodify.sk.html actionmodify.cs.html actionmodify.no.html actionmodify.sv.html actionmodify.el.html actionmodify.uk.html \ - actionnew.en.html actionnew.fr.html actionnew.de.html actionnew.es.html actionnew.ca.html actionnew.pl.html actionnew.pt.html actionnew.it.html actionnew.ja.html actionnew.ru.html actionnew.sk.html actionnew.cs.html actionnew.no.html actionnew.sv.html actionnew.el.html actionnew.uk.html \ - actionremove.en.html actionremove.fr.html actionremove.de.html actionremove.es.html actionremove.ca.html actionremove.pl.html actionremove.pt.html actionremove.it.html actionremove.ja.html actionremove.ru.html actionremove.sk.html actionremove.cs.html actionremove.no.html actionremove.sv.html actionremove.el.html actionremove.uk.html \ - actions.en.html actions.fr.html actions.de.html actions.es.html actions.ca.html actions.pl.html actions.pt.html actions.it.html actions.ja.html actions.ru.html actions.sk.html actions.cs.html actions.no.html actions.sv.html actions.el.html actions.uk.html \ - catalogues.en.html catalogues.fr.html catalogues.de.html catalogues.es.html catalogues.ca.html catalogues.pl.html catalogues.pt.html catalogues.it.html catalogues.ja.html catalogues.ru.html catalogues.sk.html catalogues.cs.html catalogues.no.html catalogues.sv.html catalogues.el.html catalogues.uk.html \ - description.en.html description.fr.html description.de.html description.es.html description.ca.html description.pl.html description.pt.html description.it.html description.ja.html description.ru.html description.sk.html description.cs.html description.no.html description.sv.html description.el.html description.uk.html \ - documentmodify.en.html documentmodify.fr.html documentmodify.de.html documentmodify.es.html documentmodify.ca.html documentmodify.pl.html documentmodify.pt.html documentmodify.it.html documentmodify.ja.html documentmodify.ru.html documentmodify.sk.html documentmodify.cs.html documentmodify.no.html documentmodify.sv.html documentmodify.el.html documentmodify.uk.html \ - documentnew.en.html documentnew.fr.html documentnew.de.html documentnew.es.html documentnew.ca.html documentnew.pl.html documentnew.pt.html documentnew.it.html documentnew.ja.html documentnew.ru.html documentnew.sk.html documentnew.cs.html documentnew.no.html documentnew.sv.html documentnew.el.html documentnew.uk.html \ - documentremove.en.html documentremove.fr.html documentremove.de.html documentremove.es.html documentremove.ca.html documentremove.pl.html documentremove.pt.html documentremove.it.html documentremove.ja.html documentremove.ru.html documentremove.sk.html documentremove.cs.html documentremove.no.html documentremove.sv.html documentremove.el.html documentremove.uk.html \ - documents.en.html documents.fr.html documents.de.html documents.es.html documents.ca.html documents.pl.html documents.pt.html documents.it.html documents.ja.html documents.ru.html documents.sk.html documents.cs.html documents.no.html documents.sv.html documents.el.html documents.uk.html \ - example.en.html example.fr.html example.de.html example.es.html example.ca.html example.pl.html example.pt.html example.it.html example.ja.html example.ru.html example.sk.html example.cs.html example.no.html example.sv.html example.el.html example.uk.html \ - faq.en.html faq.fr.html faq.de.html faq.es.html faq.ca.html faq.pl.html faq.pt.html faq.it.html faq.ja.html faq.ru.html faq.sk.html faq.cs.html faq.no.html faq.sv.html faq.el.html faq.uk.html \ - functiondelete.en.html functiondelete.fr.html functiondelete.de.html functiondelete.es.html functiondelete.ca.html functiondelete.pl.html functiondelete.pt.html functiondelete.it.html functiondelete.ja.html functiondelete.ru.html functiondelete.sk.html functiondelete.cs.html functiondelete.no.html functiondelete.sv.html functiondelete.el.html functiondelete.uk.html \ - functionedit.en.html functionedit.fr.html functionedit.de.html functionedit.es.html functionedit.ca.html functionedit.pl.html functionedit.pt.html functionedit.it.html functionedit.ja.html functionedit.ru.html functionedit.sk.html functionedit.cs.html functionedit.no.html functionedit.sv.html functionedit.el.html functionedit.uk.html \ - functiondescription.en.html functiondescription.fr.html functiondescription.de.html functiondescription.es.html functiondescription.ca.html functiondescription.pl.html functiondescription.pt.html functiondescription.it.html functiondescription.ja.html functiondescription.ru.html functiondescription.sk.html functiondescription.cs.html functiondescription.no.html functiondescription.sv.html functiondescription.el.html functiondescription.uk.html \ - functionnew.en.html functionnew.fr.html functionnew.de.html functionnew.es.html functionnew.ca.html functionnew.pl.html functionnew.pt.html functionnew.it.html functionnew.ja.html functionnew.ru.html functionnew.sk.html functionnew.cs.html functionnew.no.html functionnew.sv.html functionnew.el.html functionnew.uk.html \ - functions.en.html functions.fr.html functions.de.html functions.es.html functions.ca.html functions.pl.html functions.pt.html functions.it.html functions.ja.html functions.ru.html functions.sk.html functions.cs.html functions.no.html functions.sv.html functions.el.html functions.uk.html \ - implementfunctions.en.html implementfunctions.fr.html implementfunctions.de.html implementfunctions.es.html implementfunctions.ca.html implementfunctions.pl.html implementfunctions.pt.html implementfunctions.it.html implementfunctions.ja.html implementfunctions.ru.html implementfunctions.sk.html implementfunctions.cs.html implementfunctions.no.html implementfunctions.sv.html implementfunctions.el.html implementfunctions.uk.html \ - implementwebform.en.html implementwebform.fr.html implementwebform.de.html implementwebform.es.html implementwebform.ca.html implementwebform.pl.html implementwebform.pt.html implementwebform.it.html implementwebform.ja.html implementwebform.ru.html implementwebform.sk.html implementwebform.cs.html implementwebform.no.html implementwebform.sv.html implementwebform.el.html implementwebform.uk.html \ - index.en.html index.fr.html index.de.html index.es.html index.ca.html index.pl.html index.pt.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.uk.html \ - philosophy.en.html philosophy.fr.html philosophy.de.html philosophy.es.html philosophy.ca.html philosophy.pl.html philosophy.pt.html philosophy.it.html philosophy.ja.html philosophy.ru.html philosophy.sk.html philosophy.cs.html philosophy.no.html philosophy.sv.html philosophy.el.html philosophy.uk.html \ - protection.en.html protection.fr.html protection.de.html protection.es.html protection.ca.html protection.pl.html protection.pt.html protection.it.html protection.ja.html protection.ru.html protection.sk.html protection.cs.html protection.no.html protection.sv.html protection.el.html protection.uk.html \ - bibconvert.en.html bibconvert.fr.html bibconvert.de.html bibconvert.es.html bibconvert.ca.html bibconvert.pl.html bibconvert.pt.html bibconvert.it.html bibconvert.ja.html bibconvert.ru.html bibconvert.sk.html bibconvert.cs.html bibconvert.no.html bibconvert.sv.html bibconvert.el.html bibconvert.uk.html \ - introduction.en.html introduction.fr.html introduction.de.html introduction.es.html introduction.ca.html introduction.pl.html introduction.pt.html introduction.it.html introduction.ja.html introduction.ru.html introduction.sk.html introduction.cs.html introduction.no.html introduction.sv.html introduction.el.html introduction.uk.html +doc_DATA=actionimplement.en.html actionimplement.fr.html actionimplement.de.html actionimplement.es.html actionimplement.ca.html actionimplement.pl.html actionimplement.pt.html actionimplement.it.html actionimplement.ja.html actionimplement.ru.html actionimplement.sk.html actionimplement.cs.html actionimplement.no.html actionimplement.sv.html actionimplement.el.html actionimplement.bg.html actionimplement.uk.html \ + actionmodify.en.html actionmodify.fr.html actionmodify.de.html actionmodify.es.html actionmodify.ca.html actionmodify.pl.html actionmodify.pt.html actionmodify.it.html actionmodify.ja.html actionmodify.ru.html actionmodify.sk.html actionmodify.cs.html actionmodify.no.html actionmodify.sv.html actionmodify.el.html actionmodify.bg.html actionmodify.uk.html \ + actionnew.en.html actionnew.fr.html actionnew.de.html actionnew.es.html actionnew.ca.html actionnew.pl.html actionnew.pt.html actionnew.it.html actionnew.ja.html actionnew.ru.html actionnew.sk.html actionnew.cs.html actionnew.no.html actionnew.sv.html actionnew.el.html actionnew.bg.html actionnew.uk.html \ + actionremove.en.html actionremove.fr.html actionremove.de.html actionremove.es.html actionremove.ca.html actionremove.pl.html actionremove.pt.html actionremove.it.html actionremove.ja.html actionremove.ru.html actionremove.sk.html actionremove.cs.html actionremove.no.html actionremove.sv.html actionremove.el.html actionremove.bg.html actionremove.uk.html \ + actions.en.html actions.fr.html actions.de.html actions.es.html actions.ca.html actions.pl.html actions.pt.html actions.it.html actions.ja.html actions.ru.html actions.sk.html actions.cs.html actions.no.html actions.sv.html actions.el.html actions.bg.html actions.uk.html \ + catalogues.en.html catalogues.fr.html catalogues.de.html catalogues.es.html catalogues.ca.html catalogues.pl.html catalogues.pt.html catalogues.it.html catalogues.ja.html catalogues.ru.html catalogues.sk.html catalogues.cs.html catalogues.no.html catalogues.sv.html catalogues.el.html catalogues.bg.html catalogues.uk.html \ + description.en.html description.fr.html description.de.html description.es.html description.ca.html description.pl.html description.pt.html description.it.html description.ja.html description.ru.html description.sk.html description.cs.html description.no.html description.sv.html description.el.html description.bg.html description.uk.html \ + documentmodify.en.html documentmodify.fr.html documentmodify.de.html documentmodify.es.html documentmodify.ca.html documentmodify.pl.html documentmodify.pt.html documentmodify.it.html documentmodify.ja.html documentmodify.ru.html documentmodify.sk.html documentmodify.cs.html documentmodify.no.html documentmodify.sv.html documentmodify.el.html documentmodify.bg.html documentmodify.uk.html \ + documentnew.en.html documentnew.fr.html documentnew.de.html documentnew.es.html documentnew.ca.html documentnew.pl.html documentnew.pt.html documentnew.it.html documentnew.ja.html documentnew.ru.html documentnew.sk.html documentnew.cs.html documentnew.no.html documentnew.sv.html documentnew.el.html documentnew.bg.html documentnew.uk.html \ + documentremove.en.html documentremove.fr.html documentremove.de.html documentremove.es.html documentremove.ca.html documentremove.pl.html documentremove.pt.html documentremove.it.html documentremove.ja.html documentremove.ru.html documentremove.sk.html documentremove.cs.html documentremove.no.html documentremove.sv.html documentremove.el.html documentremove.bg.html documentremove.uk.html \ + documents.en.html documents.fr.html documents.de.html documents.es.html documents.ca.html documents.pl.html documents.pt.html documents.it.html documents.ja.html documents.ru.html documents.sk.html documents.cs.html documents.no.html documents.sv.html documents.el.html documents.bg.html documents.uk.html \ + example.en.html example.fr.html example.de.html example.es.html example.ca.html example.pl.html example.pt.html example.it.html example.ja.html example.ru.html example.sk.html example.cs.html example.no.html example.sv.html example.el.html example.bg.html example.uk.html \ + faq.en.html faq.fr.html faq.de.html faq.es.html faq.ca.html faq.pl.html faq.pt.html faq.it.html faq.ja.html faq.ru.html faq.sk.html faq.cs.html faq.no.html faq.sv.html faq.el.html faq.bg.html faq.uk.html \ + functiondelete.en.html functiondelete.fr.html functiondelete.de.html functiondelete.es.html functiondelete.ca.html functiondelete.pl.html functiondelete.pt.html functiondelete.it.html functiondelete.ja.html functiondelete.ru.html functiondelete.sk.html functiondelete.cs.html functiondelete.no.html functiondelete.sv.html functiondelete.el.html functiondelete.bg.html functiondelete.uk.html \ + functionedit.en.html functionedit.fr.html functionedit.de.html functionedit.es.html functionedit.ca.html functionedit.pl.html functionedit.pt.html functionedit.it.html functionedit.ja.html functionedit.ru.html functionedit.sk.html functionedit.cs.html functionedit.no.html functionedit.sv.html functionedit.el.html functionedit.bg.html functionedit.uk.html \ + functiondescription.en.html functiondescription.fr.html functiondescription.de.html functiondescription.es.html functiondescription.ca.html functiondescription.pl.html functiondescription.pt.html functiondescription.it.html functiondescription.ja.html functiondescription.ru.html functiondescription.sk.html functiondescription.cs.html functiondescription.no.html functiondescription.sv.html functiondescription.el.html functiondescription.bg.html functiondescription.uk.html \ + functionnew.en.html functionnew.fr.html functionnew.de.html functionnew.es.html functionnew.ca.html functionnew.pl.html functionnew.pt.html functionnew.it.html functionnew.ja.html functionnew.ru.html functionnew.sk.html functionnew.cs.html functionnew.no.html functionnew.sv.html functionnew.el.html functionnew.bg.html functionnew.uk.html \ + functions.en.html functions.fr.html functions.de.html functions.es.html functions.ca.html functions.pl.html functions.pt.html functions.it.html functions.ja.html functions.ru.html functions.sk.html functions.cs.html functions.no.html functions.sv.html functions.el.html functions.bg.html functions.uk.html \ + implementfunctions.en.html implementfunctions.fr.html implementfunctions.de.html implementfunctions.es.html implementfunctions.ca.html implementfunctions.pl.html implementfunctions.pt.html implementfunctions.it.html implementfunctions.ja.html implementfunctions.ru.html implementfunctions.sk.html implementfunctions.cs.html implementfunctions.no.html implementfunctions.sv.html implementfunctions.el.html implementfunctions.bg.html implementfunctions.uk.html \ + implementwebform.en.html implementwebform.fr.html implementwebform.de.html implementwebform.es.html implementwebform.ca.html implementwebform.pl.html implementwebform.pt.html implementwebform.it.html implementwebform.ja.html implementwebform.ru.html implementwebform.sk.html implementwebform.cs.html implementwebform.no.html implementwebform.sv.html implementwebform.el.html implementwebform.bg.html implementwebform.uk.html \ + index.en.html index.fr.html index.de.html index.es.html index.ca.html index.pl.html index.pt.html index.it.html index.ja.html index.ru.html index.sk.html index.cs.html index.no.html index.sv.html index.el.html index.bg.html index.uk.html \ + philosophy.en.html philosophy.fr.html philosophy.de.html philosophy.es.html philosophy.ca.html philosophy.pl.html philosophy.pt.html philosophy.it.html philosophy.ja.html philosophy.ru.html philosophy.sk.html philosophy.cs.html philosophy.no.html philosophy.sv.html philosophy.el.html philosophy.bg.html philosophy.uk.html \ + protection.en.html protection.fr.html protection.de.html protection.es.html protection.ca.html protection.pl.html protection.pt.html protection.it.html protection.ja.html protection.ru.html protection.sk.html protection.cs.html protection.no.html protection.sv.html protection.el.html protection.bg.html protection.uk.html \ + bibconvert.en.html bibconvert.fr.html bibconvert.de.html bibconvert.es.html bibconvert.ca.html bibconvert.pl.html bibconvert.pt.html bibconvert.it.html bibconvert.ja.html bibconvert.ru.html bibconvert.sk.html bibconvert.cs.html bibconvert.no.html bibconvert.sv.html bibconvert.el.html bibconvert.bg.html bibconvert.uk.html \ + introduction.en.html introduction.fr.html introduction.de.html introduction.es.html introduction.ca.html introduction.pl.html introduction.pt.html introduction.it.html introduction.ja.html introduction.ru.html introduction.sk.html introduction.cs.html introduction.no.html introduction.sv.html introduction.el.html introduction.bg.html introduction.uk.html FILESWML = $(wildcard $(srcdir)/*.wml) EXTRA_DIST = $(FILESWML:$(srcdir)/%=%) CLEANFILES = $(doc_DATA) *~ *.tmp *.php LINGUAS = $(shell grep -v '^\#' $(top_srcdir)/po/LINGUAS) MO = $(LINGUAS:%=$(top_builddir)/po/%.gmo) -%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) \ +%.en.html %.fr.html %.de.html %.es.html %.ca.html %.pl.html %.pt.html %.it.html %.ja.html %.ru.html %.sk.html %.cs.html %.no.html %.sv.html %.el.html %.bg.html %.uk.html: %.html.wml $(top_srcdir)/config/config.wml $(top_builddir)/config/configbis.wml $(MO) \ $(top_srcdir)/config/cdsnavbar.wml $(WML) -o\(ALL-LANG_*\)+LANG_EN:$*.en.html \ -o\(ALL-LANG_*\)+LANG_FR:$*.fr.html \ -o\(ALL-LANG_*\)+LANG_DE:$*.de.html \ -o\(ALL-LANG_*\)+LANG_ES:$*.es.html \ -o\(ALL-LANG_*\)+LANG_CA:$*.ca.html \ -o\(ALL-LANG_*\)+LANG_PL:$*.pl.html \ -o\(ALL-LANG_*\)+LANG_PT:$*.pt.html \ -o\(ALL-LANG_*\)+LANG_IT:$*.it.html \ -o\(ALL-LANG_*\)+LANG_JA:$*.ja.html \ -o\(ALL-LANG_*\)+LANG_RU:$*.ru.html \ -o\(ALL-LANG_*\)+LANG_SK:$*.sk.html \ -o\(ALL-LANG_*\)+LANG_CS:$*.cs.html \ -o\(ALL-LANG_*\)+LANG_NO:$*.no.html \ -o\(ALL-LANG_*\)+LANG_SV:$*.sv.html \ -o\(ALL-LANG_*\)+LANG_EL:$*.el.html \ + -o\(ALL-LANG_*\)+LANG_BG:$*.bg.html \ -o\(ALL-LANG_*\)+LANG_UK:$*.uk.html $< for lang in $(LINGUAS); do \ $(PYTHON) $(top_srcdir)/po/i18n_update_wml_target.py $${lang} "$*.$${lang}.html" ; \ done diff --git a/po/LINGUAS b/po/LINGUAS index be906f887..113110a79 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1,2 +1,2 @@ # This is the list of _all_ the languages supported by CDS Invenio -ca cs de el en es fr it ja no pl pt ru sk sv uk +bg ca cs de el en es fr it ja no pl pt ru sk sv uk diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 000000000..630f24938 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,4074 @@ +# # This file is part of CDS Invenio. +# # Copyright (C) 2002, 2003, 2004, 2005, 2006 CERN. +# # +# # CDS Invenio is free software; you can redistribute it and/or +# # modify it under the terms of the GNU General Public License as +# # published by the Free Software Foundation; either version 2 of the +# # License, or (at your option) any later version. +# # +# # CDS Invenio is distributed in the hope that it will be useful, but +# # WITHOUT ANY WARRANTY; without even the implied warranty of +# # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# # General Public License for more details. +# # +# # You should have received a copy of the GNU General Public License +# # along with CDS Invenio; if not, write to the Free Software Foundation, Inc., +# # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. +msgid "" +msgstr "" +"Project-Id-Version: CDS-Invenio 0.90.0\n" +"Report-Msgid-Bugs-To: cds.support@cern.ch\n" +"POT-Creation-Date: 2006-06-30 12:19+0200\n" +"PO-Revision-Date: 2006-07-12 12:37+0200\n" +"Last-Translator: Tibor Simko \n" +"Language-Team: BG \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: config/cdswmllib.wml:90 modules/webstyle/lib/webstyle_templates.py:465 +msgid "This site is also available in the following languages:" +msgstr "Тази страница е преведена на следните езици:" + +#: config/cdspage.wml:53 config/cdspage.wml:139 +#: modules/websearch/lib/websearch_templates.py:325 +#: modules/websearch/lib/websearch_templates.py:446 +#: modules/websearch/lib/websearch_templates.py:1255 +#: modules/websearch/lib/websearch_templates.py:1354 +#: modules/websearch/lib/websearch_templates.py:1413 +#: modules/webstyle/lib/webstyle_templates.py:342 +#: modules/webstyle/lib/webstyle_templates.py:413 +msgid "Search" +msgstr "" + +#: config/cdspage.wml:60 config/cdspage.wml:141 +#: modules/webstyle/lib/webstyle_templates.py:345 +#: modules/webstyle/lib/webstyle_templates.py:416 +msgid "Help" +msgstr "" + +#: modules/bibclassify/doc/admin/index.html.wml:22 +#: modules/bibclassify/doc/admin/guide.html.wml:23 +#: modules/bibconvert/doc/admin/guide.html.wml:22 +#: modules/bibconvert/doc/admin/index.html.wml:22 +#: modules/bibedit/doc/admin/guide.html.wml:23 +#: modules/bibedit/doc/admin/index.html.wml:22 +#: modules/bibformat/doc/admin/guide.html.wml:22 +#: modules/bibformat/web/admin/BEH_ACTION_add.php.wml:25 +#: modules/bibformat/web/admin/BEH_ACTION_edit.php.wml:25 +#: modules/bibformat/web/admin/BEH_COND_edit.php.wml:25 +#: modules/bibformat/web/admin/BEH_OTYPE_del.php.wml:25 +#: modules/bibformat/web/admin/BEH_OTYPE_showone.php.wml:25 +#: modules/bibformat/web/admin/BEH_display.php.wml:24 +#: modules/bibformat/web/admin/BIBREFORMAT_display.php.wml:24 +#: modules/bibformat/web/admin/BIBREFORMAT_hand.php.wml:22 +#: modules/bibformat/web/admin/BIBREFORMAT_tree.php.wml:22 +#: modules/bibformat/web/admin/FORMAT_display.php.wml:25 +#: modules/bibformat/web/admin/KB_display.php.wml:25 +#: modules/bibformat/web/admin/LINK_FORMAT_display.php.wml:25 +#: modules/bibformat/web/admin/LINK_display.php.wml:25 +#: modules/bibformat/web/admin/OAIER_SF_add.php.wml:25 +#: modules/bibformat/web/admin/OAIER_display.php.wml:24 +#: modules/bibformat/web/admin/UDF_display.php.wml:25 +#: modules/bibformat/web/admin/index.php.wml:25 +#: modules/bibformat/web/admin/test.php.wml:25 +#: modules/bibharvest/doc/admin/guide.html.wml:22 +#: modules/bibharvest/doc/admin/index.html.wml:22 +#: modules/bibindex/doc/admin/index.html.wml:22 +#: modules/bibindex/doc/admin/guide.html.wml:22 +#: modules/bibmatch/doc/admin/index.html.wml:22 +#: modules/bibmatch/doc/admin/guide.html.wml:23 +#: modules/bibrank/doc/admin/index.html.wml:22 +#: modules/bibrank/doc/admin/guide.html.wml:22 +#: modules/bibsched/doc/admin/guide.html.wml:22 +#: modules/bibsched/doc/admin/index.html.wml:22 +#: modules/bibupload/doc/admin/guide.html.wml:22 +#: modules/bibupload/doc/admin/index.html.wml:22 +#: modules/elmsubmit/doc/admin/guide.html.wml:22 +#: modules/elmsubmit/doc/admin/index.html.wml:22 +#: modules/webalert/doc/admin/guide.html.wml:22 +#: modules/webalert/doc/admin/index.html.wml:22 +#: modules/webbasket/doc/admin/guide.html.wml:22 +#: modules/webbasket/doc/admin/index.html.wml:22 +#: modules/webcomment/doc/admin/index.html.wml:22 +#: modules/webcomment/doc/admin/guide.html.wml:23 +#: modules/webhelp/web/admin/index.html.wml:21 +#: modules/webmessage/doc/admin/guide.html.wml:23 +#: modules/webmessage/doc/admin/index.html.wml:22 +#: modules/websearch/doc/admin/index.html.wml:22 +#: modules/websearch/doc/admin/guide.html.wml:23 +#: modules/websession/doc/admin/guide.html.wml:22 +#: modules/websession/doc/admin/index.html.wml:22 +#: modules/webstat/doc/admin/guide.html.wml:22 +#: modules/webstat/doc/admin/index.html.wml:22 +#: modules/webstyle/doc/admin/guide.html.wml:22 +#: modules/webstyle/doc/admin/index.html.wml:22 +#: modules/websubmit/doc/admin/actionimplement.html.wml:23 +#: modules/websubmit/doc/admin/actionmodify.html.wml:23 +#: modules/websubmit/doc/admin/actionnew.html.wml:23 +#: modules/websubmit/doc/admin/actionremove.html.wml:23 +#: modules/websubmit/doc/admin/actions.html.wml:23 +#: modules/websubmit/doc/admin/bibconvert.html.wml:23 +#: modules/websubmit/doc/admin/catalogues.html.wml:23 +#: modules/websubmit/doc/admin/description.html.wml:23 +#: modules/websubmit/doc/admin/documentmodify.html.wml:23 +#: modules/websubmit/doc/admin/documentnew.html.wml:23 +#: modules/websubmit/doc/admin/documentremove.html.wml:23 +#: modules/websubmit/doc/admin/documents.html.wml:23 +#: modules/websubmit/doc/admin/example.html.wml:23 +#: modules/websubmit/doc/admin/faq.html.wml:23 +#: modules/websubmit/doc/admin/functiondelete.html.wml:23 +#: modules/websubmit/doc/admin/functiondescription.html.wml:23 +#: modules/websubmit/doc/admin/functionedit.html.wml:23 +#: modules/websubmit/doc/admin/functionnew.html.wml:23 +#: modules/websubmit/doc/admin/functions.html.wml:23 +#: modules/websubmit/doc/admin/implementfunctions.html.wml:23 +#: modules/websubmit/doc/admin/implementwebform.html.wml:23 +#: modules/websubmit/doc/admin/index.html.wml:23 +#: modules/websubmit/doc/admin/introduction.html.wml:23 +#: modules/websubmit/doc/admin/philosophy.html.wml:23 +#: modules/websubmit/doc/admin/protection.html.wml:23 +#: modules/websubmit/web/admin/func.php.wml:24 +#: modules/websubmit/web/admin/viewEditSubmissionEDS.php.wml:24 +#: modules/websubmit/web/admin/viewChecksEDS.php.wml:24 +#: modules/websubmit/web/admin/viewActionEDS.php.wml:24 +#: modules/websubmit/web/admin/removeDoctypeEDS.php.wml:24 +#: modules/websubmit/web/admin/parameterUpdate.php.wml:24 +#: modules/websubmit/web/admin/newSubmissionEDS.php.wml:24 +#: modules/websubmit/web/admin/newFunc.php.wml:24 +#: modules/websubmit/web/admin/pageDetsEDS.php.wml:24 +#: modules/websubmit/web/admin/funcUsage.php.wml:24 +#: modules/websubmit/web/admin/index.php.wml:24 +#: modules/websubmit/web/admin/elementConfigDetsEDS.php.wml:24 +#: modules/websubmit/web/admin/editRecordFile.php.wml:24 +#: modules/websubmit/web/admin/editPageElementEDS.php.wml:24 +#: modules/websubmit/web/admin/editDoctypeEDS.php.wml:24 +#: modules/websubmit/web/admin/editActionDets.php.wml:24 +#: modules/websubmit/web/admin/documentEDS.php.wml:24 +#: modules/websubmit/web/admin/doctypeCategoriesEDS.php.wml:24 +#: modules/websubmit/web/admin/allElementsEDS.php.wml:24 +#: modules/websubmit/web/admin/allChecksEDS.php.wml:24 +#: modules/websubmit/web/admin/allActionsEDS.php.wml:24 +#: modules/websubmit/web/admin/addFunctions.php.wml:24 +#: modules/websubmit/web/admin/addElement2PageEDS.php.wml:24 +#: modules/websubmit/web/admin/addCheckEDS.php.wml:24 +#: modules/websubmit/web/admin/addActionEDS.php.wml:24 +#: modules/websubmit/web/admin/addElementDescrEDS.php.wml:24 +#: modules/websubmit/web/admin/editCatalogues.php.wml:24 +#: modules/websubmit/web/admin/listFunctions.php.wml:24 +#: modules/websubmit/web/admin/newDoctypeEDS.php.wml:24 +#: modules/websubmit/web/admin/veditFunDets.php.wml:24 +#: modules/websubmit/web/admin/actionFunctions.php.wml:24 +#: modules/webcomment/lib/webcommentadminlib.py:38 +#: modules/websession/lib/websession_templates.py:783 +msgid "Admin Area" +msgstr "" + +#: modules/webhelp/web/index.html.wml:48 +#: modules/websearch/doc/guide.html.wml:24 +#: modules/websearch/doc/index.html.wml:22 +#: modules/websearch/doc/tips.html.wml:24 +msgid "Search Help" +msgstr "" + +#: modules/websubmit/doc/admin/actionimplement.html.wml:23 +#: modules/websubmit/doc/admin/actionmodify.html.wml:23 +#: modules/websubmit/doc/admin/actionnew.html.wml:23 +#: modules/websubmit/doc/admin/actionremove.html.wml:23 +#: modules/websubmit/doc/admin/actions.html.wml:23 +#: modules/websubmit/doc/admin/bibconvert.html.wml:23 +#: modules/websubmit/doc/admin/catalogues.html.wml:23 +#: modules/websubmit/doc/admin/description.html.wml:23 +#: modules/websubmit/doc/admin/documentmodify.html.wml:23 +#: modules/websubmit/doc/admin/documentnew.html.wml:23 +#: modules/websubmit/doc/admin/documentremove.html.wml:23 +#: modules/websubmit/doc/admin/documents.html.wml:23 +#: modules/websubmit/doc/admin/example.html.wml:23 +#: modules/websubmit/doc/admin/faq.html.wml:23 +#: modules/websubmit/doc/admin/functiondelete.html.wml:23 +#: modules/websubmit/doc/admin/functiondescription.html.wml:23 +#: modules/websubmit/doc/admin/functionedit.html.wml:23 +#: modules/websubmit/doc/admin/functionnew.html.wml:23 +#: modules/websubmit/doc/admin/functions.html.wml:23 +#: modules/websubmit/doc/admin/implementfunctions.html.wml:23 +#: modules/websubmit/doc/admin/implementwebform.html.wml:23 +#: modules/websubmit/doc/admin/index.html.wml:23 +#: modules/websubmit/doc/admin/introduction.html.wml:23 +#: modules/websubmit/doc/admin/philosophy.html.wml:23 +#: modules/websubmit/doc/admin/protection.html.wml:23 +#: modules/websubmit/web/admin/func.php.wml:24 +#: modules/websubmit/web/admin/viewEditSubmissionEDS.php.wml:24 +#: modules/websubmit/web/admin/viewChecksEDS.php.wml:24 +#: modules/websubmit/web/admin/viewActionEDS.php.wml:24 +#: modules/websubmit/web/admin/removeDoctypeEDS.php.wml:24 +#: modules/websubmit/web/admin/parameterUpdate.php.wml:24 +#: modules/websubmit/web/admin/newSubmissionEDS.php.wml:24 +#: modules/websubmit/web/admin/newFunc.php.wml:24 +#: modules/websubmit/web/admin/pageDetsEDS.php.wml:24 +#: modules/websubmit/web/admin/funcUsage.php.wml:24 +#: modules/websubmit/web/admin/elementConfigDetsEDS.php.wml:24 +#: modules/websubmit/web/admin/editRecordFile.php.wml:24 +#: modules/websubmit/web/admin/editPageElementEDS.php.wml:24 +#: modules/websubmit/web/admin/editDoctypeEDS.php.wml:24 +#: modules/websubmit/web/admin/editActionDets.php.wml:24 +#: modules/websubmit/web/admin/documentEDS.php.wml:24 +#: modules/websubmit/web/admin/doctypeCategoriesEDS.php.wml:24 +#: modules/websubmit/web/admin/allElementsEDS.php.wml:24 +#: modules/websubmit/web/admin/allChecksEDS.php.wml:24 +#: modules/websubmit/web/admin/allActionsEDS.php.wml:24 +#: modules/websubmit/web/admin/addFunctions.php.wml:24 +#: modules/websubmit/web/admin/addElement2PageEDS.php.wml:24 +#: modules/websubmit/web/admin/addCheckEDS.php.wml:24 +#: modules/websubmit/web/admin/addActionEDS.php.wml:24 +#: modules/websubmit/web/admin/addElementDescrEDS.php.wml:24 +#: modules/websubmit/web/admin/editCatalogues.php.wml:24 +#: modules/websubmit/web/admin/listFunctions.php.wml:24 +#: modules/websubmit/web/admin/newDoctypeEDS.php.wml:24 +#: modules/websubmit/web/admin/veditFunDets.php.wml:24 +#: modules/websubmit/web/admin/actionFunctions.php.wml:24 +msgid "WebSubmit Administration" +msgstr "" + +#: config/cdspage.wml:55 +msgid "Convert" +msgstr "" + +#: config/cdspage.wml:54 config/cdspage.wml:140 +#: modules/bibedit/lib/bibedit_templates.py:105 +#: modules/webstyle/lib/webstyle_templates.py:343 +#: modules/webstyle/lib/webstyle_templates.py:414 +#: modules/websubmit/lib/websubmit_engine.py:443 +#: modules/websubmit/lib/websubmit_engine.py:685 +#: modules/websubmit/lib/websubmit_engine.py:721 +#: modules/websubmit/lib/websubmit_engine.py:879 +msgid "Submit" +msgstr "" + +#: config/cdspage.wml:61 config/cdspage.wml:142 +#: modules/webstyle/lib/webstyle_templates.py:344 +#: modules/webstyle/lib/webstyle_templates.py:415 +msgid "Personalize" +msgstr "" + +#: modules/webhelp/web/index.html.wml:22 modules/webhelp/web/index.html.wml:28 +#: modules/webhelp/web/index.html.wml:29 modules/webhelp/web/index.html.wml:30 +#: modules/webhelp/web/index.html.wml:31 modules/webhelp/web/index.html.wml:32 +#: modules/webhelp/web/index.html.wml:33 modules/webhelp/web/index.html.wml:34 +#: modules/webhelp/web/index.html.wml:35 modules/webhelp/web/index.html.wml:36 +#: modules/webhelp/web/index.html.wml:37 modules/webhelp/web/index.html.wml:38 +#: modules/webhelp/web/index.html.wml:39 modules/webhelp/web/index.html.wml:40 +#: modules/webhelp/web/index.html.wml:41 modules/webhelp/web/index.html.wml:42 +#: modules/webhelp/web/index.html.wml:43 +#: modules/websearch/doc/guide.html.wml:24 +#: modules/websearch/doc/index.html.wml:24 +#: modules/websearch/doc/tips.html.wml:24 +#: modules/websubmit/doc/access.html.wml:23 +#: modules/websubmit/doc/actions.html.wml:23 +#: modules/websubmit/doc/approval.html.wml:23 +#: modules/websubmit/doc/approvals.html.wml:23 +#: modules/websubmit/doc/bibliographic_fields.html.wml:23 +#: modules/websubmit/doc/description.html.wml:23 +#: modules/websubmit/doc/file_transfer.html.wml:23 +#: modules/websubmit/doc/index.html.wml:23 +#: modules/websubmit/doc/introduction.html.wml:23 +#: modules/websubmit/doc/login.html.wml:23 +#: modules/websubmit/doc/modification.html.wml:23 +#: modules/websubmit/doc/password.html.wml:23 +#: modules/websubmit/doc/pending.html.wml:23 +#: modules/websubmit/doc/revised_version.html.wml:24 +#: modules/websubmit/doc/submission.html.wml:23 +#: modules/websubmit/doc/subnumber.html.wml:23 +msgid "Help Central" +msgstr "" + +#: config/cdspage.wml:144 modules/webstyle/lib/webstyle_templates.py:154 +#: modules/webstyle/lib/webstyle_templates.py:381 +msgid "Last updated:" +msgstr "" + +#: modules/webhelp/web/index.html.wml:65 +#: modules/websubmit/doc/access.html.wml:23 +#: modules/websubmit/doc/actions.html.wml:23 +#: modules/websubmit/doc/approval.html.wml:23 +#: modules/websubmit/doc/approvals.html.wml:23 +#: modules/websubmit/doc/bibliographic_fields.html.wml:23 +#: modules/websubmit/doc/description.html.wml:23 +#: modules/websubmit/doc/file_transfer.html.wml:23 +#: modules/websubmit/doc/index.html.wml:22 +#: modules/websubmit/doc/introduction.html.wml:23 +#: modules/websubmit/doc/login.html.wml:23 +#: modules/websubmit/doc/modification.html.wml:23 +#: modules/websubmit/doc/password.html.wml:23 +#: modules/websubmit/doc/pending.html.wml:23 +#: modules/websubmit/doc/revised_version.html.wml:24 +#: modules/websubmit/doc/submission.html.wml:23 +#: modules/websubmit/doc/subnumber.html.wml:23 +msgid "Submit Help" +msgstr "" + +#: modules/websubmit/doc/admin/actionimplement.html.wml:23 +#: modules/websubmit/doc/admin/actionmodify.html.wml:23 +#: modules/websubmit/doc/admin/actionnew.html.wml:23 +#: modules/websubmit/doc/admin/actionremove.html.wml:23 +#: modules/websubmit/doc/admin/actions.html.wml:23 +#: modules/websubmit/doc/admin/bibconvert.html.wml:23 +#: modules/websubmit/doc/admin/catalogues.html.wml:23 +#: modules/websubmit/doc/admin/description.html.wml:23 +#: modules/websubmit/doc/admin/documentmodify.html.wml:23 +#: modules/websubmit/doc/admin/documentnew.html.wml:23 +#: modules/websubmit/doc/admin/documentremove.html.wml:23 +#: modules/websubmit/doc/admin/documents.html.wml:23 +#: modules/websubmit/doc/admin/example.html.wml:23 +#: modules/websubmit/doc/admin/faq.html.wml:23 +#: modules/websubmit/doc/admin/functiondelete.html.wml:23 +#: modules/websubmit/doc/admin/functiondescription.html.wml:23 +#: modules/websubmit/doc/admin/functionedit.html.wml:23 +#: modules/websubmit/doc/admin/functionnew.html.wml:23 +#: modules/websubmit/doc/admin/functions.html.wml:23 +#: modules/websubmit/doc/admin/implementfunctions.html.wml:23 +#: modules/websubmit/doc/admin/implementwebform.html.wml:23 +#: modules/websubmit/doc/admin/index.html.wml:22 +#: modules/websubmit/doc/admin/introduction.html.wml:23 +#: modules/websubmit/doc/admin/philosophy.html.wml:23 +#: modules/websubmit/doc/admin/protection.html.wml:23 +msgid "Guide" +msgstr "" + +#: config/cdspage.wml:59 +msgid "Library" +msgstr "" + +#: config/cdspage.wml:56 +msgid "Agenda" +msgstr "" + +#: modules/websearch/doc/index.html.wml:48 +#: modules/websearch/doc/tips.html.wml:22 +#: modules/websearch/lib/websearch_templates.py:327 +#: modules/websearch/lib/websearch_templates.py:448 +#: modules/websearch/lib/websearch_templates.py:1358 +#: modules/websearch/lib/websearch_templates.py:1417 +msgid "Search Tips" +msgstr "" + +#: config/cdspage.wml:57 +msgid "Webcast" +msgstr "" + +#: config/cdspage.wml:64 config/cdspage.wml:66 +#: modules/webstyle/lib/webstyle_templates.py:67 +#: modules/webstyle/lib/webstyle_templates.py:76 +#: modules/webstyle/lib/webstyle_templates.py:248 +msgid "Home" +msgstr "" + +#: config/cdspage.wml:145 modules/webstyle/lib/webstyle_templates.py:419 +msgid "Maintained by" +msgstr "" + +#: config/cdspage.wml:58 +msgid "Bulletin" +msgstr "" + +#: config/cdspage.wml:146 modules/webstyle/lib/webstyle_templates.py:418 +msgid "Powered by" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:50 +msgid "Add Subfield" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:61 +#: modules/webalert/lib/webalert_templates.py:75 +msgid "Field" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:87 +msgid "Add Field" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:94 +msgid "Verbose" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:99 +msgid "MARC" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:111 +#: modules/webbasket/lib/webbasket_templates.py:1185 +#: modules/webbasket/lib/webbasket_templates.py:1280 +#: modules/webbasket/lib/webbasket_templates.py:1380 +#: modules/websession/lib/websession_templates.py:1170 +#: modules/websession/lib/websession_templates.py:1262 +#: modules/websession/lib/websession_templates.py:1429 +#: modules/websession/lib/websession_templates.py:1501 +msgid "Cancel" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:112 +#: modules/webmessage/lib/webmessage_templates.py:105 +msgid "Delete" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:125 +#: modules/webalert/lib/webalert_templates.py:307 +#: modules/webalert/lib/webalert_templates.py:430 +#: modules/webmessage/lib/webmessage_templates.py:82 +#: modules/websubmit/lib/websubmit_templates.py:1398 +msgid "Action" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:126 +#: modules/bibedit/lib/bibedit_templates.py:141 +#: modules/webcomment/lib/webcomment_templates.py:613 +#: modules/webcomment/lib/webcomment_templates.py:1169 +msgid "Record" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:127 +msgid "Display" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:255 +msgid "Save" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:257 +msgid "Return to Record" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:411 +msgid "Your changes are TEMPORARY." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:412 +msgid "To save this record, please click on submit." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:426 +msgid "This record doesn't exist." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:427 +msgid "Please try another record ID." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:435 +msgid "This record is currently being edited by somebody else." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:436 +msgid "Please try to come back later." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:443 +msgid "Cannot edit deleted record." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:463 +msgid "Please enter" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:464 +msgid "record ID" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:465 +msgid "to edit" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:468 +msgid "Edit" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:482 +msgid "Your modifications have now been submitted." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:483 +msgid "They will be processed as soon as the task queue is empty." +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:484 +msgid "You can now go back to" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:485 +#: modules/bibedit/lib/bibedit_templates.py:521 +msgid "BibEdit Admin Interface" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:508 +msgid "Do you really want to delete this record ?" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:512 +#: modules/webbasket/lib/webbasket_templates.py:1184 +#: modules/webcomment/lib/webcomment_templates.py:213 +#: modules/webcomment/lib/webcomment_templates.py:466 +#: modules/webcomment/lib/webcomment_templates.py:1306 +#: modules/webcomment/lib/webcomment_templates.py:1331 +#: modules/webmessage/lib/webmessage_templates.py:475 +#: modules/websession/lib/websession_templates.py:1540 +#: modules/websession/lib/websession_templates.py:1579 +msgid "Yes" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:513 +#: modules/webalert/lib/webalert_templates.py:299 +#: modules/webcomment/lib/webcomment_templates.py:214 +#: modules/webcomment/lib/webcomment_templates.py:468 +#: modules/webcomment/lib/webcomment_templates.py:1306 +#: modules/webcomment/lib/webcomment_templates.py:1331 +#: modules/webmessage/lib/webmessage_templates.py:476 +#: modules/websession/lib/websession_templates.py:1541 +#: modules/websession/lib/websession_templates.py:1580 +msgid "No" +msgstr "" + +#: modules/bibedit/lib/bibedit_templates.py:520 +msgid "" +"The record as soon deleted when the task queue is empty.You can now go back " +"to" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:51 +#: modules/bibharvest/lib/bibharvest_templates.py:69 +msgid "See Guide" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:106 +msgid "OAI sources currently present in the database" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:107 +msgid "No OAI sources currently present in the database" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:117 +msgid "Next oaiharvest task" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:118 +msgid "scheduled time:" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:119 +msgid "current status:" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:120 +msgid "No oaiharvest task currently scheduled" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:221 +msgid "successfully validated!" +msgstr "" + +#: modules/bibharvest/lib/bibharvest_templates.py:222 +msgid "does not seem to be a OAI-compliant baseURL..." +msgstr "" + +#: modules/bibrank/lib/bibrank_citation_grapher.py:118 +msgid "Citation history:" +msgstr "" + +#: modules/bibrank/lib/bibrank_downloads_grapher.py:95 +msgid "Downloads history:" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:69 modules/miscutil/lib/dateutils.py:96 +#: modules/webbasket/lib/webbasket.py:166 +#: modules/webbasket/lib/webbasket.py:604 +#: modules/websession/lib/webuser.py:200 +#: modules/webstyle/lib/webstyle_templates.py:491 +msgid "N/A" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:139 +msgid "Sun" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:140 +msgid "Mon" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:141 +msgid "Tue" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:142 +msgid "Wed" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:143 +msgid "Thu" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:144 +msgid "Fri" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:145 +msgid "Sat" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:147 +msgid "Sunday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:148 +msgid "Monday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:149 +msgid "Tuesday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:150 +msgid "Wednesday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:151 +msgid "Thursday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:152 +msgid "Friday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:153 +msgid "Saturday" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:167 modules/miscutil/lib/dateutils.py:181 +msgid "Month" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:168 +msgid "Jan" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:169 +msgid "Feb" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:170 +msgid "Mar" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:171 +msgid "Apr" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:172 modules/miscutil/lib/dateutils.py:186 +#: modules/websearch/lib/search_engine.py:415 +#: modules/websearch/lib/websearch_templates.py:642 +msgid "May" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:173 +msgid "Jun" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:174 +msgid "Jul" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:175 +msgid "Aug" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:176 +msgid "Sep" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:177 +msgid "Oct" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:178 +msgid "Nov" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:179 +msgid "Dec" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:182 +#: modules/websearch/lib/search_engine.py:414 +#: modules/websearch/lib/websearch_templates.py:641 +msgid "January" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:183 +#: modules/websearch/lib/search_engine.py:414 +#: modules/websearch/lib/websearch_templates.py:641 +msgid "February" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:184 +#: modules/websearch/lib/search_engine.py:414 +#: modules/websearch/lib/websearch_templates.py:641 +msgid "March" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:185 +#: modules/websearch/lib/search_engine.py:414 +#: modules/websearch/lib/websearch_templates.py:641 +msgid "April" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:187 +#: modules/websearch/lib/search_engine.py:415 +#: modules/websearch/lib/websearch_templates.py:642 +msgid "June" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:188 +#: modules/websearch/lib/search_engine.py:415 +#: modules/websearch/lib/websearch_templates.py:642 +msgid "July" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:189 +#: modules/websearch/lib/search_engine.py:415 +#: modules/websearch/lib/websearch_templates.py:642 +msgid "August" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:190 +#: modules/websearch/lib/search_engine.py:416 +#: modules/websearch/lib/websearch_templates.py:643 +msgid "September" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:191 +#: modules/websearch/lib/search_engine.py:416 +#: modules/websearch/lib/websearch_templates.py:643 +msgid "October" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:192 +#: modules/websearch/lib/search_engine.py:416 +#: modules/websearch/lib/websearch_templates.py:643 +msgid "November" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:193 +#: modules/websearch/lib/search_engine.py:416 +#: modules/websearch/lib/websearch_templates.py:643 +msgid "December" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:211 +msgid "Day" +msgstr "" + +#: modules/miscutil/lib/dateutils.py:262 +msgid "Year" +msgstr "" + +#: modules/miscutil/lib/errorlib_webinterface.py:59 +#: modules/miscutil/lib/errorlib_webinterface.py:61 +#: modules/miscutil/lib/errorlib_webinterface.py:63 +#: modules/miscutil/lib/errorlib_webinterface.py:65 +msgid "Sorry" +msgstr "" + +#: modules/miscutil/lib/errorlib_webinterface.py:59 +#: modules/miscutil/lib/errorlib_webinterface.py:61 +#: modules/miscutil/lib/errorlib_webinterface.py:63 +#: modules/miscutil/lib/errorlib_webinterface.py:65 +#, python-format +msgid "Cannot send error request, %s parameter missing." +msgstr "" + +#: modules/miscutil/lib/errorlib_webinterface.py:82 +msgid "The error report has been sent." +msgstr "" + +#: modules/miscutil/lib/errorlib_webinterface.py:83 +msgid "Many thanks for helping us make CDS Invenio better." +msgstr "" + +#: modules/miscutil/lib/errorlib_webinterface.py:85 +msgid "Use the back button of your browser to return to the previous page." +msgstr "" + +#: modules/miscutil/lib/errorlib_webinterface.py:87 +msgid "Thank you!" +msgstr "" + +#: modules/webalert/lib/webalert.py:53 +#, python-format +msgid "You already have an alert which name is %(name)s" +msgstr "" + +#: modules/webalert/lib/webalert.py:110 +msgid "unknown" +msgstr "" + +#: modules/webalert/lib/webalert.py:172 +msgid "You already have an alert defined for the specified query and basket" +msgstr "" + +#: modules/webalert/lib/webalert.py:191 modules/webalert/lib/webalert.py:289 +msgid "The alert name cannot be empty." +msgstr "" + +#: modules/webalert/lib/webalert.py:206 +#, python-format +msgid "The alert %s has been added to your profile." +msgstr "" + +#: modules/webalert/lib/webalert.py:314 +#, python-format +msgid "The alert %s has been successfully updated." +msgstr "" + +#: modules/webalert/lib/webalert.py:369 +#, python-format +msgid "" +"You have made %(number)s queries. A %(detailed_list)s is available with a " +"posibility to (a) view search results and (b) subscribe for automatic email " +"alerting service for these queries." +msgstr "" + +#: modules/webalert/lib/webalert.py:370 +msgid "detailed list" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:73 +msgid "Pattern" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:77 +msgid "Pattern 1" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:79 +msgid "Field 1" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:81 +msgid "Pattern 2" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:83 +msgid "Field 2" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:85 +msgid "Pattern 3" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:87 +msgid "Field 3" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:89 +msgid "Collections" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:91 +msgid "Collection" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:112 +msgid "You own following alerts:" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:113 +msgid "alert name" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:121 +msgid "SHOW" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:163 +msgid "" +"This alert will notify you each time/only if a new item satisfy the " +"following query" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:164 +msgid "QUERY" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:195 +msgid "Alert identification name:" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:197 +msgid "Search-checking frequency:" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:201 +#: modules/webalert/lib/webalert_templates.py:318 +msgid "monthly" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:202 +#: modules/webalert/lib/webalert_templates.py:316 +msgid "weekly" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:203 +#: modules/webalert/lib/webalert_templates.py:313 +msgid "daily" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:204 +msgid "Send notification e-mail?" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:207 +#: modules/webalert/lib/webalert_templates.py:321 +msgid "yes" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:208 +#: modules/webalert/lib/webalert_templates.py:323 +msgid "no" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:209 +msgid "if no you must specify a basket" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:210 +msgid "Store results in basket?" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:229 +msgid "SET ALERT" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:230 +msgid "CLEAR DATA" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:281 +#, python-format +msgid "" +"Set a new alert from %(your_searches)s, the %(popular_searches)s or the " +"input form." +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:282 +msgid "your searches" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:283 +msgid "most popular searches" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:300 +msgid "Name" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:301 +msgid "Search checking frequency" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:302 +msgid "Notification by e-mail" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:303 +msgid "Result in basket" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:304 +msgid "Date last run" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:305 +msgid "Creation date" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:306 +msgid "Query" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:352 +msgid "Remove" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:353 +msgid "Modify" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:355 +#: modules/webalert/lib/webalert_templates.py:448 +msgid "Execute search" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:362 +#, python-format +msgid "You have defined %(number)s alerts." +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:405 +#, python-format +msgid "You have not executed any search yet. %(click_here)s for search." +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:408 +msgid "Click here" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:416 +#, python-format +msgid "" +"You have performed %(number)d searches (%(different)d different questions) during the last 30 days or so." +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:428 +msgid "#" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:429 +msgid "Question" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:433 +msgid "Last Run" +msgstr "" + +#: modules/webalert/lib/webalert_templates.py:449 +msgid "Set new alert" +msgstr "" + +#: modules/webalert/lib/webalert_webinterface.py:66 +msgid "Display searches" +msgstr "" + +#: modules/webalert/lib/webalert_webinterface.py:71 +#: modules/webalert/lib/webalert_webinterface.py:111 +#: modules/webalert/lib/webalert_webinterface.py:152 +#: modules/webalert/lib/webalert_webinterface.py:178 +#: modules/webalert/lib/webalert_webinterface.py:214 +#: modules/webalert/lib/webalert_webinterface.py:251 +#: modules/webalert/lib/webalert_webinterface.py:282 +#: modules/webbasket/lib/webbasket_webinterface.py:71 +#: modules/webbasket/lib/webbasket_webinterface.py:113 +#: modules/webbasket/lib/webbasket_webinterface.py:154 +#: modules/webbasket/lib/webbasket_webinterface.py:204 +#: modules/webbasket/lib/webbasket_webinterface.py:295 +#: modules/webbasket/lib/webbasket_webinterface.py:334 +#: modules/webbasket/lib/webbasket_webinterface.py:395 +#: modules/webbasket/lib/webbasket_webinterface.py:478 +#: modules/webbasket/lib/webbasket_webinterface.py:527 +#: modules/webmessage/lib/webmessage_templates.py:442 +#: modules/websession/lib/websession_templates.py:429 +#: modules/websession/lib/websession_templates.py:1653 +#: modules/websession/lib/websession_webinterface.py:68 +#: modules/websession/lib/websession_webinterface.py:84 +#: modules/websession/lib/websession_webinterface.py:109 +#: modules/websession/lib/websession_webinterface.py:204 +#: modules/websession/lib/websession_webinterface.py:225 +#: modules/websession/lib/websession_webinterface.py:251 +#: modules/websession/lib/websession_webinterface.py:264 +#: modules/websession/lib/websession_webinterface.py:322 +#: modules/websession/lib/websession_webinterface.py:343 +#: modules/websession/lib/websession_webinterface.py:364 +#: modules/websession/lib/websession_webinterface.py:396 +#: modules/websession/lib/websession_webinterface.py:427 +#: modules/websession/lib/websession_webinterface.py:458 +#: modules/websession/lib/websession_webinterface.py:522 +#: modules/websubmit/web/publiline.py:73 +#: modules/websubmit/web/yourapprovals.py:90 +#: modules/websubmit/web/yoursubmissions.py:168 +msgid "Your Account" +msgstr "" + +#: modules/webalert/lib/webalert_webinterface.py:106 +msgid "Set a new alert" +msgstr "" + +#: modules/webalert/lib/webalert_webinterface.py:147 +msgid "Modify alert settings" +msgstr "" + +#: modules/webalert/lib/webalert_webinterface.py:173 +#: modules/webalert/lib/webalert_webinterface.py:209 +#: modules/webalert/lib/webalert_webinterface.py:246 +#: modules/webalert/lib/webalert_webinterface.py:276 +msgid "Display alerts" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:342 +msgid "Your comment has been successfully posted" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:710 +#: modules/webbasket/lib/webbasket_templates.py:89 +msgid "Personal baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:730 +#: modules/webbasket/lib/webbasket_templates.py:96 +msgid "Group baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:751 +#: modules/webbasket/lib/webbasket_templates.py:103 +msgid "Others' baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:772 +#, python-format +msgid "%i personal baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:776 +#, python-format +msgid "%i group baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:780 +#, python-format +msgid "%i others' baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket.py:786 +#, python-format +msgid "You have %s and are subscribed to %s and %s." +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:183 +#, python-format +msgid "There are %i baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:190 +msgid "updated on" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:223 +#: modules/webbasket/lib/webbasket_templates.py:415 +msgid "Basket is empty" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:234 +#, python-format +msgid "This basket belongs to %s. You can freely %ssubscribe%s to it" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:257 +#: modules/webbasket/lib/webbasket_webinterface.py:563 +msgid "Public basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:260 +#: modules/webbasket/lib/webbasket_templates.py:486 +#: modules/webbasket/lib/webbasket_templates.py:773 +msgid "records" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:261 +#: modules/webbasket/lib/webbasket_templates.py:487 +#: modules/webbasket/lib/webbasket_templates.py:774 +msgid "last update" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:266 +msgid "Subscribe to this basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:279 +#: modules/webbasket/lib/webbasket_templates.py:960 +#: modules/webbasket/lib/webbasket_templates.py:1203 +msgid "Basket's name" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:280 +msgid "Number of views" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:281 +msgid "Owner" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:311 +msgid "View" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:320 +msgid "Subscribe" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:327 +msgid "There is currently no publicly accessible basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:335 +#, python-format +msgid "Displaying baskets %i-%i out of %i total baskets." +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:362 +msgid "Actions" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:393 +#: modules/webbasket/lib/webbasket_templates.py:726 +msgid "Non-shared basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:396 +#: modules/webbasket/lib/webbasket_templates.py:728 +msgid "Shared basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:399 +#: modules/webbasket/lib/webbasket_templates.py:730 +msgid "Group-shared basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:405 +#: modules/webbasket/lib/webbasket_webinterface.py:487 +msgid "Edit basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:444 +msgid "You don't have sufficient rights to view this basket's content" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:449 +#: modules/webbasket/lib/webbasket_templates.py:735 +msgid "Unsubscribe from this basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:462 +#: modules/webbasket/lib/webbasket_templates.py:601 +msgid "comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:462 +msgid "last comment:" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:524 +msgid "Bring item up" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:539 +msgid "Bring item down" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:554 +msgid "Copy item" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:569 +msgid "Remove item" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:572 +msgid "External record" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:602 +msgid "last" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:603 +#: modules/webbasket/lib/webbasket_webinterface.py:120 +#: modules/webbasket/lib/webbasket_webinterface.py:211 +msgid "Details and comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:627 +#, python-format +msgid "This basket is publicly accessible at this address: %s." +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:657 +msgid "Sort by" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:658 +#: modules/webbasket/lib/webbasket_templates.py:875 +#: modules/websubmit/lib/websubmit_templates.py:1878 +msgid "Title" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:659 +#: modules/webmessage/lib/webmessage_templates.py:82 +msgid "Date" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:720 +#: modules/webcomment/lib/webcomment_webinterface.py:113 +#: modules/webcomment/lib/webcomment_webinterface.py:172 +#: modules/webcomment/web/admin/webcommentadmin.py:117 +msgid "Comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:721 +#, python-format +msgid "There is a total of %i comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:723 +#: modules/webbasket/lib/webbasket_webinterface.py:161 +#: modules/webcomment/lib/webcomment_templates.py:93 +msgid "Write a comment" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:779 +msgid "Back to baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:804 +#: modules/webbasket/lib/webbasket_templates.py:832 +msgid "by" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:805 +#: modules/webbasket/lib/webbasket_templates.py:832 +msgid "on" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:817 +#: modules/webcomment/lib/webcomment_templates.py:327 +#: modules/webmessage/lib/webmessage_templates.py:102 +msgid "Reply" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:818 +msgid "Delete comment" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:874 +#: modules/webbasket/lib/webbasket_templates.py:879 +#: modules/webcomment/lib/webcomment_webinterface.py:212 +msgid "Add Comment" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:876 +#: modules/webcomment/lib/webcomment_templates.py:1172 +#: modules/webcomment/lib/webcomment_templates.py:1238 +msgid "Comment" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:895 +#: modules/webbasket/lib/webbasket_templates.py:991 +msgid "Create new basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:945 +msgid "Select topic" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:961 +#: modules/webbasket/lib/webbasket_templates.py:1205 +#: modules/webbasket/lib/webbasket_templates.py:1214 +msgid "Choose topic" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:962 +#: modules/webbasket/lib/webbasket_templates.py:1216 +msgid "or create a new one" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:962 +msgid "Create new topic" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:964 +msgid "Create a new basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1025 +#: modules/webbasket/lib/webbasket_templates.py:1046 +#: modules/webbasket/lib/webbasket_templates.py:1062 +msgid "Select basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1033 +msgid "Add to a personal basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1034 +#: modules/webbasket/lib/webbasket_templates.py:1055 +#: modules/webbasket/lib/webbasket_templates.py:1073 +#, python-format +msgid "%i baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1054 +msgid "Add to a group shared basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1072 +msgid "Add to a public basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1105 +#, python-format +msgid "Adding %i records to these baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1110 +msgid "Add to baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1117 +#, python-format +msgid "The selected records have been successfully added to %i baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1120 +msgid "No records were added to the selected baskets." +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1140 +msgid "Are you sure you want to delete this basket?" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1142 +#, python-format +msgid "%i users have subscribed to this basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1144 +#, python-format +msgid "%i usergroups have subscribed to this basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1146 +#, python-format +msgid "You have set %i alerts on this basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1219 +msgid "General settings" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1233 +#: modules/webbasket/lib/webbasket_templates.py:1354 +#: modules/webbasket/lib/webbasket_templates.py:1381 +msgid "Add group" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1235 +msgid "Manage group rights" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1242 +msgid "Manage global sharing rights" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1247 +msgid "Delete basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1271 +#, python-format +msgid "Editing basket \"%s\"" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1279 +msgid "Save changes" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1292 +#: modules/webbasket/lib/webbasket_templates.py:1316 +msgid "No rights" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1294 +#: modules/webbasket/lib/webbasket_templates.py:1318 +msgid "View records" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1296 +#: modules/webbasket/lib/webbasket_templates.py:1298 +#: modules/webbasket/lib/webbasket_templates.py:1300 +#: modules/webbasket/lib/webbasket_templates.py:1302 +#: modules/webbasket/lib/webbasket_templates.py:1304 +#: modules/webbasket/lib/webbasket_templates.py:1306 +#: modules/webbasket/lib/webbasket_templates.py:1320 +#: modules/webbasket/lib/webbasket_templates.py:1322 +#: modules/webbasket/lib/webbasket_templates.py:1324 +#: modules/webbasket/lib/webbasket_templates.py:1326 +#: modules/webbasket/lib/webbasket_templates.py:1328 +#: modules/webbasket/lib/webbasket_templates.py:1330 +msgid "and" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1296 +#: modules/webbasket/lib/webbasket_templates.py:1320 +msgid "view comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1298 +#: modules/webbasket/lib/webbasket_templates.py:1322 +msgid "add comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1300 +#: modules/webbasket/lib/webbasket_templates.py:1324 +msgid "add records" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1302 +#: modules/webbasket/lib/webbasket_templates.py:1326 +msgid "delete comments" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1304 +#: modules/webbasket/lib/webbasket_templates.py:1328 +msgid "remove records" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1306 +#: modules/webbasket/lib/webbasket_templates.py:1330 +msgid "manage sharing rights" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1352 +msgid "You're not member of a group" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1374 +msgid "Sharing basket to a new group" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1395 +msgid "no basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1403 +#, python-format +msgid "" +"You are logged in as a guest user, so your baskets will disappear at the end " +"of the current session. If you wish you can %slogin or register here%s." +msgstr "" + +#: modules/webbasket/lib/webbasket_templates.py:1462 +#: modules/webcomment/lib/webcomment_templates.py:614 +msgid "(Back to search results)" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:77 +msgid "Display baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:291 +#: modules/websession/lib/websession_templates.py:300 +#: modules/websession/lib/websession_templates.py:431 +msgid "Your Baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:293 +msgid "Add records to baskets" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:343 +msgid "Delete a basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:381 +msgid "Copy record to basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:530 +msgid "Create basket" +msgstr "" + +#: modules/webbasket/lib/webbasket_webinterface.py:562 +#: modules/webbasket/lib/webbasket_webinterface.py:588 +msgid "List of public baskets" +msgstr "" + +#: modules/webcomment/lib/webcommentadminlib.py:38 +msgid "WebComment Admin" +msgstr "" + +#: modules/webcomment/lib/webcomment.py:799 +#, python-format +msgid "%s wrote on %s:" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:105 +#, python-format +msgid "Showing the latest %i comments:" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:120 +msgid "Discuss this document:" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:145 +msgid "Discuss this document" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:146 +msgid "Start a discussion about any aspect of this document." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:162 +#, python-format +msgid "Sorry, the record %s does not seem to exist." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:164 +#, python-format +msgid "Sorry, %s is not a valid ID value." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:166 +msgid "Sorry, no record ID was provided." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:170 +#, python-format +msgid "You may want to start browsing from %s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:238 +#: modules/webcomment/lib/webcomment_templates.py:504 +msgid "Was this review helpful?" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:249 +#: modules/webcomment/lib/webcomment_templates.py:286 +msgid "Write a review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:252 +#, python-format +msgid "Average review score: %s based on %s reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:259 +#, python-format +msgid "Readers found the following %s reviews to be most helpful." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:262 +#: modules/webcomment/lib/webcomment_templates.py:285 +#, python-format +msgid "View all %s reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:281 +#: modules/webcomment/lib/webcomment_templates.py:303 +msgid "Rate this document" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:304 +msgid "Be the first to review this document." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:324 +msgid "wrote on" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:331 +#: modules/webcomment/lib/webcomment_templates.py:371 +msgid "Report abuse" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:366 +#, python-format +msgid "Reviewed by %(nickname)s on %(date)s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:367 +#, python-format +msgid "%i out of %i people found this review useful" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:505 +msgid "(Report abuse)" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:535 +msgid "< Previous" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:551 +msgid "< Next" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:555 +msgid "review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:560 +msgid "Average review score" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:562 +#, python-format +msgid "based on %(nb_comments_total)s reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:569 +msgid "comment" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:575 +#, python-format +msgid "Write a %s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:578 +#, python-format +msgid "There is a total of %s reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:580 +#, python-format +msgid "There is a total of %s comments" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:670 +msgid "Viewing" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:671 +msgid "Page: " +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:789 +#, python-format +msgid "Note: Your nickname, %s, will be displayed as author of this comment" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:793 +#, python-format +msgid "" +"Note: you currently haven't %(link_open)sdefined a nickname%(link_close)s." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:795 +#, python-format +msgid "%s will temporarly be displayed as author of this comment." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:815 +msgid "Article:" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:816 +msgid "Comment:" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:843 +#, python-format +msgid "Note: Your nickname, %s, will be displayed as the author of this review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:889 +msgid "Article" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:890 +msgid "Rate this article" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:891 +msgid "Select a score" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:892 +msgid "Give a title to your review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:893 +msgid "Write your review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:899 +#: modules/webcomment/lib/webcomment_webinterface.py:210 +msgid "Add Review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:918 +msgid "Your review was successfully added" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:920 +msgid "Your comment was successfully added" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:922 +msgid "Back to record" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1007 +msgid "View all reported comments" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1008 +msgid "View all reported reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1009 +msgid "Delete a specific comment/review (by ID)" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1010 +msgid "View all users who have been reported" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1013 +msgid "Comments and reviews are disabled" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1016 +msgid "Menu" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1031 +msgid "" +"Please enter the ID of the comment/review so that you can view it before " +"deciding to delete it or not" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1043 +msgid "Comment ID" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1045 +msgid "View Comment" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1070 +#, python-format +msgid "View all %s reported comments" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1073 +#, python-format +msgid "View all %s reported reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1111 +msgid "" +"Here is a list, sorted by total number of reports, of all users who have had " +"at least one report to one of their comments." +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1119 +#: modules/webcomment/lib/webcomment_templates.py:1148 +#: modules/websession/lib/websession_templates.py:153 +#: modules/websession/lib/websession_templates.py:713 +msgid "Nickname" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1120 +msgid "Email" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1121 +#: modules/webcomment/lib/webcomment_templates.py:1150 +msgid "User ID" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1123 +msgid "Number positive votes" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1124 +msgid "Number negative votes" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1125 +msgid "Total number votes" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1126 +msgid "Total number of reports" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1127 +msgid "View all user's reported comments/reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1152 +msgid "email" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1160 +#, python-format +msgid "This review has been reported %i times" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1162 +#, python-format +msgid "This comment has been reported %i times" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1238 +msgid "Review" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1239 +msgid "Written by" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1240 +msgid "General informations" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1241 +msgid "Select" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1255 +msgid "Delete selected reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1256 +#: modules/webcomment/lib/webcomment_templates.py:1261 +msgid "Suppress selected abuse report" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1260 +msgid "Delete selected comments" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1269 +msgid "Ok" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1275 +#, python-format +msgid "Here are the reported reviews of user %s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1277 +#, python-format +msgid "Here are the reported comments of user %s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1280 +#, python-format +msgid "Here is comment/review %s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1282 +#, python-format +msgid "Here is comment/review %s written by user %s" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1287 +msgid "Here are all reported reviews sorted by most reported" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1289 +msgid "Here are all reported comments sorted by most reported" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1314 +#: modules/webcomment/lib/webcomment_templates.py:1339 +msgid "comment ID" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1314 +msgid "successfully deleted" +msgstr "" + +#: modules/webcomment/lib/webcomment_templates.py:1339 +msgid "successfully suppressed abuse report" +msgstr "" + +#: modules/webcomment/lib/webcomment_webinterface.py:111 +#: modules/webcomment/lib/webcomment_webinterface.py:167 +#, python-format +msgid "Detailed record #%s" +msgstr "" + +#: modules/webcomment/lib/webcomment_webinterface.py:113 +#: modules/webcomment/lib/webcomment_webinterface.py:172 +#: modules/webcomment/web/admin/webcommentadmin.py:117 +msgid "Reviews" +msgstr "" + +#: modules/webcomment/lib/webcomment_webinterface.py:124 +#: modules/webcomment/lib/webcomment_webinterface.py:224 +msgid "Record Not Found" +msgstr "" + +#: modules/webcomment/lib/webcomment_webinterface.py:183 +msgid "Before you add your comment, you need to log in first" +msgstr "" + +#: modules/webcomment/lib/webcomment_webinterface.py:191 +#: modules/websession/lib/websession_webinterface.py:394 +#: modules/websession/lib/websession_webinterface.py:425 +msgid "Login" +msgstr "" + +#: modules/webcomment/web/admin/webcommentadmin.py:42 +#: modules/webcomment/web/admin/webcommentadmin.py:51 +#: modules/webcomment/web/admin/webcommentadmin.py:71 +#: modules/webcomment/web/admin/webcommentadmin.py:106 +#: modules/webcomment/web/admin/webcommentadmin.py:137 +#: modules/webcomment/web/admin/webcommentadmin.py:168 +msgid "Comment Management" +msgstr "" + +#: modules/webcomment/web/admin/webcommentadmin.py:81 +msgid "Delete Comment" +msgstr "" + +#: modules/webcomment/web/admin/webcommentadmin.py:117 +#, python-format +msgid "View all Reported %s" +msgstr "" + +#: modules/webcomment/web/admin/webcommentadmin.py:145 +msgid "View all Reported Users" +msgstr "" + +#: modules/webcomment/web/admin/webcommentadmin.py:185 +msgid "Delete comments" +msgstr "" + +#: modules/webcomment/web/admin/webcommentadmin.py:188 +msgid "Suppress abuse reports" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:132 +msgid "The message could not be deleted" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:134 +msgid "Delete successful" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:151 +msgid "Your mailbox has been emptied" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:341 +#, python-format +msgid "The chosen date (%(year)i/%(month)i/%(day)i) is invalid" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:350 +msgid "Please enter a user name or a group name" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:354 +#, python-format +msgid "" +"Your message is too long, please edit it.\n" +" Max size allowed is %i characters\n" +" " +msgstr "" + +#: modules/webmessage/lib/webmessage.py:366 +#, python-format +msgid "Group '%s' doesn't exist\n" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:389 +#, python-format +msgid "User '%s' doesn't exist\n" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:401 +#: modules/webmessage/lib/webmessage_webinterface.py:102 +#: modules/webmessage/lib/webmessage_webinterface.py:165 +msgid "Write a message" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:418 +msgid "Your message couldn't be sent to the following recipients\n" +msgstr "" + +#: modules/webmessage/lib/webmessage.py:419 +msgid "These users are overquota: " +msgstr "" + +#: modules/webmessage/lib/webmessage.py:424 +msgid "Your message has been sent." +msgstr "" + +#: modules/webmessage/lib/webmessage.py:428 +#: modules/webmessage/lib/webmessage_templates.py:440 +#: modules/webmessage/lib/webmessage_webinterface.py:65 +#: modules/webmessage/lib/webmessage_webinterface.py:217 +#: modules/webmessage/lib/webmessage_webinterface.py:246 +#: modules/websession/lib/websession_templates.py:430 +msgid "Your Messages" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:82 +#: modules/webmessage/lib/webmessage_templates.py:418 +msgid "Subject" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:82 +msgid "Sender" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:89 +msgid "No messages" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:92 +msgid "[No subject]" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:133 +msgid "Write new message" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:134 +msgid "Delete All" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:180 +msgid "Re: " +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:270 +msgid "Send later?" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:271 +msgid "To:" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:272 +msgid "Users" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:273 +msgid "Groups" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:274 +msgid "Subject:" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:275 +msgid "Message:" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:276 +msgid "SEND" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:417 +msgid "From" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:419 +msgid "Sent on" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:420 +msgid "Received on" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:421 +msgid "Sent to" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:422 +msgid "Sent to groups" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:423 +msgid "REPLY" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:424 +msgid "DELETE" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:473 +msgid "Are you sure you want to empty your whole mailbox?" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:534 +#, python-format +msgid "Quota used: %i messages out of max. %i" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:551 +msgid "Please select one or more:" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:582 +msgid "Add to users" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:584 +msgid "Add to groups" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:587 +msgid "No matching user" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:589 +#: modules/websession/lib/websession_templates.py:1194 +msgid "No matching group" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:623 +msgid "Find users or groups:" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:624 +msgid "Find a user" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:625 +msgid "Find a group" +msgstr "" + +#: modules/webmessage/lib/webmessage_templates.py:640 +#, python-format +msgid "You have %s new messages out of %s messages" +msgstr "" + +#: modules/webmessage/lib/webmessage_webinterface.py:274 +msgid "Read a message" +msgstr "" + +#: modules/websearch/bin/webcoll.in:489 +#: modules/websearch/lib/search_engine.py:515 +msgid "latest first" +msgstr "" + +#: modules/websearch/bin/webcoll.in:507 +#: modules/websearch/lib/websearch_templates.py:1542 +msgid "asc." +msgstr "" + +#: modules/websearch/bin/webcoll.in:508 +#: modules/websearch/lib/websearch_templates.py:1545 +msgid "desc." +msgstr "" + +#: modules/websearch/bin/webcoll.in:519 +#: modules/websearch/lib/search_engine.py:530 +#: modules/websearch/lib/search_engine.py:651 +#: modules/websearch/lib/websearch_templates.py:603 +msgid "OR" +msgstr "" + +#: modules/websearch/bin/webcoll.in:519 +#: modules/websearch/lib/search_engine.py:530 +msgid "rank by" +msgstr "" + +#: modules/websearch/bin/webcoll.in:537 +#: modules/websearch/lib/websearch_templates.py:1507 +msgid "results" +msgstr "" + +#: modules/websearch/bin/webcoll.in:550 +#: modules/websearch/lib/websearch_templates.py:1554 +msgid "split by collection" +msgstr "" + +#: modules/websearch/bin/webcoll.in:551 +#: modules/websearch/lib/websearch_templates.py:1551 +msgid "single list" +msgstr "" + +#: modules/websearch/bin/webcoll.in:571 +msgid "brief" +msgstr "" + +#: modules/websearch/lib/search_engine.py:348 +#: modules/websearch/lib/search_engine.py:373 +#: modules/websearch/lib/search_engine.py:3060 +#: modules/websearch/lib/search_engine.py:3099 +#: modules/websearch/lib/search_engine.py:3133 +msgid "Search Results" +msgstr "" + +#: modules/websearch/lib/search_engine.py:407 +#: modules/websearch/lib/websearch_templates.py:626 +msgid "any day" +msgstr "" + +#: modules/websearch/lib/search_engine.py:413 +#: modules/websearch/lib/websearch_templates.py:638 +msgid "any month" +msgstr "" + +#: modules/websearch/lib/search_engine.py:421 +#: modules/websearch/lib/websearch_templates.py:652 +msgid "any year" +msgstr "" + +#: modules/websearch/lib/search_engine.py:495 +#: modules/websearch/lib/search_engine.py:510 +msgid "any collection" +msgstr "" + +#: modules/websearch/lib/search_engine.py:506 +msgid "add another collection" +msgstr "" + +#: modules/websearch/lib/search_engine.py:550 +msgid "HTML brief" +msgstr "" + +#: modules/websearch/lib/search_engine.py:650 +#: modules/websearch/lib/websearch_templates.py:602 +msgid "AND" +msgstr "" + +#: modules/websearch/lib/search_engine.py:652 +#: modules/websearch/lib/websearch_templates.py:604 +msgid "AND NOT" +msgstr "" + +#: modules/websearch/lib/search_engine.py:670 +#: modules/websearch/lib/websearch_templates.py:552 +msgid "All of the words:" +msgstr "" + +#: modules/websearch/lib/search_engine.py:671 +#: modules/websearch/lib/websearch_templates.py:554 +msgid "Any of the words:" +msgstr "" + +#: modules/websearch/lib/search_engine.py:672 +#: modules/websearch/lib/websearch_templates.py:556 +msgid "Exact phrase:" +msgstr "" + +#: modules/websearch/lib/search_engine.py:673 +#: modules/websearch/lib/websearch_templates.py:558 +msgid "Partial phrase:" +msgstr "" + +#: modules/websearch/lib/search_engine.py:674 +#: modules/websearch/lib/websearch_templates.py:560 +msgid "Regular expression:" +msgstr "" + +#: modules/websearch/lib/search_engine.py:1262 +msgid "No values found." +msgstr "" + +#: modules/websearch/lib/search_engine.py:1395 +#, python-format +msgid "No exact match found for %s, using %s instead..." +msgstr "" + +#: modules/websearch/lib/search_engine.py:1633 +#, python-format +msgid "" +"No match found in collection %s. Other public collections gave %d hits." +msgstr "" + +#: modules/websearch/lib/search_engine.py:1640 +msgid "" +"No public collection matched your query. If you were looking for a non-" +"public document, please choose the desired restricted collection first." +msgstr "" + +#: modules/websearch/lib/search_engine.py:1754 +msgid "No words index available for" +msgstr "" + +#: modules/websearch/lib/search_engine.py:1758 +msgid "No phrase index available for" +msgstr "" + +#: modules/websearch/lib/search_engine.py:1779 +#, python-format +msgid "Search term %s" +msgstr "" + +#: modules/websearch/lib/search_engine.py:1781 +#, python-format +msgid "inside %s index" +msgstr "" + +#: modules/websearch/lib/search_engine.py:1782 +msgid "did not match any record. Nearest terms in any collection are:" +msgstr "" + +#: modules/websearch/lib/search_engine.py:2209 +#, python-format +msgid "" +"Sorry, sorting is allowed on sets of up to %d records only. Using default " +"sort order (\"latest first\")." +msgstr "" + +#: modules/websearch/lib/search_engine.py:2233 +#, python-format +msgid "" +"Sorry, '%s' does not seem to be a valid sort option. Choosing title sort " +"instead." +msgstr "" + +#: modules/websearch/lib/search_engine.py:2436 +msgid "Use different search terms." +msgstr "" + +#: modules/websearch/lib/search_engine.py:2591 +#: modules/websearch/lib/search_engine.py:2614 +#: modules/websearch/lib/search_engine.py:2621 +#: modules/websearch/lib/search_engine.py:2628 +#: modules/websearch/lib/search_engine.py:2674 +msgid "The record has been deleted." +msgstr "" + +#: modules/websearch/lib/search_engine.py:3042 +#: modules/websearch/lib/websearch_templates.py:326 +#: modules/websearch/lib/websearch_templates.py:447 +#: modules/websearch/lib/websearch_templates.py:1258 +#: modules/websearch/lib/websearch_templates.py:1355 +#: modules/websearch/lib/websearch_templates.py:1414 +#: modules/websearch/lib/websearch_templates.py:1450 +#: modules/websearch/lib/websearch_templates.py:1473 +#: modules/websearch/lib/websearch_templates.py:1503 +msgid "Browse" +msgstr "" + +#: modules/websearch/lib/search_engine.py:3225 +msgid "No match within your time limits, discarding this condition..." +msgstr "" + +#: modules/websearch/lib/search_engine.py:3246 +msgid "No match within your search limits, discarding this condition..." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:164 +#, python-format +msgid "Record #%d: %s" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:166 +#, python-format +msgid "Record #%d" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:288 +#: modules/websearch/lib/websearch_templates.py:389 +#, python-format +msgid "Search %s records for:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:322 +#: modules/websearch/lib/websearch_templates.py:1399 +msgid "Advanced Search" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:432 +#: modules/websearch/lib/websearch_templates.py:1315 +msgid "Simple Search" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:465 +msgid "Search options:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:512 +#: modules/websearch/lib/websearch_templates.py:1496 +msgid "Added since:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:513 +#: modules/websearch/lib/websearch_templates.py:1497 +msgid "until:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:517 +#: modules/websearch/lib/websearch_templates.py:1536 +msgid "Sort by:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:518 +#: modules/websearch/lib/websearch_templates.py:1537 +msgid "Display results:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:519 +#: modules/websearch/lib/websearch_templates.py:1538 +msgid "Output format:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:696 +msgid "Narrow by collection:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:697 +msgid "Focus on:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:731 +msgid "restricted" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:784 +msgid "The contents of this collection is restricted." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:799 +msgid "This collection does not contain any document yet." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:833 +#: modules/websearch/lib/websearch_templates.py:2114 +#: modules/websearch/lib/websearch_templates.py:2128 +#: modules/websearch/lib/websearch_templates.py:2145 +msgid "more" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:848 +msgid "Latest additions:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:935 +#: modules/websearch/lib/websearch_templates.py:2446 +#: modules/websearch/lib/websearch_templates.py:2450 +#: modules/websearch/lib/websearch_templates.py:2454 +msgid "Detailed record" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:937 +#: modules/websearch/lib/websearch_templates.py:2096 +#: modules/websearch/lib/websearch_templates.py:2458 +msgid "Similar records" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:942 +#: modules/websearch/lib/websearch_templates.py:2463 +msgid "Cited by" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1011 +msgid "Words nearest to" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1016 +msgid "inside" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1019 +msgid "in any collection are:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1111 +msgid "Hits" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1172 +#: modules/websearch/lib/websearch_templates.py:1914 +msgid "next" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1265 +#: modules/websearch/lib/websearch_templates.py:1366 +msgid "Try your search on..." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1445 +msgid "collections" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1467 +msgid "Limit to" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1585 +msgid "MARC tag" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1614 +#: modules/websearch/lib/websearch_templates.py:1616 +#: modules/websearch/lib/websearch_templates.py:1619 +#: modules/websearch/lib/websearch_templates.py:1623 +#: modules/websearch/lib/websearch_templates.py:1625 +#: modules/websearch/lib/websearch_templates.py:1630 +#: modules/websearch/lib/websearch_templates.py:1632 +#: modules/websearch/lib/websearch_templates.py:1634 +#: modules/websearch/lib/websearch_templates.py:1636 +#: modules/websearch/lib/websearch_templates.py:1639 +#: modules/websearch/lib/websearch_templates.py:1644 +#: modules/websearch/lib/websearch_templates.py:1648 +#: modules/websearch/lib/websearch_templates.py:1650 +#: modules/websearch/lib/websearch_templates.py:1658 +#: modules/websearch/lib/websearch_templates.py:1660 +#: modules/websearch/lib/websearch_templates.py:1664 +#: modules/websearch/lib/websearch_templates.py:1668 +#: modules/websearch/lib/websearch_templates.py:1674 +#: modules/websearch/lib/websearch_templates.py:1676 +#: modules/websearch/lib/websearch_templates.py:1678 +#: modules/websearch/lib/websearch_templates.py:1680 +#: modules/websearch/lib/websearch_templates.py:1684 +#: modules/websearch/lib/websearch_templates.py:1697 +#: modules/websearch/lib/websearch_templates.py:1700 +#: modules/websearch/lib/websearch_templates.py:1703 +#: modules/websearch/lib/websearch_templates.py:1708 +#: modules/websearch/lib/websearch_templates.py:1710 +#: modules/websearch/lib/websearch_templates.py:1712 +#: modules/websearch/lib/websearch_templates.py:1717 +#: modules/websearch/lib/websearch_templates.py:1719 +#: modules/websearch/lib/websearch_templates.py:1721 +#: modules/websearch/lib/websearch_templates.py:1723 +#: modules/websearch/lib/websearch_templates.py:1736 +#: modules/websearch/lib/websearch_templates.py:1739 +#: modules/websearch/lib/websearch_templates.py:1742 +#: modules/websearch/lib/websearch_templates.py:1745 +#: modules/websearch/lib/websearch_templates.py:1748 +msgid "in" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1753 +msgid "" +"Haven't found what you were looking for? Try your search on other servers:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1871 +#: modules/websearch/lib/websearch_templates.py:1876 +#: modules/websearch/lib/websearch_templates.py:2210 +#, python-format +msgid "%s records found" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1901 +msgid "begin" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1905 +#: modules/websubmit/lib/websubmit_templates.py:1162 +msgid "previous" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1918 +msgid "end" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1938 +msgid "jump to record:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:1951 +#, python-format +msgid "Search took %.2f seconds." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2024 +#: modules/websearch/lib/websearch_templates.py:2098 +msgid "ADD TO BASKET" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2056 +msgid "Format" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2091 +#, python-format +msgid "Record created %s, last modified %s" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2107 +#, python-format +msgid "Cited by: %s records" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2122 +#, python-format +msgid "Co-cited with: %s records" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2139 +msgid "People who downloaded this document also downloaded:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2154 +msgid "People who viewed this page also viewed:" +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2201 +#, python-format +msgid "" +"Results overview: Found %s records in %.2f " +"seconds." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2237 +msgid "" +"Boolean query returned no hits. Please combine your search terms differently." +msgstr "" + +#: modules/websearch/lib/websearch_templates.py:2268 +msgid "See also: similar author names" +msgstr "" + +#: modules/websearch/lib/websearch_webinterface.py:277 +#: modules/websearch/lib/websearch_webinterface.py:345 +#: modules/websearch/web/admin/websearchadmin.py:1050 +#: modules/websession/lib/websession_webinterface.py:516 +#: modules/webstyle/lib/webstyle_templates.py:497 +#: modules/websubmit/lib/websubmit_webinterface.py:378 +#: modules/websubmit/lib/websubmit_webinterface.py:387 +msgid "Internal Error" +msgstr "" + +#: modules/websearch/lib/websearch_webinterface.py:289 +#, python-format +msgid "Collection %s Not Found" +msgstr "" + +#: modules/websearch/lib/websearch_webinterface.py:290 +#, python-format +msgid "" +"

Sorry, collection %s does not seem to exist.

You may " +"want to start browsing from %s." +msgstr "" + +#: modules/websession/lib/webaccount.py:89 +#, python-format +msgid "" +"You are logged in as guest. You may want to login as a " +"regular user" +msgstr "" + +#: modules/websession/lib/webaccount.py:90 +#, python-format +msgid "" +"The guest users need to register first" +msgstr "" + +#: modules/websession/lib/webaccount.py:91 +msgid "No queries found" +msgstr "" + +#: modules/websession/lib/websession_templates.py:46 +msgid "" +"If you have lost password for your CDS Invenio internal account, then please " +"enter your email address below and the lost password will be emailed to you." +msgstr "" + +#: modules/websession/lib/websession_templates.py:48 +msgid "" +"Note that if you have been using an external login system (such as CERN " +"NICE), then we cannot do anything and you have to ask there." +msgstr "" + +#: modules/websession/lib/websession_templates.py:49 +#, python-format +msgid "" +"Alternatively, you can ask %s to change your login system from external to " +"internal." +msgstr "" + +#: modules/websession/lib/websession_templates.py:151 +msgid "" +"If you want to change your email address or password, please set new values " +"in the form below." +msgstr "" + +#: modules/websession/lib/websession_templates.py:152 +msgid "Edit parameters" +msgstr "" + +#: modules/websession/lib/websession_templates.py:156 +#: modules/websession/lib/websession_templates.py:159 +#: modules/websession/lib/websession_templates.py:717 +msgid "Example" +msgstr "" + +#: modules/websession/lib/websession_templates.py:157 +msgid "New email address" +msgstr "" + +#: modules/websession/lib/websession_templates.py:158 +#: modules/websession/lib/websession_templates.py:715 +msgid "mandatory" +msgstr "" + +#: modules/websession/lib/websession_templates.py:160 +msgid "New password" +msgstr "" + +#: modules/websession/lib/websession_templates.py:161 +#: modules/websession/lib/websession_templates.py:716 +msgid "optional" +msgstr "" + +#: modules/websession/lib/websession_templates.py:162 +#: modules/websession/lib/websession_templates.py:718 +msgid "Note" +msgstr "" + +#: modules/websession/lib/websession_templates.py:163 +#: modules/websession/lib/websession_templates.py:719 +msgid "The password phrase may contain punctuation, spaces, etc." +msgstr "" + +#: modules/websession/lib/websession_templates.py:164 +msgid "Retype password" +msgstr "" + +#: modules/websession/lib/websession_templates.py:165 +msgid "Set new values" +msgstr "" + +#: modules/websession/lib/websession_templates.py:200 +msgid "Edit login method" +msgstr "" + +#: modules/websession/lib/websession_templates.py:201 +msgid "" +"Please select which login method you would like to use to authenticate " +"yourself" +msgstr "" + +#: modules/websession/lib/websession_templates.py:202 +#: modules/websession/lib/websession_templates.py:215 +msgid "Select method" +msgstr "" + +#: modules/websession/lib/websession_templates.py:251 +#: modules/websession/lib/websession_templates.py:712 +msgid "Email address" +msgstr "" + +#: modules/websession/lib/websession_templates.py:252 +msgid "Send lost password" +msgstr "" + +#: modules/websession/lib/websession_templates.py:278 +msgid "" +"The CDS Search offers you a possibility to personalize the interface, to set " +"up your own personal library of documents, or to set up an automatic alert " +"query that would run periodically and would notify you of search results by " +"email." +msgstr "" + +#: modules/websession/lib/websession_templates.py:287 +#: modules/websession/lib/websession_webinterface.py:105 +msgid "Your Settings" +msgstr "" + +#: modules/websession/lib/websession_templates.py:288 +msgid "" +"Set or change your account Email address or password. Specify your " +"preferences about the way the interface looks like." +msgstr "" + +#: modules/websession/lib/websession_templates.py:298 +#: modules/websession/lib/websession_templates.py:433 +msgid "Your Searches" +msgstr "" + +#: modules/websession/lib/websession_templates.py:299 +msgid "View all the searches you performed during the last 30 days." +msgstr "" + +#: modules/websession/lib/websession_templates.py:301 +msgid "" +"With baskets you can define specific collections of items, store interesting " +"records you want to access later or share with others." +msgstr "" + +#: modules/websession/lib/websession_templates.py:309 +msgid "Your Alerts" +msgstr "" + +#: modules/websession/lib/websession_templates.py:310 +msgid "" +"Subscribe to a search which will be run periodically by our service. The " +"result can be sent to you via Email or stored in one of your baskets." +msgstr "" + +#: modules/websession/lib/websession_templates.py:319 +msgid "Your Loans" +msgstr "" + +#: modules/websession/lib/websession_templates.py:320 +msgid "" +"Check out book you have on load, submit borrowing requests, etc. Requires " +"CERN ID." +msgstr "" + +#: modules/websession/lib/websession_templates.py:343 +#, python-format +msgid "" +"You are logged in as a guest user, so your %s will disappear at the end of " +"the current session. If you wish you can\n" +" login or register " +"here." +msgstr "" + +#: modules/websession/lib/websession_templates.py:367 +#, python-format +msgid "" +"You are logged in as %(user)s. You may want to a) logout; b) edit your account settings." +msgstr "" + +#: modules/websession/lib/websession_templates.py:432 +msgid "Your Alert Searches" +msgstr "" + +#: modules/websession/lib/websession_templates.py:434 +#: modules/websession/lib/websession_templates.py:1651 +#: modules/websession/lib/websession_webinterface.py:559 +msgid "Your Groups" +msgstr "" + +#: modules/websession/lib/websession_templates.py:435 +#, python-format +msgid "" +"You can consult the list of %(your_groups)s you are administering or are a " +"member of." +msgstr "" + +#: modules/websession/lib/websession_templates.py:440 +msgid "your groups" +msgstr "" + +#: modules/websession/lib/websession_templates.py:443 +msgid "Your Submissions" +msgstr "" + +#: modules/websession/lib/websession_templates.py:444 +#, python-format +msgid "" +"You can consult the list of %(your_submissions)s and inquire about their " +"status." +msgstr "" + +#: modules/websession/lib/websession_templates.py:449 +msgid "your submissions" +msgstr "" + +#: modules/websession/lib/websession_templates.py:452 +#: modules/websubmit/web/yourapprovals.py:87 +msgid "Your Approvals" +msgstr "" + +#: modules/websession/lib/websession_templates.py:453 +#, python-format +msgid "" +"You can consult the list of %(your_approvals)s with the documents you " +"approved or refereed." +msgstr "" + +#: modules/websession/lib/websession_templates.py:458 +msgid "your approvals" +msgstr "" + +#: modules/websession/lib/websession_templates.py:461 +#: modules/websession/lib/websession_webinterface.py:320 +msgid "Your Administrative Activities" +msgstr "" + +#: modules/websession/lib/websession_templates.py:488 +msgid "Try again" +msgstr "" + +#: modules/websession/lib/websession_templates.py:507 +#, python-format +msgid "Okay, password has been emailed to %s" +msgstr "" + +#: modules/websession/lib/websession_templates.py:522 +msgid "Deleting your account" +msgstr "" + +#: modules/websession/lib/websession_templates.py:538 +#, python-format +msgid "" +"You are no longer recognized. If you wish you can login here." +msgstr "" + +#: modules/websession/lib/websession_templates.py:566 +msgid "If you already have an account, please login using the form below." +msgstr "" + +#: modules/websession/lib/websession_templates.py:570 +#, python-format +msgid "" +"If you don't own an account yet, please register an internal account." +msgstr "" + +#: modules/websession/lib/websession_templates.py:572 +#, python-format +msgid "" +"It is not possible to create an account yourself. Contact %s if you want an " +"account." +msgstr "" + +#: modules/websession/lib/websession_templates.py:594 +msgid "Login via:" +msgstr "" + +#: modules/websession/lib/websession_templates.py:620 +msgid "Username" +msgstr "" + +#: modules/websession/lib/websession_templates.py:621 +#: modules/websession/lib/websession_templates.py:714 +msgid "Password" +msgstr "" + +#: modules/websession/lib/websession_templates.py:622 +#: modules/websession/lib/websession_templates.py:826 +#: modules/websession/lib/websession_webinterface.py:392 +#: modules/websession/lib/websession_webinterface.py:426 +msgid "login" +msgstr "" + +#: modules/websession/lib/websession_templates.py:627 +#: modules/websession/lib/websession_webinterface.py:223 +msgid "Lost your password?" +msgstr "" + +#: modules/websession/lib/websession_templates.py:670 +msgid "Please enter your email address and desired nickname and password:" +msgstr "" + +#: modules/websession/lib/websession_templates.py:672 +msgid "" +"The account will not be possible to use before it has been verified and " +"activated." +msgstr "" + +#: modules/websession/lib/websession_templates.py:720 +msgid "Retype Password" +msgstr "" + +#: modules/websession/lib/websession_templates.py:721 +#: modules/websession/lib/websession_webinterface.py:521 +msgid "register" +msgstr "" + +#: modules/websession/lib/websession_templates.py:722 +#, python-format +msgid "" +"Please do not use valuable passwords such as your Unix, AFS or NICE " +"passwords with this service. Your email address will stay strictly " +"confidential and will not be disclosed to any third party. It will be used " +"to identify you for personal services of %s. For example, you may set up an " +"automatic alert search that will look for new preprints and will notify you " +"daily of new arrivals by email." +msgstr "" + +#: modules/websession/lib/websession_templates.py:751 +#, python-format +msgid "" +"You seem to be the guest user. You have to login first." +msgstr "" + +#: modules/websession/lib/websession_templates.py:755 +msgid "You are not authorized to access administrative functions." +msgstr "" + +#: modules/websession/lib/websession_templates.py:758 +#, python-format +msgid "You seem to be %s." +msgstr "" + +#: modules/websession/lib/websession_templates.py:759 +msgid "Here are some interesting web admin links for you:" +msgstr "" + +#: modules/websession/lib/websession_templates.py:765 +msgid "Run BibEdit" +msgstr "" + +#: modules/websession/lib/websession_templates.py:767 +msgid "Configure BibFormat" +msgstr "" + +#: modules/websession/lib/websession_templates.py:769 +msgid "Configure BibHarvest" +msgstr "" + +#: modules/websession/lib/websession_templates.py:771 +msgid "Configure BibIndex" +msgstr "" + +#: modules/websession/lib/websession_templates.py:773 +msgid "Configure BibRank" +msgstr "" + +#: modules/websession/lib/websession_templates.py:775 +msgid "Configure WebAccess" +msgstr "" + +#: modules/websession/lib/websession_templates.py:777 +msgid "Configure WebComment" +msgstr "" + +#: modules/websession/lib/websession_templates.py:779 +msgid "Configure WebSearch" +msgstr "" + +#: modules/websession/lib/websession_templates.py:781 +msgid "Configure WebSubmit" +msgstr "" + +#: modules/websession/lib/websession_templates.py:782 +#, python-format +msgid "For more admin-level activities, see the complete %(admin_area)s" +msgstr "" + +#: modules/websession/lib/websession_templates.py:822 +msgid "guest" +msgstr "" + +#: modules/websession/lib/websession_templates.py:823 +msgid "session" +msgstr "" + +#: modules/websession/lib/websession_templates.py:824 +#: modules/websession/lib/websession_templates.py:840 +msgid "alerts" +msgstr "" + +#: modules/websession/lib/websession_templates.py:825 +#: modules/websession/lib/websession_templates.py:842 +msgid "baskets" +msgstr "" + +#: modules/websession/lib/websession_templates.py:839 +msgid "account" +msgstr "" + +#: modules/websession/lib/websession_templates.py:841 +msgid "messages" +msgstr "" + +#: modules/websession/lib/websession_templates.py:843 +msgid "groups" +msgstr "" + +#: modules/websession/lib/websession_templates.py:849 +msgid "submissions" +msgstr "" + +#: modules/websession/lib/websession_templates.py:855 +msgid "approvals" +msgstr "" + +#: modules/websession/lib/websession_templates.py:861 +msgid "administration" +msgstr "" + +#: modules/websession/lib/websession_templates.py:866 +msgid "logout" +msgstr "" + +#: modules/websession/lib/websession_templates.py:964 +#: modules/websession/lib/websession_templates.py:1030 +msgid "Group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:964 +#: modules/websession/lib/websession_templates.py:1030 +msgid "Description" +msgstr "" + +#: modules/websession/lib/websession_templates.py:971 +msgid "You are not administrator of any group." +msgstr "" + +#: modules/websession/lib/websession_templates.py:978 +msgid "Edit group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:985 +msgid "Edit
members" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1008 +#: modules/websession/lib/websession_templates.py:1080 +msgid "Create new group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1037 +#: modules/websession/lib/websession_templates.py:1491 +msgid "You are not member of any group." +msgstr "" + +#: modules/websession/lib/websession_templates.py:1062 +msgid "Join new group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1063 +#: modules/websession/lib/websession_templates.py:1489 +#: modules/websession/lib/websession_templates.py:1500 +msgid "Leave group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1082 +#: modules/websession/lib/websession_webinterface.py:612 +msgid "Create New Group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1088 +msgid "Update group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1090 +msgid "Edit group: " +msgstr "" + +#: modules/websession/lib/websession_templates.py:1092 +msgid "Delete group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1162 +msgid "Group name: " +msgstr "" + +#: modules/websession/lib/websession_templates.py:1164 +msgid "Group description: " +msgstr "" + +#: modules/websession/lib/websession_templates.py:1165 +msgid "Group join policy: " +msgstr "" + +#: modules/websession/lib/websession_templates.py:1192 +msgid "Please select:" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1256 +msgid "Join group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1258 +msgid "or find it: " +msgstr "" + +#: modules/websession/lib/websession_templates.py:1259 +msgid "Choose group:" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1261 +msgid "Find group" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1263 +#: modules/websession/lib/websession_templates.py:1394 +#: modules/websession/lib/websession_templates.py:1403 +#: modules/websession/lib/websession_templates.py:1487 +msgid "Please Select:" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1399 +msgid "Remove member" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1408 +msgid "Add member" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1414 +msgid "Invite new members" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1417 +#, python-format +msgid "" +"If you want to invite new members to join your group, please use the %s " +"system." +msgstr "" + +#: modules/websession/lib/websession_templates.py:1420 +#, python-format +msgid "Group: %s" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1488 +msgid "Group list: " +msgstr "" + +#: modules/websession/lib/websession_templates.py:1538 +msgid "Are your sure you want to delete this group?" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1577 +msgid "Are your sure you want to leave this group?" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1593 +msgid "Visible and open for new member" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1595 +msgid "Visible but need approval for new member" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1597 +msgid "Please select" +msgstr "" + +#: modules/websession/lib/websession_templates.py:1680 +msgid "here" +msgstr "" + +#: modules/websession/lib/webuser.py:102 +#, python-format +msgid "Database problem: %s" +msgstr "" + +#: modules/websession/lib/webuser.py:198 +#, python-format +msgid "user #%i" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:136 +#: modules/websession/lib/websession_webinterface.py:164 +msgid "Settings edited" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:138 +#: modules/websession/lib/websession_webinterface.py:163 +msgid "Show account" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:142 +msgid "Login method successfully selected." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:159 +msgid "Password successfully edited." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:161 +msgid "Settings successfully edited." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:166 +#: modules/websession/lib/websession_webinterface.py:495 +#, python-format +msgid "Desired nickname %s is invalid." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:167 +#: modules/websession/lib/websession_webinterface.py:173 +#: modules/websession/lib/websession_webinterface.py:186 +#: modules/websession/lib/websession_webinterface.py:192 +#: modules/websession/lib/websession_webinterface.py:486 +#: modules/websession/lib/websession_webinterface.py:491 +#: modules/websession/lib/websession_webinterface.py:496 +#: modules/websession/lib/websession_webinterface.py:507 +msgid "Please try again." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:169 +#: modules/websession/lib/websession_webinterface.py:175 +#: modules/websession/lib/websession_webinterface.py:182 +#: modules/websession/lib/websession_webinterface.py:188 +#: modules/websession/lib/websession_webinterface.py:194 +#: modules/websession/lib/websession_webinterface.py:199 +msgid "Edit settings" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:170 +#: modules/websession/lib/websession_webinterface.py:176 +#: modules/websession/lib/websession_webinterface.py:183 +#: modules/websession/lib/websession_webinterface.py:189 +#: modules/websession/lib/websession_webinterface.py:195 +#: modules/websession/lib/websession_webinterface.py:200 +msgid "Editing settings failed" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:172 +#: modules/websession/lib/websession_webinterface.py:490 +#, python-format +msgid "Supplied email address %s is invalid." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:178 +#: modules/websession/lib/websession_webinterface.py:500 +#, python-format +msgid "Supplied email address %s already exists in the database." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:180 +#: modules/websession/lib/websession_webinterface.py:502 +msgid "Or please try again." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:185 +#, python-format +msgid "Desired nickname %s is already in use." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:191 +#: modules/websession/lib/websession_webinterface.py:485 +msgid "Both passwords must match." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:197 +msgid "Could not update settings." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:263 +msgid "The entered e-mail address doesn't exist in the database" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:276 +msgid "Credentials for" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:277 +msgid "Here are your user credentials for" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:278 +msgid "username" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:278 +msgid "password" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:279 +msgid "You can login at" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:289 +msgid "" +"The entered email address is incorrect, please check that it is written " +"correctly (e.g. johndoe@example.com)." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:290 +msgid "Incorrect email address" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:301 +msgid "Lost password sent" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:341 +msgid "Delete Account" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:362 +msgid "Logout" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:456 +msgid "Register" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:475 +msgid "Your account has been successfully created." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:476 +msgid "Account created" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:478 +msgid "" +" An email has been sent to the given address with the account information." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:480 +msgid "" +" A second email will be sent when the account has been activated and can be " +"used." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:482 +#, python-format +msgid " You can now access your account." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:488 +#: modules/websession/lib/websession_webinterface.py:493 +#: modules/websession/lib/websession_webinterface.py:498 +#: modules/websession/lib/websession_webinterface.py:504 +#: modules/websession/lib/websession_webinterface.py:509 +#: modules/websession/lib/websession_webinterface.py:513 +#: modules/websession/lib/websession_webinterface.py:518 +msgid "Register failure" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:506 +#, python-format +msgid "Desired nickname %s already exists in the database." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:511 +msgid "Users cannot register themselves, only admin can register them." +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:682 +msgid "Join New Group" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:734 +msgid "Leave Group" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:793 +msgid "Edit Group" +msgstr "" + +#: modules/websession/lib/websession_webinterface.py:827 +#: modules/websession/lib/websession_webinterface.py:835 +#: modules/websession/lib/websession_webinterface.py:842 +msgid "Edit group members" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:495 +#: modules/webstyle/lib/webstyle_templates.py:529 +#, python-format +msgid "Error: %s" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:499 +msgid "Browser" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:520 +#, python-format +msgid "System Error: %s %s\n" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:531 +#: modules/websubmit/lib/websubmit_webinterface.py:376 +msgid "Error" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:533 +#, python-format +msgid "" +"Traceback: \n" +"%s" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:578 +msgid "Time" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:579 +msgid "Client" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:580 +msgid "Please send an error report to the Administrator" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:581 +msgid "Send error report" +msgstr "" + +#: modules/webstyle/lib/webstyle_templates.py:584 +#, python-format +msgid "" +"Please contact %s quoting the following " +"information:" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:74 +#: modules/websubmit/lib/websubmit_engine.py:483 +msgid "" +"Sorry, you must log in to perform this action. Please use the top right menu " +"to do so." +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:79 +#: modules/websubmit/lib/websubmit_engine.py:487 +msgid "invalid parameter" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:84 +#: modules/websubmit/lib/websubmit_engine.py:492 +msgid "cannot find submission directory" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:90 +msgid "unknown document type" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:96 +#: modules/websubmit/lib/websubmit_engine.py:612 +msgid "unknown action" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:103 +msgid "can't figure number of pages" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:129 +#: modules/websubmit/lib/websubmit_engine.py:190 +#: modules/websubmit/lib/websubmit_engine.py:506 +msgid "can't create submission directory" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:606 +msgid "unknown type of document" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:619 +msgid "this action does not apply on this type of document" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:852 +#, python-format +msgid "Cannot find document %s" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:1018 +msgid "Your chosen action is not supported by the document" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:1073 +msgid "error" +msgstr "" + +#: modules/websubmit/lib/websubmit_engine.py:1084 +msgid "warning" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:81 +msgid "Document types available for submission" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:82 +msgid "Please select the type of document you want to submit" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:98 +msgid "No document types yet..." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:240 +msgid "please log in first.\\nUse the top right menu to log in." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:283 +msgid "please select a category" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:321 +msgid "Notice" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:322 +msgid "" +"Select a category and then click the button to perform the action you chose." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:343 +msgid "" +"To continue an interrupted submission, enter your access number directly in " +"the input box." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:345 +msgid "go" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:470 +#: modules/websubmit/lib/websubmit_templates.py:905 +msgid "SUMMARY" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:507 +msgid "previous page" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:513 +msgid "Submission no(1)" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:527 +msgid "next page" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:542 +#: modules/websubmit/lib/websubmit_templates.py:944 +msgid "Are you sure you want to quit this submission?" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:543 +#: modules/websubmit/lib/websubmit_templates.py:951 +msgid "back to main menu" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:546 +msgid "" +"(1) you should take note of this number at the beginning of the submission, " +"it will allow you to get your information back in case your browser crashes " +"before the end of the submission." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:547 +msgid "(2) mandatory fields appear in red in the 'Summary' window." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:687 +#, python-format +msgid "" +"The field `%s` is Mandatory.\\n Please make a choice in the 'Select:' box" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:701 +msgid "Please press a button." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:709 +#, python-format +msgid "The field `%s` is Mandatory. Please fill it in." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:785 +#, python-format +msgid "The field '%(field)s' is mandatory.\\nGoing back to page %(page)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:896 +msgid "finished!" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:904 +msgid "end of action" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:928 +msgid "Submission no" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:994 +#, python-format +msgid "" +"Here is the %(action)s function list for %(doctype)s documents at level %" +"(step)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:999 +msgid "Function" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1000 +msgid "Score" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1001 +msgid "Running Function" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1007 +#, python-format +msgid "function %s does not exist..." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1046 +msgid "You now have to" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1051 +msgid "or" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1078 +#, python-format +msgid "record #%s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1080 +#, python-format +msgid " document #%s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1082 +#, python-format +msgid " version #%s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1111 +msgid "file(s)" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1159 +msgid "see" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1173 +msgid "version" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1345 +msgid "For" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1346 +msgid "all types of document" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1399 +msgid "Status" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1400 +msgid "id" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1401 +msgid "reference" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1403 +msgid "first access" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1404 +msgid "last access" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1414 +msgid "Are you sure you want to delete this submission?" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1415 +#, python-format +msgid "delete submission %(id)s in %(docname)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1431 +msgid "reference not yet given" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1502 +msgid "Refereed Documents" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1512 +msgid "You are general referee" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1517 +#, python-format +msgid "You are referee for category: %(name)s (%(id)s)" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1556 +msgid "List of refereed types of documents" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1557 +msgid "" +"Select one of the following types of documents to check the documents status:" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1615 +msgid "List of refereed categories" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1616 +msgid "Please choose a category" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1635 +#: modules/websubmit/lib/websubmit_templates.py:1676 +msgid "pending" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1641 +#: modules/websubmit/lib/websubmit_templates.py:1679 +msgid "approved" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1647 +#: modules/websubmit/lib/websubmit_templates.py:1681 +#: modules/websubmit/lib/websubmit_templates.py:1682 +msgid "rejected" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1675 +msgid "Key" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1678 +msgid "waiting for approval" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1680 +#: modules/websubmit/lib/websubmit_templates.py:1683 +msgid "already approved" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1684 +msgid "some documents are pending" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1739 +msgid "List of refereed documents" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1740 +msgid "Click on a report number to have more information" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1741 +msgid "Report Number" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1742 +msgid "Pending" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1743 +msgid "Approved" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1744 +msgid "Rejected" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1864 +msgid "Your request has been sent to the referee!" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1884 +msgid "Author" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1892 +msgid "More information" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1893 +msgid "click here" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1899 +msgid "" +"This Document is still waiting for approval." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1900 +#: modules/websubmit/lib/websubmit_templates.py:1919 +#: modules/websubmit/lib/websubmit_templates.py:1927 +#, python-format +msgid "" +"It has first been sent to approval on: %(date)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1902 +#: modules/websubmit/lib/websubmit_templates.py:1904 +#: modules/websubmit/lib/websubmit_templates.py:1921 +#: modules/websubmit/lib/websubmit_templates.py:1923 +#: modules/websubmit/lib/websubmit_templates.py:1929 +#: modules/websubmit/lib/websubmit_templates.py:1931 +#, python-format +msgid "" +"Last approval e-mail was sent on: %(date)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1905 +msgid "" +"You can send an approval request e-mail again by clicking the following " +"button:" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1907 +#: modules/websubmit/web/publiline.py:186 +msgid "Send Again" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1908 +msgid "WARNING! An e-mail will be send to your referee if you confirm." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1911 +msgid "" +"As a referee for this document, you may click this button to approve or " +"reject it:" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1913 +msgid "Approve/Reject" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1917 +msgid "This Document has been approved." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1918 +#, python-format +msgid "Its approved reference is: %(rn)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1924 +#, python-format +msgid "It has been approved on: %(date)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1926 +msgid "This Document has been rejected." +msgstr "" + +#: modules/websubmit/lib/websubmit_templates.py:1932 +#, python-format +msgid "It has been rejected on: %(date)s" +msgstr "" + +#: modules/websubmit/lib/websubmit_webinterface.py:91 +#: modules/websubmit/lib/websubmit_webinterface.py:99 +#: modules/websubmit/lib/websubmit_webinterface.py:161 +msgid "can't find file..." +msgstr "" + +#: modules/websubmit/lib/websubmit_webinterface.py:112 +#: modules/websubmit/lib/websubmit_webinterface.py:193 +msgid "Access to Fulltext" +msgstr "" + +#: modules/websubmit/lib/websubmit_webinterface.py:155 +msgid "Parameter docid missing" +msgstr "" + +#: modules/websubmit/lib/websubmit_webinterface.py:385 +msgid "Warning" +msgstr "" + +#: modules/websubmit/web/publiline.py:178 +msgid "This document has never been requested for approval!" +msgstr "" + +#: modules/websubmit/web/publiline.py:183 +msgid "Cannot display this document." +msgstr "" + +#: modules/websubmit/web/yoursubmissions.py:64 +msgid "" +"You first have to login before using this feature. Use the left menu to log " +"in." +msgstr "" + +#: modules/websubmit/web/admin/websubmitadmin.py:224 +#: modules/websubmit/web/admin/websubmitadmin.py:288 +#: modules/websubmit/web/admin/websubmitadmin.py:364 +#, python-format +msgid "%s" +msgstr ""