diff --git a/ABOUT-NLS b/ABOUT-NLS index 7131116c5..60f81badf 100644 --- a/ABOUT-NLS +++ b/ABOUT-NLS @@ -1,330 +1,330 @@ Invenio NATIVE LANGUAGE SUPPORT =============================== About ===== This document describes the Native Language Support (NLS) in 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 B. Integrating translation contributions 1. Native Language Support information for administrators ========================================================= Invenio is currently available in the following languages: af = Afrikaans ar = Arabic bg = Bulgarian ca = Catalan cs = Czech de = German el = Greek en = English es = Spanish fa = Persian (Farsi) fr = French gl = Galician hr = Croatian hu = Hungarian it = Italian ja = Japanese ka = Georgian lt = Lithuanian no = Norwegian (Bokmål) pl = Polish pt = Portuguese ro = Romanian ru = Russian rw = Kinyarwanda sk = Slovak sv = Swedish uk = Ukrainian zh_CN = Chinese (China) zh_TW = Chinese (Taiwan) If you are installing 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 invenio.conf file, see variables CFG_SITE_LANG and CFG_SITE_LANGS. (Please note that some runtime 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 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 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 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 to the developers team (see the next step) and we shall install it on a test site and contact you so that you will be able to check your translation in the global context of the application. (Note to developers: note that ``make update-gmo'' command may be necessary to run before ``make'' if the latter fails, even if you are not touching translation business at all. The reason being that the gmo files are not stored in CVS, while they are included in the distribution tarball. So, if you are building from CVS, and you do not have them in your tree, you may get build errors in directories like modules/webhelp/web/admin saying things like ``No rule to make target `index.bg.html'''. The solution is to run ``make update-gmo'' to produce the gmo files before running ``make''. End of note to developers.) - Please contribute your translation by emailing the file to . You help is greatly appreciated and will be properly credited in the THANKS file. See also the GNU gettext manual, especially the chapters 5, 6 and 11. 3. Native Language Support information for programmers ====================================================== Invenio uses standard GNU gettext I18N and L12N philosophy. In Python programs, all output strings should be made translatable via the _() convention: from messages import gettext_set_language [...] def square(x, ln=CFG_SITE_LANG): _ = gettext_set_language(ln) print _("Hello there!") print _("The square of %s is %s.") % (x, x*x) In webdoc source files, the convention is _()_: _(Search Help)_ Here are some tips for writing easily translatable output messages: - Do not cut big phrases into several pieces, the meaning may be harder to grasp and to render properly in another language. Leave them in the context. Do not try to economize and reuse standalone-translated words as parts of bigger sentences. The translation could differ due to gender, for example. Rather define two sentences instead: not: _("This %s is not available.") % x, where x is either _("basket") or _("alert") but: _("This basket is not available.") and _("This alert is not available.") - If you print some value in a translatable phrase, you can use an unnamed %i or %s string replacement placeholders: yes: _("There are %i baskets.") % nb_baskets But, as soon as you are printing more than one value, you should use named string placeholders because in some languages the parts of the sentence may be reversed when translated: not: _("There are %i baskets shared by %i groups.") % \ (nb_baskets, nb_groups) but: _("There are %(x_nb_baskets)s baskets shared by %(x_nb_groups)s groups.") % \ {'x_nb_baskets': nb_baskets, 'x_nb_groups': nb_groups,} Please use the `x_' prefix for the named placeholder variables to ease the localization task of the translator. - Do not mix HTML presentation inside phrases. If you want to reserve space for HTML markup, please use generic replacement placeholders as prologue and epilogue: not: _("This is cold.") but: _("This is %(x_fmt_open)scold%(x_fmt_close)s.") Ditto for links: not: _("This is homepage.") not: _("This is %(x_url_open)shomepage%(x_url_close)s.") - Do not leave unnecessary things in short commonly used translatable expressions, such as extraneous spaces or colons before or after them. Rather put them in the business logic: not: _(" subject") but: " " + _("subject") not: _("Record %i:") but: _("Record") + "%i:" % recID On the other hand, in long sentences when the trailing punctuation has its meaning as an integral part of the label to be shown on the interface, you should leave them: not: _("Nearest terms in any collection are") but: _("Nearest terms in any collection are:") - Last but not least: the best is to follow the style of existing messages as a model, so that the translators are presented with a homogeneous and consistently presented output phrase set. 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: - demo server name, from invenio.conf: Atlantis Institute of Fictive Science - demo collection names, from democfgdata.sql: Preprints Books Theses Reports Articles Pictures CERN Divisions CERN Experiments Theoretical Physics (TH) Experimental Physics (EP) Articles & Preprints Books & Reports Multimedia & Arts Poetry Atlantis Times News Atlantis Times Arts Atlantis Times Science Atlantis Times Atlantis Institute Books Atlantis Institute Articles Atlantis Times Drafts Notes ALEPH Papers ALEPH Internal Notes ALEPH Theses ISOLDE Papers ISOLDE Internal Notes Drafts Videos - Authority Records - Authority Author - Authority Institution - Authority Journal - Authority Subject + Authorities + People + Institutes + Journals + Subjects - demo right-hand-side portalbox, from democfgdata.sql: ABOUT THIS SITE Welcome to the demo site of the 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 such as: - modules/webhelp/web/help-central.webdoc Thanks for helping us to internationalize Invenio. Appendix B. Integrating translation contributions ================================================= This appendix contains some tips on integrating translated phrases that were prepared for different Invenio releases. It is mostly of interest to Invenio developers or the release manager. Imagine that we have a working translation file sk.po and that we have received a contribution co-CONTRIB.po that was prepared for previous Invenio release, so that the messages do not fully correspond. Moreover, another person might have had worked with the sk.po file in the meantime. The goal is to integrate the contributions. Firstly, check whether the contributed file sk-CONTRIB.po was indeed prepared for different software release version: $ msgcmp --use-fuzzy --use-untranslated sk-CONTRIB.po invenio.pot If yes, then join its translations with the ones in the latest sk.po file: $ msgcat sk-CONTRIB.po sk.po > sk-TMP.po and update the message references: $ msgmerge sk-TMP.po invenio.pot > sk-NEW.po This will give the new file sk-NEW.po that should now be msgcmp'rable to invenio.pot. Lastly, we will have to go manually through sk-NEW.po in order to resolve potential translation conflicts (marked via ``#-#-#-#-#'' fuzzy translations). If the conflicts are evident and easy to resolve, for example corrected typos, we can fix them. If the conflicts are of translational nature and cannot be resolved without consulting the translators, we should warn them about the conflicts. After the evident conflicts are resolved and the file validates okay, we can rename it to sk.po and we are done. (Note that we could have used ``--use-first'' option to msgcat if we were fully sure that the first translation file (sk-CONTRIB) could have been preferred as far as the quality of translation goes.) - end of file - diff --git a/config/invenio.conf b/config/invenio.conf index 666807dc2..168d8e09a 100644 --- a/config/invenio.conf +++ b/config/invenio.conf @@ -1,2276 +1,2276 @@ ## This file is part of Invenio. ## Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ################################################### ## About 'invenio.conf' and 'invenio-local.conf' ## ################################################### ## The 'invenio.conf' file contains the vanilla default configuration ## parameters of a Invenio installation, as coming out of the ## distribution. The file should be self-explanatory. Once installed ## in its usual location (usually /opt/invenio/etc), you could in ## principle go ahead and change the values according to your local ## needs, but this is not advised. ## ## If you would like to customize some of these parameters, you should ## rather create a file named 'invenio-local.conf' in the same ## directory where 'invenio.conf' lives and you should write there ## only the customizations that you want to be different from the ## vanilla defaults. ## ## Here is a realistic, minimalist, yet production-ready example of ## what you would typically put there: ## ## $ cat /opt/invenio/etc/invenio-local.conf ## [Invenio] ## CFG_SITE_NAME = John Doe's Document Server ## CFG_SITE_NAME_INTL_fr = Serveur des Documents de John Doe ## CFG_SITE_URL = http://your.site.com ## CFG_SITE_SECURE_URL = https://your.site.com ## CFG_SITE_ADMIN_EMAIL = john.doe@your.site.com ## CFG_SITE_SUPPORT_EMAIL = john.doe@your.site.com ## CFG_WEBALERT_ALERT_ENGINE_EMAIL = john.doe@your.site.com ## CFG_WEBCOMMENT_ALERT_ENGINE_EMAIL = john.doe@your.site.com ## CFG_WEBCOMMENT_DEFAULT_MODERATOR = john.doe@your.site.com ## CFG_BIBAUTHORID_AUTHOR_TICKET_ADMIN_EMAIL = john.doe@your.site.com ## CFG_BIBCATALOG_SYSTEM_EMAIL_ADDRESS = john.doe@your.site.com ## CFG_DATABASE_HOST = localhost ## CFG_DATABASE_NAME = invenio ## CFG_DATABASE_USER = invenio ## CFG_DATABASE_PASS = my123p$ss ## ## You should override at least the parameters mentioned above and the ## parameters mentioned in the `Part 1: Essential parameters' below in ## order to define some very essential runtime parameters such as the ## name of your document server (CFG_SITE_NAME and ## CFG_SITE_NAME_INTL_*), the visible URL of your document server ## (CFG_SITE_URL and CFG_SITE_SECURE_URL), the email address of the ## local Invenio administrator, comment moderator, and alert engine ## (CFG_SITE_SUPPORT_EMAIL, CFG_SITE_ADMIN_EMAIL, etc), and last but ## not least your database credentials (CFG_DATABASE_*). ## ## The Invenio system will then read both the default invenio.conf ## file and your customized invenio-local.conf file and it will ## override any default options with the ones you have specified in ## your local file. This cascading of configuration parameters will ## ease your future upgrades. [Invenio] ################################### ## Part 1: Essential parameters ## ################################### ## This part defines essential Invenio internal parameters that ## everybody should override, like the name of the server or the email ## address of the local Invenio administrator. ## CFG_DATABASE_* - specify which MySQL server to use, the name of the ## database to use, and the database access credentials. CFG_DATABASE_HOST = localhost CFG_DATABASE_PORT = 3306 CFG_DATABASE_NAME = invenio CFG_DATABASE_USER = invenio CFG_DATABASE_PASS = my123p$ss ## CFG_DATABASE_SLAVE - if you use DB replication, then specify the DB ## slave address credentials. (Assuming the same access rights to the ## DB slave as to the DB master.) If you don't use DB replication, ## then leave this option blank. CFG_DATABASE_SLAVE = ## CFG_SITE_URL - specify URL under which your installation will be ## visible. For example, use "http://your.site.com". Do not leave ## trailing slash. CFG_SITE_URL = http://localhost ## CFG_SITE_SECURE_URL - specify secure URL under which your ## installation secure pages such as login or registration will be ## visible. For example, use "https://your.site.com". Do not leave ## trailing slash. If you don't plan on using HTTPS, then you may ## leave this empty. CFG_SITE_SECURE_URL = https://localhost ## CFG_SITE_NAME -- the visible name of your Invenio installation. CFG_SITE_NAME = Atlantis Institute of Fictive Science ## CFG_SITE_NAME_INTL -- the international versions of CFG_SITE_NAME ## in various languages. (See also CFG_SITE_LANGS below.) CFG_SITE_NAME_INTL_en = Atlantis Institute of Fictive Science CFG_SITE_NAME_INTL_fr = Atlantis Institut des Sciences Fictives CFG_SITE_NAME_INTL_de = Atlantis Institut der fiktiven Wissenschaft CFG_SITE_NAME_INTL_es = Instituto de Ciencia Ficticia Atlantis CFG_SITE_NAME_INTL_ca = Institut Atlantis de Ciència Fictícia CFG_SITE_NAME_INTL_pt = Instituto Atlantis de Ciência Fictícia CFG_SITE_NAME_INTL_it = Atlantis Istituto di Scienza Fittizia CFG_SITE_NAME_INTL_ru = Институт Фиктивных Наук Атлантиды CFG_SITE_NAME_INTL_sk = Atlantis Inštitút Fiktívnych Vied CFG_SITE_NAME_INTL_cs = Atlantis Institut Fiktivních Věd CFG_SITE_NAME_INTL_no = Atlantis Institutt for Fiktiv Vitenskap CFG_SITE_NAME_INTL_sv = Atlantis Institut för Fiktiv Vetenskap CFG_SITE_NAME_INTL_el = Ινστιτούτο Φανταστικών Επιστημών Ατλαντίδος CFG_SITE_NAME_INTL_uk = Інститут вигаданих наук в Атлантісі CFG_SITE_NAME_INTL_ja = Fictive 科学のAtlantis の協会 CFG_SITE_NAME_INTL_pl = Instytut Fikcyjnej Nauki Atlantis CFG_SITE_NAME_INTL_bg = Институт за фиктивни науки Атлантис CFG_SITE_NAME_INTL_hr = Institut Fiktivnih Znanosti Atlantis CFG_SITE_NAME_INTL_zh_CN = 阿特兰提斯虚拟科学学院 CFG_SITE_NAME_INTL_zh_TW = 阿特蘭提斯虛擬科學學院 CFG_SITE_NAME_INTL_hu = Kitalált Tudományok Atlantiszi Intézete CFG_SITE_NAME_INTL_af = Atlantis Instituut van Fiktiewe Wetenskap CFG_SITE_NAME_INTL_gl = Instituto Atlantis de Ciencia Fictive CFG_SITE_NAME_INTL_ro = Institutul Atlantis al Ştiinţelor Fictive CFG_SITE_NAME_INTL_rw = Atlantis Ishuri Rikuru Ry'ubuhanga CFG_SITE_NAME_INTL_ka = ატლანტიდის ფიქტიური მეცნიერების ინსტიტუტი CFG_SITE_NAME_INTL_lt = Fiktyvių Mokslų Institutas Atlantis CFG_SITE_NAME_INTL_ar = معهد أطلنطيس للعلوم الافتراضية CFG_SITE_NAME_INTL_fa = موسسه علوم تخیلی آتلانتیس ## CFG_SITE_LANG -- the default language of the interface: ' CFG_SITE_LANG = en ## CFG_SITE_LANGS -- 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 Afrikaans, Arabic, Bulgarian, Catalan, Czech, German, ## Georgian, Greek, English, Spanish, Persian (Farsi), French, ## Croatian, Hungarian, Galician, Italian, Japanese, Kinyarwanda, ## Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, ## Slovak, Swedish, Ukrainian, Chinese (China), Chinese (Taiwan), so ## that the eventual maximum you can currently select is ## "af,ar,bg,ca,cs,de,el,en,es,fa,fr,hr,gl,ka,it,rw,lt,hu,ja,no,pl,pt,ro,ru,sk,sv,uk,zh_CN,zh_TW". CFG_SITE_LANGS = af,ar,bg,ca,cs,de,el,en,es,fa,fr,hr,gl,ka,it,rw,lt,hu,ja,no,pl,pt,ro,ru,sk,sv,uk,zh_CN,zh_TW ## CFG_SITE_SUPPORT_EMAIL -- the email address of the support team for ## this installation: CFG_SITE_SUPPORT_EMAIL = info@invenio-software.org ## CFG_SITE_ADMIN_EMAIL -- the email address of the 'superuser' for ## this installation. Enter your email address below and login with ## this address when using Invenio inistration modules. You ## will then be automatically recognized as superuser of the system. CFG_SITE_ADMIN_EMAIL = info@invenio-software.org ## CFG_SITE_EMERGENCY_EMAIL_ADDRESSES -- list of email addresses to ## which an email should be sent in case of emergency (e.g. bibsched ## queue has been stopped because of an error). Configuration ## dictionary allows for different recipients based on weekday and ## time-of-day. Example: ## ## CFG_SITE_EMERGENCY_EMAIL_ADDRESSES = { ## 'Sunday 22:00-06:00': '0041761111111@email2sms.foo.com', ## '06:00-18:00': 'team-in-europe@foo.com,0041762222222@email2sms.foo.com', ## '18:00-06:00': 'team-in-usa@foo.com', ## '*': 'john.doe.phone@foo.com'} ## ## If you want the emergency email notifications to always go to the ## same address, just use the wildcard line in the above example. CFG_SITE_EMERGENCY_EMAIL_ADDRESSES = {} ## CFG_SITE_ADMIN_EMAIL_EXCEPTIONS -- set this to 0 if you do not want ## to receive any captured exception via email to CFG_SITE_ADMIN_EMAIL ## address. Captured exceptions will still be available in ## var/log/invenio.err file. Set this to 1 if you want to receive ## some of the captured exceptions (this depends on the actual place ## where the exception is captured). Set this to 2 if you want to ## receive all captured exceptions. CFG_SITE_ADMIN_EMAIL_EXCEPTIONS = 1 ## CFG_SITE_RECORD -- what is the URI part representing detailed ## record pages? We recomment to leave the default value `record' ## unchanged. CFG_SITE_RECORD = record ## CFG_ERRORLIB_RESET_EXCEPTION_NOTIFICATION_COUNTER_AFTER -- set this to ## the number of seconds after which to reset the exception notification ## counter. A given repetitive exception is notified via email with a ## logarithmic strategy: the first time it is seen it is sent via email, ## then the second time, then the fourth, then the eighth and so forth. ## If the number of seconds elapsed since the last time it was notified ## is greater than CFG_ERRORLIB_RESET_EXCEPTION_NOTIFICATION_COUNTER_AFTER ## then the internal counter is reset in order not to have exception ## notification become more and more rare. CFG_ERRORLIB_RESET_EXCEPTION_NOTIFICATION_COUNTER_AFTER = 14400 ## CFG_CERN_SITE -- do we want to enable CERN-specific code? ## Put "1" for "yes" and "0" for "no". CFG_CERN_SITE = 0 ## CFG_INSPIRE_SITE -- do we want to enable INSPIRE-specific code? ## Put "1" for "yes" and "0" for "no". CFG_INSPIRE_SITE = 0 ## CFG_ADS_SITE -- do we want to enable ADS-specific code? ## Put "1" for "yes" and "0" for "no". CFG_ADS_SITE = 0 ## CFG_OPENAIRE_SITE -- do we want to enable OpenAIRE-specific code? ## Put "1" for "yes" and "0" for "no". CFG_OPENAIRE_SITE = 0 ## Now you can tune whether to integrate with external authentication providers ## through the OpenID and OAuth protocols. ## The following variables let you fine-tune which authentication ## providers you want to authorize. You can override here most of ## the variables in lib/invenio/access_control_config.py. ## In particular you can put in these variable the consumer_key and ## consumer_secret of the desired services. ## Note: some providers don't supply an mail address. ## If you choose them, the users will be registered with a temporary email address. ## CFG_OPENID_PROVIDERS -- Comma-separated list of providers you want to enable ## through the OpenID protocol. ## E.g.: CFG_OPENID_PROVIDERS = google,yahoo,aol,wordpress,myvidoop,openid,verisign,myopenid,myspace,livejournal,blogger CFG_OPENID_PROVIDERS = ## CFG_OAUTH1_PROVIDERS -- Comma-separated list of providers you want to enable ## through the OAuth1 protocol. ## Note: OAuth1 is in general deprecated in favour of OAuth2. ## E.g.: CFG_OAUTH1_PROVIDERS = twitter,linkedin,flickr, CFG_OAUTH1_PROVIDERS = ## CFG_OAUTH2_PROVIDERS -- Comma-separated list of providers you want to enable ## through the OAuth2 protocol. ## Note: if you enable the "orcid" provider the full profile of the user ## in Orcid will be imported. ## E.g.: CFG_OAUTH2_PROVIDERS = facebook,yammer,foursquare,googleoauth2,instagram,orcid CFG_OAUTH2_PROVIDERS = ## CFG_OPENID_CONFIGURATIONS -- Mapping of special parameter to configure the ## desired OpenID providers. Use this variable to override out-of-the-box ## parameters already set in lib/python/invenio/access_control_config.py. ## E.g.: CFG_OPENID_CONFIGURATIONS = {'google': { ## 'identifier': 'https://www.google.com/accounts/o8/id', ## 'trust_email': True}} CFG_OPENID_CONFIGURATIONS = {} ## CFG_OAUTH1_CONFIGURATIONS -- Mapping of special parameter to configure the ## desired OAuth1 providers. Use this variable to override out-of-the-box ## parameters already set in lib/python/invenio/access_control_config.py. ## E.g.: CFG_OAUTH1_CONFIGURATIONS = {'linkedin': { ## 'consumer_key' : 'MY_LINKEDIN_CONSUMER_KEY', ## 'consumer_secret' : 'MY_LINKEDIN_CONSUMER_SECRET'}} CFG_OAUTH1_CONFIGURATIONS = {} ## CFG_OAUTH2_CONFIGURATIONS -- Mapping of special parameter to configure the ## desired OAuth2 providers. Use this variable to override out-of-the-box ## parameters already set in lib/python/invenio/access_control_config.py. ## E.g.: CFG_OAUTH2_CONFIGURATIONS = {'orcid': { ## 'consumer_key' : 'MY_ORCID_CONSUMER_KEY', ## 'consumer_secret' : 'MY_ORCID_CONSUMER_SECRET'}} CFG_OAUTH2_CONFIGURATIONS = {} ## CFG_DEVEL_SITE -- is this a development site? If it is, you might ## prefer that it does not do certain things. For example, you might ## not want WebSubmit to send certain emails or trigger certain ## processes on a development site. ## Put "1" for "yes" (this is a development site) or "0" for "no" ## (this isn't a development site.) CFG_DEVEL_SITE = 0 ################################ ## Part 2: Web page style ## ################################ ## The variables affecting the page style. The most important one is ## the 'template skin' you would like to use and the obfuscation mode ## for your email addresses. Please refer to the WebStyle Admin Guide ## for more explanation. The other variables are listed here mostly ## for backwards compatibility purposes only. ## CFG_WEBSTYLE_TEMPLATE_SKIN -- what template skin do you want to ## use? CFG_WEBSTYLE_TEMPLATE_SKIN = default ## CFG_WEBSTYLE_EMAIL_ADDRESSES_OBFUSCATION_MODE. How do we "protect" ## email addresses from undesired automated email harvesters? This ## setting will not affect 'support' and 'admin' emails. ## NOTE: there is no ultimate solution to protect against email ## harvesting. All have drawbacks and can more or less be ## circumvented. Choose you preferred mode ([t] means "transparent" ## for the user): ## -1: hide all emails. ## [t] 0 : no protection, email returned as is. ## foo@example.com => foo@example.com ## 1 : basic email munging: replaces @ by [at] and . by [dot] ## foo@example.com => foo [at] example [dot] com ## [t] 2 : transparent name mangling: characters are replaced by ## equivalent HTML entities. ## foo@example.com => foo@example.com ## [t] 3 : javascript insertion. Requires Javascript enabled on client ## side. ## 4 : replaces @ and . characters by gif equivalents. ## foo@example.com => foo [at] example [dot] com CFG_WEBSTYLE_EMAIL_ADDRESSES_OBFUSCATION_MODE = 2 ## CFG_WEBSTYLE_INSPECT_TEMPLATES -- Do we want to debug all template ## functions so that they would return HTML results wrapped in ## comments indicating which part of HTML page was created by which ## template function? Useful only for debugging Pythonic HTML ## template. See WebStyle Admin Guide for more information. CFG_WEBSTYLE_INSPECT_TEMPLATES = 0 ## (deprecated) CFG_WEBSTYLE_CDSPAGEBOXLEFTTOP -- eventual global HTML ## left top box: CFG_WEBSTYLE_CDSPAGEBOXLEFTTOP = ## (deprecated) CFG_WEBSTYLE_CDSPAGEBOXLEFTBOTTOM -- eventual global ## HTML left bottom box: CFG_WEBSTYLE_CDSPAGEBOXLEFTBOTTOM = ## (deprecated) CFG_WEBSTYLE_CDSPAGEBOXRIGHTTOP -- eventual global ## HTML right top box: CFG_WEBSTYLE_CDSPAGEBOXRIGHTTOP = ## (deprecated) CFG_WEBSTYLE_CDSPAGEBOXRIGHTBOTTOM -- eventual global ## HTML right bottom box: CFG_WEBSTYLE_CDSPAGEBOXRIGHTBOTTOM = ## CFG_WEBSTYLE_HTTP_STATUS_ALERT_LIST -- when certain HTTP status ## codes are raised to the WSGI handler, the corresponding exceptions ## and error messages can be sent to the system administrator for ## inspecting. This is useful to detect and correct errors. The ## variable represents a comma-separated list of HTTP statuses that ## should alert admin. Wildcards are possible. If the status is ## followed by an "r", it means that a referer is required to exist ## (useful to distinguish broken known links from URL typos when 404 ## errors are raised). CFG_WEBSTYLE_HTTP_STATUS_ALERT_LIST = 404r,400,5*,41* ## CFG_WEBSTYLE_HTTP_USE_COMPRESSION -- whether to enable deflate ## compression of your HTTP/HTTPS connections. This will affect the Apache ## configuration snippets created by inveniocfg --create-apache-conf and ## the OAI-PMH Identify response. CFG_WEBSTYLE_HTTP_USE_COMPRESSION = 0 ## CFG_WEBSTYLE_REVERSE_PROXY_IPS -- if you are setting a multinode ## environment where an HTTP proxy such as mod_proxy is sitting in ## front of the Invenio web application and is forwarding requests to ## worker nodes, set here the the list of IP addresses of the allowed ## HTTP proxies. This is needed in order to avoid IP address spoofing ## when worker nodes are also available on the public Internet and ## might receive forged HTTP requests. Only HTTP requests coming from ## the specified IP addresses will be considered as forwarded from a ## reverse proxy. E.g. set this to '123.123.123.123'. CFG_WEBSTYLE_REVERSE_PROXY_IPS = ################################## ## Part 3: WebSearch parameters ## ################################## ## This section contains some 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_WEBSEARCH_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. CFG_WEBSEARCH_SEARCH_CACHE_SIZE = 0 ## CFG_WEBSEARCH_FIELDS_CONVERT -- if you migrate from an older ## system, you may want to map field codes of your old system (such as ## 'ti') to Invenio/MySQL ("title"). Use Python dictionary syntax ## for the translation table, e.g. {'wau':'author', 'wti':'title'}. ## Usually you don't want to do that, and you would use empty dict {}. CFG_WEBSEARCH_FIELDS_CONVERT = {} ## CFG_WEBSEARCH_LIGHTSEARCH_PATTERN_BOX_WIDTH -- width of the ## search pattern window in the light search interface, in ## characters. CFG_WEBSEARCH_LIGHTSEARCH_PATTERN_BOX_WIDTH = 60 CFG_WEBSEARCH_LIGHTSEARCH_PATTERN_BOX_WIDTH = 60 ## CFG_WEBSEARCH_SIMPLESEARCH_PATTERN_BOX_WIDTH -- width of the search ## pattern window in the simple search interface, in characters. CFG_WEBSEARCH_SIMPLESEARCH_PATTERN_BOX_WIDTH = 40 ## CFG_WEBSEARCH_ADVANCEDSEARCH_PATTERN_BOX_WIDTH -- width of the ## search pattern window in the advanced search interface, in ## characters. CFG_WEBSEARCH_ADVANCEDSEARCH_PATTERN_BOX_WIDTH = 30 ## CFG_WEBSEARCH_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. CFG_WEBSEARCH_NB_RECORDS_TO_SORT = 1000 ## CFG_WEBSEARCH_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. Note ## also that this option is active only for old (PHP) formats; the new ## (Python) formats are called on the fly by default anyway, since ## they are much faster. When usure, please set "0" here. CFG_WEBSEARCH_CALL_BIBFORMAT = 0 ## CFG_WEBSEARCH_USE_ALEPH_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 970__a. Put "1" for "yes" and "0" for ## "no". Usually you don't want to do that, though. CFG_WEBSEARCH_USE_ALEPH_SYSNOS = 0 ## CFG_WEBSEARCH_I18N_LATEST_ADDITIONS -- Put "1" if you want the ## "Latest Additions" in the web collection pages to show ## internationalized records. Useful only if your brief BibFormat ## templates contains internationalized strings. Otherwise put "0" in ## order not to slow down the creation of latest additions by WebColl. CFG_WEBSEARCH_I18N_LATEST_ADDITIONS = 0 ## CFG_WEBSEARCH_INSTANT_BROWSE -- the number of records to display ## under 'Latest Additions' in the web collection pages. CFG_WEBSEARCH_INSTANT_BROWSE = 10 ## CFG_WEBSEARCH_INSTANT_BROWSE_RSS -- the number of records to ## display in the RSS feed. CFG_WEBSEARCH_INSTANT_BROWSE_RSS = 25 ## CFG_WEBSEARCH_RSS_I18N_COLLECTIONS -- comma-separated list of ## collections that feature an internationalized RSS feed on their ## main seach interface page created by webcoll. Other collections ## will have RSS feed using CFG_SITE_LANG. CFG_WEBSEARCH_RSS_I18N_COLLECTIONS = ## CFG_WEBSEARCH_RSS_TTL -- number of minutes that indicates how long ## a feed cache is valid. CFG_WEBSEARCH_RSS_TTL = 360 ## CFG_WEBSEARCH_RSS_MAX_CACHED_REQUESTS -- maximum number of request kept ## in cache. If the cache is filled, following request are not cached. CFG_WEBSEARCH_RSS_MAX_CACHED_REQUESTS = 1000 ## CFG_WEBSEARCH_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. CFG_WEBSEARCH_AUTHOR_ET_AL_THRESHOLD = 3 ## CFG_WEBSEARCH_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. CFG_WEBSEARCH_NARROW_SEARCH_SHOW_GRANDSONS = 1 ## CFG_WEBSEARCH_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. CFG_WEBSEARCH_CREATE_SIMILARLY_NAMED_AUTHORS_LINK_BOX = 1 ## CFG_WEBSEARCH_USE_MATHJAX_FOR_FORMATS -- MathJax is a JavaScript ## library that renders (La)TeX mathematical formulas in the client ## browser. This parameter must contain a comma-separated list of ## output formats for which to apply the MathJax rendering, for example ## "hb,hd". If the list is empty, MathJax is disabled. ## See also CFG_WEBSUBMIT_USE_MATHJAX CFG_WEBSEARCH_USE_MATHJAX_FOR_FORMATS = ## CFG_WEBSEARCH_EXTERNAL_COLLECTION_SEARCH_TIMEOUT -- when searching ## external collections (e.g. SPIRES, CiteSeer, etc), how many seconds ## do we wait for reply before abandonning? CFG_WEBSEARCH_EXTERNAL_COLLECTION_SEARCH_TIMEOUT = 5 ## CFG_WEBSEARCH_EXTERNAL_COLLECTION_SEARCH_MAXRESULTS -- how many ## results do we fetch? CFG_WEBSEARCH_EXTERNAL_COLLECTION_SEARCH_MAXRESULTS = 10 ## CFG_WEBSEARCH_SPLIT_BY_COLLECTION -- do we want to split the search ## results by collection or not? Use 0 for not, 1 for yes. CFG_WEBSEARCH_SPLIT_BY_COLLECTION = 1 ## CFG_WEBSEARCH_DEF_RECORDS_IN_GROUPS -- the default number of ## records to display per page in the search results pages. CFG_WEBSEARCH_DEF_RECORDS_IN_GROUPS = 10 ## CFG_WEBSEARCH_MAX_RECORDS_IN_GROUPS -- in order to limit denial of ## service attacks the total number of records per group displayed as a ## result of a search query will be limited to this number. Only the superuser ## queries will not be affected by this limit. CFG_WEBSEARCH_MAX_RECORDS_IN_GROUPS = 200 ## CFG_WEBSEARCH_SHOW_COMMENT_COUNT -- do we want to show the 'N comments' ## links on the search engine pages? (useful only when you have allowed ## commenting) CFG_WEBSEARCH_SHOW_COMMENT_COUNT = 1 ## CFG_WEBSEARCH_SHOW_REVIEW_COUNT -- do we want to show the 'N reviews' ## links on the search engine pages? (useful only when you have allowed ## reviewing) CFG_WEBSEARCH_SHOW_REVIEW_COUNT = 1 ## CFG_WEBSEARCH_FULLTEXT_SNIPPETS_GENERATOR -- how do we want to generate ## fulltext? Can be generated by 'native' Invenio or 'SOLR' CFG_WEBSEARCH_FULLTEXT_SNIPPETS_GENERATOR = native ## CFG_WEBSEARCH_FULLTEXT_SNIPPETS -- how many full-text snippets do ## we want to display for full-text searches? If you want to specify ## different values for different document status types, please add ## more items into this dictionary. (Unless specified, the empty ## value will be used as default.) This is useful if you have ## restricted files of different types with various restrictions on ## what we can show. CFG_WEBSEARCH_FULLTEXT_SNIPPETS = { '': 4, } ## CFG_WEBSEARCH_FULLTEXT_SNIPPETS_CHARS -- what is the maximum size ## of a snippet to display around the pattern found in the full-text? ## If you want to specify different values for different document ## status types, please add more items into this dictionary. (Unless ## specified, the empty value will be used as default.) This is ## useful if you have restricted files of different types with various ## restrictions on what we can show. CFG_WEBSEARCH_FULLTEXT_SNIPPETS_CHARS = { '': 100, } ## CFG_WEBSEARCH_WILDCARD_LIMIT -- some of the queries, wildcard ## queries in particular (ex: cern*, a*), but also regular expressions ## (ex: [a-z]+), may take a long time to respond due to the high ## number of hits. You can limit the number of terms matched by a ## wildcard by setting this variable. A negative value or zero means ## that none of the queries will be limited (which may be wanted by ## also prone to denial-of-service kind of attacks). CFG_WEBSEARCH_WILDCARD_LIMIT = 50000 ## CFG_WEBSEARCH_SYNONYM_KBRS -- defines which knowledge bases are to ## be used for which index in order to provide runtime synonym lookup ## of user-supplied terms, and what massaging function should be used ## upon search pattern before performing the KB lookup. (Can be one ## of `exact', 'leading_to_comma', `leading_to_number'.) CFG_WEBSEARCH_SYNONYM_KBRS = { 'journal': ['SEARCH-SYNONYM-JOURNAL', 'leading_to_number'], } ## CFG_SOLR_URL -- optionally, you may use Solr to serve full-text ## queries and ranking. If so, please specify the URL of your Solr instance. ## Example: http://localhost:8983/solr (default solr port) CFG_SOLR_URL = ## CFG_XAPIAN_ENABLED -- optionally, you may use Xapian to serve full-text ## queries and ranking. If so, please enable it: 1 = enabled CFG_XAPIAN_ENABLED = ## CFG_WEBSEARCH_PREV_NEXT_HIT_LIMIT -- specify the limit when ## the previous/next/back hit links are to be displayed on detailed record pages. ## In order to speeding up list manipulations, if a search returns lots of hits, ## more than this limit, then do not loose time calculating next/previous/back ## hits at all, but display page directly without these. ## Note also that Invenio installations that do not like ## to have the next/previous hit link functionality would be able to set this ## variable to zero and not see anything. CFG_WEBSEARCH_PREV_NEXT_HIT_LIMIT = 1000 ## CFG_WEBSEARCH_PREV_NEXT_HIT_FOR_GUESTS -- Set this to 0 if you want ## to disable the previous/next/back hit link functionality for guests ## users. ## Since the previous/next/back hit link functionality is causing the allocation ## of user session in the database even for guests users, it might be useful to ## be able to disable it e.g. when your site is bombarded by web request ## (a.k.a. Slashdot effect). CFG_WEBSEARCH_PREV_NEXT_HIT_FOR_GUESTS = 1 ## CFG_WEBSEARCH_VIEWRESTRCOLL_POLICY -- when a record belongs to more than one ## restricted collection, if the viewrestcoll policy is set to "ALL" (default) ## then the user must be authorized to all the restricted collections, in ## order to be granted access to the specific record. If the policy is set to ## "ANY", then the user need to be authorized to only one of the collections ## in order to be granted access to the specific record. CFG_WEBSEARCH_VIEWRESTRCOLL_POLICY = ANY ## CFG_WEBSEARCH_SPIRES_SYNTAX -- variable to configure the use of the ## SPIRES query syntax in searches. Values: 0 = SPIRES syntax is ## switched off; 1 = leading 'find' is required; 9 = leading 'find' is ## not required (leading SPIRES operator, space-operator-space, etc ## are also accepted). CFG_WEBSEARCH_SPIRES_SYNTAX = 1 ## CFG_WEBSEARCH_DISPLAY_NEAREST_TERMS -- when user search does not ## return any direct result, what do we want to display? Set to 0 in ## order to display a generic message about search returning no hits. ## Set to 1 in order to display list of nearest terms from the indexes ## that may match user query. Note: this functionality may be slow, ## so you may want to disable it on bigger sites. CFG_WEBSEARCH_DISPLAY_NEAREST_TERMS = 1 ## CFG_WEBSEARCH_DETAILED_META_FORMAT -- the output format to use for ## detailed meta tags containing metadata as configured in the tag ## table. Default output format should be 'hdm', included. This ## format will be included in the header of /record/ pages. For ## efficiency this format should be pre-cached with BibReformat. See ## also CFG_WEBSEARCH_ENABLE_GOOGLESCHOLAR and ## CFG_WEBSEARCH_ENABLE_GOOGLESCHOLAR. CFG_WEBSEARCH_DETAILED_META_FORMAT = hdm ## CFG_WEBSEARCH_ENABLE_GOOGLESCHOLAR -- decides if meta tags for ## Google Scholar shall be included in the detailed record page ## header, when using the standard formatting templates/elements. See ## also CFG_WEBSEARCH_DETAILED_META_FORMAT and ## CFG_WEBSEARCH_ENABLE_OPENGRAPH. When this variable is changed and ## output format defined in CFG_WEBSEARCH_DETAILED_META_FORMAT is ## cached, a bibreformat must be run for the cached records. CFG_WEBSEARCH_ENABLE_GOOGLESCHOLAR = True ## CFG_WEBSEARCH_ENABLE_OPENGRAPH -- decides if meta tags for the Open ## Graph protocol shall be included in the detailed record page ## header, when using the standard formatting templates/elements. See ## also CFG_WEBSEARCH_DETAILED_META_FORMAT and ## CFG_WEBSEARCH_ENABLE_GOOGLESCHOLAR. When this variable is changed ## and output format defined in CFG_WEBSEARCH_DETAILED_META_FORMAT is ## cached, a bibreformat must be run for the cached records. Note that ## enabling Open Graph produces invalid XHTML/HTML5 markup. CFG_WEBSEARCH_ENABLE_OPENGRAPH = False ## CFG_WEBSEARCH_CITESUMMARY_SELFCITES_THRESHOLD -- switches off ## self-citations computation if the number records in the citesummary ## is above the threshold CFG_WEBSEARCH_CITESUMMARY_SELFCITES_THRESHOLD = 2000 ## CFG_WEBSEARCH_COLLECTION_NAMES_SEARCH -- decides whether search for ## collection name is enabled (1), disabled (-1) or enabled only for ## the home collection (0), enabled for all collections including ## those not attached to the collection tree (2). This requires the ## CollectionNameSearchService search services to be enabled. CFG_WEBSEARCH_COLLECTION_NAMES_SEARCH = 0 ####################################### ## Part 4: BibHarvest OAI parameters ## ####################################### ## This part defines parameters for the Invenio OAI gateway. ## Useful if you are running Invenio as OAI data provider. ## CFG_OAI_ID_FIELD -- OAI identifier MARC field: CFG_OAI_ID_FIELD = 909COo ## CFG_OAI_SET_FIELD -- OAI set MARC field: CFG_OAI_SET_FIELD = 909COp ## CFG_OAI_SET_FIELD -- previous OAI set MARC field: CFG_OAI_PREVIOUS_SET_FIELD = 909COq ## CFG_OAI_DELETED_POLICY -- OAI deletedrecordspolicy ## (no/transient/persistent): CFG_OAI_DELETED_POLICY = persistent ## CFG_OAI_ID_PREFIX -- OAI identifier prefix: CFG_OAI_ID_PREFIX = atlantis.cern.ch ## CFG_OAI_SAMPLE_IDENTIFIER -- OAI sample identifier: CFG_OAI_SAMPLE_IDENTIFIER = oai:atlantis.cern.ch:123 ## CFG_OAI_IDENTIFY_DESCRIPTION -- description for the OAI Identify verb: CFG_OAI_IDENTIFY_DESCRIPTION = %(CFG_SITE_URL)s 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: CFG_OAI_LOAD = 500 ## CFG_OAI_EXPIRE -- OAI resumptionToken expiration time: CFG_OAI_EXPIRE = 90000 ## CFG_OAI_SLEEP -- service unavailable between two consecutive ## requests for CFG_OAI_SLEEP seconds: CFG_OAI_SLEEP = 2 ## CFG_OAI_METADATA_FORMATS -- mapping between accepted metadataPrefixes and ## the corresponding output format to use, its schema and its metadataNamespace. CFG_OAI_METADATA_FORMATS = { 'marcxml': ('XOAIMARC', 'http://www.openarchives.org/OAI/1.1/dc.xsd', 'http://purl.org/dc/elements/1.1/'), 'oai_dc': ('XOAIDC', 'http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd', 'http://www.loc.gov/MARC21/slim'), } ## CFG_OAI_FRIENDS -- list of OAI baseURL of friend repositories. See: ## CFG_OAI_FRIENDS = http://cds.cern.ch/oai2d,http://openaire.cern.ch/oai2d,http://export.arxiv.org/oai2 ## The following subfields are a completition to ## CFG_BIBUPLOAD_EXTERNAL_OAIID_TAG. If CFG_OAI_PROVENANCE_BASEURL_SUBFIELD is ## set for a record, then the corresponding field is considered has being ## harvested via OAI-PMH ## CFG_OAI_PROVENANCE_BASEURL_SUBFIELD -- baseURL of the originDescription or a ## record CFG_OAI_PROVENANCE_BASEURL_SUBFIELD = u ## CFG_OAI_PROVENANCE_DATESTAMP_SUBFIELD -- datestamp of the originDescription ## or a record CFG_OAI_PROVENANCE_DATESTAMP_SUBFIELD = d ## CFG_OAI_PROVENANCE_METADATANAMESPACE_SUBFIELD -- metadataNamespace of the ## originDescription or a record CFG_OAI_PROVENANCE_METADATANAMESPACE_SUBFIELD = m ## CFG_OAI_PROVENANCE_ORIGINDESCRIPTION_SUBFIELD -- originDescription of the ## originDescription or a record CFG_OAI_PROVENANCE_ORIGINDESCRIPTION_SUBFIELD = d ## CFG_OAI_PROVENANCE_HARVESTDATE_SUBFIELD -- harvestDate of the ## originDescription or a record CFG_OAI_PROVENANCE_HARVESTDATE_SUBFIELD = h ## CFG_OAI_PROVENANCE_ALTERED_SUBFIELD -- altered flag of the ## originDescription or a record CFG_OAI_PROVENANCE_ALTERED_SUBFIELD = t ## CFG_OAI_FAILED_HARVESTING_STOP_QUEUE -- when harvesting OAI sources ## fails, shall we report an error with the task and stop BibSched ## queue, or simply wait for the next run of the task? A value of 0 ## will stop the task upon errors, 1 will let the queue run if the ## next run of the oaiharvest task can safely recover the failure ## (this means that the queue will stop if the task is not set to run ## periodically) CFG_OAI_FAILED_HARVESTING_STOP_QUEUE = 1 ## CFG_OAI_FAILED_HARVESTING_EMAILS_ADMIN -- when ## CFG_OAI_FAILED_HARVESTING_STOP_QUEUE is set to leave the queue ## running upon errors, shall we send an email to admin to notify ## about the failure? CFG_OAI_FAILED_HARVESTING_EMAILS_ADMIN = True ## NOTE: the following parameters are experimenta ## ----------------------------------------------------------------------------- ## CFG_OAI_RIGHTS_FIELD -- MARC field dedicated to storing Copyright information CFG_OAI_RIGHTS_FIELD = 542__ ## CFG_OAI_RIGHTS_HOLDER_SUBFIELD -- MARC subfield dedicated to storing the ## Copyright holder information CFG_OAI_RIGHTS_HOLDER_SUBFIELD = d ## CFG_OAI_RIGHTS_DATE_SUBFIELD -- MARC subfield dedicated to storing the ## Copyright date information CFG_OAI_RIGHTS_DATE_SUBFIELD = g ## CFG_OAI_RIGHTS_URI_SUBFIELD -- MARC subfield dedicated to storing the URI ## (URL or URN, more detailed statement about copyright status) information CFG_OAI_RIGHTS_URI_SUBFIELD = u ## CFG_OAI_RIGHTS_CONTACT_SUBFIELD -- MARC subfield dedicated to storing the ## Copyright holder contact information CFG_OAI_RIGHTS_CONTACT_SUBFIELD = e ## CFG_OAI_RIGHTS_STATEMENT_SUBFIELD -- MARC subfield dedicated to storing the ## Copyright statement as presented on the resource CFG_OAI_RIGHTS_STATEMENT_SUBFIELD = f ## CFG_OAI_LICENSE_FIELD -- MARC field dedicated to storing terms governing ## use and reproduction (license) CFG_OAI_LICENSE_FIELD = 540__ ## CFG_OAI_LICENSE_TERMS_SUBFIELD -- MARC subfield dedicated to storing the ## Terms governing use and reproduction, e.g. CC License CFG_OAI_LICENSE_TERMS_SUBFIELD = a ## CFG_OAI_LICENSE_PUBLISHER_SUBFIELD -- MARC subfield dedicated to storing the -## person or institution imposing the license (author, publisher) +## person or institute imposing the license (author, publisher) CFG_OAI_LICENSE_PUBLISHER_SUBFIELD = b ## CFG_OAI_LICENSE_URI_SUBFIELD -- MARC subfield dedicated to storing the URI ## URI CFG_OAI_LICENSE_URI_SUBFIELD = u ##------------------------------------------------------------------------------ ################################### ## Part 5: BibDocFile parameters ## ################################### ## This section contains some configuration parameters for BibDocFile ## module. ## CFG_BIBDOCFILE_DOCUMENT_FILE_MANAGER_DOCTYPES -- this is the list of ## doctypes (like 'Main' or 'Additional') and their description that admins ## can choose from when adding new files via the Document File Manager ## admin interface. ## - When no value is provided, admins cannot add new ## file (they can only revise/delete/add format) ## - When a single value is given, it is used as ## default doctype for all new documents ## ## Order is relevant ## Eg: ## [('main', 'Main document'), ('additional', 'Figure, schema. etc')] CFG_BIBDOCFILE_DOCUMENT_FILE_MANAGER_DOCTYPES = [ ('Main', 'Main document'), ('LaTeX', 'LaTeX'), ('Source', 'Source'), ('Additional', 'Additional File'), ('Audio', 'Audio file'), ('Video', 'Video file'), ('Script', 'Script'), ('Data', 'Data'), ('Figure', 'Figure'), ('Schema', 'Schema'), ('Graph', 'Graph'), ('Image', 'Image'), ('Drawing', 'Drawing'), ('Slides', 'Slides')] ## CFG_BIBDOCFILE_DOCUMENT_FILE_MANAGER_RESTRICTIONS -- this is the ## list of restrictions (like 'Restricted' or 'No Restriction') and their ## description that admins can choose from when adding or revising files. ## Restrictions can then be configured at the level of WebAccess. ## - When no value is provided, no restriction is ## applied ## - When a single value is given, it is used as ## default resctriction for all documents. ## - The first value of the list is used as default ## restriction if the user if not given the ## choice of the restriction. Order is relevant ## ## Eg: ## [('', 'No restriction'), ('restr', 'Restricted')] CFG_BIBDOCFILE_DOCUMENT_FILE_MANAGER_RESTRICTIONS = [ ('', 'Public'), ('restricted', 'Restricted')] ## CFG_BIBDOCFILE_DOCUMENT_FILE_MANAGER_MISC -- set here the other ## default flags and attributes to tune the Document File Manager admin ## interface. ## See the docstring of bibdocfile_managedocfiles.create_file_upload_interface ## to have a description of the available parameters and their syntax. ## In general you will rarely need to change this variable. CFG_BIBDOCFILE_DOCUMENT_FILE_MANAGER_MISC = { 'can_revise_doctypes': ['*'], 'can_comment_doctypes': ['*'], 'can_describe_doctypes': ['*'], 'can_delete_doctypes': ['*'], 'can_keep_doctypes': ['*'], 'can_rename_doctypes': ['*'], 'can_add_format_to_doctypes': ['*'], 'can_restrict_doctypes': ['*'], } ## CFG_BIBDOCFILE_FILESYSTEM_BIBDOC_GROUP_LIMIT -- the fulltext ## documents are stored under "/opt/invenio/var/data/files/gX/Y" ## directories where X is 0,1,... and Y stands for bibdoc ID. Thusly ## documents Y are grouped into directories X and this variable ## indicates the maximum number of documents Y stored in each ## directory X. This limit is imposed solely for filesystem ## performance reasons in order not to have too many subdirectories in ## a given directory. CFG_BIBDOCFILE_FILESYSTEM_BIBDOC_GROUP_LIMIT = 5000 ## CFG_BIBDOCFILE_ADDITIONAL_KNOWN_FILE_EXTENSIONS -- a comma-separated ## list of document extensions not listed in Python standard mimetype ## library that should be recognized by Invenio. CFG_BIBDOCFILE_ADDITIONAL_KNOWN_FILE_EXTENSIONS = hpg,link,lis,llb,mat,mpp,msg,docx,docm,xlsx,xlsm,xlsb,pptx,pptm,ppsx,ppsm ## CFG_BIBDOCFILE_ADDITIONAL_KNOWN_MIMETYPES -- a mapping of additional ## mimetypes that could be served or have to be recognized by this instance ## of Invenio (this is useful in order to patch old versions of the ## mimetypes Python module). CFG_BIBDOCFILE_ADDITIONAL_KNOWN_MIMETYPES = { "application/xml-dtd": ".dtd", } ## CFG_BIBDOCFILE_DESIRED_CONVERSIONS -- a dictionary having as keys ## a format and as values the corresponding list of desired converted ## formats. CFG_BIBDOCFILE_DESIRED_CONVERSIONS = { 'pdf' : ('pdf;pdfa', ), 'ps.gz' : ('pdf;pdfa', ), 'djvu' : ('pdf', ), 'sxw': ('doc', 'odt', 'pdf;pdfa', ), 'docx' : ('doc', 'odt', 'pdf;pdfa', ), 'doc' : ('odt', 'pdf;pdfa', 'docx'), 'rtf' : ('pdf;pdfa', 'odt', ), 'odt' : ('pdf;pdfa', 'doc', ), 'pptx' : ('ppt', 'odp', 'pdf;pdfa', ), 'ppt' : ('odp', 'pdf;pdfa', 'pptx'), 'sxi': ('odp', 'pdf;pdfa', ), 'odp' : ('pdf;pdfa', 'ppt', ), 'xlsx' : ('xls', 'ods', 'csv'), 'xls' : ('ods', 'csv'), 'ods' : ('xls', 'xlsx', 'csv'), 'sxc': ('xls', 'xlsx', 'csv'), 'tiff' : ('pdf;pdfa', ), 'tif' : ('pdf;pdfa', ),} ## CFG_BIBDOCFILE_USE_XSENDFILE -- if your web server supports ## XSendfile header, you may want to enable this feature in order for ## to Invenio tell the web server to stream files for download (after ## proper authorization checks) by web server's means. This helps to ## liberate Invenio worker processes from being busy with sending big ## files to clients. The web server will take care of that. Note: ## this feature is still somewhat experimental. Note: when enabled ## (set to 1), then you have to also regenerate Apache vhost conf ## snippets (inveniocfg --update-config-py --create-apache-conf). CFG_BIBDOCFILE_USE_XSENDFILE = 0 ## CFG_BIBDOCFILE_MD5_CHECK_PROBABILITY -- a number between 0 and ## 1 that indicates probability with which MD5 checksum will be ## verified when streaming bibdocfile-managed files. (0.1 will cause ## the check to be performed once for every 10 downloads) CFG_BIBDOCFILE_MD5_CHECK_PROBABILITY = 0.1 ## CFG_BIBDOCFILE_BEST_FORMATS_TO_EXTRACT_TEXT_FROM -- a comma-separated ## list of document extensions in decrescent order of preference ## to suggest what is considered the best format to extract text from. CFG_BIBDOCFILE_BEST_FORMATS_TO_EXTRACT_TEXT_FROM = ('txt', 'html', 'xml', 'odt', 'doc', 'docx', 'djvu', 'pdf', 'ps', 'ps.gz') ## CFG_BIBDOCFILE_ENABLE_BIBDOCFSINFO_CACHE -- whether to use the ## database table bibdocfsinfo as reference for filesystem ## information. The default is 0. Switch this to 1 ## after you have run bibdocfile --fix-bibdocfsinfo-cache ## or on an empty system. CFG_BIBDOCFILE_ENABLE_BIBDOCFSINFO_CACHE = 0 ## CFG_OPENOFFICE_SERVER_HOST -- the host where an OpenOffice Server is ## listening to. If localhost an OpenOffice server will be started ## automatically if it is not already running. ## Note: if you set this to an empty value this will disable the usage of ## OpenOffice for converting documents. ## If you set this to something different than localhost you'll have to take ## care to have an OpenOffice server running on the corresponding host and ## to install the same OpenOffice release both on the client and on the server ## side. ## In order to launch an OpenOffice server on a remote machine, just start ## the usual 'soffice' executable in this way: ## $> soffice -headless -nologo -nodefault -norestore -nofirststartwizard \ ## .. -accept=socket,host=HOST,port=PORT;urp;StarOffice.ComponentContext CFG_OPENOFFICE_SERVER_HOST = localhost ## CFG_OPENOFFICE_SERVER_PORT -- the port where an OpenOffice Server is ## listening to. CFG_OPENOFFICE_SERVER_PORT = 2002 ## CFG_OPENOFFICE_USER -- the user that will be used to launch the OpenOffice ## client. It is recommended to set this to a user who don't own files, like ## e.g. 'nobody'. You should also authorize your Apache server user to be ## able to become this user, e.g. by adding to your /etc/sudoers the following ## line: ## "apache ALL=(nobody) NOPASSWD: ALL" ## provided that apache is the username corresponding to the Apache user. ## On some machine this might be apache2 or www-data. CFG_OPENOFFICE_USER = nobody ################################# ## Part 6: BibIndex parameters ## ################################# ## This section contains some 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". CFG_BIBINDEX_FULLTEXT_INDEX_LOCAL_FILES_ONLY = 1 ## (deprecated) CFG_BIBINDEX_REMOVE_STOPWORDS -- configuration moved to ## DB, variable kept here just for backwards compatibility purposes. CFG_BIBINDEX_REMOVE_STOPWORDS = ## CFG_BIBINDEX_CHARS_ALPHANUMERIC_SEPARATORS -- characters considered as ## alphanumeric separators of word-blocks inside words. You probably ## don't want to change this. CFG_BIBINDEX_CHARS_ALPHANUMERIC_SEPARATORS = \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~ ## CFG_BIBINDEX_CHARS_PUNCTUATION -- characters considered as punctuation ## between word-blocks inside words. You probably don't want to ## change this. CFG_BIBINDEX_CHARS_PUNCTUATION = \.\,\:\;\?\!\" ## (deprecated) CFG_BIBINDEX_REMOVE_HTML_MARKUP -- now in database CFG_BIBINDEX_REMOVE_HTML_MARKUP = 0 ## (deprecated) CFG_BIBINDEX_REMOVE_LATEX_MARKUP -- now in database CFG_BIBINDEX_REMOVE_LATEX_MARKUP = 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. CFG_BIBINDEX_MIN_WORD_LENGTH = 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. CFG_BIBINDEX_URLOPENER_USERNAME = mysuperuser CFG_BIBINDEX_URLOPENER_PASSWORD = mysuperpass ## CFG_INTBITSET_ENABLE_SANITY_CHECKS -- ## Enable sanity checks for integers passed to the intbitset data ## structures. It is good to enable this during debugging ## and to disable this value for speed improvements. CFG_INTBITSET_ENABLE_SANITY_CHECKS = False ## CFG_BIBINDEX_PERFORM_OCR_ON_DOCNAMES -- regular expression that matches ## docnames for which OCR is desired (set this to .* in order to enable ## OCR in general, set this to empty in order to disable it.) CFG_BIBINDEX_PERFORM_OCR_ON_DOCNAMES = scan-.* ## CFG_BIBINDEX_SPLASH_PAGES -- key-value mapping where the key corresponds ## to a regular expression that matches the URLs of the splash pages of ## a given service and the value is a regular expression of the set of URLs ## referenced via tags in the HTML content of the splash pages that are ## referring to documents that need to be indexed. ## NOTE: for backward compatibility reasons you can set this to a simple ## regular expression that will directly be used as the unique key of the ## map, with corresponding value set to ".*" (in order to match any URL) CFG_BIBINDEX_SPLASH_PAGES = { "http://documents\.cern\.ch/setlink\?.*": ".*", "http://ilcagenda\.linearcollider\.org/subContributionDisplay\.py\?.*|http://ilcagenda\.linearcollider\.org/contributionDisplay\.py\?.*": "http://ilcagenda\.linearcollider\.org/getFile\.py/access\?.*|http://ilcagenda\.linearcollider\.org/materialDisplay\.py\?.*", } ## CFG_BIBINDEX_AUTHOR_WORD_INDEX_EXCLUDE_FIRST_NAMES -- do we want ## the author word index to exclude first names to keep only last ## names? If set to True, then for the author `Bernard, Denis', only ## `Bernard' will be indexed in the word index, not `Denis'. Note ## that if you change this variable, you have to re-index the author ## index via `bibindex -w author -R'. CFG_BIBINDEX_AUTHOR_WORD_INDEX_EXCLUDE_FIRST_NAMES = False ## (deprecated) CFG_BIBINDEX_SYNONYM_KBRS -- configuration moved to ## DB, variable kept here just for backwards compatibility purposes. CFG_BIBINDEX_SYNONYM_KBRS = {} ####################################### ## Part 7: Access control parameters ## ####################################### ## This section contains some 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, ## 3 for also disabling any database connection. ## Useful for site maintenance. CFG_ACCESS_CONTROL_LEVEL_SITE = 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). CFG_ACCESS_CONTROL_LEVEL_GUESTS = 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. When 5, then the same as 4 ## applies, plus info about how to get an account is hidden from the ## login page. CFG_ACCESS_CONTROL_LEVEL_ACCOUNTS = 0 ## CFG_ACCESS_CONTROL_LIMIT_REGISTRATION_TO_DOMAIN -- limit account ## registration to certain email addresses? If wanted, give domain ## name below, e.g. "cern.ch". If not wanted, leave it empty. CFG_ACCESS_CONTROL_LIMIT_REGISTRATION_TO_DOMAIN = ## 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. CFG_ACCESS_CONTROL_NOTIFY_ADMIN_ABOUT_NEW_ACCOUNTS = 0 ## CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_NEW_ACCOUNT -- send a ## notification email to the user when a new account is created in order to ## to verify the validity of the provided email address? Use ## 0 for no, 1 for yes. CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_NEW_ACCOUNT = 1 ## 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. CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_ACTIVATION = 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. CFG_ACCESS_CONTROL_NOTIFY_USER_ABOUT_DELETION = 0 ## CFG_APACHE_PASSWORD_FILE -- the file where Apache user credentials ## are stored. Must be an absolute pathname. If the value does not ## start by a slash, it is considered to be the filename of a file ## located under prefix/var/tmp directory. This is useful for the ## demo site testing purposes. For the production site, if you plan ## to restrict access to some collections based on the Apache user ## authentication mechanism, you should put here an absolute path to ## your Apache password file. CFG_APACHE_PASSWORD_FILE = demo-site-apache-user-passwords ## CFG_APACHE_GROUP_FILE -- the file where Apache user groups are ## defined. See the documentation of the preceding config variable. CFG_APACHE_GROUP_FILE = demo-site-apache-user-groups ################################### ## Part 8: WebSession parameters ## ################################### ## This section contains some configuration parameters for tweaking ## session handling. ## CFG_WEBSESSION_EXPIRY_LIMIT_DEFAULT -- number of days after which a session ## and the corresponding cookie is considered expired. CFG_WEBSESSION_EXPIRY_LIMIT_DEFAULT = 2 ## CFG_WEBSESSION_EXPIRY_LIMIT_REMEMBER -- number of days after which a session ## and the corresponding cookie is considered expired, when the user has ## requested to permanently stay logged in. CFG_WEBSESSION_EXPIRY_LIMIT_REMEMBER = 365 ## CFG_WEBSESSION_RESET_PASSWORD_EXPIRE_IN_DAYS -- when user requested ## a password reset, for how many days is the URL valid? CFG_WEBSESSION_RESET_PASSWORD_EXPIRE_IN_DAYS = 3 ## CFG_WEBSESSION_ADDRESS_ACTIVATION_EXPIRE_IN_DAYS -- when an account ## activation email was sent, for how many days is the URL valid? CFG_WEBSESSION_ADDRESS_ACTIVATION_EXPIRE_IN_DAYS = 3 ## CFG_WEBSESSION_NOT_CONFIRMED_EMAIL_ADDRESS_EXPIRE_IN_DAYS -- when ## user won't confirm his email address and not complete ## registeration, after how many days will it expire? CFG_WEBSESSION_NOT_CONFIRMED_EMAIL_ADDRESS_EXPIRE_IN_DAYS = 10 ## CFG_WEBSESSION_DIFFERENTIATE_BETWEEN_GUESTS -- when set to 1, the session ## system allocates the same uid=0 to all guests users regardless of where they ## come from. 0 allocate a unique uid to each guest. CFG_WEBSESSION_DIFFERENTIATE_BETWEEN_GUESTS = 0 ## CFG_WEBSESSION_IPADDR_CHECK_SKIP_BITS -- to prevent session cookie ## stealing, Invenio checks that the IP address of a connection is the ## same as that of the connection which created the initial session. ## This variable let you decide how many bits should be skipped during ## this check. Set this to 0 in order to enable full IP address ## checking. Set this to 32 in order to disable IP address checking. ## Intermediate values (say 8) let you have some degree of security so ## that you can trust your local network only while helping to solve ## issues related to outside clients that configured their browser to ## use a web proxy for HTTP connection but not for HTTPS, thus ## potentially having two different IP addresses. In general, if use ## HTTPS in order to serve authenticated content, you can safely set ## CFG_WEBSESSION_IPADDR_CHECK_SKIP_BITS to 32. CFG_WEBSESSION_IPADDR_CHECK_SKIP_BITS = 0 ################################ ## Part 9: BibRank parameters ## ################################ ## This section contains some configuration parameters for the ranking ## system. ## CFG_BIBRANK_SHOW_READING_STATS -- do we want to show reading ## similarity stats? ('People who viewed this page also viewed') CFG_BIBRANK_SHOW_READING_STATS = 1 ## CFG_BIBRANK_SHOW_DOWNLOAD_STATS -- do we want to show the download ## similarity stats? ('People who downloaded this document also ## downloaded') CFG_BIBRANK_SHOW_DOWNLOAD_STATS = 1 ## CFG_BIBRANK_SHOW_DOWNLOAD_GRAPHS -- do we want to show download ## history graph? (0=no | 1=classic/gnuplot | 2=flot) CFG_BIBRANK_SHOW_DOWNLOAD_GRAPHS = 1 ## CFG_BIBRANK_SHOW_DOWNLOAD_GRAPHS_CLIENT_IP_DISTRIBUTION -- do we ## want to show a graph representing the distribution of client IPs ## downloading given document? (0=no | 1=classic/gnuplot | 2=flot) CFG_BIBRANK_SHOW_DOWNLOAD_GRAPHS_CLIENT_IP_DISTRIBUTION = 0 ## CFG_BIBRANK_SHOW_CITATION_LINKS -- do we want to show the 'Cited ## by' links? (useful only when you have citations in the metadata) CFG_BIBRANK_SHOW_CITATION_LINKS = 1 ## CFG_BIBRANK_SHOW_CITATION_STATS -- de we want to show citation ## stats? ('Cited by M recors', 'Co-cited with N records') CFG_BIBRANK_SHOW_CITATION_STATS = 1 ## CFG_BIBRANK_SHOW_CITATION_GRAPHS -- do we want to show citation ## history graph? (0=no | 1=classic/gnuplot | 2=flot) CFG_BIBRANK_SHOW_CITATION_GRAPHS = 1 ## CFG_BIBRANK_SELFCITES_USE_BIBAUTHORID -- use authorids for computing ## self-citations ## falls back to hashing the author string CFG_BIBRANK_SELFCITES_USE_BIBAUTHORID = 0 ## CFG_BIBRANK_SELFCITES_PRECOMPUTE -- use precomputed self-citations ## when displaying itesummary. Precomputing citations allows use to ## speed up things CFG_BIBRANK_SELFCITES_PRECOMPUTE = 0 #################################### ## Part 10: WebComment parameters ## #################################### ## This section contains some configuration parameters for the ## commenting and reviewing facilities. ## CFG_WEBCOMMENT_ALLOW_COMMENTS -- do we want to allow users write ## public comments on records? CFG_WEBCOMMENT_ALLOW_COMMENTS = 1 ## CFG_WEBCOMMENT_ALLOW_REVIEWS -- do we want to allow users write ## public reviews of records? CFG_WEBCOMMENT_ALLOW_REVIEWS = 1 ## CFG_WEBCOMMENT_ALLOW_SHORT_REVIEWS -- do we want to allow short ## reviews, that is just the attribution of stars without submitting ## detailed review text? CFG_WEBCOMMENT_ALLOW_SHORT_REVIEWS = 0 ## CFG_WEBCOMMENT_NB_REPORTS_BEFORE_SEND_EMAIL_TO_ADMIN -- if users ## report a comment to be abusive, how many they have to be before the ## site admin is alerted? CFG_WEBCOMMENT_NB_REPORTS_BEFORE_SEND_EMAIL_TO_ADMIN = 5 ## CFG_WEBCOMMENT_NB_COMMENTS_IN_DETAILED_VIEW -- how many comments do ## we display in the detailed record page upon welcome? CFG_WEBCOMMENT_NB_COMMENTS_IN_DETAILED_VIEW = 1 ## CFG_WEBCOMMENT_NB_REVIEWS_IN_DETAILED_VIEW -- how many reviews do ## we display in the detailed record page upon welcome? CFG_WEBCOMMENT_NB_REVIEWS_IN_DETAILED_VIEW = 1 ## CFG_WEBCOMMENT_ADMIN_NOTIFICATION_LEVEL -- do we notify the site ## admin after every comment? CFG_WEBCOMMENT_ADMIN_NOTIFICATION_LEVEL = 1 ## CFG_WEBCOMMENT_TIMELIMIT_PROCESSING_COMMENTS_IN_SECONDS -- how many ## elapsed seconds do we consider enough when checking for possible ## multiple comment submissions by a user? CFG_WEBCOMMENT_TIMELIMIT_PROCESSING_COMMENTS_IN_SECONDS = 20 ## CFG_WEBCOMMENT_TIMELIMIT_PROCESSING_REVIEWS_IN_SECONDS -- how many ## elapsed seconds do we consider enough when checking for possible ## multiple review submissions by a user? CFG_WEBCOMMENT_TIMELIMIT_PROCESSING_REVIEWS_IN_SECONDS = 20 ## CFG_WEBCOMMENT_USE_RICH_EDITOR -- enable the WYSIWYG ## Javascript-based editor when user edits comments? CFG_WEBCOMMENT_USE_RICH_TEXT_EDITOR = False ## CFG_WEBCOMMENT_ALERT_ENGINE_EMAIL -- the email address from which the ## alert emails will appear to be sent: CFG_WEBCOMMENT_ALERT_ENGINE_EMAIL = info@invenio-software.org ## CFG_WEBCOMMENT_DEFAULT_MODERATOR -- if no rules are ## specified to indicate who is the comment moderator of ## a collection, this person will be used as default CFG_WEBCOMMENT_DEFAULT_MODERATOR = info@invenio-software.org ## CFG_WEBCOMMENT_USE_MATHJAX_IN_COMMENTS -- do we want to allow the use ## of MathJax plugin to render latex input in comments? CFG_WEBCOMMENT_USE_MATHJAX_IN_COMMENTS = 1 ## CFG_WEBCOMMENT_AUTHOR_DELETE_COMMENT_OPTION -- allow comment author to ## delete its own comment? CFG_WEBCOMMENT_AUTHOR_DELETE_COMMENT_OPTION = 1 # CFG_WEBCOMMENT_EMAIL_REPLIES_TO -- which field of the record define # email addresses that should be notified of newly submitted comments, # and for which collection. Use collection names as keys, and list of # tags as values CFG_WEBCOMMENT_EMAIL_REPLIES_TO = { 'Articles': ['506__d', '506__m'], } # CFG_WEBCOMMENT_RESTRICTION_DATAFIELD -- which field of the record # define the restriction (must be linked to WebAccess # 'viewrestrcomment') to apply to newly submitted comments, and for # which collection. Use collection names as keys, and one tag as value CFG_WEBCOMMENT_RESTRICTION_DATAFIELD = { 'Articles': '5061_a', 'Pictures': '5061_a', 'Theses': '5061_a', } # CFG_WEBCOMMENT_ROUND_DATAFIELD -- which field of the record define # the current round of comment for which collection. Use collection # name as key, and one tag as value CFG_WEBCOMMENT_ROUND_DATAFIELD = { 'Articles': '562__c', 'Pictures': '562__c', } # CFG_WEBCOMMENT_MAX_ATTACHMENT_SIZE -- max file size per attached # file, in bytes. Choose 0 if you don't want to limit the size CFG_WEBCOMMENT_MAX_ATTACHMENT_SIZE = 5242880 # CFG_WEBCOMMENT_MAX_ATTACHED_FILES -- maxium number of files that can # be attached per comment. Choose 0 if you don't want to limit the # number of files. File uploads can be restricted with action # "attachcommentfile". CFG_WEBCOMMENT_MAX_ATTACHED_FILES = 5 # CFG_WEBCOMMENT_MAX_COMMENT_THREAD_DEPTH -- how many levels of # indentation discussions can be. This can be used to ensure that # discussions will not go into deep levels of nesting if users don't # understand the difference between "reply to comment" and "add # comment". When the depth is reached, any "reply to comment" is # conceptually converted to a "reply to thread" (i.e. reply to this # parent's comment). Use -1 for no limit, 0 for unthreaded (flat) # discussions. CFG_WEBCOMMENT_MAX_COMMENT_THREAD_DEPTH = 1 ################################## ## Part 11: BibSched parameters ## ################################## ## This section contains some configuration parameters for the ## bibliographic task scheduler. ## CFG_BIBSCHED_REFRESHTIME -- how often do we want to refresh ## bibsched monitor? (in seconds) CFG_BIBSCHED_REFRESHTIME = 5 ## CFG_BIBSCHED_LOG_PAGER -- what pager to use to view bibsched task ## logs? CFG_BIBSCHED_LOG_PAGER = /usr/bin/less ## CFG_BIBSCHED_EDITOR -- what editor to use to edit the marcxml ## code of the locked records CFG_BIBSCHED_EDITOR = /usr/bin/vim ## CFG_BIBSCHED_GC_TASKS_OLDER_THAN -- after how many days to perform the ## gargbage collector of BibSched queue (i.e. removing/moving task to archive). CFG_BIBSCHED_GC_TASKS_OLDER_THAN = 30 ## CFG_BIBSCHED_GC_TASKS_TO_REMOVE -- list of BibTask that can be safely ## removed from the BibSched queue once they are DONE. CFG_BIBSCHED_GC_TASKS_TO_REMOVE = bibindex,bibreformat,webcoll,bibrank,inveniogc ## CFG_BIBSCHED_GC_TASKS_TO_ARCHIVE -- list of BibTasks that should be safely ## archived out of the BibSched queue once they are DONE. CFG_BIBSCHED_GC_TASKS_TO_ARCHIVE = bibupload,oairepositoryupdater ## CFG_BIBSCHED_MAX_NUMBER_CONCURRENT_TASKS -- maximum number of BibTasks ## that can run concurrently. ## NOTE: concurrent tasks are still considered as an experimental ## feature. Please keep this value set to 1 on production environments. CFG_BIBSCHED_MAX_NUMBER_CONCURRENT_TASKS = 1 ## CFG_BIBSCHED_PROCESS_USER -- bibsched and bibtask processes must ## usually run under the same identity as the Apache web server ## process in order to share proper file read/write privileges. If ## you want to force some other bibsched/bibtask user, e.g. because ## you are using a local `invenio' user that belongs to your ## `www-data' Apache user group and so shares writing rights with your ## Apache web server process in this way, then please set its username ## identity here. Otherwise we shall check whether your ## bibsched/bibtask processes are run under the same identity as your ## Apache web server process (in which case you can leave the default ## empty value here). CFG_BIBSCHED_PROCESS_USER = ## CFG_BIBSCHED_NODE_TASKS -- specific nodes may be configured to ## run only specific tasks; if you want this, then this variable is a ## dictionary of the form {'hostname1': ['task1', 'task2']}. The ## default is that any node can run any task. CFG_BIBSCHED_NODE_TASKS = {} ## CFG_BIBSCHED_MAX_ARCHIVED_ROWS_DISPLAY -- number of tasks displayed ## CFG_BIBSCHED_MAX_ARCHIVED_ROWS_DISPLAY = 500 ################################### ## Part 12: WebBasket parameters ## ################################### ## CFG_WEBBASKET_MAX_NUMBER_OF_DISPLAYED_BASKETS -- a safety limit for ## a maximum number of displayed baskets CFG_WEBBASKET_MAX_NUMBER_OF_DISPLAYED_BASKETS = 20 ## CFG_WEBBASKET_USE_RICH_TEXT_EDITOR -- enable the WYSIWYG ## Javascript-based editor when user edits comments in WebBasket? CFG_WEBBASKET_USE_RICH_TEXT_EDITOR = False ################################## ## Part 13: WebAlert parameters ## ################################## ## This section contains some configuration parameters for the ## automatic email notification alert system. ## CFG_WEBALERT_ALERT_ENGINE_EMAIL -- the email address from which the ## alert emails will appear to be sent: CFG_WEBALERT_ALERT_ENGINE_EMAIL = info@invenio-software.org ## CFG_WEBALERT_MAX_NUM_OF_RECORDS_IN_ALERT_EMAIL -- how many records ## at most do we send in an outgoing alert email? CFG_WEBALERT_MAX_NUM_OF_RECORDS_IN_ALERT_EMAIL = 20 ## CFG_WEBALERT_MAX_NUM_OF_CHARS_PER_LINE_IN_ALERT_EMAIL -- number of ## chars per line in an outgoing alert email? CFG_WEBALERT_MAX_NUM_OF_CHARS_PER_LINE_IN_ALERT_EMAIL = 72 ## CFG_WEBALERT_SEND_EMAIL_NUMBER_OF_TRIES -- when sending alert ## emails fails, how many times we retry? CFG_WEBALERT_SEND_EMAIL_NUMBER_OF_TRIES = 3 ## CFG_WEBALERT_SEND_EMAIL_SLEEPTIME_BETWEEN_TRIES -- when sending ## alert emails fails, what is the sleeptime between tries? (in ## seconds) CFG_WEBALERT_SEND_EMAIL_SLEEPTIME_BETWEEN_TRIES = 300 #################################### ## Part 14: WebMessage parameters ## #################################### ## CFG_WEBMESSAGE_MAX_SIZE_OF_MESSAGE -- how large web messages do we ## allow? CFG_WEBMESSAGE_MAX_SIZE_OF_MESSAGE = 20000 ## CFG_WEBMESSAGE_MAX_NB_OF_MESSAGES -- how many messages for a ## regular user do we allow in its inbox? CFG_WEBMESSAGE_MAX_NB_OF_MESSAGES = 30 ## CFG_WEBMESSAGE_DAYS_BEFORE_DELETE_ORPHANS -- how many days before ## we delete orphaned messages? CFG_WEBMESSAGE_DAYS_BEFORE_DELETE_ORPHANS = 60 ################################## ## Part 15: MiscUtil parameters ## ################################## ## CFG_MISCUTIL_SQL_USE_SQLALCHEMY -- whether to use SQLAlchemy.pool ## in the DB engine of Invenio. It is okay to enable this flag ## even if you have not installed SQLAlchemy. Note that Invenio will ## loose some perfomance if this option is enabled. CFG_MISCUTIL_SQL_USE_SQLALCHEMY = False ## CFG_MISCUTIL_SQL_RUN_SQL_MANY_LIMIT -- how many queries can we run ## inside run_sql_many() in one SQL statement? The limit value ## depends on MySQL's max_allowed_packet configuration. CFG_MISCUTIL_SQL_RUN_SQL_MANY_LIMIT = 10000 ## CFG_MISCUTIL_SMTP_HOST -- which server to use as outgoing mail server to ## send outgoing emails generated by the system, for example concerning ## submissions or email notification alerts. CFG_MISCUTIL_SMTP_HOST = localhost ## CFG_MISCUTIL_SMTP_PORT -- which port to use on the outgoing mail server ## defined in the previous step. CFG_MISCUTIL_SMTP_PORT = 25 ## CFG_MISCUTIL_SMTP_USER -- which username to use on the outgoing mail server ## defined in CFG_MISCUTIL_SMTP_HOST. If either CFG_MISCUTIL_SMTP_USER or ## CFG_MISCUTIL_SMTP_PASS are empty Invenio won't attempt authentication. CFG_MISCUTIL_SMTP_USER = ## CFG_MISCUTIL_SMTP_PASS -- which password to use on the outgoing mail ## server defined in CFG_MISCUTIL_SMTP_HOST. If either CFG_MISCUTIL_SMTP_USER ## or CFG_MISCUTIL_SMTP_PASS are empty Invenio won't attempt authentication. CFG_MISCUTIL_SMTP_PASS = ## CFG_MISCUTIL_SMTP_TLS -- whether to use a TLS (secure) connection when ## talking to the SMTP server defined in CFG_MISCUTIL_SMTP_HOST. CFG_MISCUTIL_SMTP_TLS = False ## CFG_MISCUTILS_DEFAULT_PROCESS_TIMEOUT -- the default number of seconds after ## which a process launched trough shellutils.run_process_with_timeout will ## be killed. This is useful to catch runaway processes. CFG_MISCUTIL_DEFAULT_PROCESS_TIMEOUT = 300 ## CFG_MATHJAX_HOSTING -- if you plan to use MathJax to display TeX ## formulas on HTML web pages, you can specify whether you wish to use ## 'local' hosting or 'cdn' hosting of MathJax libraries. (If set to ## 'local', you have to run 'make install-mathjax-plugin' as described ## in the INSTALL guide.) If set to 'local', users will use your site ## to download MathJax sources. If set to 'cdn', users will use ## centralized MathJax CDN servers instead. Please note that using -## CDN is suitable only for small institutions or for MathJax +## CDN is suitable only for small institutes or for MathJax ## sponsors; see the MathJax website for more details. (Also, please ## note that if you plan to use MathJax on your site, you have to ## adapt CFG_WEBSEARCH_USE_MATHJAX_FOR_FORMATS and ## CFG_WEBCOMMENT_USE_MATHJAX_IN_COMMENTS configuration variables ## elsewhere in this file.) CFG_MATHJAX_HOSTING = local ################################# ## Part 16: BibEdit parameters ## ################################# ## CFG_BIBEDIT_TIMEOUT -- when a user edits a record, this record is ## locked to prevent other users to edit it at the same time. ## How many seconds of inactivity before the locked record again will be free ## for other people to edit? CFG_BIBEDIT_TIMEOUT = 3600 ## CFG_BIBEDIT_LOCKLEVEL -- when a user tries to edit a record which there ## is a pending bibupload task for in the queue, this shouldn't be permitted. ## The lock level determines how thouroughly the queue should be investigated ## to determine if this is the case. ## Level 0 - always permits editing, doesn't look at the queue ## (unsafe, use only if you know what you are doing) ## Level 1 - permits editing if there are no queued bibedit tasks for this record ## (safe with respect to bibedit, but not for other bibupload maintenance jobs) ## Level 2 - permits editing if there are no queued bibupload tasks of any sort ## (safe, but may lock more than necessary if many cataloguers around) ## Level 3 - permits editing if no queued bibupload task concerns given record ## (safe, most precise locking, but slow, ## checks for 001/EXTERNAL_SYSNO_TAG/EXTERNAL_OAIID_TAG) ## The recommended level is 3 (default) or 2 (if you use maintenance jobs often). CFG_BIBEDIT_LOCKLEVEL = 3 ## CFG_BIBEDIT_PROTECTED_FIELDS -- a comma-separated list of fields that BibEdit ## will not allow to be added, edited or deleted. Wildcards are not supported, ## but conceptually a wildcard is added at the end of every field specification. ## Examples: ## 500A - protect all MARC fields with tag 500 and first indicator A ## 5 - protect all MARC fields in the 500-series. ## 909C_a - protect subfield a in tag 909 with first indicator C and empty ## second indicator ## Note that 001 is protected by default, but if protection of other ## identifiers or automated fields is a requirement, they should be added to ## this list. CFG_BIBEDIT_PROTECTED_FIELDS = ## CFG_BIBEDIT_QUEUE_CHECK_METHOD -- how do we want to check for ## possible queue locking situations to prevent cataloguers from ## editing a record that may be waiting in the queue? Use 'bibrecord' ## for exact checking (always works, but may be slow), use 'regexp' ## for regular expression based checking (very fast, but may be ## inaccurate). When unsure, use 'bibrecord'. CFG_BIBEDIT_QUEUE_CHECK_METHOD = bibrecord ## CFG_BIBEDIT_EXTEND_RECORD_WITH_COLLECTION_TEMPLATE -- a dictionary ## containing which collections will be extended with a given template ## while being displayed in BibEdit UI. The collection corresponds with ## the value written in field 980 CFG_BIBEDIT_EXTEND_RECORD_WITH_COLLECTION_TEMPLATE = { 'POETRY' : 'record_poem'} ## CFG_BIBEDIT_KB_SUBJECTS - Name of the KB used in the field 65017a ## to automatically convert codes into extended version. e.g ## a - Astrophysics CFG_BIBEDIT_KB_SUBJECTS = Subjects ## CFG_BIBEDIT_KB_INSTITUTIONS - Name of the KB used for institution ## autocomplete. To be applied in fields defined in ## CFG_BIBEDIT_AUTOCOMPLETE_INSTITUTIONS_FIELDS CFG_BIBEDIT_KB_INSTITUTIONS = InstitutionsCollection ## CFG_BIBEDIT_AUTOCOMPLETE_INSTITUTIONS_FIELDS - list of fields to ## be autocompleted with the KB CFG_BIBEDIT_KB_INSTITUTIONS CFG_BIBEDIT_AUTOCOMPLETE_INSTITUTIONS_FIELDS = 100__u,700__u,701__u,502__c ## CFG_BIBEDITMULTI_LIMIT_INSTANT_PROCESSING -- maximum number of records ## that can be modified instantly using the multi-record editor. Above ## this limit, modifications will only be executed in limited hours. CFG_BIBEDITMULTI_LIMIT_INSTANT_PROCESSING = 2000 ## CFG_BIBEDITMULTI_LIMIT_DELAYED_PROCESSING -- maximum number of records ## that can be send for modification without having a superadmin role. ## If the number of records is between CFG_BIBEDITMULTI_LIMIT_INSTANT_PROCESSING ## and this number, the modifications will take place only in limited hours. CFG_BIBEDITMULTI_LIMIT_DELAYED_PROCESSING = 20000 ## CFG_BIBEDITMULTI_LIMIT_DELAYED_PROCESSING_TIME -- Allowed time to ## execute modifications on records, when the number exceeds ## CFG_BIBEDITMULTI_LIMIT_INSTANT_PROCESSING. CFG_BIBEDITMULTI_LIMIT_DELAYED_PROCESSING_TIME = 22:00-05:00 ################################### ## Part 17: BibUpload parameters ## ################################### ## CFG_BIBUPLOAD_REFERENCE_TAG -- where do we store references? CFG_BIBUPLOAD_REFERENCE_TAG = 999 ## CFG_BIBUPLOAD_EXTERNAL_SYSNO_TAG -- where do we store external ## system numbers? Useful for matching when our records come from an ## external digital library system. CFG_BIBUPLOAD_EXTERNAL_SYSNO_TAG = 970__a ## CFG_BIBUPLOAD_EXTERNAL_OAIID_TAG -- where do we store OAI ID tags ## of harvested records? Useful for matching when we harvest stuff ## via OAI that we do not want to reexport via Invenio OAI; so records ## may have only the source OAI ID stored in this tag (kind of like ## external system number too). CFG_BIBUPLOAD_EXTERNAL_OAIID_TAG = 035__a ## CFG_BIBUPLOAD_EXTERNAL_OAIID_PROVENANCE_TAG -- where do we store OAI SRC ## tags of harvested records? Useful for matching when we harvest stuff ## via OAI that we do not want to reexport via Invenio OAI; so records ## may have only the source OAI SRC stored in this tag (kind of like ## external system number too). Note that the field should be the same of ## CFG_BIBUPLOAD_EXTERNAL_OAIID_TAG. CFG_BIBUPLOAD_EXTERNAL_OAIID_PROVENANCE_TAG = 035__9 ## CFG_BIBUPLOAD_STRONG_TAGS -- a comma-separated list of tags that ## are strong enough to resist the replace mode. Useful for tags that ## might be created from an external non-metadata-like source, ## e.g. the information about the number of copies left. CFG_BIBUPLOAD_STRONG_TAGS = 964 ## CFG_BIBUPLOAD_CONTROLLED_PROVENANCE_TAGS -- a comma-separated list ## of tags that contain provenance information that should be checked ## in the bibupload correct mode via matching provenance codes. (Only ## field instances of the same provenance information would be acted ## upon.) Please specify the whole tag info up to subfield codes. CFG_BIBUPLOAD_CONTROLLED_PROVENANCE_TAGS = 6531_9 ## CFG_BIBUPLOAD_FFT_ALLOWED_LOCAL_PATHS -- a comma-separated list of system ## paths from which it is allowed to take fulltextes that will be uploaded via ## FFT (CFG_TMPDIR is included by default). CFG_BIBUPLOAD_FFT_ALLOWED_LOCAL_PATHS = /tmp,/home ## CFG_BIBUPLOAD_FFT_ALLOWED_EXTERNAL_URLS -- a dictionary containing ## external URLs that can be accessed by Invenio and specific HTTP ## headers that will be used for each URL. The keys of the dictionary ## are regular expressions matching a set of URLs, the values are ## dictionaries of headers as consumed by urllib2.Request. If a ## regular expression matching all URLs is created at the end of the ## list, it means that Invenio will download all URLs. Otherwise ## Invenio will just download authorized URLs. Note: by default, a ## User-Agent built after the current Invenio version, site name, and ## site URL will be used. The values of the header dictionary can ## also contain a call to a python function, in the form of a ## disctionary with two entries: the name of the function to be called ## as a value for the 'fnc' key, and the arguments to this function, ## as a value for the 'args' key (in the form of a dictionary). ## CFG_BIBUPLOAD_FFT_ALLOWED_EXTERNAL_URLS = [ ## ('http://myurl.com/.*', {'User-Agent': 'Me'}), ## ('http://yoururl.com/.*', {'User-Agent': 'You', 'Accept': 'text/plain'}), ## ('http://thisurl.com/.*', {'Cookie': {'fnc':'read_cookie', 'args':{'cookiefile':'/tmp/cookies.txt'}}}) ## ('http://.*', {'User-Agent': 'Invenio'}), ## ] CFG_BIBUPLOAD_FFT_ALLOWED_EXTERNAL_URLS = [ ('http(s)?://.*', {}), ] ## CFG_BIBUPLOAD_SERIALIZE_RECORD_STRUCTURE -- do we want to serialize ## internal representation of records (Pythonic record structure) into ## the database? This can improve internal processing speed of some ## operations at the price of somewhat bigger disk space usage. ## If you change this value after some records have already been added ## to your installation, you may want to run: ## $ /opt/invenio/bin/inveniocfg --reset-recstruct-cache ## in order to either erase the cache thus freeing database space, ## or to fill the cache for all records that have not been cached yet. CFG_BIBUPLOAD_SERIALIZE_RECORD_STRUCTURE = 1 ## CFG_BIBUPLOAD_DELETE_FORMATS -- which formats do we want bibupload ## to delete when a record is ingested? Enter comma-separated list of ## formats. For example, 'hb,hd' will delete pre-formatted HTML brief ## and defailed formats from cache, so that search engine will ## generate them on-the-fly. Useful to always present latest data of ## records upon record display, until the periodical bibreformat job ## runs next and updates the cache. CFG_BIBUPLOAD_DELETE_FORMATS = hb ## CFG_BIBUPLOAD_DISABLE_RECORD_REVISIONS -- set to 1 if keeping ## history of record revisions is not necessary (e.g. because records ## and corresponding modifications are coming always from the same ## external system which already keeps revision history). CFG_BIBUPLOAD_DISABLE_RECORD_REVISIONS = 0 ## CFG_BIBUPLOAD_CONFLICTING_REVISION_TICKET_QUEUE -- Set the name of ## the BibCatalog ticket queue to be used when BibUpload can't ## automatically resolve a revision conflict and has therefore to put ## requested modifications in the holding pen. CFG_BIBUPLOAD_CONFLICTING_REVISION_TICKET_QUEUE = ## CFG_BATCHUPLOADER_FILENAME_MATCHING_POLICY -- a comma-separated list ## indicating which fields match the file names of the documents to be ## uploaded. ## The matching will be done in the same order as the list provided. CFG_BATCHUPLOADER_FILENAME_MATCHING_POLICY = reportnumber,recid ## CFG_BATCHUPLOADER_DAEMON_DIR -- Directory where the batchuploader daemon ## will look for the subfolders metadata and document by default. ## If path is relative, CFG_PREFIX will be joined as a prefix CFG_BATCHUPLOADER_DAEMON_DIR = var/batchupload ## CFG_BATCHUPLOADER_WEB_ROBOT_AGENTS -- Regular expression to specify the ## agents permitted when calling batch uploader web interface ## cds.cern.ch/batchuploader/robotupload ## if using a curl, eg: curl xxx -A invenio CFG_BATCHUPLOADER_WEB_ROBOT_AGENTS = invenio_webupload|Invenio-.* ## CFG_BATCHUPLOADER_WEB_ROBOT_RIGHTS -- Access list specifying for each ## IP address, which collections are allowed using batch uploader robot ## interface. CFG_BATCHUPLOADER_WEB_ROBOT_RIGHTS = { '127.0.0.1': ['*'], # useful for testing '127.0.1.1': ['*'], # useful for testing '10.0.0.1': ['BOOK', 'REPORT'], # Example 1 '10.0.0.2': ['POETRY', 'PREPRINT'], # Example 2 } #################################### ## Part 18: BibCatalog parameters ## #################################### ## CFG_BIBCATALOG_SYSTEM -- set desired catalog system. (RT or EMAIL) CFG_BIBCATALOG_SYSTEM = EMAIL ## Email backend configuration: CFG_BIBCATALOG_SYSTEM_EMAIL_ADDRESS = info@invenio-software.org ## RT backend configuration: ## CFG_BIBCATALOG_SYSTEM_RT_CLI -- path to the RT CLI client CFG_BIBCATALOG_SYSTEM_RT_CLI = /usr/bin/rt ## CFG_BIBCATALOG_SYSTEM_RT_URL -- Base URL of the remote RT system CFG_BIBCATALOG_SYSTEM_RT_URL = http://localhost/rt3 ## CFG_BIBCATALOG_SYSTEM_RT_DEFAULT_USER -- Set the username for a default RT account ## on remote system, with limited privileges, in order to only create and modify own tickets. CFG_BIBCATALOG_SYSTEM_RT_DEFAULT_USER = ## CFG_BIBCATALOG_SYSTEM_RT_DEFAULT_PWD -- Set the password for the default RT account ## on remote system. CFG_BIBCATALOG_SYSTEM_RT_DEFAULT_PWD = #################################### ## Part 19: BibFormat parameters ## #################################### ## CFG_BIBFORMAT_HIDDEN_TAGS -- comma-separated list of MARC tags that ## are not shown to users not having cataloging authorizations. CFG_BIBFORMAT_HIDDEN_TAGS = 595 ## CFG_BIBFORMAT_HIDDEN_FILE_FORMATS -- comma-separated list of file formats ## that are not shown explicitly to user not having cataloging authorizations. ## e.g. pdf;pdfa,xml CFG_BIBFORMAT_HIDDEN_FILE_FORMATS = ## CFG_BIBFORMAT_ADDTHIS_ID -- if you want to use the AddThis service from ## , set this value to the pubid parameter as ## provided by the service (e.g. ra-4ff80aae118f4dad), and add a call to ## formatting element in your formats, for example ## Default_HTML_detailed.bft. CFG_BIBFORMAT_ADDTHIS_ID = ## CFG_BIBFORMAT_DISABLE_I18N_FOR_CACHED_FORMATS -- For each output ## format BibReformat currently creates a cache for only one language ## (CFG_SITE_LANG) per record. This means that visitors having set a ## different language than CFG_SITE_LANG will be served an on-the-fly ## output using the language of their choice. You can disable this ## behaviour by specifying below for which output format you would ## like to force the cache to be used whatever language is ## requested. If your format templates do not provide ## internationalization, you can optimize your site by setting for ## eg. hb,hd to always serve the precached output (if it exists) in ## the CFG_SITE_LANG CFG_BIBFORMAT_DISABLE_I18N_FOR_CACHED_FORMATS = #################################### ## Part 20: BibMatch parameters ## #################################### ## CFG_BIBMATCH_LOCAL_SLEEPTIME -- Determines the amount of seconds to sleep ## between search queries on LOCAL system. CFG_BIBMATCH_LOCAL_SLEEPTIME = 0.0 ## CFG_BIBMATCH_REMOTE_SLEEPTIME -- Determines the amount of seconds to sleep ## between search queries on REMOTE systems. CFG_BIBMATCH_REMOTE_SLEEPTIME = 2.0 ## CFG_BIBMATCH_FUZZY_WORDLIMITS -- Determines the amount of words to extract ## from a certain fields value during fuzzy matching mode. Add/change field ## and appropriate number to the dictionary to configure this. CFG_BIBMATCH_FUZZY_WORDLIMITS = { '100__a': 2, '245__a': 4 } ## CFG_BIBMATCH_FUZZY_EMPTY_RESULT_LIMIT -- Determines the amount of empty results ## to accept during fuzzy matching mode. CFG_BIBMATCH_FUZZY_EMPTY_RESULT_LIMIT = 1 ## CFG_BIBMATCH_QUERY_TEMPLATES -- Here you can set the various predefined querystrings ## used to standardize common matching queries. By default the following templates ## are given: ## title - standard title search. Taken from 245__a (default) ## title-author - title and author search (i.e. this is a title AND author a) ## Taken from 245__a and 100__a ## reportnumber - reportnumber search (i.e. reportnumber:REP-NO-123). CFG_BIBMATCH_QUERY_TEMPLATES = { 'title' : '[title]', 'title-author' : '[title] [author]', 'reportnumber' : 'reportnumber:[reportnumber]' } ## CFG_BIBMATCH_MATCH_VALIDATION_RULESETS -- Here you can define the various rulesets for ## validating search results done by BibMatch. Each ruleset contains a certain pattern mapped ## to a tuple defining a "matching-strategy". ## ## The rule-definitions must come in two parts: ## ## * The first part is a string containing a regular expression ## that is matched against the textmarc representation of each record. ## If a match is found, the final rule-set is updated with ## the given "sub rule-set", where identical tag rules are replaced. ## ## * The second item is a list of key->value mappings (dict) that indicates specific ## strategy parameters with corresponding validation rules. ## ## This strategy consists of five items: ## ## * MARC TAGS: ## These MARC tags represents the fields taken from original record and any records from search ## results. When several MARC tags are specified with a given match-strategy, all the fields ## associated with these tags are matched together (i.e. with key "100__a,700__a", all 100__a ## and 700__a fields are matched together. Which is useful when first-author can vary for ## certain records on different systems). ## ## * COMPARISON THRESHOLD: ## a value between 0.0 and 1.0 specifying the threshold for string matches ## to determine if it is a match or not (using normalized string-distance). ## Normally 0.8 (80% match) is considered to be a close match. ## ## * COMPARISON MODE: ## the parse mode decides how the record datafields are compared: ## - 'strict' : all (sub-)fields are compared, and all must match. Order is significant. ## - 'normal' : all (sub-)fields are compared, and all must match. Order is ignored. ## - 'lazy' : all (sub-)fields are compared with each other and at least one must match ## - 'ignored': the tag is ignored in the match. Used to disable previously defined rules. ## ## * MATCHING MODE: ## the comparison mode decides how the fieldvalues are matched: ## - 'title' : uses a method specialized for comparing titles, e.g. looking for subtitles ## - 'author' : uses a special authorname comparison. Will take initials into account. ## - 'identifier' : special matching for identifiers, stripping away punctuation ## - 'date': matches dates by extracting and comparing the year ## - 'normal': normal string comparison. ## Note: Fields are considered matching when all its subfields or values match. ## ## * RESULT MODE: ## the result mode decides how the results from the comparisons are handled further: ## - 'normal' : a failed match will cause the validation to immediately exit as a failure. ## a successful match will cause the validation to continue on other rules (if any) ## - 'final' : a failed match will cause the validation to immediately exit as a failure. ## a successful match will cause validation to immediately exit as a success. ## - 'joker' : a failed match will cause the validation to continue on other rules (if any). ## a successful match will cause validation to immediately exit as a success. ## ## You can add your own rulesets in the dictionary below. The 'default' ruleset is always applied, ## and should therefore NOT be removed, but can be changed. The tag-rules can also be overwritten ## by other rulesets. ## ## WARNING: Beware that the validation quality is only as good as given rules, so matching results ## are never guaranteed to be accurate, as it is very content-specific. CFG_BIBMATCH_MATCH_VALIDATION_RULESETS = [('default', [{ 'tags' : '245__%,242__%', 'threshold' : 0.8, 'compare_mode' : 'lazy', 'match_mode' : 'title', 'result_mode' : 'normal' }, { 'tags' : '037__a,088__a', 'threshold' : 1.0, 'compare_mode' : 'lazy', 'match_mode' : 'identifier', 'result_mode' : 'final' }, { 'tags' : '100__a,700__a', 'threshold' : 0.8, 'compare_mode' : 'normal', 'match_mode' : 'author', 'result_mode' : 'normal' }, { 'tags' : '773__a', 'threshold' : 1.0, 'compare_mode' : 'lazy', 'match_mode' : 'title', 'result_mode' : 'normal' }]), ('980__ \$\$a(THESIS|Thesis)', [{ 'tags' : '100__a', 'threshold' : 0.8, 'compare_mode' : 'strict', 'match_mode' : 'author', 'result_mode' : 'normal' }, { 'tags' : '700__a,701__a', 'threshold' : 1.0, 'compare_mode' : 'lazy', 'match_mode' : 'author', 'result_mode' : 'normal' }, { 'tags' : '100__a,700__a', 'threshold' : 0.8, 'compare_mode' : 'ignored', 'match_mode' : 'author', 'result_mode' : 'normal' }]), ('260__', [{ 'tags' : '260__c', 'threshold' : 0.8, 'compare_mode' : 'lazy', 'match_mode' : 'date', 'result_mode' : 'normal' }]), ('0247_', [{ 'tags' : '0247_a', 'threshold' : 1.0, 'compare_mode' : 'lazy', 'match_mode' : 'identifier', 'result_mode' : 'final' }]), ('020__', [{ 'tags' : '020__a', 'threshold' : 1.0, 'compare_mode' : 'lazy', 'match_mode' : 'identifier', 'result_mode' : 'joker' }]) ] ## CFG_BIBMATCH_FUZZY_MATCH_VALIDATION_LIMIT -- Determines the minimum percentage of the ## amount of rules to be positively matched when comparing two records. Should the number ## of matches be lower than required matches but equal to or above this limit, ## the match will be considered fuzzy. CFG_BIBMATCH_FUZZY_MATCH_VALIDATION_LIMIT = 0.65 ## CFG_BIBMATCH_SEARCH_RESULT_MATCH_LIMIT -- Determines the maximum amount of search results ## a single search can return before acting as a non-match. CFG_BIBMATCH_SEARCH_RESULT_MATCH_LIMIT = 15 ###################################### ## Part 21: BibAuthorID parameters ## ###################################### # CFG_BIBAUTHORID_MAX_PROCESSES is the max number of processes # that may be spawned by the disambiguation algorithm CFG_BIBAUTHORID_MAX_PROCESSES = 12 # CFG_BIBAUTHORID_PERSONID_SQL_MAX_THREADS is the max number of threads # to parallelize sql queries during personID tables updates CFG_BIBAUTHORID_PERSONID_SQL_MAX_THREADS = 12 # CFG_BIBAUTHORID_EXTERNAL_CLAIMED_RECORDS_KEY defines the user info # keys for externally claimed records in an remote-login scenario--e.g. from arXiv.org # e.g. "external_arxivids" for arXiv SSO CFG_BIBAUTHORID_EXTERNAL_CLAIMED_RECORDS_KEY = # CFG_BIBAUTHORID_AID_ENABLED # Globally enable AuthorID Interfaces. # If False: No guest, user or operator will have access to the system. CFG_BIBAUTHORID_ENABLED = True # CFG_BIBAUTHORID_AID_ON_AUTHORPAGES # Enable AuthorID information on the author pages. CFG_BIBAUTHORID_ON_AUTHORPAGES = True # CFG_BIBAUTHORID_AUTHOR_TICKET_ADMIN_EMAIL defines the eMail address # all ticket requests concerning authors will be sent to. CFG_BIBAUTHORID_AUTHOR_TICKET_ADMIN_EMAIL = info@invenio-software.org #CFG_BIBAUTHORID_UI_SKIP_ARXIV_STUB_PAGE defines if the optional arXive stub page is skipped CFG_BIBAUTHORID_UI_SKIP_ARXIV_STUB_PAGE = False ######################################### ## Part 22: BibCirculation parameters ## ######################################### ## CFG_BIBCIRCULATION_ITEM_STATUS_OPTIONAL -- comma-separated list of statuses # Example: missing, order delayed, not published # You can allways add a new status here, but you may want to run some script # to update the database if you remove some statuses. CFG_BIBCIRCULATION_ITEM_STATUS_OPTIONAL = ## Here you can edit the text of the statuses that have specific roles. # You should run a script to update the database if you change them after having # used the module for some time. ## Item statuses # The book is on loan CFG_BIBCIRCULATION_ITEM_STATUS_ON_LOAN = on loan # Available for loan CFG_BIBCIRCULATION_ITEM_STATUS_ON_SHELF = on shelf # The book is being processed by the library (cataloguing, etc.) CFG_BIBCIRCULATION_ITEM_STATUS_IN_PROCESS = in process # The book has been ordered (bought) CFG_BIBCIRCULATION_ITEM_STATUS_ON_ORDER = on order # The order of the book has been cancelled CFG_BIBCIRCULATION_ITEM_STATUS_CANCELLED = cancelled # The order of the book has not arrived yet CFG_BIBCIRCULATION_ITEM_STATUS_NOT_ARRIVED = not arrived # The order of the book has not arrived yet and has been claimed CFG_BIBCIRCULATION_ITEM_STATUS_CLAIMED = claimed # The book has been proposed for acquisition and is under review. CFG_BIBCIRCULATION_ITEM_STATUS_UNDER_REVIEW = under review ## Loan statuses # This status should not be confussed with CFG_BIBCIRCULATION_ITEM_STATUS_ON_LOAN. # If the item status is CFG_BIBCIRCULATION_ITEM_STATUS_ON_LOAN, then there is # a loan with status CFG_BIBCIRCULATION_LOAN_STATUS_ON_LOAN or # CFG_BIBCIRCULATION_LOAN_STATUS_EXPIRED. # For each copy, there can only be one active loan ('on loan' or 'expired') at # the time, since can be many 'returned' loans for the same copy. CFG_BIBCIRCULATION_LOAN_STATUS_ON_LOAN = on loan # The due date has come and the item has not been returned CFG_BIBCIRCULATION_LOAN_STATUS_EXPIRED = expired # The item has been returned. CFG_BIBCIRCULATION_LOAN_STATUS_RETURNED = returned ## Request statuses # There is at least one copy available, and this is the oldest request. CFG_BIBCIRCULATION_REQUEST_STATUS_PENDING = pending # There are no copies available, or there is another request with more priority. CFG_BIBCIRCULATION_REQUEST_STATUS_WAITING = waiting # The request has become a loan CFG_BIBCIRCULATION_REQUEST_STATUS_DONE = done # The request has been cancelled CFG_BIBCIRCULATION_REQUEST_STATUS_CANCELLED = cancelled # The request has been generated for a proposed book CFG_BIBCIRCULATION_REQUEST_STATUS_PROPOSED = proposed # ILL request statuses CFG_BIBCIRCULATION_ILL_STATUS_NEW = new CFG_BIBCIRCULATION_ILL_STATUS_REQUESTED = requested CFG_BIBCIRCULATION_ILL_STATUS_ON_LOAN = on loan CFG_BIBCIRCULATION_ILL_STATUS_RETURNED = returned CFG_BIBCIRCULATION_ILL_STATUS_CANCELLED = cancelled CFG_BIBCIRCULATION_ILL_STATUS_RECEIVED = received #Book proposal statuses CFG_BIBCIRCULATION_PROPOSAL_STATUS_NEW = proposal-new CFG_BIBCIRCULATION_PROPOSAL_STATUS_ON_ORDER = proposal-on order CFG_BIBCIRCULATION_PROPOSAL_STATUS_PUT_ASIDE = proposal-put aside CFG_BIBCIRCULATION_PROPOSAL_STATUS_RECEIVED = proposal-received # Purchase statuses CFG_BIBCIRCULATION_ACQ_STATUS_NEW = new CFG_BIBCIRCULATION_ACQ_STATUS_ON_ORDER = on order CFG_BIBCIRCULATION_ACQ_STATUS_PARTIAL_RECEIPT = partial receipt CFG_BIBCIRCULATION_ACQ_STATUS_RECEIVED = received CFG_BIBCIRCULATION_ACQ_STATUS_CANCELLED = cancelled ## Library types # Normal library where you have your books. I can also be a depot. CFG_BIBCIRCULATION_LIBRARY_TYPE_INTERNAL = internal # external libraries for ILL. CFG_BIBCIRCULATION_LIBRARY_TYPE_EXTERNAL = external # The main library is also an internal library. # Since you may have several depots or small sites you can tag one of them as # the main site. CFG_BIBCIRCULATION_LIBRARY_TYPE_MAIN = main # It is also an internal library. The copies in this type of library will NOT # be displayed to borrowers. Use this for depots. CFG_BIBCIRCULATION_LIBRARY_TYPE_HIDDEN = hidden ## Amazon access key. You will need your own key. # Example: 1T6P5M3ZDMW9AWJ212R2 CFG_BIBCIRCULATION_AMAZON_ACCESS_KEY = ###################################### ## Part 22: BibClassify parameters ## ###################################### # CFG_BIBCLASSIFY_WEB_MAXKW -- maximum number of keywords to display # in the Keywords tab web page. CFG_BIBCLASSIFY_WEB_MAXKW = 100 ######################################## ## Part 23: Plotextractor parameters ## ######################################## ## CFG_PLOTEXTRACTOR_SOURCE_BASE_URL -- for acquiring source tarballs for plot ## extraction, where should we look? If nothing is set, we'll just go ## to arXiv, but this can be a filesystem location, too CFG_PLOTEXTRACTOR_SOURCE_BASE_URL = http://arxiv.org/ ## CFG_PLOTEXTRACTOR_SOURCE_TARBALL_FOLDER -- for acquiring source tarballs for plot ## extraction, subfolder where the tarballs sit CFG_PLOTEXTRACTOR_SOURCE_TARBALL_FOLDER = e-print/ ## CFG_PLOTEXTRACTOR_SOURCE_PDF_FOLDER -- for acquiring source tarballs for plot ## extraction, subfolder where the pdf sit CFG_PLOTEXTRACTOR_SOURCE_PDF_FOLDER = pdf/ ## CFG_PLOTEXTRACTOR_DOWNLOAD_TIMEOUT -- a float representing the number of seconds ## to wait between each download of pdf and/or tarball from source URL. CFG_PLOTEXTRACTOR_DOWNLOAD_TIMEOUT = 2.0 ## CFG_PLOTEXTRACTOR_CONTEXT_LIMIT -- when extracting context of plots from ## TeX sources, this is the limitation of characters in each direction to extract ## context from. Default 750. CFG_PLOTEXTRACTOR_CONTEXT_EXTRACT_LIMIT = 750 ## CFG_PLOTEXTRACTOR_DISALLOWED_TEX -- when extracting context of plots from TeX ## sources, this is the list of TeX tags that will trigger 'end of context'. CFG_PLOTEXTRACTOR_DISALLOWED_TEX = begin,end,section,includegraphics,caption,acknowledgements ## CFG_PLOTEXTRACTOR_CONTEXT_WORD_LIMIT -- when extracting context of plots from ## TeX sources, this is the limitation of words in each direction. Default 75. CFG_PLOTEXTRACTOR_CONTEXT_WORD_LIMIT = 75 ## CFG_PLOTEXTRACTOR_CONTEXT_SENTENCE_LIMIT -- when extracting context of plots from ## TeX sources, this is the limitation of sentences in each direction. Default 2. CFG_PLOTEXTRACTOR_CONTEXT_SENTENCE_LIMIT = 2 ###################################### ## Part 24: WebStat parameters ## ###################################### # CFG_WEBSTAT_BIBCIRCULATION_START_YEAR defines the start date of the BibCirculation # statistics. Value should have the format 'yyyy'. If empty, take all existing data. CFG_WEBSTAT_BIBCIRCULATION_START_YEAR = ###################################### ## Part 25: Web API Key parameters ## ###################################### # CFG_WEB_API_KEY_ALLOWED_URL defines the web apps that are going to use the web # API key. It has three values, the name of the web app, the time of life for the # secure url and if a time stamp is needed. #CFG_WEB_API_KEY_ALLOWED_URL = [('search/\?', 3600, True), # ('rss', 0, False)] CFG_WEB_API_KEY_ALLOWED_URL = [] ########################################## ## Part 26: WebAuthorProfile parameters ## ########################################## #CFG_WEBAUTHORPROFILE_CACHE_EXPIRED_DELAY_LIVE consider a cached element expired after days #when loading an authorpage, thus recomputing the content live CFG_WEBAUTHORPROFILE_CACHE_EXPIRED_DELAY_LIVE = 7 #CFG_WEBAUTHORPROFILE_CACHE_EXPIRED_DELAY_BIBSCHED consider a cache element expired after days, #thus recompute it, bibsched daemon CFG_WEBAUTHORPROFILE_CACHE_EXPIRED_DELAY_BIBSCHED = 5 #CFG_WEBAUTHORPROFILE_MAX_COLLAB_LIST: limit collaboration list. #Set to 0 to disable limit. CFG_WEBAUTHORPROFILE_MAX_COLLAB_LIST = 100 #CFG_WEBAUTHORPROFILE_MAX_KEYWORD_LIST: limit keywords list #Set to 0 to disable limit. CFG_WEBAUTHORPROFILE_MAX_KEYWORD_LIST = 100 #CFG_WEBAUTHORPROFILE_MAX_AFF_LIST: limit affiliations list #Set to 0 to disable limit. CFG_WEBAUTHORPROFILE_MAX_AFF_LIST = 100 #CFG_WEBAUTHORPROFILE_MAX_COAUTHOR_LIST: limit coauthors list #Set to 0 to disable limit. CFG_WEBAUTHORPROFILE_MAX_COAUTHOR_LIST = 100 #CFG_WEBAUTHORPROFILE_MAX_HEP_CHOICES: limit HepRecords choices #Set to 0 to disable limit. CFG_WEBAUTHORPROFILE_MAX_HEP_CHOICES = 10 #CFG_WEBAUTHORPROFILE_USE_BIBAUTHORID: use bibauthorid or exactauthor CFG_WEBAUTHORPROFILE_USE_BIBAUTHORID = False #################################### ## Part 27: BibSort parameters ## #################################### ## CFG_BIBSORT_BUCKETS -- the number of buckets bibsort should use. ## If 0, then no buckets will be used (bibsort will be inactive). ## If different from 0, bibsort will be used for sorting the records. ## The number of buckets should be set with regards to the size ## of the repository; having a larger number of buckets will increase ## the sorting performance for the top results but will decrease ## the performance for sorting the middle results. ## We recommend to to use 1 in case you have less than about ## 1,000,000 records. ## When modifying this variable, re-run rebalancing for all the bibsort ## methods, for having the database in synch. CFG_BIBSORT_BUCKETS = 1 ######################################## ## Part 28: JsTestDriver parameters ## ######################################## ## CFG_JSTESTDRIVER_PORT -- server port where JS tests will be run. CFG_JSTESTDRIVER_PORT = 9876 ############################ ## Part 29: RefExtract ## ############################ ## Refextract can automatically submit tickets (after extracting refereces) ## to CFG_REFEXTRACT_TICKET_QUEUE if it is set CFG_REFEXTRACT_TICKET_QUEUE = None ## Override refextract kbs locations CFG_REFEXTRACT_KBS_OVERRIDE = {} ################################## ## Part 27: CrossRef parameters ## ################################## ## CFG_CROSSREF_USERNAME -- the username used when sending request ## to the Crossref site. CFG_CROSSREF_USERNAME = ## CFG_CROSSREF_PASSWORD -- the password used when sending request ## to the Crossref site. CFG_CROSSREF_PASSWORD = ##################################### ## Part 30: WebLinkback parameters ## ##################################### ## CFG_WEBLINKBACK_TRACKBACK_ENABLED -- whether to enable trackback support ## 1 to enable, 0 to disable it CFG_WEBLINKBACK_TRACKBACK_ENABLED = 0 #################################### ## Part 31: WebSubmit parameters ## #################################### ## CFG_WEBSUBMIT_USE_MATHJAX -- whether to use MathJax and math ## preview panel within submissions (1) or not (0). Customize your ## websubmit_template.tmpl_mathpreview_header() to enable for specific ## fields. ## See also CFG_WEBSEARCH_USE_MATHJAX_FOR_FORMATS CFG_WEBSUBMIT_USE_MATHJAX = 0 #################################### ## Part 31: BibField parameters ## #################################### ## CFG_BIBFIELD_MASTER_FORMATS -- the name of all the allowed master formats ## that BibField will work with. CFG_BIBFIELD_MASTER_FORMATS = marc ########################## ## THAT's ALL, FOLKS! ## ########################## diff --git a/modules/bibauthority/doc/admin/bibauthority-admin-guide.webdoc b/modules/bibauthority/doc/admin/bibauthority-admin-guide.webdoc index 627bf2d85..5625ffc32 100644 --- a/modules/bibauthority/doc/admin/bibauthority-admin-guide.webdoc +++ b/modules/bibauthority/doc/admin/bibauthority-admin-guide.webdoc @@ -1,171 +1,171 @@ ## This file is part of Invenio. -## Copyright (C) 2010, 2011 CERN. +## Copyright (C) 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Introduction

The INVENIO admin can configure the various ways in which authority control works for INVENIO by means of the bibauthority_config.py file. The location and full contents of this configuration file with a commented example configuration are shown at the bottom of this page. Their functionality is explained in the following paragraphs.

For examples of how Authority Control works in Invenio from a user's perspective, cf. _(HOWTO Manage Authority Records)_.

Enforcing types of authority records

INVENIO is originally agnostic about the types of authority records it contains. Everything it needs to know about authority records comes, on the one hand, from the authority record types that are contained within the '980__a' fields, and from the configurations related to these types on the other hand. Whereas the '980__a' values are usually edited by the librarians, the INVENIO configuration is the responsibility of the administrator. It is important for librarians and administrators to communicate the exact authority record types as well as the desired functionality relative to the types for the various INVENIO modules.

BibEdit

As admin of an INVENIO instance, you have the possibility of configuring which fields are under authority control. In the “Configuration File Overview” at the end of this page you will find an example of a configuration which will enable the auto-complete functionality for the '100__a', '100__u', '110__a', '130__a', '150__a', '700__a' and '700__u' fields of a bibliographic record in BibEdit. The keys of the “CFG BIBAUTHORITY CONTROLLED FIELDS” dictionary indicate which bibliographic fields are under authority control. If the user types Ctrl-Shift-A while typing within one of these fields, they will propose an auto-complete dropdown list in BibEdit. The user still has the option to enter values manually without use of the drop-down list. The values associated with each key of the dictionary indicate which kind of authority record is to be associated with this field. In the example given, the '100__a' field is associated with the authority record type 'AUTHOR'.

The “CFG BIBAUTHORITY AUTOSUGGEST OPTIONS” dictionary gives us the remaining configurations, specific only to the auto-suggest functionality. The value for the 'index' key determines which index type will be used find the authority records that will populate the drop-down with a list of suggestions (cf. the following paragraph on configuring the BibIndex for authority records). The value of the 'insert_here_field' determines which authority record field contains the value that should be used both for constructing the strings of the entries in the drop-down list as well as the value to be inserted directly into the edited subfield if the user clicks on one of the drop-down entries. Finally, the value for the 'disambiguation_fields' key is an ordered list of authority record fields that are used, in the order in which they appear in the list, to disambiguate between authority records with exactly the same value in their 'insert_here_field'.

BibIndex

-

As an admin of INVENIO, you have the possibility of configuring how indexing works in regards to authority records that are referenced by bibliographic records. When a bibliographic record is indexed for a particular index type, and if that index type contains MARC fields which are under authority control in this particular INVENIO instance (as configured by the, “CFG BIBAUTHORITY CONTROLLED FIELDS” dictionary in the bibauthority_config.py configuration file, mentioned above), then the indexer will include authority record data from specific MARC fields of these authority records in the same index. Which authority record fields are to be used to enrich the indexes for bibliographic records can be configured by the “CFG BIBAUTHORITY AUTHORITY SUBFIELDS TO INDEX” dictionary. In the example below each of the 4 authority record types ('AUTHOR', 'INSTITUTION', 'JOURNAL' and 'SUBJECT') is given a list of authority record MARC fields which are to be scanned for data that is to be included in the indexed terms of the dependent bibliographic records. For the 'AUTHOR' authority records, the example specifies that the values of the fields '100__a', '100__d', '100__q', '400__a', '400__d', and '400__q' (i.e. name, alternative names, and year of birth) should all be included in the data to be indexed for any bibliographic records referencing these authority records in their authority-controlled subfields.

+

As an admin of INVENIO, you have the possibility of configuring how indexing works in regards to authority records that are referenced by bibliographic records. When a bibliographic record is indexed for a particular index type, and if that index type contains MARC fields which are under authority control in this particular INVENIO instance (as configured by the, “CFG BIBAUTHORITY CONTROLLED FIELDS” dictionary in the bibauthority_config.py configuration file, mentioned above), then the indexer will include authority record data from specific MARC fields of these authority records in the same index. Which authority record fields are to be used to enrich the indexes for bibliographic records can be configured by the “CFG BIBAUTHORITY AUTHORITY SUBFIELDS TO INDEX” dictionary. In the example below each of the 4 authority record types ('AUTHOR', 'INSTITUTE', 'JOURNAL' and 'SUBJECT') is given a list of authority record MARC fields which are to be scanned for data that is to be included in the indexed terms of the dependent bibliographic records. For the 'AUTHOR' authority records, the example specifies that the values of the fields '100__a', '100__d', '100__q', '400__a', '400__d', and '400__q' (i.e. name, alternative names, and year of birth) should all be included in the data to be indexed for any bibliographic records referencing these authority records in their authority-controlled subfields.

Configuration File Overview

The configuration file for the BibAuthority module can be found at invenio/lib/python/invenio/bibauthority_config.py. Below is a commented example configuration to show how one would typically configure the parameters for BibAuthority. The details of how this works were explained in the paragraphs above.

 # CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD
 # the authority record field containing the authority record control number
 CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD = '035__a'
 
 # Separator to be used in control numbers to separate the authority type
-# PREFIX (e.g. "INSTITUTION") from the control_no (e.g. "(CERN)abc123"
+# PREFIX (e.g. "INSTITUTE") from the control_no (e.g. "(CERN)abc123"
 CFG_BIBAUTHORITY_PREFIX_SEP = '|'
 
 # the ('980__a') string that identifies an authority record
 CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_IDENTIFIER = 'AUTHORITY'
 
 # the name of the authority collection.
 # This is needed for searching within the authority record collection.
 CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME = 'Authority Records'
 
 # used in log file and regression tests
 CFG_BIBAUTHORITY_BIBINDEX_UPDATE_MESSAGE = \
     "Indexing records dependent on modified authority records"
 
 # CFG_BIBAUTHORITY_TYPE_NAMES
 # Some administrators may want to be able to change the names used for the
 # authority types. Although the keys of this dictionary are hard-coded into
 # Invenio, the values are not and can therefore be changed to match whatever
 # values are to be used in the MARC records.
 # WARNING: These values shouldn't be changed on a running INVENIO installation
 # ... since the same values are hard coded into the MARC data,
 # ... including the 980__a subfields of all authority records
 # ... and the $0 subfields of the bibliographic fields under authority control
 CFG_BIBAUTHORITY_TYPE_NAMES = {
-    'INSTITUTION': 'INSTITUTION',
+    'INSTITUTE': 'INSTITUTE',
     'AUTHOR': 'AUTHOR',
     'JOURNAL': 'JOURNAL',
     'SUBJECT': 'SUBJECT',
 }
 
 # CFG_BIBAUTHORITY_CONTROLLED_FIELDS_BIBLIOGRAPHIC
 # 1. tells us which bibliographic subfields are under authority control
 # 2. tells us which bibliographic subfields refer to which type of
 # ... authority record (must conform to the keys of CFG_BIBAUTHORITY_TYPE_NAMES)
 CFG_BIBAUTHORITY_CONTROLLED_FIELDS_BIBLIOGRAPHIC = {
     '100__a': 'AUTHOR',
-    '100__u': 'INSTITUTION',
-    '110__a': 'INSTITUTION',
+    '100__u': 'INSTITUTE',
+    '110__a': 'INSTITUTE',
     '130__a': 'JOURNAL',
     '150__a': 'SUBJECT',
-    '260__b': 'INSTITUTION',
+    '260__b': 'INSTITUTE',
     '700__a': 'AUTHOR',
-    '700__u': 'INSTITUTION',
+    '700__u': 'INSTITUTE',
 }
 
 # CFG_BIBAUTHORITY_CONTROLLED_FIELDS_AUTHORITY
 # Tells us which authority record subfields are under authority control
 # used by autosuggest feature in BibEdit
 # authority record subfields use the $4 field for the control_no (not $0)
 CFG_BIBAUTHORITY_CONTROLLED_FIELDS_AUTHORITY = {
     '500__a': 'AUTHOR',
-    '510__a': 'INSTITUTION',
+    '510__a': 'INSTITUTE',
     '530__a': 'JOURNAL',
     '550__a': 'SUBJECT',
-    '909C1u': 'INSTITUTION', # used in bfe_affiliation
-    '920__v': 'INSTITUTION', # used by FZ Juelich demo data
+    '909C1u': 'INSTITUTE', # used in bfe_affiliation
+    '920__v': 'INSTITUTE', # used by FZ Juelich demo data
 }
 
 # constants for CFG_BIBEDIT_AUTOSUGGEST_TAGS
 # CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA for alphabetical sorting
 # ... of drop-down suggestions
 # CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR for sorting of drop-down
 # ... suggestions according to a popularity ranking
 CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA = 'alphabetical'
 CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR = 'by popularity'
 
 # CFG_BIBAUTHORITY_AUTOSUGGEST_CONFIG
 # some additional configuration for auto-suggest drop-down
 # 'field' : which logical or MARC field field to use for this
 # ... auto-suggest type
 # 'insert_here_field' : which authority record field to use
 # ... for insertion into the auto-completed bibedit field
 # 'disambiguation_fields': an ordered list of fields to use
 # ... in case multiple suggestions have the same 'insert_here_field' values
 # TODO: 'sort_by'. This has not been implemented yet !
 CFG_BIBAUTHORITY_AUTOSUGGEST_CONFIG = {
     'AUTHOR': {
         'field': 'authorityauthor',
         'insert_here_field': '100__a',
         'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR,
         'disambiguation_fields': ['100__d', '270__m'],
     },
-    'INSTITUTION':{
-        'field': 'authorityinstitution',
+    'INSTITUTE':{
+        'field': 'authorityinstitute',
         'insert_here_field': '110__a',
         'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA,
         'disambiguation_fields': ['270__b'],
     },
     'JOURNAL':{
         'field': 'authorityjournal',
         'insert_here_field': '130__a',
         'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR,
     },
     'SUBJECT':{
         'field': 'authoritysubject',
         'insert_here_field': '150__a',
         'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA,
     },
 }
 
 # list of authority record fields to index for each authority record type
 # R stands for 'repeatable'
 # NR stands for 'non-repeatable'
 CFG_BIBAUTHORITY_AUTHORITY_SUBFIELDS_TO_INDEX = {
     'AUTHOR': [
         '100__a', #Personal Name (NR, NR)
         '100__d', #Year of birth or other dates (NR, NR)
         '100__q', #Fuller form of name (NR, NR)
         '400__a', #(See From Tracing) (R, NR)
         '400__d', #(See From Tracing) (R, NR)
         '400__q', #(See From Tracing) (R, NR)
     ],
-    'INSTITUTION': [
+    'INSTITUTE': [
         '110__a', #(NR, NR)
         '410__a', #(R, NR)
     ],
     'JOURNAL': [
         '130__a', #(NR, NR)
         '130__f', #(NR, NR)
         '130__l', #(NR, NR)
         '430__a', #(R, NR)
     ],
     'SUBJECT': [
         '150__a', #(NR, NR)
         '450__a', #(R, NR)
     ],
 }
 
diff --git a/modules/bibauthority/doc/hacking/bibauthority-internals.webdoc b/modules/bibauthority/doc/hacking/bibauthority-internals.webdoc index 5e1cfdf53..4f3203c8e 100644 --- a/modules/bibauthority/doc/hacking/bibauthority-internals.webdoc +++ b/modules/bibauthority/doc/hacking/bibauthority-internals.webdoc @@ -1,254 +1,254 @@ ## -*- mode: html; coding: utf-8; -*- ## This file is part of Invenio. -## Copyright (C) 2011 CERN. +## Copyright (C) 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. Here you will find a few explanations to the inner workings of BibAuthority.

Indexing

Introduction

There are two cases that need special attention when idexing bibliographic data that contains references to authority records. The first case is relatively simple and requires the enriching of bibliographic data with data from authority records whenever a bibliographic record is being indexed. The second is a bit more complex, for it requires detecting which bibliographic records should be re-indexed, based on referenced authority records having been updated within a given date range.

Indexing by record ID, by modification date or by index type

First of all, we need to say something about how INVENIO let's the admin index the data. INVENIO's indexer (BibIndex) is always run as a task that is executed by INVENIO's scheduler (BibSched). Typically, this is done either by scheduling a bibindex task from the command line (manually), or it is part of a periodic task (BibTask) run directly from BibSched, typically ever 5 minutes. In case it is run manually, the user has the option of specifying certain record IDs to be re-indexed, e.g. by specifying ranges of IDs or collections to be re-indexed. In this case, the selected records are re-indexed whether or not there were any modifications to the data. Alternatively, the user can specify a date range, in which case the indexer will search all the record IDs that have been modified in the selected date range (by default, the date range would specify all IDs modified since the last time the indexer was run) and update the index only for those records. As a third option, the user can specify specific types of indexes. INVENIO lets you search by different criteria (e.g. 'any field', 'title', 'author', 'abstract', 'keyword', 'journal', 'year', 'fulltext', …), and each of these criteria corresponds to a separate index, indexing only the data from the relevant MARC subfields. Normally, the indexer would update all index types for any given record ID, but with this third option, the user can limit the re-indexing to only specific types of indexes if desired.

Note: In reality, INVENIO creates not only 1 but 6 different indexes per index type. 3 are forward indexes (mapping words, pairs or phrases to record IDs), 3 are reverse indexes (mapping record IDs to words, pairs or phrases). The word, pair and phrase indexes are used for optimizing the searching speed depending on whether the user searches for words, sub-phrases or entire phrases. These details are however not relevant for BibAuthority. It simply finds the values to be indexed and passes them on to the indexer which indexes them as if it was data coming directly from the bibliographic record.

Enriching the index data – simple case

Once the indexer knows which record ID (and optionally, which index type) to re-index, including authority data is simply a question of checking whether the MARC subfields currently being indexed are under authority control (as specified in the BibAuthority configuration file). If they are, the indexer must follow the following (pseudo-)algorithm which will fetch the necessary data from the referenced authority records:

For each subfield and each record ID currently being re-indexed:

If the subfield is under authority control (→ config file):

Get the type of referenced authority record expected for this field

For each authority record control number found in the corresponding 'XXX__0' subfields and matching the expected authority record type (control number prefix):

Find the authority record ID (MARC field '001' control number) corresponding to the authority record control number (as contained in MARC field '035' of the authority record)

For each authority record subfield marked as index relevant for the given $type (→ config file)

Add the values of these subfields to the list of values to be returned and used for enriching the indexed strings.

The strings collected with this algorithm are simply added to the strings already found by the indexer in the regular bibliographic record MARC data. Once all the strings are collected, the indexer goes on with the usual operation, parsing them 3 different times, once for phrases, once for word-pairs, once for words, which are used to populate the 6 forward and reverse index tables in the database.

Updating the index by date range

When a bibindex task is created by date range, we are presented with a more tricky situation which requires a more complex treatment for it to work properly. As long as the bibindex task is configured to index by record ID, the simple algorithm described above is enough to properly index the authority data along with the data from bibliographic records. This is true also if we use the third option described above, specifying the particular index type to re-index with the bibindex task. However, if we launch a bibindex task based on a date range (by default the date range covers the time since the last time bibindex task was run on for each of the index types), bibindex would have no way to know that it must update the index for a specific bibliographic record if one of the authority records it references was modified in the specified date range. This would lead to incomplete indexes.

A first idea was to modify the time-stamp for any bibliographic records as soon as an authority record is modified. Every MARC record in INVENIO has a 'modification_date' time-stamp which indicates to the indexer when this record was last modified. If we search for dependent bibliographic records every time we modify an authority record, and if we then update the 'modification_date' time-stamp for each of these dependent bibliographic records, then we can be sure that the indexer would find and re-index these bibliographic records as well when indexing by a specified date-range. The problem with this is a performance problem. If we update the time-stamp for the bibliographic record, this record will be re-indexed for all of the mentioned index-types ('author', 'abstract', 'fulltext', etc.), even though many of them may not cover MARC subfields that are under authority control, and hence re-indexing them because of a change in an authority record would be quite useless. In an INVENIO installation there would typically be 15-30 index-types. Imagine if you make a change to a 'journal' authority record and only 1 out of the 20+ index-types is for 'journal'. INVENIO would be re-indexing 20+ index types in stead of only the 1 index type which is relevant to the the type of the changed authority record.

There are two approaches that could solve this problem equally well. The first approach would require checking – for each authority record ID which is to be re-indexed – whether there are any dependent bibliographic records that need to be re-indexed as well. If done in the right manner, this approach would only re-index the necessary index types that can contain information from referenced authority records, and the user could specify the index type to be re-indexed and the right bibliographic records would still be found. The second approach works the other way around. In stead of waiting until we find a recently modified authority record, and then looking for dependent bibliographic records, we directly launch a search for bibliographic records containing links to recently updated authority records and add the record IDs found in this way to the list of record IDs that need to be re-indexed.

Of the two approaches, the second one was choses based solely upon considerations of integration into existing INVENIO code. As indexing in INVENIO currently works, it is more natural and easily readable to apply the second method than the first.

According to the second method, the pseudo-algorithm for finding the bibliographic record IDs that need to be updated based upon recently modified authority records in a given date range looks like this:

For each index-type to re-index:

For each subfield concerned by the index-type:

If the subfield is under authority control (→ config file):

Get the type of authority record associated with this field

Get all of the record IDs for authority records updated in the specified date range.

For each record ID

Get the authority record control numbers of this record ID

For each authority record control number

Search for and add the record IDs of bibliographic records containing this control number (with type in the prefix) in the 'XXX__0' field of the current subfield to the list of record IDs to be returned to the caller to be marked as needing re-indexing.



The record IDs returned in this way are added to the record IDs that need to be re-indexed (by date range) and then the rest of the indexing can run as usual.

Implementation specifics

The pseudo-algorithms described above were used as described in this document, but were not each implemented in a single function. In order for parts of them to be reusable and also for the various parts to be properly integrated into existing python modules with similar functionality (e.g auxiliary search functions were added to INVENIO's search_engine.py code), the pseudo-algorithms were split up into multiple nested function calls and integrated where it seemed to best fit the existing code base of INVENIO. In the case of the pseudo-algorithm described in “Updating the index by date range”, the very choice of the algorithm had already depended on how to best integrate it into the existing code for date-range related indexing.

Cross-referencing between MARC records

In order to reference authority records, we use alphanumeric strings stored in the $0 subfields of fields that contain other, authority-controlled subfields as well. The format of these alphanumeric strings for INVENIO is in part determined by the MARC standard itself, which states that:

Subfield $0 contains the system control number of the related authority record, or a standard identifier such as an International Standard Name Identifier (ISNI). The control number or identifier is preceded by the appropriate MARC Organization code (for a related authority record) or the Standard Identifier source code (for a standard identifier scheme), enclosed in parentheses. See MARC Code List for Organizations for a listing of organization codes and Standard Identifier Source Codes for code systems for standard identifiers. Subfield $0 is repeatable for different control numbers or identifiers.

An example of such a string could be “(SzGeCERN)abc1234”, where “SzGeCERN” would be the MARC organization code, and abc1234 would be the unique identifier for this authority record within the given organization.

Since it is possible for a single field (e.g. field '100') to have multiple $0 subfields for the same field entry, we need a way to specify which $0 subfield reference is associated with which other subfield of the same field entry.

For example, imagine that in bibliographic records both '700__a' ('other author' name) as well as '700__u' ('other author' affiliation) are under authority control. In this case we would have two '700__0' subfields. Of of them would reference the author authority record (for the name), -the other one would reference an institution authority record +the other one would reference an institute authority record (for the affiliation). INVENIO needs some way to know which $0 subfield is associated with the $a subfield and which one with the $u subfield.

We have chosen to solve this in the following way. Every $0 subfield value will not only contain the authority record control number, but in addition will be prefixed by -the type of authority record (e.g. 'AUTHOR', 'INSTITUTION', 'JOURNAL' +the type of authority record (e.g. 'AUTHOR', 'INSTITUTE', 'JOURNAL' or 'SUBJECT), separated from the control number by a separator, e.g. ':' (configurable). A possible $0 subfield value could therefore be: “author:(SzGeCERN)abc1234”. This will allow INVENIO to know that the $0 subfield containing “author:(SzGeCERN)abc1234” is associated with the $a subfield (author's name), containing e.g. “Ellis, John”, whereas the $0 -subfield containing “institution:(SzGeCERN)xyz4321” is associated -with the $u subfield (author's affiliation/institution) of the same +subfield containing “institute:(SzGeCERN)xyz4321” is associated +with the $u subfield (author's affiliation/institute) of the same field entry, containing e.g. “CERN”.

diff --git a/modules/bibauthority/lib/bibauthority_config.py b/modules/bibauthority/lib/bibauthority_config.py index a7af7012f..4b2b0504b 100644 --- a/modules/bibauthority/lib/bibauthority_config.py +++ b/modules/bibauthority/lib/bibauthority_config.py @@ -1,147 +1,147 @@ ## This file is part of Invenio. -## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 CERN. +## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. # CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD # the authority record field containing the authority record control number CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD = '035__a' # Separator to be used in control numbers to separate the authority type -# PREFIX (e.g. "INSTITUTION") from the control_no (e.g. "(CERN)abc123" +# PREFIX (e.g. "INSTITUTE") from the control_no (e.g. "(CERN)abc123" CFG_BIBAUTHORITY_PREFIX_SEP = '|' # the ('980__a') string that identifies an authority record CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_IDENTIFIER = 'AUTHORITY' # the name of the authority collection. # This is needed for searching within the authority record collection. -CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME = 'Authority Records' +CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME = 'Authorities' # CFG_BIBAUTHORITY_TYPE_NAMES # Some administrators may want to be able to change the names used for the # authority types. Although the keys of this dictionary are hard-coded into # Invenio, the values are not and can therefore be changed to match whatever # values are to be used in the MARC records. # WARNING: These values shouldn't be changed on a running INVENIO installation # ... since the same values are hard coded into the MARC data, # ... including the 980__a subfields of all authority records # ... and the $0 subfields of the bibliographic fields under authority control CFG_BIBAUTHORITY_TYPE_NAMES = { - 'INSTITUTION': 'INSTITUTION', + 'INSTITUTE': 'INSTITUTE', 'AUTHOR': 'AUTHOR', 'JOURNAL': 'JOURNAL', 'SUBJECT': 'SUBJECT', } # CFG_BIBAUTHORITY_CONTROLLED_FIELDS_BIBLIOGRAPHIC # 1. tells us which bibliographic subfields are under authority control # 2. tells us which bibliographic subfields refer to which type of # ... authority record (must conform to the keys of CFG_BIBAUTHORITY_TYPE_NAMES) # Note: if you want to add new tag here you should also append appropriate tag # to the miscellaneous index on the BibIndex Admin Site CFG_BIBAUTHORITY_CONTROLLED_FIELDS_BIBLIOGRAPHIC = { '100__a': 'AUTHOR', - '100__u': 'INSTITUTION', - '110__a': 'INSTITUTION', + '100__u': 'INSTITUTE', + '110__a': 'INSTITUTE', '130__a': 'JOURNAL', '150__a': 'SUBJECT', - '260__b': 'INSTITUTION', + '260__b': 'INSTITUTE', '700__a': 'AUTHOR', - '700__u': 'INSTITUTION', + '700__u': 'INSTITUTE', } # CFG_BIBAUTHORITY_CONTROLLED_FIELDS_AUTHORITY # Tells us which authority record subfields are under authority control # used by autosuggest feature in BibEdit # authority record subfields use the $4 field for the control_no (not $0) CFG_BIBAUTHORITY_CONTROLLED_FIELDS_AUTHORITY = { '500__a': 'AUTHOR', - '510__a': 'INSTITUTION', + '510__a': 'INSTITUTE', '530__a': 'JOURNAL', '550__a': 'SUBJECT', - '909C1u': 'INSTITUTION', # used in bfe_affiliation - '920__v': 'INSTITUTION', # used by FZ Juelich demo data + '909C1u': 'INSTITUTE', # used in bfe_affiliation + '920__v': 'INSTITUTE', # used by FZ Juelich demo data } # constants for CFG_BIBEDIT_AUTOSUGGEST_TAGS # CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA for alphabetical sorting # ... of drop-down suggestions # CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR for sorting of drop-down # ... suggestions according to a popularity ranking CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA = 'alphabetical' CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR = 'by popularity' # CFG_BIBAUTHORITY_AUTOSUGGEST_CONFIG # some additional configuration for auto-suggest drop-down # 'field' : which logical or MARC field field to use for this # ... auto-suggest type # 'insert_here_field' : which authority record field to use # ... for insertion into the auto-completed bibedit field # 'disambiguation_fields': an ordered list of fields to use # ... in case multiple suggestions have the same 'insert_here_field' values # TODO: 'sort_by'. This has not been implemented yet ! CFG_BIBAUTHORITY_AUTOSUGGEST_CONFIG = { 'AUTHOR': { 'field': 'authorityauthor', 'insert_here_field': '100__a', 'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR, 'disambiguation_fields': ['100__d', '270__m'], }, - 'INSTITUTION':{ - 'field': 'authorityinstitution', + 'INSTITUTE':{ + 'field': 'authorityinstitute', 'insert_here_field': '110__a', 'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA, 'disambiguation_fields': ['270__b'], }, 'JOURNAL':{ 'field': 'authorityjournal', 'insert_here_field': '130__a', 'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_POPULAR, }, 'SUBJECT':{ 'field': 'authoritysubject', 'insert_here_field': '150__a', 'sort_by': CFG_BIBAUTHORITY_AUTOSUGGEST_SORT_ALPHA, }, } # list of authority record fields to index for each authority record type # R stands for 'repeatable' # NR stands for 'non-repeatable' CFG_BIBAUTHORITY_AUTHORITY_SUBFIELDS_TO_INDEX = { 'AUTHOR': [ '100__a', #Personal Name (NR, NR) '100__d', #Year of birth or other dates (NR, NR) '100__q', #Fuller form of name (NR, NR) '400__a', #(See From Tracing) (R, NR) '400__d', #(See From Tracing) (R, NR) '400__q', #(See From Tracing) (R, NR) ], - 'INSTITUTION': [ + 'INSTITUTE': [ '110__a', #(NR, NR) '410__a', #(R, NR) ], 'JOURNAL': [ '130__a', #(NR, NR) '130__f', #(NR, NR) '130__l', #(NR, NR) '430__a', #(R, NR) ], 'SUBJECT': [ '150__a', #(NR, NR) '450__a', #(R, NR) ], } diff --git a/modules/bibauthority/lib/bibauthority_engine.py b/modules/bibauthority/lib/bibauthority_engine.py index ecf77a879..112981e86 100644 --- a/modules/bibauthority/lib/bibauthority_engine.py +++ b/modules/bibauthority/lib/bibauthority_engine.py @@ -1,289 +1,288 @@ ## This file is part of Invenio. -## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 CERN. +## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. # pylint: disable=C0103 """Invenio BibAuthority Engine.""" from invenio.bibauthority_config import \ CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD, \ CFG_BIBAUTHORITY_AUTHORITY_SUBFIELDS_TO_INDEX,\ CFG_BIBAUTHORITY_PREFIX_SEP import re from invenio.errorlib import register_exception from invenio.search_engine import search_pattern, \ record_exists from invenio.search_engine_utils import get_fieldvalues from invenio.bibauthority_config import \ CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_IDENTIFIER def is_authority_record(recID): """ returns whether recID is an authority record @param recID: the record id to check @type recID: int @return: True or False """ # low-level: don't use possibly indexed logical fields ! return recID in search_pattern(p='980__a:AUTHORITY') def get_dependent_records_for_control_no(control_no): """ returns a list of recIDs that refer to an authority record containing the given control_no. E.g. if an authority record has the control number "AUTHOR:(CERN)aaa0005" in its '035__a' subfield, then this function will return all recIDs of records that contain any 'XXX__0' subfield containing "AUTHOR:(CERN)aaa0005" @param control_no: the control number for an authority record @type control_no: string @return: list of recIDs """ # We don't want to return the recID who's control number is control_no myRecIDs = _get_low_level_recIDs_intbitset_from_control_no(control_no) # Use search_pattern, since we want to find records from both bibliographic # as well as authority record collections return list(search_pattern(p='"' + control_no+'"') - myRecIDs) def get_dependent_records_for_recID(recID): """ returns a list of recIDs that refer to an authority record containing the given record ID. 'type' is a string (e.g. "AUTHOR") referring to the type of authority record @param recID: the record ID for the authority record @type recID: int @return: list of recIDs """ recIDs = [] # get the control numbers control_nos = get_control_nos_from_recID(recID) for control_no in control_nos: recIDs.extend(get_dependent_records_for_control_no(control_no)) return recIDs def guess_authority_types(recID): """ - guesses the type(s) (e.g. AUTHOR, INSTITUTION, etc.) + guesses the type(s) (e.g. AUTHOR, INSTITUTE, etc.) of an authority record (should only have one value) @param recID: the record ID of the authority record @type recID: int @return: list of strings """ types = get_fieldvalues(recID, '980__a', repetitive_values=False) # remove possible duplicates ! #filter out unwanted information while CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_IDENTIFIER in types: types.remove(CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_IDENTIFIER) types = [_type for _type in types if _type.isalpha()] return types def get_low_level_recIDs_from_control_no(control_no): """ returns the list of EXISTING record ID(s) of the authority records corresponding to the given (INVENIO) MARC control_no (e.g. 'AUTHOR:(XYZ)abc123') (NB: the list should normally contain exactly 1 element) @param control_no: a (INVENIO) MARC internal control_no to an authority record @type control_no: string @return:: list containing the record ID(s) of the referenced authority record (should be only one) """ # values returned # recIDs = [] #check for correct format for control_no # control_no = "" # if CFG_BIBAUTHORITY_PREFIX_SEP in control_no: # auth_prefix, control_no = control_no.split(CFG_BIBAUTHORITY_PREFIX_SEP); # #enforce expected enforced_type if present # if (enforced_type is None) or (auth_prefix == enforced_type): # #low-level search needed e.g. for bibindex # hitlist = search_pattern(p='980__a:' + auth_prefix) # hitlist &= _get_low_level_recIDs_intbitset_from_control_no(control_no) # recIDs = list(hitlist) recIDs = list(_get_low_level_recIDs_intbitset_from_control_no(control_no)) # filter out "DELETED" recIDs recIDs = [recID for recID in recIDs if record_exists(recID) > 0] # normally there should be exactly 1 authority record per control_number _assert_unique_control_no(recIDs, control_no) # return return recIDs #def get_low_level_recIDs_from_control_no(control_no): # """ # Wrapper function for _get_low_level_recIDs_intbitset_from_control_no() # Returns a list of EXISTING record IDs with control_no # # @param control_no: an (INVENIO) MARC internal control number to an authority record # @type control_no: string # # @return: list (in stead of an intbitset) # """ # #low-level search needed e.g. for bibindex # recIDs = list(_get_low_level_recIDs_intbitset_from_control_no(control_no)) # # # filter out "DELETED" recIDs # recIDs = [recID for recID in recIDs if record_exists(recID) > 0] # # # normally there should be exactly 1 authority record per control_number # _assert_unique_control_no(recIDs, control_no) # # # return # return recIDs def _get_low_level_recIDs_intbitset_from_control_no(control_no): """ returns the intbitset hitlist of ALL record ID(s) of the authority records corresponding to the given (INVENIO) MARC control number (e.g. '(XYZ)abc123'), (e.g. from the 035 field) of the authority record. Note: This function does not filter out DELETED records!!! The caller to this function must do this himself. @param control_no: an (INVENIO) MARC internal control number to an authority record @type control_no: string @return:: intbitset containing the record ID(s) of the referenced authority record (should be only one) """ #low-level search needed e.g. for bibindex hitlist = search_pattern( p=CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD + ":" + '"' + control_no + '"') # return return hitlist def _assert_unique_control_no(recIDs, control_no): """ If there are more than one EXISTING recIDs with control_no, log a warning @param recIDs: list of record IDs with control_no @type recIDs: list of int @param control_no: the control number of the authority record in question @type control_no: string """ if len(recIDs) > 1: error_message = \ "DB inconsistency: multiple rec_ids " + \ "(" + ", ".join([str(recID) for recID in recIDs]) + ") " + \ "found for authority record control number: " + control_no try: raise Exception except: register_exception(prefix=error_message, alert_admin=True, subject=error_message) def get_control_nos_from_recID(recID): """ get a list of control numbers from the record ID @param recID: record ID @type recID: int @return: authority record control number """ return get_fieldvalues(recID, CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD, repetitive_values=False) def get_type_from_control_no(control_no): """simply returns the authority record TYPE prefix contained in control_no or else an empty string. @param control_no: e.g. "AUTHOR:(CERN)abc123" @type control_no: string @return: e.g. "AUTHOR" or "" """ # pattern: any string, followed by the prefix, followed by a parenthesis pattern = \ r'.*' + \ r'(?=' + re.escape(CFG_BIBAUTHORITY_PREFIX_SEP) + re.escape('(') + r')' m = re.match(pattern, control_no) return m and m.group(0) or '' def guess_main_name_from_authority_recID(recID): """ get the main name of the authority record @param recID: the record ID of authority record @type recID: int @return: the main name of this authority record (string) """ #tags where the main authority record name can be found main_name_tags = ['100__a', '110__a', '130__a', '150__a'] main_name = '' # look for first match only for tag in main_name_tags: fieldvalues = get_fieldvalues(recID, tag, repetitive_values=False) if len(fieldvalues): main_name = fieldvalues[0] break # return first match, if found return main_name def get_index_strings_by_control_no(control_no): """extracts the index-relevant strings from the authority record referenced by the 'control_no' parameter and returns it as a list of strings @param control_no: a (INVENIO) MARC internal control_no to an authority record @type control_no: string (e.g. 'author:(ABC)1234') @param expected_type: the type of authority record expected @type expected_type: string, e.g. 'author', 'journal' etc. @return: list of index-relevant strings from the referenced authority record """ from invenio.bibindex_engine import list_union #return value string_list = [] #1. get recID and authority type corresponding to control_no rec_IDs = get_low_level_recIDs_from_control_no(control_no) #2. concatenate and return all the info from the interesting fields for this record for rec_id in rec_IDs: # in case we get multiple authority records for tag in CFG_BIBAUTHORITY_AUTHORITY_SUBFIELDS_TO_INDEX.get(get_type_from_control_no(control_no)): new_strings = get_fieldvalues(rec_id, tag) string_list = list_union(new_strings, string_list) #return return string_list - diff --git a/modules/bibauthority/lib/bibauthority_regression_tests.py b/modules/bibauthority/lib/bibauthority_regression_tests.py index eeeebfffe..00c399745 100644 --- a/modules/bibauthority/lib/bibauthority_regression_tests.py +++ b/modules/bibauthority/lib/bibauthority_regression_tests.py @@ -1,99 +1,99 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. -## Copyright (C) 2006, 2007, 2008, 2010, 2011 CERN. +## Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. """BibAuthority Regression Test Suite.""" __revision__ = "$Id$" from invenio.bibauthority_config import \ CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD, \ CFG_BIBAUTHORITY_TYPE_NAMES, \ CFG_BIBAUTHORITY_PREFIX_SEP from invenio.testutils import InvenioTestCase from invenio.testutils import make_test_suite, run_test_suite from invenio.bibauthority_engine import is_authority_record, \ get_dependent_records_for_control_no, \ get_dependent_records_for_recID, \ guess_authority_types, \ get_low_level_recIDs_from_control_no, \ get_control_nos_from_recID, \ get_index_strings_by_control_no, \ guess_main_name_from_authority_recID from invenio.search_engine_utils import get_fieldvalues class BibAuthorityEngineTest(InvenioTestCase): """Check BibEdit web pages whether they are up or not.""" def test_bibauthority_is_authority_record(self): """bibauthority - test is_authority_record()""" self.assertFalse(is_authority_record(1)) self.assertTrue(is_authority_record(118)) def test_bibauthority_get_dependent_records_for_control_no(self): """bibauthority - test get_dependent_records_for_control_no()""" control_no_field = CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD control_nos = get_fieldvalues(118, control_no_field) count = 0 for control_no in control_nos: count += len(get_dependent_records_for_control_no(control_no)) self.assertTrue(count) def test_bibauthority_get_dependent_records_for_recID(self): """bibauthority - test get_dependent_records_for_recID()""" self.assertTrue(len(get_dependent_records_for_recID(118))) def test_bibauthority_guess_authority_types(self): """bibauthority - test guess_authority_types()""" _type = CFG_BIBAUTHORITY_TYPE_NAMES['AUTHOR'] self.assertEqual(guess_authority_types(118), [_type]) def test_bibauthority_get_low_level_recIDs(self): """bibauthority - test get_low_level_recIDs_from_control_no()""" - _type = CFG_BIBAUTHORITY_TYPE_NAMES['INSTITUTION'] + _type = CFG_BIBAUTHORITY_TYPE_NAMES['INSTITUTE'] control_no = _type + CFG_BIBAUTHORITY_PREFIX_SEP + "(SzGeCERN)iii0002" recIDs = [121] self.assertEqual(get_low_level_recIDs_from_control_no(control_no), recIDs) def test_bibauthority_get_control_nos_from_recID(self): """bibauthority - test get_control_nos_from_recID()""" self.assertTrue(len(get_control_nos_from_recID(118))) def test_bibauthority_guess_main_name(self): """bibauthority - test guess_main_name_from_authority_recID()""" recID = 118 main_name = 'Ellis, John' self.assertEqual(guess_main_name_from_authority_recID(recID), main_name) def test_authority_record_string_by_control_no(self): """bibauthority - simple test of get_index_strings_by_control_no()""" # vars _type = CFG_BIBAUTHORITY_TYPE_NAMES['AUTHOR'] control_no = _type + CFG_BIBAUTHORITY_PREFIX_SEP + '(SzGeCERN)aaa0005' string = 'Ellis, Jonathan Richard' # run test self.assertTrue(string in get_index_strings_by_control_no(control_no)) TEST_SUITE = make_test_suite( BibAuthorityEngineTest, ) if __name__ == "__main__": run_test_suite(TEST_SUITE, warn_user=True) diff --git a/modules/bibclassify/doc/admin/bibclassify-admin-guide.webdoc b/modules/bibclassify/doc/admin/bibclassify-admin-guide.webdoc index 649cc4577..9203d2026 100644 --- a/modules/bibclassify/doc/admin/bibclassify-admin-guide.webdoc +++ b/modules/bibclassify/doc/admin/bibclassify-admin-guide.webdoc @@ -1,232 +1,232 @@ ## -*- mode: html; coding: utf-8; -*- ## This file is part of Invenio. -## Copyright (C) 2007, 2008, 2009, 2010, 2011 CERN. +## Copyright (C) 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Contents

1. Overview
       1.1 Thesaurus
       1.2 Keyword extraction
2. Running BibClassify

1. Overview

BibClassify automatically extracts keywords from fulltext documents. The automatic assignment of keywords to textual documents has clear benefits in the digital library environment as it aids catalogization, classification and retrieval of documents.

1.1 Thesaurus

BibClassify performs an extraction of keywords based on the recurrence of specific terms, taken from a controlled vocabulary. A controlled vocabulary is a thesaurus of all the terms that are relevant in a specific context. When a context is defined by a discipline or branch of knowledge then the vocabulary is said to be a subject thesaurus. Various existing subject thesauri can be found here.

A subject thesaurus can be expressed in several different -formats. Different institutions/disciplines have developed different +formats. Different institutes/disciplines have developed different ways of representing their vocabulary systems. The taxonomy used by bibclassify is expressed in RDF/SKOS. It allows not only to list keywords but to specify relations between the keywords and alternative ways to represent the same keyword.

 <Concept rdf:about="http://cern.ch/thesauri/HEP.rdf#scalar">
  <composite rdf:resource="http://cern.ch/thesauri/HEP.rdf#Composite.fieldtheoryscalar"/>
  <prefLabel xml:lang="en">scalar</prefLabel>
  <note xml:lang="en">nostandalone</note>
 </Concept>
 
 <Concept rdf:about="http://cern.ch/thesauri/HEP.rdf#fieldtheory">
  <composite rdf:resource="http://cern.ch/thesauri/HEP.rdf#Composite.fieldtheoryscalar"/>
  <prefLabel xml:lang="en">field theory</prefLabel>
  <altLabel xml:lang="en">QFT</altLabel>
  <hiddenLabel xml:lang="en">/field theor\w*/</hiddenLabel>
  <note xml:lang="en">nostandalone</note>
 </Concept>
 
 <Concept rdf:about="http://cern.ch/thesauri/HEP.rdf#Composite.fieldtheoryscalar">
  <compositeOf rdf:resource="http://cern.ch/thesauri/HEP.rdf#scalar"/>
  <compositeOf rdf:resource="http://cern.ch/thesauri/HEP.rdf#fieldtheory"/>
  <prefLabel xml:lang="en">field theory: scalar</prefLabel>
  <altLabel xml:lang="en">scalar field</altLabel>
 </Concept>
 
In RDF/SKOS, every keyword is wrapped around a concept which encapsulates the full semantics and hierarchical status of a term - including synonyms, alternative forms, broader concepts, notes and so on - rather than just a plain keyword.

The specification of the SKOS language and various manuals that aid the building of a semantic thesaurus can be found at the SKOS W3C website. Furthermore, BibClassify can function on top of an extended version of SKOS, which includes special elements such as key chains, composite keywords and special annotations. The extension of the SKOS language is documented in the hacking guide.

1.2 Keyword extraction

BibClassify computes the keywords of a fulltext document based on the frequency of thesaurus terms in it. In other words, it calculates how many times a thesaurus keyword (and its alternative and hidden labels, defined in the taxonomy) appears in a text and it ranks the results. Unlike other similar systems, BibClassify does not use any machine learning or AI methodologies - a just plain phrase matching using regular expressions: it exploits the conformation and richness of the thesaurus to produce accurate results. It is then clear that BibClassify performs best on top of rich, well-structured, subject thesauri expressed in the RDF/SKOS language.

A detailed account of the phrase matching mechanisms used by BibClassify is included in the hacking guide.

2. Running BibClassify

 Dependencies. BibClassify requires Python RDFLib in order to process the RDF/SKOS taxonomy.

In order to extract relevant keywords from a document fulltext.pdf based on a controlled vocabulary thesaurus.rdf, you would run BibClassify as follows:

 $ bibclassify.py -k thesaurus.rdf fulltext.pdf
 

Launching bibclassify --help shows the options available for BibClassify:


 Usage: bibclassify [OPTION]... [FILE/URL]...
        bibclassify [OPTION]... [DIRECTORY]...
 Searches keywords in FILEs and/or files in DIRECTORY(ies). If a directory is
 specified, BibClassify will generate keywords for all PDF documents contained
 in the directory.  Can also run in a daemon mode, in which case the files to
 be run are looked for from the database (=records modified since the last run).
 
 General options:
   -h, --help                display this help and exit
   -V, --version             output version information and exit
   -v, --verbose=LEVEL       sets the verbose to LEVEL (=0)
   -k, --taxonomy=NAME       sets the taxonomy NAME. It can be a simple
                             controlled vocabulary or a descriptive RDF/SKOS
                             and can be located in a local file or URL.
 
 Standalone file mode options:
   -o, --output-mode=TYPE    changes the output format to TYPE (text, marcxml or
                             html) (=text)
   -s, --spires              outputs keywords in the SPIRES format
   -n, --keywords-number=INT sets the number of keywords displayed (=20), use 0
                             to set no limit
   -m, --matching-mode=TYPE  changes the search mode to TYPE (full or partial)
                             (=full)
   --detect-author-keywords  detect keywords that are explicitely written in the
                             document
 Daemon mode options:
   -i, --recid=RECID         extract keywords for a record and store into DB
                             (=all necessary ones for pre-defined taxonomies)
   -c, --collection=COLL     extract keywords for a collection and store into DB
                             (=all necessary ones for pre-defined taxonomies)
 
 Taxonomy management options:
   --check-taxonomy          checks the taxonomy and reports warnings and errors
   --rebuild-cache           ignores the existing cache and regenerates it
   --no-cache                don't cache the taxonomy
 
 Backward compatibility options (discouraged):
   -q                        equivalent to -s
   -f FILE URL               sets the file to read the keywords from
 
 Examples (standalone file mode):
     $ bibclassify -k HEP.rdf http://arxiv.org/pdf/0808.1825
     $ bibclassify -k HEP.rdf article.pdf
     $ bibclassify -k HEP.rdf directory/
 
 Examples (daemon mode):
     $ bibclassify -u admin -s 24h -L 23:00-05:00
     $ bibclassify -u admin -i 1234
     $ bibclassify -u admin -c Preprints
 

 NB. BibClassify can run as a CDS Invenio module or as a standalone program. If you already run a server with a Invenio installation, you can simply run /opt/invenio/bin/bibclassify [options]. Otherwise, you can run from BibClassify sources bibclassify [options].

As an example, running BibClassify on document nucl-th/0204033 using the high-energy physics RDF/SKOS taxonomy (HEP.rdf) would yield the following results (based on the HEP taxonomy from October 10th 2008):


 Input file: 0204033.pdf
 
 Author keywords:
 Dense matter
 Saturation
 Unstable nuclei
 
 Composite keywords:
 10  nucleus: stability [36, 14]
 6  saturation: density [25, 31]
 6  energy: symmetry [35, 11]
 4  nucleon: density [13, 31]
 3  energy: Coulomb [35, 3]
 2  energy: density [35, 31]
 2  nuclear matter: asymmetry [21, 2]
 1  n: matter [54, 36]
 1  n: density [54, 31]
 1  n: mass [54, 16]
 
 Single keywords:
 61  K0
 23  equation of state
 12  slope
 4  mass number
 4  nuclide
 3  nuclear model
 3  mass formula
 2  charge distribution
 2  elastic scattering
 2  binding energy
 
or, the following keyword-cloud HTML visualization:

tag-cloud for document nucl-th/0204033

diff --git a/modules/bibformat/etc/format_templates/Authority_HTML_brief.bft b/modules/bibformat/etc/format_templates/Authority_HTML_brief.bft index 578f80105..50c65852f 100755 --- a/modules/bibformat/etc/format_templates/Authority_HTML_brief.bft +++ b/modules/bibformat/etc/format_templates/Authority_HTML_brief.bft @@ -1,7 +1,7 @@ Default HTML brief Brief Authority HTML format. - + \ No newline at end of file diff --git a/modules/bibformat/etc/format_templates/Authority_HTML_detailed.bft b/modules/bibformat/etc/format_templates/Authority_HTML_detailed.bft index 944ce7396..4649b4af7 100755 --- a/modules/bibformat/etc/format_templates/Authority_HTML_detailed.bft +++ b/modules/bibformat/etc/format_templates/Authority_HTML_detailed.bft @@ -1,15 +1,15 @@ Authority HTML detailed Detailed Authority HTML format.

Authority Record

- +
\ No newline at end of file diff --git a/modules/bibformat/lib/bibformat_regression_tests.py b/modules/bibformat/lib/bibformat_regression_tests.py index 715ecddb3..731dfbeb3 100644 --- a/modules/bibformat/lib/bibformat_regression_tests.py +++ b/modules/bibformat/lib/bibformat_regression_tests.py @@ -1,615 +1,615 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. ## Copyright (C) 2007, 2008, 2010, 2011, 2012, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. """BibFormat module regression tests.""" __revision__ = "$Id$" from invenio.testutils import InvenioTestCase import re from invenio.config import CFG_SITE_URL, \ CFG_SITE_LANG, \ CFG_SITE_RECORD, \ CFG_SITE_NAME from invenio.testutils import make_test_suite, \ run_test_suite, \ test_web_page_content, \ get_authenticated_mechanize_browser, \ make_url from invenio.bibformat import format_record from invenio.bibformat_engine import BibFormatObject from invenio.bibformat_elements import bfe_authority_author class BibFormatAPITest(InvenioTestCase): """Check BibFormat API""" def test_basic_formatting(self): """bibformat - Checking BibFormat API""" result = format_record(recID=73, of='hx', ln=CFG_SITE_LANG, verbose=0, search_pattern=[], xml_record=None, user_info=None, on_the_fly=True) pageurl = CFG_SITE_URL + '/%s/73?of=hx' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=result) class BibFormatObjectAPITest(InvenioTestCase): """Check BibFormatObject (bfo) APIs""" bfo_test_1 = BibFormatObject(12) def test_knowledge_base(self): """bibformat - Checking BibFormatObject KB bridge""" self.assertEqual(self.bfo_test_1.kb('DBCOLLID2BIBTEX', 'THESIS'), 'phdthesis') self.assertEqual(self.bfo_test_1.kb('DBCOLLID2BIBTEX', 'THESIS', 'bar'), 'phdthesis') self.assertEqual(self.bfo_test_1.kb('DBCOLLID2BIBTEX', 'foo'), '') self.assertEqual(self.bfo_test_1.kb('DBCOLLID2BIBTEX', 'foo', 'bar'), 'bar') self.assertEqual(self.bfo_test_1.kb('DBCOLLID2BIBTEX', ''), '') self.assertEqual(self.bfo_test_1.kb('DBCOLLID2BIBTEX', '', 'bar'), 'bar') class BibFormatBibTeXTest(InvenioTestCase): """Check output produced by BibFormat for BibTeX output for various records""" def setUp(self): """Prepare some ideal outputs""" self.record_74_hx = '''
 @article{Wang:74,
       author        = "Wang, B and Lin, C Y and Abdalla, E",
       title         = "{Quasinormal modes of Reissner-Nordstrom Anti-de Sitter
                        Black Holes}",
       journal       = "Phys. Lett., B",
       number        = "hep-th/0003295",
       volume        = "481",
       pages         = "79-88",
       year          = "2000",
 }
 
''' def test_bibtex_output(self): """bibformat - BibTeX output""" pageurl = CFG_SITE_URL + '/%s/74?of=hx' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=self.record_74_hx) self.assertEqual([], result) class BibFormatDetailedHTMLTest(InvenioTestCase): """Check output produced by BibFormat for detailed HTML ouput for various records""" def setUp(self): """Prepare some ideal outputs""" # Record 7 (Article) self.record_74_hd_header = '''
Published Article / Particle Physics - Theory hep-th/0003295
''' self.record_74_hd_title = '''
Quasinormal modes of Reissner-Nordstrom Anti-de Sitter Black Holes
''' self.record_74_hd_authors = '''Wang, B (Fudan University) ; Lin, C Y ; Abdalla, E
'''% \ {'siteurl' : CFG_SITE_URL, 'lang': CFG_SITE_LANG} self.record_74_hd_abstract = '''Abstract: Complex frequencies associated with quasinormal modes for large Reissner-Nordstr$\ddot{o}$m Anti-de Sitter black holes have been computed. These frequencies have close relation to the black hole charge and do not linearly scale withthe black hole temperature as in Schwarzschild Anti-de Sitter case. In terms of AdS/CFT correspondence, we found that the bigger the black hole charge is, the quicker for the approach to thermal equilibrium in the CFT. The propertiesof quasinormal modes for $l>0$ have also been studied.
''' self.record_74_hd_pubinfo = '''Published in: Phys. Lett., B :481 2000 79-88''' self.record_74_hd_fulltext = '''0003295.pdf">Cited by: try citation search for hep-th/0003295'''% \ {'siteurl' : CFG_SITE_URL, 'lang': CFG_SITE_LANG} self.record_74_hd_references = '''
  • [17] A. Chamblin, R. Emparan, C. V. Johnson and R. C. Myers, Phys. Rev., D60: 104026 (1999) 5070 90 110 130 150 r+ 130 230 330 50 70 90 110 130 150 r+
  • ''' # Record 7 (Picture) self.record_7_hd_header = '''
    Pictures / Life at CERN CERN-GE-9806033
    ''' self.record_7_hd_title = '''
    Tim Berners-Lee
    ''' self.record_7_hd_date = '''
    28 Jun 1998
    ''' self.record_7_hd_abstract = '''

    Caption
    Conference "Internet, Web, What's next?" on 26 June 1998 at CERN : Tim Berners-Lee, inventor of the World-Wide Web and Director of the W3C, explains how the Web came to be and give his views on the future.

    Légende
    Conference "Internet, Web, What's next?" le 26 juin 1998 au CERN: Tim Berners-Lee, inventeur du World-Wide Web et directeur du W3C, explique comment le Web est ne, et donne ses opinions sur l'avenir.

    ''' self.record_7_hd_resource = '''9806033''' % (CFG_SITE_URL, CFG_SITE_RECORD) self.record_7_hd_resource_link = '%s/%s/7/files/9806033.jpeg' % (CFG_SITE_URL, CFG_SITE_RECORD) def test_detailed_html_output(self): """bibformat - Detailed HTML output""" # Test record 74 (Article) pageurl = CFG_SITE_URL + '/%s/74?of=hd' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=[self.record_74_hd_header, self.record_74_hd_title, self.record_74_hd_authors, self.record_74_hd_abstract, self.record_74_hd_pubinfo, self.record_74_hd_fulltext, #self.record_74_hd_citations, #self.record_74_hd_references ]) self.assertEqual([], result) # Test record 7 (Picture) pageurl = CFG_SITE_URL + '/%s/7?of=hd' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=[self.record_7_hd_header, self.record_7_hd_title, self.record_7_hd_date, self.record_7_hd_abstract, self.record_7_hd_resource, self.record_7_hd_resource_link]) self.assertEqual([], result) def test_detailed_html_edit_record(self): """bibformat - Detailed HTML output edit record link presence""" pageurl = CFG_SITE_URL + '/%s/74?of=hd' % CFG_SITE_RECORD result = test_web_page_content(pageurl, username='admin', expected_text="Edit This Record") self.assertEqual([], result) def test_detailed_html_no_error_message(self): """bibformat - Detailed HTML output without error message""" # No error message should be displayed in the web interface, whatever happens pageurl = CFG_SITE_URL + '/%s/74?of=hd' % CFG_SITE_RECORD result = test_web_page_content(pageurl, username='admin', expected_text=["Exception", "Could not"]) self.assertNotEqual([], result) pageurl = CFG_SITE_URL + '/%s/7?of=hd' % CFG_SITE_RECORD result = test_web_page_content(pageurl, username='admin', expected_text=["Exception", "Could not"]) self.assertNotEqual([], result) class BibFormatNLMTest(InvenioTestCase): """Check output produced by BibFormat for NLM output for various records""" def setUp(self): """Prepare some ideal outputs""" self.record_70_xn = '''
    J. High Energy Phys. J. High Energy Phys. 1126-6708 AdS/CFT For Non-Boundary Manifolds McInnes B National University of Singapore 2000 05 In its Euclidean formulation, the AdS/CFT correspondence begins as a study of Yang-Mills conformal field theories on the sphere, S^4. It has been successfully extended, however, to S^1 X S^3 and to the torus T^4. It is natural tohope that it can be made to work for any manifold on which it is possible to define a stable Yang-Mills conformal field theory. We consider a possible classification of such manifolds, and show how to deal with the most obviousobjection : the existence of manifolds which cannot be represented as boundaries. We confirm Witten's suggestion that this can be done with the help of a brane in the bulk. research-article
    ''' % {'siteurl': CFG_SITE_URL, 'CFG_SITE_RECORD': CFG_SITE_RECORD} def test_nlm_output(self): """bibformat - NLM output""" pageurl = CFG_SITE_URL + '/%s/70?of=xn' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=self.record_70_xn) try: self.assertEqual([], result) except AssertionError: result = test_web_page_content(pageurl, expected_text=self.record_70_xn.replace('', '').replace('', '')) self.assertEqual([], result) class BibFormatBriefHTMLTest(InvenioTestCase): """Check output produced by BibFormat for brief HTML ouput for various records""" def setUp(self): """Prepare some ideal outputs""" self.record_76_hb = '''Ιθάκη / Καβάφης, Κ Π
    Σα βγεις στον πηγαιμό για την Ιθάκη,
    να εύχεσαι νάναι μακρύς ο δρόμος,
    γεμάτος περιπέτειες, γεμάτος γνώσεις [...]
    ''' % (CFG_SITE_URL, CFG_SITE_LANG) def test_brief_html_output(self): """bibformat - Brief HTML output""" pageurl = CFG_SITE_URL + '/%s/76?of=HB' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=self.record_76_hb) self.assertEqual([], result) class BibFormatMARCXMLTest(InvenioTestCase): """Check output produced by BibFormat for MARCXML ouput for various records""" def setUp(self): """Prepare some ideal outputs""" self.record_9_xm_beg = ''' 9 ''' self.record_9_xm_end = '''\ eng PRE-25553 RL-82-024 Ellis, J AUTHOR|(SzGeCERN)aaa0005 University of Oxford Grand unification with large supersymmetry breaking Mar 1982 18 p SzGeCERN General Theoretical Physics Ibanez, L E Ross, G G 1982 11 Oxford Univ. Univ. Auton. Madrid Rutherford Lab. 1990-01-28 50 2002-01-04 BATCH h 1982n PREPRINT ''' def test_marcxml_output(self): """bibformat - MARCXML output""" pageurl = CFG_SITE_URL + '/%s/9?of=xm' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=[self.record_9_xm_beg, self.record_9_xm_end]) self.assertEqual([], result) class BibFormatMARCTest(InvenioTestCase): """Check output produced by BibFormat for MARC ouput for various records""" def setUp(self): """Prepare some ideal outputs""" self.record_29_hm_beg = '''000000029 001__ 29 000000029 005__ ''' self.record_29_hm_end = '''\ 000000029 020__ $$a0720421039 000000029 041__ $$aeng 000000029 080__ $$a517.11 000000029 100__ $$aKleene, Stephen Cole$$uUniversity of Wisconsin 000000029 245__ $$aIntroduction to metamathematics 000000029 260__ $$aAmsterdam$$bNorth-Holland$$c1952 (repr.1964.) 000000029 300__ $$a560 p 000000029 490__ $$aBibl. Matematica$$v1 000000029 909C0 $$y1952 000000029 909C0 $$b21 000000029 909C1 $$c1990-01-27$$l00$$m2002-04-12$$oBATCH 000000029 909CS $$sm$$w198606 000000029 980__ $$aBOOK''' def test_marc_output(self): """bibformat - MARC output""" pageurl = CFG_SITE_URL + '/%s/29?of=hm' % CFG_SITE_RECORD result = test_web_page_content(pageurl, expected_text=[self.record_29_hm_beg, self.record_29_hm_end]) self.assertEqual([], result) class BibFormatTitleFormattingTest(InvenioTestCase): """Check title formatting produced by BibFormat.""" def test_subtitle_in_html_brief(self): """bibformat - title subtitle in HTML brief formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=statistics+computer', expected_text="Statistics: a computer approach")) def test_subtitle_in_html_detailed(self): """bibformat - title subtitle in HTML detailed formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=statistics+computer&of=HD', expected_text="Statistics: a computer approach")) def test_title_edition_in_html_brief(self): """bibformat - title edition in HTML brief formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=2nd', expected_text="Introductory statistics: a decision map; 2nd ed")) def test_title_edition_in_html_detailed(self): """bibformat - title edition in HTML detailed formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=2nd&of=HD', expected_text="Introductory statistics: a decision map; 2nd ed")) def test_title_part_in_html_brief(self): """bibformat - title part in HTML brief formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=analyse+informatique', expected_text="Analyse informatique, t.2")) def test_title_part_in_html_detailed(self): """bibformat - title part in HTML detailed formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=analyse+informatique&of=HD', expected_text="Analyse informatique, t.2: L'accomplissement")) class BibFormatISBNFormattingTest(InvenioTestCase): """Check ISBN formatting produced by BibFormat.""" def test_isbn_in_html_detailed(self): """bibformat - ISBN in HTML detailed formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=analyse+informatique&of=HD', expected_text="ISBN: 2225350574")) class BibFormatPublInfoFormattingTest(InvenioTestCase): """Check publication reference info formatting produced by BibFormat.""" def test_publinfo_in_html_brief(self): """bibformat - publication reference info in HTML brief formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/search?p=recid%3A84', expected_text="Nucl. Phys. B: 656 (2003) pp. 23-36")) def test_publinfo_in_html_detailed(self): """bibformat - publication reference info in HTML detailed formats""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/%s/84' % CFG_SITE_RECORD, expected_text="Nucl. Phys. B: 656 (2003) pp. 23-36")) class BibFormatAuthorityRecordsTest(InvenioTestCase): """Check authority record related functions""" def test_brief_output(self): """bibformat - brief authority record format outputs something""" self.assertEqual([], - test_web_page_content(CFG_SITE_URL + '/search?cc=Authority+Records&rg=100', + test_web_page_content(CFG_SITE_URL + '/search?cc=Authorities&rg=100', expected_text="Ellis, John, 1946-")) def test_detailed_output(self): """bibformat - brief authority record format outputs some basic information""" self.assertEqual([], test_web_page_content(CFG_SITE_URL + '/record/118', expected_text=["Ellis, Jonathan Richard, 1946-", "Control Number"])) def test_empty_string(self): """bibformat - no empty strings output for variant (4xx) fields""" class BFO: lang = 'en' def fields(self, afield): if '400' in afield: return [{'a':'A'},{},{'a':'B'}] else: afield; return [] bfo = BFO() self.assertTrue("Variant" in bfe_authority_author.format_element(bfo, detail='yes')) self.assertTrue(", , " not in bfe_authority_author.format_element(bfo, detail='yes')) class BibFormatAuthorityRecordsBrowsingTest(InvenioTestCase): """Tests authority records browsing pre and successor""" def setUp(self): - self.re_institution = re.compile(r"Werkstoffsynthese und Herstellverfahren") + self.re_institute = re.compile(r"Werkstoffsynthese und Herstellverfahren") self.re_non_compact = re.compile(r"Non-compact supergravity") - self.re_cern_control_number = re.compile(r"INSTITUTION|(SzGeCERN)") - self.re_institution_energy = re.compile(r"Institut für Energieforschung") + self.re_cern_control_number = re.compile(r"INSTITUTE|(SzGeCERN)") + self.re_institute_energy = re.compile(r"Institut für Energieforschung") def test_format_authority_browsing_pre_and_successor(self): """bibformat - test format authority browsing pre and successor""" base = "/record/140/" parameters = {} url = make_url(base, **parameters) error_messages = [] browser = get_authenticated_mechanize_browser("admin", "") browser.open(url) link = browser.find_link(text_regex=re.compile("2 dependent records")) resp = browser.follow_link(link) link = browser.find_link(text_regex=re.compile("Detailed record"), nr=1) resp = browser.follow_link(link) - found = self.re_institution.search(resp.read()) + found = self.re_institute.search(resp.read()) if not found: error_messages.append("There is no 'Werkstoffsynthese und Herstellverfahren' in html response.") link = browser.find_link(text_regex=re.compile("1 dependent record")) resp = browser.follow_link(link) - found = self.re_institution.search(resp.read()) + found = self.re_institute.search(resp.read()) if not found: error_messages.append("There is no 'Werkstoffsynthese und Herstellverfahren' in html response.") self.assertEqual([], error_messages) def test_format_authority_browsing_ellis(self): """bibformat - test format authority browsing Ellis authority record""" base = "/record/12/" parameters = {} url = make_url(base, **parameters) error_messages = [] browser = get_authenticated_mechanize_browser("admin", "") browser.open(url) link = browser.find_link(text_regex=re.compile("Ellis, J")) resp = browser.follow_link(link) link = browser.find_link(text_regex=re.compile("Detailed record"), nr=0) resp = browser.follow_link(link) link = browser.find_link(text_regex=re.compile("4 dependent records")) resp = browser.follow_link(link) found = self.re_non_compact.search(resp.read()) if not found: error_messages.append("There is no 'Non-compact supergravity' in html response.") self.assertEqual([], error_messages) def test_format_authority_browsing_cern(self): """bibformat - test format authority browsing cern authority record""" base = "/record/12/" parameters = {} url = make_url(base, **parameters) error_messages = [] browser = get_authenticated_mechanize_browser("admin", "") browser.open(url) link = browser.find_link(text_regex=re.compile("CERN")) resp = browser.follow_link(link) found = self.re_cern_control_number.search(resp.read()) if not found: error_messages.append("There is no CERN control number in html response.") self.assertEqual([], error_messages) def test_format_authority_browsing_parent_child(self): """bibformat - test format authority browsing parent child""" base = "/record/129/" parameters = {} url = make_url(base, **parameters) error_messages = [] browser = get_authenticated_mechanize_browser("admin", "") browser.open(url) link = browser.find_link(text_regex=re.compile("Institut für Kernphysik")) resp = browser.follow_link(link) link = browser.find_link(text_regex=re.compile("Forschungszentrum Jülich")) resp = browser.follow_link(link) link = browser.find_link(text_regex=re.compile("6 dependent records")) resp = browser.follow_link(link) - found = self.re_institution_energy.search(resp.read()) + found = self.re_institute_energy.search(resp.read()) if not found: error_messages.append("There is no 'Institut für Energieforschung' in html response.") self.assertEqual([], error_messages) TEST_SUITE = make_test_suite(BibFormatBibTeXTest, BibFormatDetailedHTMLTest, BibFormatBriefHTMLTest, BibFormatNLMTest, BibFormatMARCTest, BibFormatMARCXMLTest, BibFormatAPITest, BibFormatObjectAPITest, BibFormatTitleFormattingTest, BibFormatISBNFormattingTest, BibFormatPublInfoFormattingTest, BibFormatAuthorityRecordsTest, BibFormatAuthorityRecordsBrowsingTest) if __name__ == "__main__": run_test_suite(TEST_SUITE, warn_user=True) diff --git a/modules/bibformat/lib/elements/Makefile.am b/modules/bibformat/lib/elements/Makefile.am index 47423b9e1..16858f1b0 100644 --- a/modules/bibformat/lib/elements/Makefile.am +++ b/modules/bibformat/lib/elements/Makefile.am @@ -1,53 +1,53 @@ ## This file is part of Invenio. ## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. pylibdir=$(libdir)/python/invenio/bibformat_elements pylib_DATA = bfe_field.py bfe_title.py bfe_authors.py bfe_abstract.py bfe_affiliation.py \ bfe_imprint.py bfe_fulltext.py bfe_place.py bfe_publisher.py bfe_topbanner.py \ bfe_date_rec.py bfe_keywords.py bfe_notes.py bfe_reprints.py bfe_publi_info.py \ bfe_cited_by.py bfe_references.py bfe_title_brief.py \ bfe_report_numbers.py bfe_additional_report_numbers.py bfe_url.py \ bfe_addresses.py bfe_contact.py bfe_photo_resources_brief.py \ bfe_collection.py bfe_editors.py bfe_bibtex.py bfe_edit_record.py \ bfe_date.py bfe_xml_record.py bfe_external_publications.py __init__.py \ bfe_bfx_engine.py bfe_creation_date.py bfe_server_info.py bfe_issn.py \ bfe_client_info.py bfe_language.py bfe_record_id.py bfe_comments.py \ bfe_pagination.py bfe_fulltext_mini.py bfe_year.py bfe_isbn.py \ bfe_appears_in_collections.py bfe_photos.py bfe_record_stats.py \ bfe_edit_files.py bfe_plots.py bfe_plots_thumb.py bfe_sword_push.py \ bfe_video_sources.py bfe_video_bigthumb.py \ bfe_aid_authors.py bfe_doi.py bfe_addthis.py \ bfe_duration.py bfe_record_url.py bfe_video_selector.py \ bfe_video_platform_downloads.py bfe_video_platform_suggestions.py \ bfe_video_platform_sources.py bfe_sciencewise.py bfe_bookmark.py \ bfe_oai_marcxml.py bfe_copyright.py bfe_meta.py bfe_meta_opengraph_image.py \ bfe_meta_opengraph_video.py bfe_webauthorpage_affiliations.py \ bfe_qrcode.py \ - bfe_authority_author.py bfe_authority_institution.py \ + bfe_authority_author.py bfe_authority_institute.py \ bfe_authority_journal.py bfe_authority_subject.py \ bfe_authority_control_no.py tmpdir = $(prefix)/var/tmp/tests_bibformat_elements tmp_DATA = test_1.py bfe_test_2.py bfe_test_4.py test3.py test_5.py \ test_no_element.test __init__.py EXTRA_DIST = $(pylib_DATA) $(tmp_DATA) CLEANFILES = *~ *.tmp *.pyc diff --git a/modules/bibformat/lib/elements/bfe_authority_institution.py b/modules/bibformat/lib/elements/bfe_authority_institute.py similarity index 91% rename from modules/bibformat/lib/elements/bfe_authority_institution.py rename to modules/bibformat/lib/elements/bfe_authority_institute.py index 94ced00cc..33f494f9a 100644 --- a/modules/bibformat/lib/elements/bfe_authority_institution.py +++ b/modules/bibformat/lib/elements/bfe_authority_institute.py @@ -1,205 +1,205 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. -## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 CERN. +## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -"""BibFormat element - Prints institution data from an Authority Record. +"""BibFormat element - Prints institute data from an Authority Record. """ __revision__ = "$Id$" from invenio.config import CFG_SITE_URL from invenio.bibauthority_config import \ CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD, \ CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME from invenio.bibauthority_engine import \ get_control_nos_from_recID, \ guess_main_name_from_authority_recID from invenio.search_engine import \ perform_request_search, \ get_record - + def format_element(bfo, detail='no'): - """ Prints the data of an institution authority record in HTML. By default prints + """ Prints the data of an institute authority record in HTML. By default prints brief version. @param detail: whether the 'detailed' rather than the 'brief' format @type detail: 'yes' or 'no' """ from invenio.messages import gettext_set_language _ = gettext_set_language(bfo.lang) # load the right message language - + # return value out = "" # brief main_dicts = bfo.fields('110%%') if len(main_dicts): main = main_dicts[0].get('a') or "" - out += "

    " + "" + _("Main %s name") % _("institution") + "" + ": " + main + "

    " + out += "

    " + "" + _("Main %s name") % _("institute") + "" + ": " + main + "

    " # detail if detail.lower() == "yes": sees = [see_dict['a'] for see_dict in bfo.fields('410%%') if 'a' in see_dict] sees = filter(None, sees) # fastest way to remove empty ""s if len(sees): out += "

    " + "" + _("Variant(s)") + "" + ": " + ", ".join(sees) + "

    " see_also_dicts = bfo.fields('510%%') cc_val = CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME - c_val = "Authority Institution" + c_val = "Institutes" record_url_pattern = "/record/" + "%s" search_url_pattern = "/search?" + \ "cc=" + "%s" + \ "&c=" + "%s" + \ "&p=" + "%s" + \ "&sc=" + "%s" link_pattern = "" + '%s' + "" # populate the first 3 lists parent_htmls, predecessor_htmls, successor_htmls = \ get_main_htmls(see_also_dicts, cc_val, c_val, record_url_pattern, search_url_pattern, link_pattern) # populate the list of children child_htmls = \ - get_child_htmls(bfo.recID, cc_val, c_val, record_url_pattern, + get_child_htmls(bfo.recID, cc_val, c_val, record_url_pattern, link_pattern) # put it all together if len(parent_htmls): out += "

    " + "" + _("Parent") + "" + ": " + ", ".join(parent_htmls) + "

    " if len(child_htmls): out += "

    " + "" + _("Children") + "" + ": " + ", ".join(child_htmls) + "

    " if len(predecessor_htmls): out += "

    " + "" + _("Predecessor") + "" + ": " + ", ".join(predecessor_htmls) + "

    " if len(successor_htmls): - out += "

    " + "" + _("Successor") + "" + ": " + ", ".join(successor_htmls) + "

    " + out += "

    " + "" + _("Successor") + "" + ": " + ", ".join(successor_htmls) + "

    " # return return out -def get_main_htmls(see_also_dicts, cc_val, c_val, record_url_pattern, +def get_main_htmls(see_also_dicts, cc_val, c_val, record_url_pattern, search_url_pattern, link_pattern): """parent_htmls, predecessor_htmls, successor_htmls can all be deduced directly from the metadata of the record""" # reusable vars f_val = CFG_BIBAUTHORITY_RECORD_CONTROL_NUMBER_FIELD sc_val = "1" parent_htmls = [] predecessor_htmls = [] successor_htmls = [] - + # start processing for see_also_dict in see_also_dicts: if 'w' in see_also_dict: # $w contains 'a' for predecessor, 'b' for successor, etc. w_subfield = see_also_dict.get('w') # $4 contains control_no of linked authority record - _4_subfield = see_also_dict.get('4') - # $a contains the name of the linked institution + _4_subfield = see_also_dict.get('4') + # $a contains the name of the linked institute out_string = see_also_dict.get('a') or _4_subfield # if we have something to display if out_string: url = '' # if we have a control number if _4_subfield: p_val = _4_subfield # if CFG_BIBAUTHORITY_PREFIX_SEP in _4_subfield: # unused, p_val = _4_subfield.split(CFG_BIBAUTHORITY_PREFIX_SEP); recIDs = perform_request_search(cc=cc_val, c=c_val, p=p_val, f=f_val) if len(recIDs) == 1: url = record_url_pattern % (recIDs[0]) elif len(recIDs) > 1: p_val = "recid:" + \ " or recid:".join([str(r) for r in recIDs]) url = search_url_pattern % (cc_val, c_val, p_val, sc_val) # if we found one or multiple records for the control_no, # make the out_string a clickable url towards those records if url: out_string = link_pattern % (url, out_string) # add the out_string to the appropriate list if w_subfield == 't': parent_htmls.append(out_string) elif w_subfield == 'a': predecessor_htmls.append(out_string) elif w_subfield == 'b': successor_htmls.append(out_string) - # return + # return return parent_htmls, predecessor_htmls, successor_htmls -def get_child_htmls(this_recID, cc_val, c_val, record_url_pattern, +def get_child_htmls(this_recID, cc_val, c_val, record_url_pattern, link_pattern): - """children aren'r referenced by parents, so we need special treatment to find + """children aren'r referenced by parents, so we need special treatment to find them""" control_nos = get_control_nos_from_recID(this_recID) for control_no in control_nos: url = '' p_val = '510%4:"' + control_no + '" and 510%w:t' - # find a first, fuzzy result set + # find a first, fuzzy result set # narrowing down on a few possible recIDs recIDs = perform_request_search(cc=cc_val, c=c_val, p=p_val) - # now filter to find the ones where the subfield conditions of p_val + # now filter to find the ones where the subfield conditions of p_val # are both true within the exact same field sf_req = [('w', 't'), ('4', control_no)] - recIDs = filter(lambda x: - match_all_subfields_for_tag(x, '510', sf_req), + recIDs = filter(lambda x: + match_all_subfields_for_tag(x, '510', sf_req), recIDs) # proceed with assembling the html link child_htmls = [] for recID in recIDs: url = record_url_pattern % str(recID) display = guess_main_name_from_authority_recID(recID) or str(recID) out_html = link_pattern % (url, display) child_htmls.append(out_html) return child_htmls def match_all_subfields_for_tag(recID, field_tag, subfields_required=[]): """ - Tests whether the record with recID has at least one field with 'field_tag' + Tests whether the record with recID has at least one field with 'field_tag' where all of the required subfields in subfields_required match a subfield in the given field both in code and value - + @param recID: record ID @type recID: int - + @param field_tag: a 3 digit code for the field tag code @type field_tag: string - + @param subfields_required: a list of subfield code/value tuples @type subfields_required: list of tuples of strings. - same format as in get_record(): - e.g. [('w', 't'), + same format as in get_record(): + e.g. [('w', 't'), ('4', 'XYZ123')] - + @return: boolean """ rec = get_record(recID) for field in rec[field_tag]: subfields_present = field[0] intersection = set(subfields_present) & set(subfields_required) if set(subfields_required) == intersection: return True - return False + return False def escape_values(bfo): """ Called by BibFormat in order to check if output of this element should be escaped. """ - return 0 \ No newline at end of file + return 0 diff --git a/modules/bibformat/lib/elements/bfe_authors.py b/modules/bibformat/lib/elements/bfe_authors.py index 7389c781a..6281506da 100644 --- a/modules/bibformat/lib/elements/bfe_authors.py +++ b/modules/bibformat/lib/elements/bfe_authors.py @@ -1,201 +1,201 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. ## Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. """BibFormat element - Prints authors """ __revision__ = "$Id$" import re from urllib import quote from cgi import escape from invenio.config import CFG_SITE_URL from invenio.messages import gettext_set_language from invenio.bibauthority_config import \ CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME, \ CFG_BIBAUTHORITY_TYPE_NAMES, \ CFG_BIBAUTHORITY_PREFIX_SEP from invenio.bibauthority_engine import \ get_low_level_recIDs_from_control_no def format_element(bfo, limit, separator=' ; ', extension='[...]', print_links="yes", print_affiliations='no', affiliation_prefix=' (', affiliation_suffix=')', interactive="no", highlight="no", link_author_pages="no", link_mobile_pages="no", relator_code_pattern=None): """ Prints the list of authors of a record. @param limit: the maximum number of authors to display @param separator: the separator between authors. @param extension: a text printed if more authors than 'limit' exist @param print_links: if yes, prints the authors as HTML link to their publications @param print_affiliations: if yes, make each author name followed by its affiliation @param affiliation_prefix: prefix printed before each affiliation @param affiliation_suffix: suffix printed after each affiliation @param interactive: if yes, enable user to show/hide authors when there are too many (html + javascript) @param highlight: highlights authors corresponding to search query if set to 'yes' @param link_author_pages: should we link to author pages if print_links in on? @param link_mobile_pages: should we link to mobile app pages if print_links in on? @param relator_code_pattern: a regular expression to filter authors based on subfield $4 (relator code) """ _ = gettext_set_language(bfo.lang) # load the right message language authors = [] authors_1 = bfo.fields('100__', repeatable_subfields_p=True) authors_2 = bfo.fields('700__', repeatable_subfields_p=True) authors.extend(authors_1) authors.extend(authors_2) # make unique string per key for author in authors: if 'a' in author: author['a'] = author['a'][0] if 'u' in author: author['u'] = author['u'][0] pattern = '%s' + CFG_BIBAUTHORITY_PREFIX_SEP + "(" for control_no in author.get('0', []): - if pattern % (CFG_BIBAUTHORITY_TYPE_NAMES["INSTITUTION"]) in control_no: + if pattern % (CFG_BIBAUTHORITY_TYPE_NAMES["INSTITUTE"]) in control_no: author['u0'] = control_no # overwrite if multiples elif pattern % (CFG_BIBAUTHORITY_TYPE_NAMES["AUTHOR"]) in control_no: author['a0'] = control_no # overwrite if multiples if relator_code_pattern: p = re.compile(relator_code_pattern) authors = filter(lambda x: p.match(x.get('4', '')), authors) nb_authors = len(authors) bibrec_id = bfo.control_field("001") # Process authors to add link, highlight and format affiliation for author in authors: if author.has_key('a'): if highlight == 'yes': from invenio import bibformat_utils author['a'] = bibformat_utils.highlight(author['a'], bfo.search_pattern) if print_links.lower() == "yes": if link_author_pages == "yes": author['a'] = '' elif link_mobile_pages == 'yes': author['a'] = '' + escape(author['a']) + '' else: auth_coll_param = '' if 'a0' in author: recIDs = get_low_level_recIDs_from_control_no(author['a0']) if len(recIDs): auth_coll_param = '&c=' + \ CFG_BIBAUTHORITY_AUTHORITY_COLLECTION_NAME author['a'] = '' + escape(author['a']) + '' if author.has_key('u'): if print_affiliations == "yes": if 'u0' in author: recIDs = get_low_level_recIDs_from_control_no(author['u0']) # if there is more than 1 recID, clicking on link and # thus displaying the authority record's page should # contain a warning that there are multiple authority # records with the same control number if len(recIDs): author['u'] = '' + author['u'] + '' author['u'] = affiliation_prefix + author['u'] + \ affiliation_suffix # Flatten author instances if print_affiliations == 'yes': authors = [author.get('a', '') + author.get('u', '') for author in authors] else: authors = [author.get('a', '') for author in authors] if limit.isdigit() and nb_authors > int(limit) and interactive != "yes": return separator.join(authors[:int(limit)]) + extension elif limit.isdigit() and nb_authors > int(limit) and interactive == "yes": out = '' out += separator.join(authors[:int(limit)]) out += '' % bibrec_id + separator + \ separator.join(authors[int(limit):]) + '' out += ' ' % bibrec_id out += ' ' % bibrec_id out += ''' ''' % {'show_less':_("Hide"), 'show_more':_("Show all %i authors") % nb_authors, 'extension':extension, 'recid': bibrec_id} out += '' % bibrec_id return out elif nb_authors > 0: return separator.join(authors) def escape_values(bfo): """ Called by BibFormat in order to check if output of this element should be escaped. """ return 0 diff --git a/modules/miscutil/demo/demobibdata.xml b/modules/miscutil/demo/demobibdata.xml index 828223339..a04271d1f 100644 --- a/modules/miscutil/demo/demobibdata.xml +++ b/modules/miscutil/demo/demobibdata.xml @@ -1,26285 +1,26285 @@ CERN-EX-0106015 Photolab ALEPH experiment: Candidate of Higgs boson production Expérience ALEPH: Candidat de la production d'un boson Higgs 14 06 2000 FILM Candidate for the associated production of the Higgs boson and Z boson. Both, the Higgs and Z boson decay into 2 jets each. The green and the yellow jets belong to the Higgs boson. They represent the fragmentation of a bottom andanti-bottom quark. The red and the blue jets stem from the decay of the Z boson into a quark anti-quark pair. Left: View of the event along the beam axis. Bottom right: Zoom around the interaction point at the centre showing detailsof the fragmentation of the bottom and anti-bottom quarks. As expected for b quarks, in each jet the decay of a long-lived B meson is visible. Top right: "World map" showing the spatial distribution of the jets in the event. Press SzGeCERN Experiments and Tracks LEP neil.calder@cern.ch http://invenio-software.org/download/invenio-demo-site-files/0106015_01.jpg restricted_picture http://invenio-software.org/download/invenio-demo-site-files/0106015_01.gif .gif;icon restricted_picture 0003717PHOPHO 2000 81 2001-06-14 50 2001-08-27 CM Bldg. 2 Calder, N n 200231 PICTURE CERN-EX-0104007 Patrice Loïez The first CERN-built module of the barrel section of ATLAS's electromagnetic calorimeter Premier module du tonneau du calorimètre electromagnétique d'ATLAS 10 Apr 2001 DIGITAL Behind the module, left to right Ralf Huber, Andreas Bies and Jorgen Beck Hansen. In front of the module, left to right: Philippe Lançon and Edward Wood. Derrière le module, de gauche à droite: Ralf Huber, Andreas Bies, Jorgen Beck Hansen. Devant le module, de gauche à droite : Philippe Lançon et Edward Wood. CERN EDS SzGeCERN Experiments and Tracks marie.noelle.pages.ribeiro@cern.ch http://invenio-software.org/download/invenio-demo-site-files/0104007_02.jpeg http://invenio-software.org/download/invenio-demo-site-files/0104007_02.gif 0003601PHOPHO 2001 81 2001-04-23 50 2001-06-18 CM 0020699 ADMBUL CERN Bulletin 18/2001 : 30 April 2001 (English) 0020700 ADMBUL CERN Bulletin 18/2001 : 30 avril 2001 (French) Bldg. 184 Fassnacht, P n 200231 PICTURE CERN-HI-6902127 European Molecular Biology Conference Jul 1969 In February, the Agreement establishing the European Molecular Biology Conference was signed at CERN. Willy Spuhler is signing for Switzerland. SzGeCERN Personalities and History of CERN http://invenio-software.org/download/invenio-demo-site-files/6902127.jpeg http://invenio-software.org/download/invenio-demo-site-files/6902127.gif 0002690PHOPHO 1969 81 2000-06-13 50 2000-06-13 CM 127-2-69 n 200024 PICTURE CERN-DI-9906028 J.L. Caron The Twenty Member States of CERN (with dates of accession) on 1 June 1999 Jun 1999 CERN Member States. Les Etats membres du CERN. Press SzGeCERN Diagrams and Charts http://invenio-software.org/download/invenio-demo-site-files/9906028_01.jpeg http://invenio-software.org/download/invenio-demo-site-files/9906028_01.gif 0001754PHOPHO 1999 81 1999-06-17 50 2000-10-30 CM n 199924 PICTURE CERN-DI-9905005 High energy cosmic rays striking atoms at the top of the atmosphere give the rise to showers of particles striking the Earth's surface Des rayons cosmiques de haute energie heurtent des atomes dans la haute atmosphere et donnent ainsi naissance a des gerbes de particules projetees sur la surface terrestre 10 May 1999 DIGITAL Press SzGeCERN Diagrams and Charts neil.calder@cern.ch http://invenio-software.org/download/invenio-demo-site-files/9905005_01.jpeg http://invenio-software.org/download/invenio-demo-site-files/9905005_01.gif 0001626PHOPHO 1999 81 1999-05-10 50 2000-09-12 CM Bldg. 60 Calder, N n 200231 PICTURE CERN-HI-6206002 eng At CERN in 1962 eight Nobel prizewinners 1962 jekyll_only In 1962, CERN hosted the 11th International Conference on High Energy Physics. Among the distinguished visitors were eight Nobel prizewinners.Left to right: Cecil F. Powell, Isidor I. Rabi, Werner Heisenberg, Edwin M. McMillan, Emile Segre, Tsung Dao Lee, Chen Ning Yang and Robert Hofstadter. En 1962, le CERN est l'hote de la onzieme Conference Internationale de Physique des Hautes Energies. Parmi les visiteurs eminents se trouvaient huit laureats du prix Nobel.De gauche a droite: Cecil F. Powell, Isidor I. Rabi, Werner Heisenberg, Edwin M. McMillan, Emile Segre, Tsung Dao Lee, Chen Ning Yang et Robert Hofstadter. Press SzGeCERN Personalities and History of CERN Nobel laureate http://invenio-software.org/download/invenio-demo-site-files/6206002.jpg http://invenio-software.org/download/invenio-demo-site-files/6206002.gif 0000736PHOPHO 1962 81 1998-07-23 50 2002-07-15 CM http://www.nobel.se/physics/laureates/1950/index.html The Nobel Prize in Physics 1950 : Cecil Frank Powell http://www.nobel.se/physics/laureates/1944/index.html The Nobel Prize in Physics 1944 : Isidor Isaac Rabi http://www.nobel.se/physics/laureates/1932/index.html The Nobel Prize in Physics 1932 : Werner Karl Heisenberg http://www.nobel.se/chemistry/laureates/1951/index.html The Nobel Prize in Chemistry 1951 : Edwin Mattison McMillan http://www.nobel.se/physics/laureates/1959/index.html The Nobel Prize in Physics 1959 : Emilio Gino Segre http://www.nobel.se/physics/laureates/1957/index.html The Nobel Prize in Physics 1957 : Chen Ning Yang and Tsung-Dao Lee http://www.nobel.se/physics/laureates/1961/index.html The Nobel Prize in Physics 1961 : Robert Hofstadter 6206002 (1962) n 199830 PICTURE CERN-GE-9806033 Tim Berners-Lee World-Wide Web inventor 28 Jun 1998 Conference "Internet, Web, What's next?" on 26 June 1998 at CERN : Tim Berners-Lee, inventor of the World-Wide Web and Director of the W3C, explains how the Web came to be and give his views on the future. Conference "Internet, Web, What's next?" le 26 juin 1998 au CERN: Tim Berners-Lee, inventeur du World-Wide Web et directeur du W3C, explique comment le Web est ne, et donne ses opinions sur l'avenir. Press SzGeCERN Life at CERN neil.calder@cern.ch http://invenio-software.org/download/invenio-demo-site-files/9806033.jpeg http://invenio-software.org/download/invenio-demo-site-files/9806033.gif 0000655PHOPHO 1998 81 1998-07-03 50 2001-07-10 CM http://www.cern.ch/CERN/Announcements/1998/WebNext.html "Internet, Web, What's next?" 26 June 1998 http://Bulletin.cern.ch/9828/art2/Text_E.html CERN Bulletin no 28/98 (6 July 1998) (English) http://Bulletin.cern.ch/9828/art2/Text_F.html CERN Bulletin no 28/98 (6 juillet 1998) (French) http://www.w3.org/People/Berners-Lee/ Biography 0000990 PRSPRS Le Pays Gessien : 3 Jul 1998 0001037 PRSPRS Le Temps : 27 Jun 1998 0000809 PRSPRS La Tribune de Geneve : 27 Jun 1998 Bldg. 60 Calder, N n 199827 PICTURE astro-ph/9812226 eng Efstathiou, G P Cambridge University Constraints on $\Omega_{\Lambda}$ and $\Omega_{m}$from Distant Type 1a Supernovae and Cosmic Microwave Background Anisotropies 14 Dec 1998 6 p We perform a combined likelihood analysis of the latest cosmic microwave background anisotropy data and distant Type 1a Supernova data of Perlmutter etal (1998a). Our analysis is restricted tocosmological models where structure forms from adiabatic initial fluctuations characterised by a power-law spectrum with negligible tensor component. Marginalizing over other parameters, our bestfit solution gives Omega_m = 0.25 (+0.18, -0.12) and Omega_Lambda = 0.63 (+0.17, -0.23) (95 % confidence errors) for the cosmic densities contributed by matter and a cosmological constantrespectively. The results therefore strongly favour a nearly spatially flat Universe with a non-zero cosmological constant. LANL EDS SzGeCERN Astrophysics and Astronomy Lasenby, A N Hobson, M P Ellis, R S Bridle, S L George Efstathiou <gpe@ast.cam.ac.uk> http://invenio-software.org/download/invenio-demo-site-files/9812226.pdf http://invenio-software.org/download/invenio-demo-site-files/9812226.fig1.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/9812226.fig3.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/9812226.fig5.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/9812226.fig6.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/9812226.fig7.ps.gz Additional 1998 11 1998-12-14 50 2001-04-07 BATCH Mon. Not. R. Astron. Soc. SLAC 4162242 CER n 200231 PREPRINT Bond, J.R. 1996, Theory and Observations of the Cosmic Background Radiation, in "Cosmology and Large Scale Structure", Les Houches Session LX, August 1993, eds. R. Schaeffer, J. Silk, M. Spiro and J. Zinn-Justin, Elsevier SciencePress, Amsterdam, p469 Bond J.R., Efstathiou G., Tegmark M., 1997 L33 Mon. Not. R. Astron. Soc. 291 1997 Mon. Not. R. Astron. Soc. 291 (1997) L33 Bond, J.R., Jaffe, A. 1997, in Proc. XXXI Rencontre de Moriond, ed. F. Bouchet, Edition Fronti eres, in press astro-ph/9610091 Bond J.R., Jaffe A.H. and Knox L.E., 1998 astro-ph/9808264 Astrophys.J. 533 (2000) 19 Burles S., Tytler D., 1998a, to appear in the Proceedings of the Second Oak Ridge Symposium on Atomic & Nuclear Astrophysics, ed. A. Mezzacappa, Institute of Physics, Bristol astro-ph/9803071 Burles S., Tytler D., 1998b, Astrophys. J.in press astro-ph/9712109 Astrophys.J. 507 (1998) 732 Caldwell, R.R., Dave, R., Steinhardt P.J., 1998 1582 Phys. Rev. Lett. 80 1998 Phys. Rev. Lett. 80 (1998) 1582 Carroll S.M., Press W.H., Turner E.L., 1992, Ann. Rev. Astr. Astrophys., 30, 499. Chaboyer B., 1998 astro-ph/9808200 Phys.Rept. 307 (1998) 23 Devlin M.J., De Oliveira-Costa A., Herbig T., Miller A.D., Netterfield C.B., Page L., Tegmark M., 1998, submitted to Astrophys. J astro-ph/9808043 Astrophys. J. 509 (1998) L69-72 Efstathiou G. 1996, Observations of Large-Scale Structure in the Universe, in "Cosmology and Large Scale Structure", Les Houches Session LX, August 1993, eds. R. Schaeffer, J. Silk, M. Spiro and J. Zinn-Justin, Elsevier SciencePress, Amsterdam, p135. Efstathiou G., Bond J.R., Mon. Not. R. Astron. Soc.in press astro-ph/9807130 Astrophys. J. 518 (1999) 2-23 Evrard G., 1998, submitted to Mon. Not. R. Astron. Soc astro-ph/9701148 Mon.Not.Roy.Astron.Soc. 292 (1997) 289 Freedman J.B., Mould J.R., Kennicutt R.C., Madore B.F., 1998 astro-ph/9801090 Astrophys. J. 480 (1997) 705 Garnavich P.M. et al. 1998 astro-ph/9806396 Astrophys.J. 509 (1998) 74-79 Goobar A., Perlmutter S., 1995 14 Astrophys. J. 450 1995 Astrophys. J. 450 (1995) 14 Hamuy M., Phillips M.M., Maza J., Suntzeff N.B., Schommer R.A., Aviles R. 1996 2391 Astrophys. J. 112 1996 Astrophys. J. 112 (1996) 2391 Hancock S., Gutierrez C.M., Davies R.D., Lasenby A.N., Rocha G., Rebolo R., Watson R.A., Tegmark M., 1997 505 Mon. Not. R. Astron. Soc. 298 1997 Mon. Not. R. Astron. Soc. 298 (1997) 505 Hancock S., Rocha G., Lasenby A.N., Gutierrez C.M., 1998 L1 Mon. Not. R. Astron. Soc. 294 1998 Mon. Not. R. Astron. Soc. 294 (1998) L1 Herbig T., De Oliveira-Costa A., Devlin M.J., Miller A.D., Page L., Tegmark M., 1998, submitted to Astrophys. J astro-ph/9808044 Astrophys.J. 509 (1998) L73-76 Lineweaver C.H., 1998. Astrophys. J.505, L69. Lineweaver, C.H., Barbosa D., 1998a 624 Astrophys. J. 446 1998 Astrophys. J. 446 (1998) 624 Lineweaver, C.H., Barbosa D., 1998b 799 Astron. Astrophys. 329 1998 Astron. Astrophys. 329 (1998) 799 De Oliveira-Costa A., Devlin M.J., Herbig T., Miller A.D., Netterfield C.B. Page L., Tegmark M., 1998, submitted to Astrophys. J astro-ph/9808045 Astrophys. J. 509 (1998) L77-80 Ostriker J.P., Steinhardt P.J., 1995 600 Nature 377 1995 Nature 377 (1995) 600 Peebles P.J.E., 1993, Principles of Physical Cosmology, Princeton University Press, Princeton, New Jersey. Perlmutter S, et al., 1995, In Presentations at the NATO ASI in Aiguablava, Spain, LBL-38400; also published in Thermonuclear Supernova, P. Ruiz-Lapuente, R. Cana and J. Isern (eds), Dordrecht, Kluwer, 1997, p749. Perlmutter S, et al., 1997 565 Astrophys. J. 483 1997 Astrophys. J. 483 (1997) 565 Perlmutter S. et al., 1998a, Astrophys. J.in press. (P98) astro-ph/9812133 Astrophys. J. 517 (1999) 565-586 Perlmutter S. et al., 1998b, In Presentation at the January 1988 Meeting of the American Astronomical Society, Washington D.C., LBL-42230, available at www-supernova.lbl.gov; B.A.A.S., volume : 29 (1997) 1351Perlmutter S, et al., 1998c 51 Nature 391 1998 Nature 391 (1998) 51 Ratra B., Peebles P.J.E., 1988 3406 Phys. Rev., D 37 1988 Phys. Rev. D 37 (1988) 3406 Riess A. et al. 1998, Astrophys. J.in press astro-ph/9805201 Astron. J. 116 (1998) 1009-1038 Seljak U., Zaldarriaga M. 1996 437 Astrophys. J. 469 1996 Astrophys. J. 469 (1996) 437 Seljak U. & Zaldarriaga M., 1998 astro-ph/9811123 Phys. Rev. D60 (1999) 043504 Tegmark M., 1997 3806 Phys. Rev. Lett. 79 1997 Phys. Rev. Lett. 79 (1997) 3806 Tegmark M. 1998, submitted to Astrophys. J astro-ph/9809201 Astrophys. J. 514 (1999) L69-L72 Tegmark, M., Eisenstein D.J., Hu W., Kron R.G., 1998 astro-ph/9805117 Wambsganss J., Cen R., Ostriker J.P., 1998 29 Astrophys. J. 494 1998 Astrophys. J. 494 (1998) 29 Webster M., Bridle S.L., Hobson M.P., Lasenby A.N., Lahav O., Rocha, G., 1998, Astrophys. J.in press astro-ph/9802109 White M., 1998, Astrophys. J.in press astro-ph/9802295 Astrophys. J. 506 (1998) 495 Zaldarriaga, M., Spergel D.N., Seljak U., 1997 1 Astrophys. J. 488 1997 Astrophys. J. 488 (1997) 1 eng PRE-25553 RL-82-024 Ellis, J AUTHOR|(SzGeCERN)aaa0005 University of Oxford Grand unification with large supersymmetry breaking Mar 1982 18 p SzGeCERN General Theoretical Physics Ibanez, L E Ross, G G 1982 11 Oxford Univ. Univ. Auton. Madrid Rutherford Lab. 1990-01-28 50 2002-01-04 BATCH h 1982n PREPRINT hep-ex/0201013 eng CERN-EP-2001-094 Heister, A Aachen, Tech. Hochsch. Search for R-Parity Violating Production of Single Sneutrinos in $e^{+}e^{-}$ Collisions at $\sqrt{s}$ = 189-209 GeV Geneva CERN 17 Dec 2001 22 p ALEPH Papers A search for single sneutrino production under the assumption that $R$-parity is violated via a single dominant $LL\bar{E}$ coupling is presented. This search considers the process ${\rm e} \gamma\;{\smash{\mathop{\rightarrow}}}\;\tilde{\nu}\ell$ and is performed using the data collected by the ALEPH detector at centre-of-mass energies from 189\,GeV up to 209\,GeV corresponding to an integrated luminosity of637.1\,$\mathrm{pb}^{-1}$. The numbers of observed candidate events are in agreement with Standard Model expectations and 95\% confidence level upper limits on five of the $LL\bar{E}$ couplings are given as a function of the assumedsneutrino mass. CERN EDS 20011220SLAC giva LANL EDS SzGeCERN Particle Physics - Experimental Results Schael, S Barate, R Bruneliere, R De Bonis, I Decamp, D Goy, C Jezequel, S Lees, J P Martin, F Merle, E Minard, M N Pietrzyk, B Trocme, B Boix, G Bravo, S Casado, M P Chmeissani, M Crespo, J M Fernandez, E Fernandez-Bosman, M Garrido, L Grauges, E Lopez, J Martinez, M Merino, G Miquel, R Mir, L M Pacheco, A Paneque, D Ruiz, H Colaleo, A Creanza, D De Filippis, N De Palma, M Iaselli, G Maggi, G Maggi, M Nuzzo, S Ranieri, A Raso, G Ruggieri, F Selvaggi, G Silvestris, L Tempesta, P Tricomi, A Zito, G Huang, X Lin, J Ouyang, Q Wang, T Xie, Y Xu, R Xue, S Zhang, J Zhang, L Zhao, W Abbaneo, D Azzurri, P Barklow, T Buchmuller, O Cattaneo, M Cerutti, F Clerbaux, B Drevermann, H Forty, R W Frank, M Gianotti, F Greening, T C Hansen, J B Harvey, J Hutchcroft, D E Janot, P Jost, B Kado, M Maley, P Mato, P Moutoussi, A Ranjard, F Rolandi, L Schlatter, D Sguazzoni, G Tejessy, W Teubert, F Valassi, A Videau, I Ward, J J Badaud, F Dessagne, S Falvard, A Fayolle, D Gay, P Jousset, J Michel, B Monteil, S Pallin, D Pascolo, J M Perret, P Hansen, J D Hansen, J R Hansen, P H Nilsson, B S Waananen, A Kyriakis, A Markou, C Simopoulou, E Vayaki, A Zachariadou, K Blondel, A Brient, J C Machefert, F P Rouge, A Swynghedauw, M Tanaka, R Videau, H L Ciulli, V Focardi, E Parrini, G Antonelli, A Antonelli, M Bencivenni, G Bologna, G Bossi, F Campana, P Capon, G Chiarella, V Laurelli, P Mannocchi, G Murtas, F Murtas, G P Passalacqua, L Pepe-Altarelli, M Spagnolo, P Kennedy, J Lynch, J G Negus, P O'Shea, V Smith, D Thompson, A S Wasserbaech, S R Cavanaugh, R Dhamotharan, S Geweniger, C Hanke, P Hepp, V Kluge, E E Leibenguth, G Putzer, A Stenzel, H Tittel, K Werner, S Wunsch, M Beuselinck, R Binnie, D M Cameron, W Davies, G Dornan, P J Girone, M Hill, R D Marinelli, N Nowell, J Przysiezniak, H Rutherford, S A Sedgbeer, J K Thompson, J C White, R Ghete, V M Girtler, P Kneringer, E Kuhn, D Rudolph, G Bouhova-Thacker, E Bowdery, C K Clarke, D P Ellis, G Finch, A J Foster, F Hughes, G Jones, R W L Pearson, M R Robertson, N A Smizanska, M Lemaître, V Blumenschein, U Holldorfer, F Jakobs, K Kayser, F Kleinknecht, K Muller, A S Quast, G Renk, B Sander, H G Schmeling, S Wachsmuth, H Zeitnitz, C Ziegler, T Bonissent, A Carr, J Coyle, P Curtil, C Ealet, A Fouchez, D Leroy, O Kachelhoffer, T Payre, P Rousseau, D Tilquin, A Ragusa, F David, A Dietl, H Ganis, G Huttmann, K Lutjens, G Mannert, C Manner, W Moser, H G Settles, R Wolf, G Boucrot, J Callot, O Davier, M Duflot, L Grivaz, J F Heusse, P Jacholkowska, A Loomis, C Serin, L Veillet, J J De Vivie de Regie, J B Yuan, C Bagliesi, G Boccali, T Foà, L Giammanco, A Giassi, A Ligabue, F Messineo, A Palla, F Sanguinetti, G Sciaba, A Tenchini, R Venturi, A Verdini, P G Awunor, O Blair, G A Coles, J Cowan, G García-Bellido, A Green, M G Jones, L T Medcalf, T Misiejuk, A Strong, J A Teixeira-Dias, P Clifft, R W Edgecock, T R Norton, P R Tomalin, I R Bloch-Devaux, B Boumediene, D Colas, P Fabbro, B Lancon, E Lemaire, M C Locci, E Perez, P Rander, J Renardy, J F Rosowsky, A Seager, P Trabelsi, A Tuchming, B Vallage, B Konstantinidis, N P Litke, A M Taylor, G Booth, C N Cartwright, S Combley, F Hodgson, P N Lehto, M H Thompson, L F Affholderbach, K Bohrer, A Brandt, S Grupen, C Hess, J Ngac, A Prange, G Sieler, U Borean, C Giannini, G He, H Putz, J Rothberg, J E Armstrong, S R Berkelman, K Cranmer, K Ferguson, D P S Gao, Y Gonzalez, S Hayes, O J Hu, H Jin, S Kile, J McNamara, P A Nielsen, J Pan, Y B Von Wimmersperg-Toller, J H Wiedenmann, W Wu, J Wu, S L Wu, X Zobernig, G Dissertori, G ALEPH Collaboration valerie.brunner@cern.ch http://invenio-software.org/download/invenio-demo-site-files/ep-2001-094.pdf http://invenio-software.org/download/invenio-demo-site-files/ep-2001-094.ps.gz 2002 ALEPH 11 EP CERN LEP 2001-12-19 50 2002-02-19 BATCH CERN Eur. Phys. J., C SLAC 4823672 oai:cds.cern.ch:CERN-EP-2001-094 CER n 200231 PREPRINT ALEPHPAPER [1] For reviews, see for example: H.P. Nilles 1 Phys. Rep. 110 1984 Phys. Rep. 110 (1984) 1 H.E. Haber and G. L. Kane 75 Phys. Rep. 117 1985 Phys. Rep. 117 (1985) 75 [2] G. Farrar and P. Fayet 575 Phys. Lett., B 76 1978 Phys. Lett. B 76 (1978) 575 [3] S. Weinberg 287 Phys. Rev., B 26 1982 Phys. Rev. B 26 (1982) 287 N. Sakai and T. Yanagida 83 Nucl. Phys., B 197 1982 Nucl. Phys. B 197 (1982) 83 S. Dimopoulos, S. Raby and F. Wilczek 133 Phys. Lett., B 212 1982 Phys. Lett. B 212 (1982) 133 [4] B.C. Allanach, H. Dreiner, P. Morawitz and M.D. Williams, "Single Sneutrino/Slepton Production at LEP2 and the NLC" 307 Phys. Lett., B 420 1998 Phys. Lett. B 420 (1998) 307 [5] ALEPH Collaboration, "Search for R-Parity Violating Decays of Supersymmetric Particles in e+e- Collisions at Centre-of-Mass Energies between s = 189­202 GeV" 415 Eur. Phys. J., C 19 2001 Eur. Phys. J. C 19 (2001) 415 [6] ALEPH Collaboration, "ALEPH: a detector for electron-positron annihilations at LEP", Nucl. Instrum. and Methods. A : 294 (1990) 121 [7] S. Cantini, Yu. L. Dokshitzer, M. Olsson, G. Turnock and B.R. Webber, `New clustering algorithm for multijet cross sections in e+e- annihilation" 432 Phys. Lett., B 269 1991 Phys. Lett. B 269 (1991) 432 [8] ALEPH Collaboration, "Performance of the ALEPH detector at LEP", Nucl. Instrum. and Methods. A : 360 (1995) 481 Nucl. Instrum. and Methods. 360 (1995) 481 [9] S. Katsanevas and P. Morawitz, "SUSYGEN 2.2 - A Monte Carlo Event Generator for MSSM Sparticle Production at e+e- Colliders" 227 Comput. Phys. Commun. 112 1998 Comput. Phys. Commun. 112 (1998) 227 [10] E. Barberio, B. van Eijk and Z. W¸as 115 Comput. Phys. Commun. 66 1991 Comput. Phys. Commun. 66 (1991) 115 [11] S. Jadach and Z. W¸as, R. Decker and J.H. Kühn, "The decay library TAUOLA" 361 Comput. Phys. Commun. 76 1993 Comput. Phys. Commun. 76 (1993) 361 [12] T. Sjöstrand, " High-Energy Physics Event Generation with PYTHIA 5.7 and JETSET 7.4" 74 Comput. Phys. Commun. 82 1994 Comput. Phys. Commun. 82 (1994) 74 [13] S. Jadach et al 276 Comput. Phys. Commun. 66 1991 Comput. Phys. Commun. 66 (1991) 276 11 [14] M. Skrzypek, S. Jadach, W. Placzek and Z. Was 216 Comput. Phys. Commun. 94 1996 Comput. Phys. Commun. 94 (1996) 216 [15] S. Jadach et al 298 Phys. Lett., B 390 1997 Phys. Lett. B 390 (1997) 298 [16] J.A.M. Vermaseren, in Proceedings of the IVth International Workshop on Gamma Gamma Interactions, Eds. G. Cochard and P. Kessler, Springer Verlag, 1980 [17] J. -F. Grivaz and F. Le Diberder, "Complementary analyses and acceptance optimization in new particle searches", LAL preprint # 92-37 (1992) [18] ALEPH Collaboration, "Search for Supersymmetry with a dominant R-Parity Violating LL ¯ E Coupling in e+e- Collisions at Centre-of-Mass Energies of 130 GeV to 172 GeV" 433 Eur. Phys. J., C 4 1998 Eur. Phys. J. C 4 (1998) 433 [19] For reviews see for example: H. Dreiner, "An Introduction to Explicit R-parity Violation" hep-ph/9707435 published in Perspectives on Supersymmetry, ed. G.L. Kane, World Scientific, Singapore (1998); G. Bhattacharyya 83 Nucl. Phys. B, Proc. Suppl. 52 1997 Nucl. Phys. B Proc. Suppl. 52 (1997) 83 12 astro-ph/0101431 eng Gray, M E Cambridge University Infrared constraints on the dark mass concentration observed in the cluster Abell 1942 24 Jan 2001 8 p We present a deep H-band image of the region in the vicinity of the cluster Abell 1942 containing the puzzling dark matter concentration detected in an optical weak lensing study by Erben et al. (2000). We demonstrate that ourlimiting magnitude, H=22, would be sufficient to detect clusters of appropriate mass out to redshifts comparable with the mean redshift of the background sources. Despite this, our infrared image reveals no obvious overdensity ofsources at the location of the lensing mass peak, nor an excess of sources in the I-H vs. H colour-magnitude diagram. We use this to further constrain the luminosity and mass-to-light ratio of the putative dark clump as a function ofits redshift. We find that for spatially-flat cosmologies, background lensing clusters with reasonable mass-to-light ratios lying in the redshift range 0<z<1 are strongly excluded, leaving open the possibility that the massconcentration is a new type of truly dark object. LANL EDS SzGeCERN Astrophysics and Astronomy Ellis, R S Lewis, J R McMahon, R G Firth, A E Meghan Gray <meg@ast.cam.ac.uk> http://invenio-software.org/download/invenio-demo-site-files/0101431.pdf http://invenio-software.org/download/invenio-demo-site-files/0101431.ps.gz http://invenio-software.org/download/invenio-demo-site-files/0101431.fig1.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig2.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig3.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig4.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig5a.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig5b.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig6.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0101431.fig7.ps.gz Additional 2001 11 Caltech IoA, Cambridge 2001-01-25 00 2001-11-02 BATCH Gray, Meghan E. Ellis, Richard S. Lewis, James R. Mahon, Richard G. Mc Firth, Andrew E. Mon. Not. R. Astron. Soc. n 200104 Allen S.W., Mon. Not. R. Astron. Soc. 296 (1998) 392 Bacon D., Refregier A., Ellis R.S., Mon. Not. R. Astron. Soc. 318 (2000) 625 Beckett M., Mackay C., McMahon R., Parry I., Ellis R.S., Chan S.J., Hoenig M., Proc. SPIE 3354 (1998) 431 Bertin E., Arnouts S., 1996, A&Ann. Sci., 117, 393 Bonnet H., Mellier Y., Fort B., Astrophys. J. 427 (1994) 83 Bower R.G., Lucey J.R., Ellis R.S., Mon. Not. R. Astron. Soc. 254 (1992) 589 Bower R.G., Lucey J.R., Ellis R.S., Mon. Not. R. Astron. Soc. 254 (1992) 601 Clowe D., Luppino G.A., Kaiser N., Henry J.P., Gioia I.M., 1998, Astrophys. J., 497L Couch W.J., Ellis R.S., Malin D.F., MacLaren I., Mon. Not. R. Astron. Soc. 249 (1991) 606 da Costa L., et al., Astron. Astrophys. 343 (1999) 29 Erben T., van Waerbeke L., Mellier Y., Schneider P., Cuillandre J.-C., Castander F.J., Dantel-Fort M., Astron. Astrophys. 355 (2000) 23 Fahlman G., Kaiser N., Squires G., Woods D., Astrophys. J. 437 (1994) 56 Firth, A., 2000, Clustering at High Redshift, Astropart. Phys. Conference Series, Vol. 200, p. 404 Fischer P., Astron. J. 117 (1999) 2024 Gladders M.D., Yee H.K.C., Astron. J. 120 (2000) 2148 Gray M.E., Ellis R.S., Refregier A., Bézecourt J., McMahon R.G., Hoenig M.D : 318 (2000) 573 Hradecky V., Jones C., Donnelly R.H., Djorgovski S.G., Gal R.R., Odeqahn S.C., Astrophys. J. 543 (2000) 521 Kaiser N., Wilson G., Luppino G.A., 2000, astro-ph/0003338 Kaiser N., Squires G., Astrophys. J. 404 (1993) 441 Kneib J.P., Ellis R.S., Smail I., Couch W.J., Sharples R.M., Astrophys. J. 471 (1996) 643 Marzke R., McCarthy P.J., Persson E., et al., 1999, Photometric Redshifts and the Detection of High Redshift Galaxies, Astropart. Phys. Conference Series, Vol. 191, p. 148 Menanteau F., Ellis R.S., Abraham R.G., Barger Astron. J., Cowie L.L., Mon. Not. R. Astron. Soc. 309 (1999) 208 Metzler C.A., White M., Loken C., 2000, Astrophys. J., submitted astro-ph/0005442 Miralda-Escude J., Babul A., Astrophys. J. 449 (1995) 18 Persson S.E., Murphy D.C., Krzeminsky W., Rother M., Rieke M.J., 1998, Astron. J., 116 Refregier A., Heavens A., Heymans C., Mon. Not. R. Astron. Soc. 319 (2000) 649 Schneider P., Mon. Not. R. Astron. Soc. 283 (1996) 837 Smail I., Ellis R.S., Fitchett M.J., Edge A.C., Mon. Not. R. Astron. Soc. 273 (1995) 277 Smail I., Dressler A., Kneib J.-P., Ellis R.S., Couch W.J., Sharples R.M., Oemler Astron. J., Astrophys. J. 469 (1996) 508 Squires G., Neumann D.M., Kaiser N., Arnaud M., Babul A., Boehringer H., Fahlman G., Woods D., Astrophys. J. 482 (1997) 648 van Kampen E., Katgert P., Mon. Not. R. Astron. Soc. 289 (1997) 327 van Waerbeke L, et al., Astron. Astrophys. 538 (2000) 30 Whittman D.M., Tyson J.A., Kirkman D., Dell’Antonio, I., Bertstein G., Nature 405 (2000) 143 PREPRINT hep-ph/0105155 eng CERN-TH-2001-131 Mangano, M L CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 Physics at the front-end of a neutrino factory : a quantitative appraisal Geneva CERN 16 May 2001 - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 1 p We present a quantitative appraisal of the physics potential for neutrino experiments at the front-end of a muon storage ring. We estimate the forseeable accuracy in the determination of several interesting observables, and explorethe consequences of these measurements. We discuss the extraction of individual quark and antiquark densities from polarized and unpolarized deep-inelastic scattering. In particular we study the implications for the undertanding ofthe nucleon spin structure. We assess the determination of alpha_s from scaling violation of structure functions, and from sum rules, and the determination of sin^2(theta_W) from elastic nu-e and deep-inelastic nu-p scattering. Wethen consider the production of charmed hadrons, and the measurement of their absolute branching ratios. We study the polarization of Lambda baryons produced in the current and target fragmentation regions. Finally, we discuss thesensitivity to physics beyond the Standard Model. LANL EDS SzGeCERN Particle Physics - Phenomenology Alekhin, S I Anselmino, M Ball, R D Boglione, M D'Alesio, U Davidson, S De Lellis, G Ellis, J AUTHOR|(SzGeCERN)aaa0005 Forte, S Gambino, P Gehrmann, T Kataev, A L Kotzinian, A Kulagin, S A Lehmann-Dronke, B Migliozzi, P Murgia, F Ridolfi, G Michelangelo MANGANO <Michelangelo.Mangano@cern.ch> http://invenio-software.org/download/invenio-demo-site-files/0105155.pdf http://invenio-software.org/download/invenio-demo-site-files/0105155.ps.gz 2001 11 TH CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 nuDIS Working group of the ECFA-CERN Neutrino-Factory Study Group 2001-05-17 50 2001-05-25 MH SLAC 4628020 CER n 200231 PREPRINT [1] S. Geer 6989 Phys. Rev., D 57 1998 Phys. Rev. D 57 (1998) 6989 hep-ph/9712290 Phys. Rev. D 57 (1998) 6989-6997 039903 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 039903 ] [2] The Muon Collider Collab., µ+µ- Collider: a feasibility study, Report BNL-52503, Fermilab-Conf-96/092, LBNL-38946 (1996); B. Autin, A. Blondel and J. Ellis (eds.), Prospective study of muon storage rings at CERN, Report CERN 99-02, ECFA 99-197 (Geneva, 1999) [3] I. Bigi et al., The potential for neutrino physics at muon colliders and dedicated high current muon storage rings, Report BNL-67404 [4] C. Albright et al hep-ex/0008064 [5] R.D. Ball, D.A. Harris and K.S. McFarland hep-ph/0009223 submitted to the Proceedings of the Nufact '00 Workshop, June 2000, Monterey [6] H.L. Lai et al 1280 Phys. Rev., D 55 1997 Phys. Rev. D 55 (1997) 1280 hep-ph/9606399 Phys. Rev. D 55 (1997) 1280-1296 [7] V. Barone, C. Pascaud and F. Zomer 243 Eur. Phys. J., C 12 2000 Eur. Phys. J. C 12 (2000) 243 hep-ph/9907512 Eur. Phys. J. C 12 (2000) 243-262 [8] S. I. Alekhin 094022 Phys. Rev., D 63 2001 Phys. Rev. D 63 (2001) 094022 hep-ph/0011002 Phys. Rev. D 63 (2001) 094022 65 [9] G. Ridolfi 278 Nucl. Phys., A 666 2000 Nucl. Phys. A 666 (2000) 278 R.D. Ball and H.A.M. Tallini 1327 J. Phys., G 25 1999 J. Phys. G 25 (1999) 1327 S. Forte hep-ph/9409416 and hep-ph/9610238 [10] S. Forte, M.L. Mangano and G. Ridolfi hep-ph/0101192 Nucl. Phys. B 602 (2001) 585-621 to appear in Nucl. Phys., B [11] J. Blümlein and N. Kochelev 296 Phys. Lett., B 381 1996 Phys. Lett. B 381 (1996) 296 and 285 Nucl. Phys., B 498 1997 Nucl. Phys. B 498 (1997) 285 [12] D.A. Dicus 1637 Phys. Rev., D 5 1972 Phys. Rev. D 5 (1972) 1637 [13] M. Anselmino, P. Gambino and J. Kalinowski 267 Z. Phys., C 64 1994 Z. Phys. C 64 (1994) 267 M. Maul et al 443 Z. Phys., A 356 1997 Z. Phys. A 356 (1997) 443 J. Blümlein and N. Kochelev 285 Nucl. Phys., B 498 1997 Nucl. Phys. B 498 (1997) 285 V. Ravishankar 309 Nucl. Phys., B 374 1992 Nucl. Phys. B 374 (1992) 309 [14] B. Ehrnsperger and A. Schäfer 619 Phys. Lett., B 348 1995 Phys. Lett. B 348 (1995) 619 J. Lichtenstadt and H.J. Lipkin 119 Phys. Lett., B 353 1995 Phys. Lett. B 353 (1995) 119 J. Dai et al 273 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 273 P.G. Ratcliffe 383 Phys. Lett., B 365 1996 Phys. Lett. B 365 (1996) 383 N.W. Park, J. Schechter and H. Weigel 420 Phys. Lett., B 228 1989 Phys. Lett. B 228 (1989) 420 [15] A.O. Bazarko et al 189 Z. Phys., C 65 1989 Z. Phys. C 65 (1989) 189 [16] R. Mertig and W.L. van Neerven 637 Z. Phys., C 70 1996 Z. Phys. C 70 (1996) 637 W. Vogelsang 2023 Phys. Rev., D 54 1996 Phys. Rev. D 54 (1996) 2023 [17] D. de Florian and R. Sassot 6052 Phys. Rev., D 51 1995 Phys. Rev. D 51 (1995) 6052 [18] R.D. Ball, S. Forte and G. Ridolfi 255 Phys. Lett., B 378 1996 Phys. Lett. B 378 (1996) 255 [19] G. Altarelli, S. Forte and G. Ridolfi 277 Nucl. Phys., B 534 1998 Nucl. Phys. B 534 (1998) 277 and 138 Nucl. Phys. B, Proc. Suppl. 74 1999 Nucl. Phys. B Proc. Suppl. 74 (1999) 138 [20] G. Altarelli, R.D. Ball, S. Forte and G. Ridolfi 1145 Acta Phys. Pol., B 29 1998 Acta Phys. Pol. B 29 (1998) 1145 hep-ph/9803237 Acta Phys. Pol. B 29 (1998) 1145-1173 [21] H.L. Lai et al. (CTEQ Collab.) 375 Eur. Phys. J., C 12 2000 Eur. Phys. J. C 12 (2000) 375 hep-ph/9903282 Eur. Phys. J. C 12 (2000) 375-392 [22] G. Altarelli, R.D. Ball, S. Forte and G. Ridolfi 337 Nucl. Phys., B 496 1997 Nucl. Phys. B 496 (1997) 337 and 1145 Acta Phys. Pol., B 29 1998 Acta Phys. Pol. B 29 (1998) 1145 [23] G. Altarelli and G.G. Ross 391 Phys. Lett., B 212 1988 Phys. Lett. B 212 (1988) 391 A. V. Efremov and O. V. Teryaev, JINR-E2-88-287, in Proceedings of Symposium on Hadron Interactions-Theory and Phenomenology, Bechyne, June 26- July 1, 1988; ed. by J. Fischer et al (Czech. Acad. ScienceInst. Phys., 1988) p.432; R.D. Carlitz, J.C. Collins and A.H. Mueller 229 Phys. Lett., B 214 1988 Phys. Lett. B 214 (1988) 229 G. Altarelli and B. Lampe 315 Z. Phys. C 47 1990 Z. Phys. C 47 (1990) 315 W. Vogelsang 275 Z. Phys., C 50 1991 Z. Phys. C 50 (1991) 275 [24] G.M. Shore and G. Veneziano 75 Phys. Lett., B 244 1990 Phys. Lett. B 244 (1990) 75 and 23 Nucl. Phys., B 381 1992 Nucl. Phys. B 381 (1992) 23 see also G. M. Shore hep-ph/9812355 [25] S. Forte 189 Phys. Lett., B 224 1989 Phys. Lett. B 224 (1989) 189 and 1 Nucl. Phys., B 331 1990 Nucl. Phys. B 331 (1990) 1 S. Forte and E.V. Shuryak 153 Nucl. Phys., B 357 1991 Nucl. Phys. B 357 (1991) 153 [26] S.J. Brodsky and B.-Q. Ma 317 Phys. Lett., B 381 1996 Phys. Lett. B 381 (1996) 317 66 [27] S.J. Brodsky, J. Ellis and M. Karliner 309 Phys. Lett., B 206 1988 Phys. Lett. B 206 (1988) 309 J. Ellis and M. Karliner hep-ph/9601280 [28] M. Glück et al hep-ph/0011215 Phys.Rev. D63 (2001) 094005 [29] D. Adams et al. (Spin Muon Collab.) 23 Nucl. Instrum. Methods Phys. Res., A 437 1999 Nucl. Instrum. Methods Phys. Res. A 437 (1999) 23 [30] B. Adeva et al. (SMC Collab.) 112001 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 112001 P. L. Anthony et al. (E155 Collab.) 19 Phys. Lett., B 493 2000 Phys. Lett. B 493 (2000) 19 [31] R.M. Barnett 1163 Phys. Rev. Lett. 36 1976 Phys. Rev. Lett. 36 (1976) 1163 [32] M.A. Aivazis, J.C. Collins, F.I. Olness and W. Tung 3102 Phys. Rev., D 50 1994 Phys. Rev. D 50 (1994) 3102 [33] T. Gehrmann and W.J. Stirling 6100 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 6100 [34] M. Glück, E. Reya, M. Stratmann and W. Vogelsang 4775 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 4775 [35] D.J. Gross and C.H. Llewellyn Smith 337 Nucl. Phys., B 14 1969 Nucl. Phys. B 14 (1969) 337 [36] R. D. Ball and S. Forte 365 Phys. Lett., B 358 1995 Phys. Lett. B 358 (1995) 365 hep-ph/9506233 Phys.Lett. B358 (1995) 365-378 and hep-ph/9607289 [37] J. Santiago and F.J. Yndurain 45 Nucl. Phys., B 563 1999 Nucl. Phys. B 563 (1999) 45 hep-ph/9904344 Nucl.Phys. B563 (1999) 45-62 [38] V.S. Fadin and L.N. Lipatov 127 Phys. Lett., B 429 1998 Phys. Lett. B 429 (1998) 127 M. Ciafaloni, D. Colferai and G. Salam 114036 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 114036 G. Altarelli, R.D. Ball and S. Forte hep-ph/0011270 Nucl.Phys. B599 (2001) 383-423 [39] W.G. Seligman et al 1213 Phys. Rev. Lett. 79 1997 Phys. Rev. Lett. 79 (1997) 1213 [40] A. L. Kataev, G. Parente and A.V. Sidorov 405 Nucl. Phys., B 573 2000 Nucl. Phys. B 573 (2000) 405 hep-ph/9905310 Nucl.Phys. B573 (2000) 405-433 [41] A.L. Kataev, G. Parente and A.V. Sidorov, preprint CERN-TH/2000-343 hep-ph/0012014 and work in progress [42] S.I. Alekhin and A.L. Kataev 402 Phys. Lett., B 452 1999 Phys. Lett. B 452 (1999) 402 hep-ph/9812348 Phys.Lett. B452 (1999) 402-408 [43] S. Bethke R27 J. Phys., G 26 2000 J. Phys. G 26 (2000) R27 hep-ex/0004021 J.Phys. G26 (2000) R27 [44] I. Hinchliffe and A.V. Manohar 643 Annu. Rev. Nucl. Part. Sci. 50 2000 Annu. Rev. Nucl. Part. Sci. 50 (2000) 643 hep-ph/0004186 Ann.Rev.Nucl.Part.Sci. 50 (2000) 643-678 [45] H. Georgi and H.D. Politzer 1829 Phys. Rev., D 14 1976 Phys. Rev. D 14 (1976) 1829 [46] E.B. Zijlstra and W.L. van Neerven 377 Phys. Lett., B 297 1992 Phys. Lett. B 297 (1992) 377 [47] W.L. van Neerven and A. Vogt 263 Nucl. Phys., B 568 2000 Nucl. Phys. B 568 (2000) 263 hep-ph/9907472 Nucl.Phys. B568 (2000) 263-286 and hep-ph/0103123 Nucl.Phys. B603 (2001) 42-68 [48] W.L. van Neerven and A. Vogt 111 Phys. Lett., B 490 2000 Phys. Lett. B 490 (2000) 111 hep-ph/0007362 Phys.Lett. B490 (2000) 111-118 [49] S.A. Larin, T. van Ritbergen and J.A. Vermaseren 41 Nucl. Phys., B 427 1994 Nucl. Phys. B 427 (1994) 41 [50] S.A. Larin, P. Nogueira, T. van Ritbergen and J.A. Vermaseren 338 Nucl. Phys., B 492 1997 Nucl. Phys. B 492 (1997) 338 hep-ph/9605317 Nucl.Phys. B492 (1997) 338-378 [51] A. Retey and J.A. Vermaseren, preprint TTP00-13, NIKHEF-2000-018 hep-ph/0007294 Nucl.Phys. B604 (2001) 281-311 [52] J.A. Gracey 141 Phys. Lett., B 322 1994 Phys. Lett. B 322 (1994) 141 hep-ph/9401214 Phys.Lett. B322 (1994) 141-146 67 [53] J. Blümlein and A. Vogt 149 Phys. Lett., B 370 1996 Phys. Lett. B 370 (1996) 149 hep-ph/9510410 Phys.Lett. B370 (1996) 149-155 [54] S. Catani et al., preprint CERN-TH/2000-131 hep-ph/0005025 in Standard model physics (and more) at the LHC, eds. G. Altarelli and M. Mangano, Report CERN 2000-004 (Geneva, 2000) [55] A.L. Kataev, A.V. Kotikov, G. Parente and A.V. Sidorov 374 Phys. Lett. B 417 1998 Phys. Lett. B 417 (1998) 374 hep-ph/9706534 Phys.Lett. B417 (1998) 374-384 [56] M. Beneke 1 Phys. Rep. 317 1999 Phys. Rep. 317 (1999) 1 hep-ph/9807443 Phys.Rept. 317 (1999) 1-142 [57] M. Beneke and V.M. Braun hep-ph/0010208 [58] M. Dasgupta and B.R. Webber 273 Phys. Lett., B 382 1996 Phys. Lett. B 382 (1996) 273 hep-ph/9604388 [59] M. Maul, E. Stein, A. Schafer and L. Mankiewicz 100 Phys. Lett., B 401 1997 Phys. Lett. B 401 (1997) 100 hep-ph/9612300 [60] A.V. Sidorov et al. (IHEP­JINR Neutrino Detector Collab.) 405 Eur. Phys. J., C 10 1999 Eur. Phys. J. C 10 (1999) 405 hep-ex/9905038 [61] S.I. Alekhin et al. (IHEP-JINR Neutrino Detector Collab), preprint IHEP-01-18 (2001) hep-ex/0104013 [62] C. Adloff et al. (H1 Collab.) hep-ex/0012052 [63] A.D. Martin, R.G. Roberts, W.J. Stirling and R.S. Thorne 117 Eur. Phys. J., C 18 2000 Eur. Phys. J. C 18 (2000) 117 hep-ph/0007099 [64] E.B. Zijlstra and W.L. van Neerven 525 Nucl. Phys., B 383 1992 Nucl. Phys. B 383 (1992) 525 [65] S.G. Gorishny and S.A. Larin 109 Phys. Lett., B 172 1986 Phys. Lett. B 172 (1986) 109 S.A. Larin and J.A.M. Vermaseren 345 Phys. Lett., B 259 1991 Phys. Lett. B 259 (1991) 345 [66] A.L. Kataev and A.V. Sidorov, preprint CERN-TH/7235-94 hep-ph/9405254 in Proceedings of Rencontre de Moriond - Hadronic session of `QCD and high energy hadronic interactions', M´eribel-les-Allues, 1994, ed. J. Tr an Thanh V an (Editions Fronti eres, Gif-sur-Yvette, 1995), p. 189 [67] J.H. Kim et al 3595 Phys. Rev. Lett. 81 1998 Phys. Rev. Lett. 81 (1998) 3595 hep-ex/9808015 [68] J. Chyla and A.L. Kataev 385 Phys. Lett., B 297 1992 Phys. Lett. B 297 (1992) 385 hep-ph/9209213 [69] A.L. Kataev and A.V. Sidorov 179 Phys. Lett., B 331 1994 Phys. Lett. B 331 (1994) 179 hep-ph/9402342 [70] J. Blümlein and W. L. van Neerven 417 Phys. Lett., B 450 1999 Phys. Lett. B 450 (1999) 417 hep-ph/9811351 [71] A.L. Kataev and V.V. Starshenko 235 Mod. Phys. Lett., A 10 1995 Mod. Phys. Lett. A 10 (1995) 235 hep-ph/9502348 M.A. Samuel, J. Ellis and M. Karliner 4380 Phys. Rev. Lett. 74 1995 Phys. Rev. Lett. 74 (1995) 4380 hep-ph/9503411 [72] W. Bernreuther and W. Wetzel 228 Nucl. Phys., B 197 1982 Nucl. Phys. B 197 (1982) 228 [Erratum 758 Nucl. Phys., B 513 1998 Nucl. Phys. B 513 (1998) 758 ]; S.A. Larin, T. van Ritbergen and J.A. Vermaseren 278 Nucl. Phys., B 438 1995 Nucl. Phys. B 438 (1995) 278 hep-ph/9411260 K.G. Chetyrkin, B.A. Kniehl and M. Steinhauser 2184 Phys. Rev. Lett. 79 1997 Phys. Rev. Lett. 79 (1997) 2184 hep-ph/9706430 [73] E.V. Shuryak and A.I. Vainshtein 451 Nucl. Phys. B 199 1982 Nucl. Phys. B 199 (1982) 451 [74] M.A. Shifman, A.I. Vainshtein and V.I. Zakharov 385 Nucl. Phys., B 147 1979 Nucl. Phys. B 147 (1979) 385 [75] V.M. Braun and A.V. Kolesnichenko 723 Nucl. Phys., B 283 1987 Nucl. Phys. B 283 (1987) 723 68 [76] G.G. Ross and R.G. Roberts 425 Phys. Lett., B 322 1994 Phys. Lett. B 322 (1994) 425 hep-ph/9312237 [77] J. Balla, M.V. Polyakov and C. Weiss 327 Nucl. Phys., B 510 1998 Nucl. Phys. B 510 (1998) 327 hep-ph/9707515 [78] R.G. Oldeman (CHORUS Collab.) 96 Nucl. Phys. B, Proc. Suppl. 79 1999 Nucl. Phys. B, Proc. Suppl. 79 (1999) 96 R.G. Oldeman, PhD Thesis, Amsterdam University, June 2000 (unpublished) [79] U.K. Yang et al. (CCFR­NuTeV Collab.) hep-ex/0010001 [80] J.D. Bjorken 1767 Phys. Rev. 163 1967 Phys. Rev. 163 (1967) 1767 [81] W.A. Bardeen, A.J. Buras, D.W. Duke and T. Muta 3998 Phys. Rev., D 18 1978 Phys. Rev. D 18 (1978) 3998 G. Altarelli, R.K. Ellis and G. Martinelli 521 Nucl. Phys., B 143 1978 Nucl. Phys. B 143 (1978) 521 [82] K.G. Chetyrkin, S.G. Gorishny, S.A. Larin and F.V. Tkachov 230 Phys. Lett., B 137 1984 Phys. Lett. B 137 (1984) 230 [83] S.A. Larin, F.V. Tkachov and J.A. Vermaseren 862 Phys. Rev. Lett. 66 1991 Phys. Rev. Lett. 66 (1991) 862 [84] M. Arneodo 301 Phys. Rep. 240 1994 Phys. Rep. 240 (1994) 301 [85] G. Piller and W. Weise 1 Phys. Rep. 330 2000 Phys. Rep. 330 (2000) 1 hep-ph/9908230 [86] P. Amaudruz et al 3 Nucl. Phys., B 441 1995 Nucl. Phys. B 441 (1995) 3 M. Arneodo et al 12 Nucl. Phys., B 441 1995 Nucl. Phys. B 441 (1995) 12 [87] A.C. Benvenuti et al. (BCDMS Collab.) 483 Phys. Lett., B 189 1987 Phys. Lett. B 189 (1987) 483 [88] J. Gomez et al 4348 Phys. Rev., D 49 1994 Phys. Rev. D 49 (1994) 4348 [89] M.R. Adams et al. (E665 Collab.) 403 Z. Phys., C 67 1995 Z. Phys. C 67 (1995) 403 hep-ex/9505006 [90] S.L. Adler 963 Phys. Rev., B 135 1964 Phys. Rev. B 135 (1964) 963 [91] J.S. Bell 57 Phys. Rev. Lett. 13 1964 Phys. Rev. Lett. 13 (1964) 57 [92] C.A. Piketti and L. Stodolsky 571 Nucl. Phys., B 15 1970 Nucl. Phys. B 15 (1970) 571 [93] B.Z. Kopeliovich and P. Marage 1513 Int. J. Mod. Phys., A 8 1993 Int. J. Mod. Phys. A 8 (1993) 1513 [94] P.P. Allport et al. (BEBC WA59 Collab.) 417 Phys. Lett., B 232 1989 Phys. Lett. B 232 (1989) 417 [95] C. Boros, J.T. Londergan and A.W. Thomas 114030 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 114030 hep-ph/9804410 [96] U.K. Yang et al. (CCFR­NuTeV Collab.) hep-ex/0009041 [97] M.A. Aivazis, F.I. Olness and W. Tung 2339 Phys. Rev. Lett. 65 1990 Phys. Rev. Lett. 65 (1990) 2339 V. Barone, M. Genovese, N.N. Nikolaev, E. Predazzi and B. Zakharov 279 Phys. Lett., B 268 1991 Phys. Lett. B 268 (1991) 279 and 83 Z. Phys., C 70 1996 Z. Phys. C 70 (1996) 83 hep-ph/9505343 [98] R.S. Thorne and R.G. Roberts 303 Phys. Lett., B 421 1998 Phys. Lett. B 421 (1998) 303 hep-ph/9711223 [99] A.D. Martin, R.G. Roberts, W.J. Stirling and R.S. Thorne 463 Eur. Phys. J., C 4 1998 Eur. Phys. J. C 4 (1998) 463 hep-ph/9803445 [100] L.L. Frankfurt, M.I. Strikman and S. Liuti 1725 Phys. Rev. Lett. 65 1990 Phys. Rev. Lett. 65 (1990) 1725 [101] R. Kobayashi, S. Kumano and M. Miyama 465 Phys. Lett., B 354 1995 Phys. Lett. B 354 (1995) 465 hep-ph/9501313 [102] K.J. Eskola, V.J. Kolhinen and P.V. Ruuskanen 351 Nucl. Phys., B 535 1998 Nucl. Phys. B 535 (1998) 351 hep-ph/9802350 69 [103] S.A. Kulagin hep-ph/9812532 [104] P.V. Landshoff, J.C. Polkinghorne and R.D. Short 225 Nucl. Phys., B 28 1971 Nucl. Phys. B 28 (1971) 225 [105] S.A. Kulagin, G. Piller and W. Weise 1154 Phys. Rev., C 50 1994 Phys. Rev. C 50 (1994) 1154 nucl-th/9402015 [106] S.V. Akulinichev, S.A. Kulagin and G.M. Vagradov 485 Phys. Lett., B 158 1985 Phys. Lett. B 158 (1985) 485 [107] S.A. Kulagin 653 Nucl. Phys., A 500 1989 Nucl. Phys. A 500 (1989) 653 [108] G.B. West, Ann. Phys.NY : 74 (1972) 464 [109] S.A. Kulagin and A.V. Sidorov 261 Eur. Phys. J., A 9 2000 Eur. Phys. J. A 9 (2000) 261 hep-ph/0009150 [110] A.C. Benvenuti et al. (BCDMS Collab.) 29 Z. Phys., C 63 1994 Z. Phys. C 63 (1994) 29 [111] M. Vakili et al. (CCFR Collab.) 052003 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 052003 hep-ex/9905052 [112] S.A. Kulagin 435 Nucl. Phys., A 640 1998 Nucl. Phys. A 640 (1998) 435 nucl-th/9801039 [113] I.R. Afnan, F. Bissey, J. Gomez, A.T. Katramatou, W. Melnitchouk, G.G. Petratos and A.W. Thomas nucl-th/0006003 [114] V. Guzey et al hep-ph/0102133 [115] S. Sarantakos, A. Sirlin and W.J. Marciano 84 Nucl. Phys., B 217 1983 Nucl. Phys. B 217 (1983) 84 D.Y. Bardin and V.A. Dokuchaeva 975 Sov. J. Nucl. Phys. 43 1986 Sov. J. Nucl. Phys. 43 (1986) 975 D.Y. Bardin and V.A. Dokuchaeva 839 Nucl. Phys., B 287 1987 Nucl. Phys. B 287 (1987) 839 [116] G. Degrassi et al. Phys. Lett., B350 (95) 75; G. Degrassi and P. Gambino 3 Nucl. Phys., B 567 2000 Nucl. Phys. B 567 (2000) 3 [117] J.N. Bahcall, M. Kamionkowski and A. Sirlin 6146 Phys. Rev., D 51 1995 Phys. Rev. D 51 (1995) 6146 astro-ph/9502003 [118] See F. Jegerlehner hep-ph/9901386 and references therein [119] K.S. McFarland et al. (NuTeV Collab.) hep-ex/9806013 in Proceedings 33rd Rencontres de Moriond on Electroweak Interactions and Unified Theories, Les Arcs, 1998 [120] M. E. Peskin and T. Takeuchi 381 Phys. Rev., D 46 1992 Phys. Rev. D 46 (1992) 381 W. J. Marciano and J. L. Rosner 2963 Phys. Rev. Lett. 65 1990 Phys. Rev. Lett. 65 (1990) 2963 [Erratum 2963 Phys. Rev. Lett. 68 1990 Phys. Rev. Lett. 68 (1990) 2963 ] [121] G. Altarelli and R. Barbieri 161 Phys. Lett., B 253 1991 Phys. Lett. B 253 (1991) 161 D. C. Kennedy and P. Langacker 2967 Phys. Rev. Lett. 65 1990 Phys. Rev. Lett. 65 (1990) 2967 [Erratum 2967 Phys. Rev. Lett. 66 1990 Phys. Rev. Lett. 66 (1990) 2967 ] [122] D.E. Groom et al, Particle Data Group 1 Eur. Phys. J. 15 2000 Eur. Phys. J. 15 (2000) 1 [123] P. Migliozzi et al 217 Phys. Lett., B 462 1999 Phys. Lett. B 462 (1999) 217 [124] J. Finjord and F. Ravndal 61 Phys. Lett., B 58 1975 Phys. Lett. B 58 (1975) 61 [125] R.E. Shrock and B.W. Lee 2539 Phys. Rev., D 13 1976 Phys. Rev. D 13 (1976) 2539 [126] C. Avilez et al 149 Phys. Lett., B 66 1977 Phys. Lett. B 66 (1977) 149 [127] C. Avilez and T. Kobayashi 3448 Phys. Rev., D 19 1979 Phys. Rev. D 19 (1979) 3448 [128] C. Avilez et al 709 Phys. Rev., D 17 1978 Phys. Rev. D 17 (1978) 709 70 [129] A. Amer et al 48 Phys. Lett., B 81 1979 Phys. Lett. B 81 (1979) 48 [130] S.G. Kovalenko 934 Sov. J. Nucl. Phys. 52 1990 Sov. J. Nucl. Phys. 52 (1990) 934 [131] G.T. Jones et al. (WA21 Collab.) 593 Z. Phys., C 36 1987 Z. Phys. C 36 (1987) 593 [132] V.V. Ammosov et al 247 JETP Lett. 58 1993 JETP Lett. 58 (1993) 247 [133] D. Son et al 2129 Phys. Rev., D 28 1983 Phys. Rev. D 28 (1983) 2129 [134] N. Ushida et al. (E531 Collab.) 375 Phys. Lett., B 206 1988 Phys. Lett. B 206 (1988) 375 [135] N. Armenise et al 409 Phys. Lett., B 104 1981 Phys. Lett. B 104 (1981) 409 [136] G. De Lellis, P. Migliozzi and P. Zucchelli 7 Phys. Lett., B 507 2001 Phys. Lett. B 507 (2001) 7 hep-ph/0104066 [137] G. Corcella et al hep-ph/0011363 [138] T. Sjöstrand, report LU-TP-95-20 hep-ph/9508391 [139] G. Ingelman et al 108 Comput. Phys. Commun. 101 1997 Comput. Phys. Commun. 101 (1997) 108 [140] T. Bolton hep-ex/9708014 [141] P. Annis et al. (CHORUS Collab.) 458 Phys. Lett., B 435 1998 Phys. Lett. B 435 (1998) 458 [142] J. Conrad et al 1341 Rev. Mod. Phys. 70 1998 Rev. Mod. Phys. 70 (1998) 1341 [143] T. Adams et al. (NuTeV Collab.) 092001 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 092001 [144] A.E. Asratian et al. (BBCN Collab.) 55 Z. Phys., C 58 1993 Z. Phys. C 58 (1993) 55 [145] J.D. Richman and P.R. Burchat 893 Rev. Mod. Phys. 67 1995 Rev. Mod. Phys. 67 (1995) 893 [146] J. Collins, L. Frankfurt and M. Strikman 2982 Phys. Rev., D 56 1997 Phys. Rev. D 56 (1997) 2982 [147] A.V. Radyushkin 5524 Phys. Rev., D 56 1997 Phys. Rev. D 56 (1997) 5524 [148] S.J. Brodsky, L. Frankfurt, J.F. Gunion, A.H. Mueller and M. Strikman 3134 Phys. Rev., D 50 1994 Phys. Rev. D 50 (1994) 3134 A. V. Radyushkin 333 Phys. Lett., B 385 1996 Phys. Lett. B 385 (1996) 333 L. Mankiewicz, G. Piller and T. Weigl 119 Eur. Phys. J., C 5 1998 Eur. Phys. J. C 5 (1998) 119 and 017501 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 017501 M. Vanderhaeghen, P.A.M. Guichon and M. Guidal 5064 Phys. Rev. Lett. 80 1998 Phys. Rev. Lett. 80 (1998) 5064 [149] B. Lehmann-Dronke, P.V. Pobylitsa, M.V. Polyakov, A. Schäfer and K. Goeke 147 Phys. Lett., B 475 2000 Phys. Lett. B 475 (2000) 147 B. Lehmann-Dronke, M.V. Polyakov, A. Schäfer and K. Goeke 114001 Phys. Rev., D 63 2001 Phys. Rev. D 63 (2001) 114001 hep-ph/0012108 [150] M. Wirbel, B. Stech and M. Bauer 637 Z. Phys., C 29 1985 Z. Phys. C 29 (1985) 637 M. Bauer and M. Wirbel 671 Z. Phys. 42 1989 Z. Phys. 42 (1989) 671 [151] H-n. Li and B. Meli´c 695 Eur. Phys. J., C 11 1999 Eur. Phys. J. C 11 (1999) 695 [152] A. Abada et al 268 Nucl. Phys. B, Proc. Suppl. 83 2000 Nucl. Phys. B, Proc. Suppl. 83 (2000) 268 D. Becirevic et al hep-lat/0002025 A. Ali Khan et al hep-lat/0010009 A. S. Kronfeld hep-ph/0010074 L. Lellouch and C.J.D. Lin (UKQCD Collab.) hep-ph/0011086 71 [153] A.V. Radyushkin 014030 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 014030 [154] A.D. Martin, R.G. Roberts and W.J. Stirling 155 Phys. Lett., B 354 1995 Phys. Lett. B 354 (1995) 155 [155] J.T. Jones et al. (WA21 Collab.) 23 Z. Phys., C 28 1987 Z. Phys. C 28 (1987) 23 [156] S. Willocq et al. (WA59 Collab.) 207 Z. Phys., C 53 1992 Z. Phys. C 53 (1992) 207 [157] D. DeProspo et al. (E632 Collab.) 6691 Phys. Rev., D 50 1994 Phys. Rev. D 50 (1994) 6691 [158] P. Astier et al. (NOMAD Collab.) 3 Nucl. Phys., B 588 2000 Nucl. Phys. B 588 (2000) 3 [159] L. Trentadue and G. Veneziano 201 Phys. Lett., B 323 1994 Phys. Lett. B 323 (1994) 201 [160] M. Anselmino, M. Boglione, J. Hansson, and F. Murgia 828 Phys. Rev., D 54 1996 Phys. Rev. D 54 (1996) 828 [161] R.L. Jaffe 6581 Phys. Rev., D 54 1996 Phys. Rev. D 54 (1996) 6581 [162] J. Ellis, D.E. Kharzeev and A. Kotzinian 467 Z. Phys., C 69 1996 Z. Phys. C 69 (1996) 467 [163] D. de Florian, M. Stratmann, and W. Vogelsang 5811 Phys. Rev., D 57 1998 Phys. Rev. D 57 (1998) 5811 [164] A. Kotzinian, A. Bravar and D. von Harrach 329 Eur. Phys. J., C 2 1998 Eur. Phys. J. C 2 (1998) 329 [165] A. Kotzinian hep-ph/9709259 [166] S.L. Belostotski 526 Nucl. Phys. B, Proc. Suppl. 79 1999 Nucl. Phys. B, Proc. Suppl. 79 (1999) 526 [167] D. Boer, R. Jakob, and P.J. Mulders 471 Nucl. Phys., B 564 2000 Nucl. Phys. B 564 (2000) 471 [168] C. Boros, J.T. Londergan and A.W. Thomas 014007 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 014007 and D : 62 (2000) 014021 [169] D. Ashery and H.J. Lipkin 263 Phys. Lett., B 469 1999 Phys. Lett. B 469 (1999) 263 [170] B-Q. Ma, I. Schmidt, J. Soffer, and J-Y. Yang 657 Eur. Phys. J., C 16 2000 Eur. Phys. J. C 16 (2000) 657 114009 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 114009 [171] M. Anselmino, M. Boglione, and F. Murgia 253 Phys. Lett., B 481 2000 Phys. Lett. B 481 (2000) 253 [172] M. Anselmino, D. Boer, U. D'Alesio, and F. Murgia 054029 Phys. Rev., D 63 2001 Phys. Rev. D 63 (2001) 054029 [173] D. Indumathi, H.S. Mani and A. Rastogi 094014 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 094014 [174] M. Burkardt and R.L. Jaffe 2537 Phys. Rev. Lett. 70 1993 Phys. Rev. Lett. 70 (1993) 2537 [175] I.I. Bigi 43 Nuovo Cimento 41 1977 Nuovo Cimento 41 (1977) 43 and 581 [176] W. Melnitchouk and A.W. Thomas 311 Z. Phys., A 353 1996 Z. Phys. A 353 (1996) 311 [177] J. Ellis, M. Karliner, D.E. Kharzeev and M.G. Sapozhnikov 256 Nucl. Phys., A 673 2000 Nucl. Phys. A 673 (2000) 256 [178] R. Carlitz and M. Kislinger 336 Phys. Rev., D 2 1970 Phys. Rev. D 2 (1970) 336 [179] D. Naumov hep-ph/0101355 [180] P. Migliozzi et al 19 Phys. Lett., B 494 2000 Phys. Lett. B 494 (2000) 19 [181] A. Alton et al hep-ex/0008068 72 [182] Y. Grossman 141 Phys. Lett., B 359 1995 Phys. Lett. B 359 (1995) 141 [183] P. Langacker, M. Luo and A. Mann 87 Rev. Mod. Phys. 64 1992 Rev. Mod. Phys. 64 (1992) 87 [184] F. Cuypers and S. Davidson 503 Eur. Phys. J., C 2 1998 Eur. Phys. J. C 2 (1998) 503 S. Davidson, D. Bailey and B.A. Campbell 613 Z. Phys., C 61 1994 Z. Phys. C 61 (1994) 613 [185] A. Leike 143 Phys. Rep. 317 1999 Phys. Rep. 317 (1999) 143 [186] A. Datta, R. Gandhi, B. Mukhopadhyaya and P. Mehta hep-ph/0011375 [187] G. Giudice et al., Report of the Stopped-Muon Working Group, to appear. 73 eng BNL-40718 FERMILAB-Pub-87-222-T Nason, P Brookhaven Nat. Lab. The total cross section for the production of heavy quarks in hadronic collisions Upton, IL Brookhaven Nat. Lab. 23 Dec 1987 42 p SzGeCERN Particle Physics - Phenomenology Dawson, S Ellis, R K 11 1987 1990-01-29 50 2002-01-04 BATCH SLAC 1773607 h 198804n PREPRINT eng CERN-PRE-82-006 Ellis, J AUTHOR|(SzGeCERN)aaa0005 CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 From the standard model to grand unification Geneva CERN 1982 mult. p SzGeCERN General Theoretical Physics 1982 11 TH 1990-01-28 50 2001-09-15 BATCH 820332 oai:cds.cern.ch:CERN-PRE-82-006 cern:theory h 1982n PREPRINT astro-ph/0104076 eng Dev, A Delhi University Cosmic equation of state, Gravitational Lensing Statistics and Merging of Galaxies 4 Apr 2001 28 p In this paper we investigate observational constraints on the cosmic equation of state of dark energy ($p = w \rho$) using gravitational lensing statistics. We carry out likelihood analysis of the lens surveys to constrain thecosmological parameters $\Omega_{m}$ and $w$. We start by constraining $\Omega_{m}$ and $w$ in the no-evolution model of galaxies where the comoving number density of galaxies is constant. We extend our study to evolutionary modelsof galaxies - Volmerange $&$ Guiderdoni Model and Fast-Merging Model (of Broadhurst, Ellis $&$ Glazebrook). For the no-evolution model we get $w \leq -0.24$ and $\Omega_{m}\leq 0.48$ at $1\sigma$ (68% confidence level). For theVolmerange $&$ Guiderdoni Model we have $w \leq -0.2$ and $\Omega_{m} \leq 0.58$ at $1 \sigma$, and for the Fast Merging Model we get $w \leq -0.02$ and $\Omega_{m} \leq 0.93$ at $1\sigma$. For the case of constant $\Lambda$ ($w=-1$), all the models permit $\Omega_{m} = 0.3$ with 68% CL. We observe that the constraints on $w$ and $\Omega_{m}$ (and on $\Omega_{m}$ in the case of $w = -1$) obtained in the case of evolutionary models are weaker than thoseobtained in the case of the no-evolution model. LANL EDS SzGeCERN Astrophysics and Astronomy Jain, D Panchapakesan, N Mahajan, S Bhatia, V B Deepak Jain <deepak@physics.du.ac.in> http://invenio-software.org/download/invenio-demo-site-files/0104076.pdf http://invenio-software.org/download/invenio-demo-site-files/0104076.ps.gz 2001 10 Delhi University 2001-04-05 00 2001-04-10 BATCH Dev, Abha Jain, Deepak CER n 200231 PREPRINT [1] S. Perlmutter et al 565 Astrophys. J. 517 1999 Astrophys. J. 517 (1999) 565 [2] S. Perlmutter et al., Phy. Rev. Lett.: 83 (1999) 670 [3] A. G. Riess et al 1009 Astron. J. 116 1998 Astron. J. 116 (1998) 1009 [4] P. de Bernardis et al 955 Nature 404 2000 Nature 404 (2000) 955 [5] P. J. Ostriker & P. J. Steinhardt 600 Nature 377 1995 Nature 377 (1995) 600 [6] V. Sahni & Alexei Starobinsky, IJMP, D : 9 (2000) 373 [7] L. F. Bloomfield Torres & I. Waga 712 Mon. Not. R. Astron. Soc. 279 1996 Mon. Not. R. Astron. Soc. 279 (1996) 712 [8] V. Silveira & I. Waga 4890 Phys. Rev., D 50 1994 Phys. Rev. D 50 (1994) 4890 [9] V.Silveira & I. Waga 4625 Phys. Rev., D 56 1997 Phys. Rev. D 56 (1997) 4625 [10] I. Waga & Ana P. M. R. Miceli, Phy. Rev. D : 59 (1999) 103507 [11] M. S. Turner & M. White, Phy. Rev. D : 56 (1997) 4439 [12] D. Huterer & M. S. Turner, Phy. Rev. D : 60 (1999) 081301 [13] T. Chiba, N. Sugiyama & T. Nakamura, Mon. Not. R. As-tron. Soc.: 289 (1997) L5 [14] T. Chiba, N. Sugiyama & T. Nakamura, Mon. Not. R. As-tron. Soc.: 301 (1998) 72 [15] P. J. E. Peebles 439 Astrophys. J. 284 1984 Astrophys. J. 284 (1984) 439 [16] B. Ratra & P. J. E. Peebles, Phy. Rev. D : 37 (1988) 3406 [17] R. R. Caldwell, R. Dave & P. J. Steinhardt, Phy. Rev. Lett.: 80 (1998) 1582 [18] G. Efstathiou astro-ph/9904356 (1999) [19] J. A. S. Lima & J. S. Alcaniz 893 Mon. Not. R. Astron. Soc. 317 2000 Mon. Not. R. Astron. Soc. 317 (2000) 893 [20] Wang et al 17 Astrophys. J. 530 2000 Astrophys. J. 530 (2000) 17 [21] H. W. Rix, D. Maoz, E. Turner & M. Fukugita 49 Astrophys. J. 435 1994 Astrophys. J. 435 (1994) 49 [22] S. Mao & C. S. Kochanek 569 Mon. Not. R. Astron. Soc. 268 1994 Mon. Not. R. Astron. Soc. 268 (1994) 569 [23] D. Jain, N. Panchapakesan, S. Mahajan & V. B. Bhatia, MPLA : 15 (2000) 41 [24] T. Broadhurst, R. Ellis & K. Glazebrook 55 Nature 355 1992 Nature 355 (1992) 55 [BEG] [25] B. Rocca-Volmerange & B. Guiderdoni, Mon. Not. R. As-tron. Soc.: 247 (1990) 166 [26] A. Toomre, in The Evolution of Galaxies and Stellar Pop-ulations eds: B. M. Tinsley & R. B. Larson ( Yale Univ. Observatory), p-401 (1977) [27] F. Schwezier 109 Astron. J. 111 1996 Astron. J. 111 (1996) 109 [28] O. J. Eggen, D. Lynden-Bell & A. R. Sandage 748 Astrophys. J. 136 1962 Astrophys. J. 136 (1962) 748 [29] R. B. Partridge & P. J. E. Peebles 868 Astrophys. J. 147 1967 Astrophys. J. 147 (1967) 868 [30] S. P. Driver et al L23 Astrophys. J. 449 1995 Astrophys. J. 449 (1995) L23 [31] J. M. Burkey et al L13 Astrophys. J. 429 1994 Astrophys. J. 429 (1994) L13 [32] S. M. Faber et al 668 Astrophys. J. 204 1976 Astrophys. J. 204 (1976) 668 [33] R. G. Carlberg et al 540 Astrophys. J. 435 1994 Astrophys. J. 435 (1994) 540 [34] S. E. Zepf 377 Nature 390 1997 Nature 390 (1997) 377 [35] K. Glazebrook et al 157 Mon. Not. R. Astron. Soc. 273 1995 Mon. Not. R. Astron. Soc. 273 (1995) 157 [36] S. J. Lilly et al 108 Astrophys. J. 455 1995 Astrophys. J. 455 (1995) 108 [37] R. S. Ellis et al 235 Mon. Not. R. Astron. Soc. 280 1996 Mon. Not. R. Astron. Soc. 280 (1996) 235 [38] R. S. Ellis, Ann. Rev 389 Astron. Astrophys. 35 1997 Astron. Astrophys. 35 (1997) 389 [39] B. Guiderdoni & B. Rocca-Volmerange 435 Astron. Astrophys. 252 1991 Astron. Astrophys. 252 (1991) 435 [40] S. E. Zepf, & D. C. Koo 34 Astrophys. J. 337 1989 Astrophys. J. 337 (1989) 34 [41] H. K. C. Yee & E. Ellingson 37 Astrophys. J. 445 1995 Astrophys. J. 445 (1995) 37 [42] S. Cole et al 781 Mon. Not. R. Astron. Soc. 271 1994 Mon. Not. R. Astron. Soc. 271 (1994) 781 [43] C. M. Baugh, S. Cole & C. S. Frenk L27 Mon. Not. R. Astron. Soc. 282 1996 Mon. Not. R. Astron. Soc. 282 (1996) L27 [44] C. M. Baugh, S. Cole & C. S. Frenk 1361 Mon. Not. R. Astron. Soc. 283 1996 Mon. Not. R. Astron. Soc. 283 (1996) 1361 [45] C. M. Baugh et al 504 Astrophys. J. 498 1998 Astrophys. J. 498 (1998) 504 [46] P. Schechter 297 Astrophys. J. 203 1976 Astrophys. J. 203 (1976) 297 [47] W. H. Press & P. Schechter 487 Astrophys. J. 187 1974 Astrophys. J. 187 (1974) 487 [48] J. E. Gunn & J. R. Gott 1 Astrophys. J. 176 1972 Astrophys. J. 176 (1972) 1 [49] J. Loveday, B. A. Peterson, G. Efstathiou & S. J. Maddox 338 Astrophys. J. 390 1994 Astrophys. J. 390 (1994) 338 [50] E. L. Turner, J. P. ostriker & J. R. Gott III 1 Astrophys. J. 284 1984 Astrophys. J. 284 (1984) 1 [51] E. L. Turner L43 Astrophys. J. 365 1990 Astrophys. J. 365 (1990) L43 [52] M. Fukugita & E. L. Turner 99 Mon. Not. R. Astron. Soc. 253 1991 Mon. Not. R. Astron. Soc. 253 (1991) 99 [53] M. Fukugita, T. Futamase, M. Kasai & E. L. Turner, As-trophys. J.: 393 (1992) 3 [54] C. S. Kochanek 12 Astrophys. J. 419 1993 Astrophys. J. 419 (1993) 12 [55] C. S. Kochanek 638 Astrophys. J. 466 1996 Astrophys. J. 466 (1996) 638 [56] F. D. A. Hartwich & D. Schade, Ann. Rev. Astron. Astro-phys.: 28 (1990) 437 [57] Yu-Chung N. Cheng & L. M. Krauss 697 Int. J. Mod. Phys., A 15 2000 Int. J. Mod. Phys. A 15 (2000) 697 [58] J. N. Bahcall et al 56 Astrophys. J. 387 1992 Astrophys. J. 387 (1992) 56 [59] P. C. Hewett et al., Astron. J.109, 1498(LBQS) (1995) [60] D. Maoz et al., Astrophys. J.409, 28(Snapshot) (1993) [61] D. Crampton, R. D. McClure & J. M. Fletcher 23 Astrophys. J. 392 1992 Astrophys. J. 392 (1992) 23 [62] H. K. C. Yee, A. V. Filippenko & D. Tang 7 Astron. J. 105 1993 Astron. J. 105 (1993) 7 [63] J. Surdej et al 2064 Astron. J. 105 1993 Astron. J. 105 (1993) 2064 [64] D. Jain, N. Panchapakesan, S. Mahajan & V. B. Bhatia astro-ph/9807129 (1998) [65] D. Jain, N. Panchapakesan, S. Mahajan & V. B. Bhatia, IJMP, A : 13 (1998) 4227 [66] M. lampton, B. Margon & S. Bowyer 177 Astrophys. J. 208 1976 Astrophys. J. 208 (1976) 177 eng DOE-ER-40048-24-P-4 Abbott, R B Washington U. Seattle Cosmological perturbations in Kaluza-Klein models Washington, DC US. Dept. Energy. Office Adm. Serv. Nov 1985 26 p SzGeCERN General Theoretical Physics Bednarz, B F Ellis, S D 1985 11 1990-01-29 50 2002-01-04 BATCH h 198608n PREPRINT eng CERN-PPE-92-085 HEPHY-PUB-568 Albajar, C CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 Multifractal analysis of minimum bias events in \Sqrt s = 630 GeV $\overline{p}$p collisions Geneva CERN 1 Jun 1992 27 p SzGeCERN Particle Physics - Experimental Results Allkofer, O C Apsimon, R J Bartha, S Bezaguet, A Bohrer, A Buschbeck, B Cennini, P Cittolin, S Clayton, E Coughlan, J A Dau, D Della Negra, M Demoulin, M Dibon, H Dowell, J D Eggert, K Eisenhandler, E F Ellis, N Faissner, H Fensome, I F Ferrando, A Garvey, J Geiser, A Givernaud, A Gonidec, A Jank, W Jorat, G Josa-Mutuberria, I Kalmus, P I P Karimaki, V Kenyon, I R Kinnunen, R Krammer, M Lammel, S Landon, M Levegrun, S Lipa, P Markou, C Markytan, M Maurin, G McMahon, S Meyer, T Moers, T Morsch, A Moulin, A Naumann, L Neumeister, N Norton, A Pancheri, G Pauss, F Pietarinen, E Pimia, M Placci, A Porte, J P Priem, R Prosi, R Radermacher, E Rauschkolb, M Reithler, H Revol, J P Robinson, D Rubbia, C Salicio, J M Samyn, D Schinzel, D Schleichert, R Seez, C Shah, T P Sphicas, P Sumorok, K Szoncso, F Tan, C H Taurok, A Taylor, L Tether, S Teykal, H F Thompson, G Terrente-Lujan, E Tuchscherer, H Tuominiemi, J Virdee, T S von Schlippe, W Vuillemin, V Wacker, K Wagner, H Walzel, G Weselka, D Wulz, C E AACHEN - BIRMINGHAM - CERN - HELSINKI - KIEL - IMP. COLL. LONDON - QUEEN MARY COLL. LONDON - MADRID CIEMAT - MIT - RUTHERFORD APPLETON LAB. - VIENNA Collaboration 1992 13 UA1 PPE P00003707 CERN SPS CERN 1992-06-16 50 2001-04-12 BATCH 37-46 Z. Phys., C 56 1992 SLAC 2576562 oai:cds.cern.ch:CERN-PPE-92-085 cern:experiment n 199226 a1992 ARTICLE eng CERN-TH-4036 Ellis, J AUTHOR|(SzGeCERN)aaa0005 CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 Non-compact supergravity solves problems Geneva CERN Oct 1984 15 p SzGeCERN General Theoretical Physics Kahler manifolds gravitinos axions constraints noscale Enqvist, K Nanopoulos, D V 1985 13 TH CERN 1990-01-29 50 2001-09-15 BATCH 357-362 Phys. Lett., B 151 1985 oai:cds.cern.ch:CERN-TH-4036 cern:theory h 198451 a1985 ARTICLE eng STAN-CS-81-898-MF Whang, K Stanford University Separability as a physical database design methodology Stanford, CA Stanford Univ. Comput. Sci. Dept. Oct 1981 60 p Ordered for J Blake/DD SzGeCERN Computing and Computers Wiederhold, G Sagalowicz, D 1981 19 Stanford Univ. 1990-01-28 50 2002-01-04 BATCH n 198238n REPORT eng JYFL-RR-82-7 Arje, J University of Jyvaskyla Charge creation and reset mechanisms in an ion guide isotope separator (IGIS) Jyvaskyla Finland Univ. Dept. Phys. Jul 1982 18 p SzGeCERN Detectors and Experimental Techniques 1982 19 Jyväsklä Univ. 1990-01-28 50 2002-01-04 BATCH n 198238n REPORT 0898710022 eng 519.2 Lindley, Dennis Victor University College London Bayesian statistics a review Philadelphia, PA SIAM 1972 88 p CBMS-NSF Reg. Conf. Ser. Appl. Math. 2 Society for Industrial and Applied Mathematics. Philadelphia 1972 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK 0844621951 eng 621.396.615 621.385.3 Hamilton, Donald R MIT Klystrons and microwave triodes New York, NY McGraw-Hill 1948 547 p M.I.T. Radiat. Lab. 7 Knipp, Julian K Kuper, J B Horner 1948 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK eng 621.313 621.382.333.33 Draper, Alec Electrical machines 2nd ed London Longmans 1967 404 p Electrical engineering series 1967 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK 1563964554 eng 539.1.078 539.143.44 621.384.8 Quadrupole mass spectrometry and its applications Amsterdam North-Holland 1976 ed. Dawson, Peter H 368 p 1976 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK 2225350574 fre 518.5:62.01 Dasse, Michel Analyse informatique t.1 Les preliminaires Paris Masson 1972 Informatique 1972 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK 2225350574 fre 518.5:62.01 Dasse, Michel Analyse informatique t.2 L'accomplissement Paris Masson 1972 Informatique 1972 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK 0023506709 eng 519.2 Harshbarger, Thad R Introductory statistics a decision map 2nd ed New York, NY Macmillan 1977 597 p 1977 21 1990-01-27 00 2002-04-12 BATCH m 198604 BOOK eng 519.2 Fry, Thornton C Bell Teleph Labs Probability and its engineering uses Princeton, NJ Van Nostrand 1928 490 p Bell Teleph Lab. Ser. 1928 21 1990-01-27 00 2002-04-12 BATCH m 198606 BOOK 0720421039 eng 517.11 Kleene, Stephen Cole University of Wisconsin Introduction to metamathematics Amsterdam North-Holland 1952 (repr.1964.) 560 p Bibl. Matematica 1 1952 21 1990-01-27 00 2002-04-12 BATCH m 198606 BOOK eng 621.38 Hughes, Robert James Introduction to electronics London English Univ. Press 1962 432 p 65/0938, Blair, W/PE, pp Pipe, Peter 1962 21 1990-01-27 50 2002-04-12 BATCH m 198606 BOOK eng 519.2 518.5:519.2 Burford, Roger L Indiana University Statistics a computer approach Columbus, OH Merrill 1968 814 p 1968 21 1990-01-27 00 2002-04-12 BATCH m 198606 BOOK 0471155039 eng 539.1.075 Chiang, Hai Hung Basic nuclear electronics New York, NY Wiley 1969 354 p 1969 21 1990-01-27 00 2002-04-12 BATCH m 198606 BOOK eng 621-5 Dransfield, Peter Engineering systems and automatic control Englewood Cliffs, N.J. Prentice-Hall 1968 432 p 1968 21 1990-01-27 00 2002-04-12 BATCH m 198606 BOOK 0387940758 eng 537.52 Electrical breakdown in gases London Macmillan 1973 ed. Rees, J A 303 p 1973 21 1990-01-27 00 2002-04-12 BATCH m 198606 BOOK eng Tavanapong, W University of Central Florida A High-performance Video Browsing System Orlando, FL Central Florida Univ. 1999 dir. Hua, K A 172 p No fulltext Not held by the library Ph.D. : Univ. Central Florida : 1999 Recent advances in multimedia processing technologies, internetworking technologies, and the World Wide Web phenomenon have resulted in a vast creation and use of digital videos in all kinds of applications ranging fromentertainment, business solutions, to education. Designing efficient techniques for searching and retrieving videos over the networks becomes increasingly more important as future applications will include a huge volume of multimediacontent. One practical approach to search for a video segment is as follows. Step 1: Apply an initial search to determine the set of candidate videos. Step 2: Browse the candidates to identify the relevant videos. Step 3: Searchwithin the relevant videos for interesting video segments. In practice, a user might have to iterate through these steps multiple times in order to locate the desired video segments. Independently, database researchers have beeninvestigating techniques for the initial search in Step 1. Multimedia researchers have proposed several techniques for video browsing in Step 2. Computer communications researchers have been investigating video delivery techniques. Iidentify that searching for video data is an interactive process which involves the transmission of video data. Developing techniques for each step independently could result in a system with less performance. In this dissertation, Ipresent a unified approach taking into accounts all fundamental characteristics of multimedia data. I evaluated the proposed techniques through both simulation and system implementation. The resulting system is less expensive andoffers better performance. The simulation results demonstrate that the proposed technique can offer video browsing and search operations with little delays and with minimum storage overhead at the server. Client machines can handletheir search operations without involving the server making the design more scalable, which is vital for large systems deployed over the Internet. The implemented system shows that the visual quality of the browsing and the searchoperations are excellent. PROQUEST200009 SzGeCERN Computing and Computers THESIS notheld 1999 14 2000-09-22 00 2002-02-22 BATCH PROQUEST 9923724 PROQUEST DAI-B60/03p1177Sep1999 n 200034 THESIS eng Teshome, D California State Univ Neural Networks For Speech Recognition Of A Phonetic Language Long Beach, CA Calif. State Univ. 1999 55 p No fulltext Not held by the library Ms : California State Univ. : 1999 The goal of this thesis is to explore a possibility for a viable alternative/replacement to the Amharic typewriter. Amharic is the national language of Ethiopia. It is one of the oldest languages in the world. Actually, the root-language of Amharic, called Geez, is a descendent of Sabean, which is the direct ancestor of all Semitic languages including English. A phonetic language with 276 phonemes/characters, Amharic has posed quite a challenge to those who,like the author of this thesis, have attempted to design an easy-to-use word processor that interfaces with the conventional keyboard. With current Amharic word processing software, each character requires an average of threekeystrokes thus making typing Amharic literature quite a task. This thesis researches the feasibility of developing a PC-based speech recognition system to recognize the spoken phonemes of the Amharic language. Artificial NeuralNetworks are used for the recognition of spoken alphabets that form Amharic words. A neural network with feed-forward architecture is trained with a series of alphabets and is evaluated on its ability to recognize subsequent testdata. The neural network used in this project is a static classification network; that is, it focuses on the frequency domain of speech while making no attempt to process temporal information. The network training procedure uses thegeneralized Delta Rule. The recognition system developed in this project is an Isolated Speech Recognition System. The approach taken is to recognize the spoken word character by character. This approach is expected to work well dueto the phonetic nature of Amharic. PROQUEST200009 SzGeCERN Computing and Computers THESIS notheld 1999 14 2000-09-22 00 2002-02-22 BATCH PROQUEST 1397120 PROQUEST MAI38/02p448Apr2000 n 200034 THESIS eng Topcuoglu, H R Syracuse Univ. Scheduling Task Graphs In Heterogeneous Computing Environments Syracuse, NY Syracuse Univ. 1999 dir. Hariri, S 126 p No fulltext Not held by the library Ph.D. : Syracuse Univ. : 1999 Efficient application scheduling is critical for achieving high performance in heterogeneous computing environments. An application is represented by a directed acyclic graph (DAG) whose nodes represent tasks and whose edgesrepresent communication messages and precedence constraints among the tasks. The general task-scheduling problem maps the tasks of an application on processors and orders their execution so that task precedence requirements aresatisfied and a minimum schedule length is obtained. The task-scheduling problem has been shown to be NP- complete in general cases as well as in several restricted cases. Although a large number of scheduling heuristics arepresented in the literature, most of them target homogeneous processors. Existing algorithms for heterogeneous processors are not generally efficient because of their high complexity and the quality of their results. This thesisstudies the scheduling of DAG-structured application tasks on heterogeneous domains. We develop two novel low-complexity and efficient scheduling algorithms for bounded number of heterogeneous processors, the HeterogeneousEarliest-Finish-Time (HEFT) algorithm and the Critical-Path-on-a-Processor (CPOP) algorithm. The experimental work presented in this thesis shows that these algorithms significantly surpass previous approaches in terms of performance(schedule length ratio, speed-up, and frequency of best results) and cost (running time and time complexity). Our experimental work includes randomly generated graphs and graphs deducted from real applications. As part of thecomparison study, a parametric graph generator is introduced to generate graphs with various characteristics. We also present a further optimization of the HEFT Algorithm by introducing alternative methods for task prioritizing andprocessor selection phases. A novel processor selection policy based on the earliest finish time of the critical child task improves the performance of the HEFT algorithm. Several strategies for selecting the critical child task of agiven task are presented. This thesis addresses embedding the task scheduling algorithms into an application-development environment for distributed resources. An analytical model is introduced for setting the computation costs oftasks and communication costs of edges of a graph. As part of the design framework of our application development environment, a novel, two-phase, distributed scheduling algorithm is presented for scheduling an application overwide-area distributed resources. PROQUEST200009 SzGeCERN Computing and Computers THESIS notheld 1999 14 2000-09-22 00 2002-02-08 BATCH PROQUEST 9946509 PROQUEST DAI-B60/09p4718Mar2000 n 200034 THESIS spa Trespalacios-Mantilla, J H Puerto Rico Univ. Software De Apoyo Educativo Al Concepto De Funcion En Precalculo I (spanish Text) Rio Piedras Puerto Rico Univ. 1999 dir. Monroy, H 64 p No fulltext Not held by the library Ms : Univ. Puerto Rico : 1999 This thesis reports on the evaluation of the use of an educational software, designed to improve student's learning of the concept of mathematical function. The students in the study were registered in Precalculus I at theUniversity of Puerto Rico, Mayaguez Campus. The educational software allows the practice of changing the representation of a function among tabular, analytic, and graphical representations. To carry the evaluation, 59 students wereselected and were divided in two groups: control and experimental. Both groups received the 'traditional' classroom lectures on the topic. The experimental group, in addition, was allowed to practice with the educational software. Tomeasure their performance and the effect of the educational software, two tests were given: a pre-test and a post-test. The results of this study shows that the experimental group improved significantly more than the control group,thus demonstrating the validity of the educational software in the learning of the concept of mathematical function. PROQUEST200009 SzGeCERN Computing and Computers THESIS notheld 1999 14 2000-09-22 00 2002-02-08 BATCH PROQUEST 1395476 PROQUEST MAI37/06p1890Dec1999 n 200034 THESIS 0612382052 fre Troudi, N Laval Univ. Systeme Multiagent Pour Les Environnements Riches En Informations (french Text) Laval Laval Univ. 1999 dir. Chaib-Draa, B 101 p No fulltext Not held by the library Msc : Universite Laval : 1999 La croissance du Web est spectaculaire, puisqu'on estime aujourd'hui a plus de 50 millions, le nombre de pages sur le Web qui ne demandent qu'a etre consultees. Un simple calcul montre qu'en consacrant ne serait-ce qu'une minute parpage, il faudrait environ 95 ans pour consulter toutes ces pages. L'utilisation d'une strategie de recherche est donc vitale. Dans ce cadre, de nombreux outils de recherche ont ete proposes. Ces outils appeles souvent moteurs derecherche se sont averes aujourd'hui incapables de fournir de l'aide aux utilisateurs. Les raisons principales a cela sont les suivantes: (1) La nature ouverte de l'Internet: aucune supervision centrale ne s'applique quant audeveloppement d'Internet, puisque toute personne qui desire l'utiliser et/ou offrir des informations est libre de le faire; (2) La nature dynamique des informations: les informations qui ne sont pas disponibles aujourd'hui peuventl'etre demain et inversement; (3) La nature heterogene de l'information: l'information est offerte sous plusieurs formats et de plusieurs facons, compliquant ainsi la recherche automatique de l'information. Devant ce constat, ilsemble important de chercher de nouvelles solutions pour aider l'utilisateur dans sa recherche d'informations. (Abstract shortened by UMI.) PROQUEST200009 SzGeCERN Computing and Computers THESIS notheld 1999 14 2000-09-22 00 2002-02-08 BATCH PROQUEST MQ38205 PROQUEST MAI37/06p1890Dec1999 n 200034 THESIS eng LBL-22304 Manes, J L Calif. Univ. Berkeley Anomalies in quantum field theory and differential geometry Berkeley, CA Lawrence Berkeley Nat. Lab. Apr 1986 76 p Thesis : Calif. Univ. Berkeley SzGeCERN General Theoretical Physics bibliography REPORT THESIS 1986 14 1990-01-29 50 2002-03-22 BATCH SLAC 1594192 h 198650n THESIS eng LBL-21916 Ingermanson, R Calif. Univ. Berkeley Accelerating the loop expansion Berkeley, CA Lawrence Berkeley Nat. Lab. Jul 1986 96 p Thesis : Calif. Univ. Berkeley montague_only SzGeCERN General Theoretical Physics bibliography REPORT THESIS 1986 14 1990-01-29 50 2002-03-22 BATCH SLAC 1594184 h 198650n THESIS eng LBL-28106 Bertsche, K J Calif. Univ. Berkeley A small low energy cyclotron for radioisotope measurements Berkeley, CA Lawrence Berkeley Nat. Lab. Nov 1989 155 p Thesis : Calif. Univ. Berkeley SzGeCERN Accelerators and Storage Rings bibliography REPORT THESIS 14 1989 1990-02-28 50 2002-03-22 BATCH h 199010n THESIS gr-qc/0204045 eng Khalatnikov, I M L D Landau Institute for Theoretical Physics of Russian Academy of Sciences Comment about quasiisotropic solution of Einstein equations near cosmological singularity 12 Apr 2002 7 p We generalize for the case of arbitrary hydrodynamical matter the quasiisotropic solution of Einstein equations near cosmological singularity, found by Lifshitz and Khalatnikov in 1960 for the case of radiation-dominated universe. Itis shown that this solution always exists, but dependence of terms in the quasiisotropic expansion acquires a more complicated form. LANL EDS SzGeCERN General Relativity and Cosmology Kamenshchik, A Y Alexander Kamenshchik <sasha.kamenshchik@centrovolta.it> http://invenio-software.org/download/invenio-demo-site-files/0204045.pdf http://invenio-software.org/download/invenio-demo-site-files/0204045.ps.gz CER n 200231 2002 11 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] Lifshitz E M and Khalatnikov I M 1960 149 Zh. Eksp. Teor. Fiz. 39 1960 Zh. Eksp. Teor. Fiz. 39 (1960) 149 [2] Lifshitz E M and Khalatnikov I M 1964 Sov. Phys. Uspekhi 6 495 [3] Landau L D and Lifshitz E M 1979 The Classical Theory of Fields (Perg-amon Press) [4] Starobinsky A A 1986 Stochastic De Sitter (inflationary stage) in the early universe in Field Theory, Quantum Gravity and Strings, (Eds. H.J. De Vega and N. Sanchez, Springer-Verlag, Berlin) 107; Linde A D 1990 Particle Physics and Inflationary Cosmology (Harward Academic Publishers, New York) [5] Banks T and Fischler W 2001 M theory observables for cosmolog-ical space-times hep-th/0102077 An Holographic Cosmology hep-th/0111142 [6] Perlmutter S J et al 1999 565 Astrophys. J. 517 1999 Astrophys. J. 517 (1999) 565 Riess A et al 1998 1009 Astron. J. 116 1998 Astron. J. 116 (1998) 1009 [7] Sahni V and Starobinsky A A 2000 373 Int. J. Mod. Phys., D 9 2000 Int. J. Mod. Phys. D 9 (2000) 373 gr-qc/0204046 eng Bento, M C CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 Supergravity Inflation on the Brane 12 Apr 2002 5 p We study N=1 Supergravity inflation in the context of the braneworld scenario. Particular attention is paid to the problem of the onset of inflation at sub-Planckian field values and the ensued inflationary observables. We find thatthe so-called $\eta$-problem encountered in supergravity inspired inflationary models can be solved in the context of the braneworld scenario, for some range of the parameters involved. Furthermore, we obtain an upper bound on thescale of the fifth dimension, $M_5 \lsim 10^{-3} M_P$, in case the inflationary potential is quadratic in the inflaton field, $\phi$. If the inflationary potential is cubic in $\phi$, consistency with observational data requires that$M_5 \simeq 9.2 \times 10^{-4} M_P$. LANL EDS SzGeCERN General Relativity and Cosmology Bertolami, O Sen, A A Maria da Conceicao Bento <bento@sirius.ist.utl.pt> http://invenio-software.org/download/invenio-demo-site-files/0204046.pdf http://invenio-software.org/download/invenio-demo-site-files/0204046.ps.gz 2002 11 2002-04-15 00 2002-04-15 BATCH n 200216 [1] R. Maartens, D. Wands, B.A. Bassett, I.P.C. Heard, Phys. Rev. D 62 (2000) 041301 [2] M.C. Bento, O. Bertolami, Phys. Rev. D 65 (2002) 063513 [3] O. Bertolami, G.G. Ross, Phys. Lett. B 183 (1987) 163 [4] J. McDonald, "F-term Hybrid Inflation, η-Problem and Extra Dimensions", hep-ph/0201016 [5] G. Dvali, Q. Shafi, R. Schaefer, Phys. Rev. Lett. 73 (1994) 1886 [6] A.D. Linde, Phys. Lett. B 259 (1991) 38 [6] M.C. Bento, O. Bertolami, P.M. Sá, Phys. Lett. B 262 (1991) 11 [6] Mod. Phys. Lett. A 7 (1992) 911 [6] A.D. Linde, Phys. Rev. D 49 (1994) 748 [7] E.J. Copeland, A.R. Liddle, D.H. Lyth, E.D. Stewart, D. Wands, Phys. Rev. D 49 (1994) 6410 [8] L.E. Mendes, A.R. Liddle, Phys. Rev. D 62 (2000) 103511 [9] J.A. Adams, G.G. Ross, S. Sarkar, Phys. Lett. B 391 (1997) 271 [10] T. Shiromizu, K. Maeda, M. Sasaki, Phys. Rev. D 62 (2000) 024012 [11] P. Binétruy, C. Deffayet, U. Ellwanger, D. Langlois, Phys. Lett. B 477 (2000) 285 [11] E.E. Flanagan, S.H. Tye, I. Wasserman, Phys. Rev. D 62 (2000) 044039 [12] D. Langlois, R. Maartens, D. Wands, Phys. Lett. B 489 (2000) 259 [13] C.B. Netterfield Pryke, et al., "A Measurement by BOOMERANG of multiple peaks in the angular power spectrum of the cosmic microwave background", Ann. Sci.tro/ph0104460. [14] A.T. Lee, et al., "A High Spatial Resolution Analy-sis of the MAXIMA-1 Cosmic Microwave Background Anisotropy Data", Astronomy/ph0104459. [15] C. Pryke, et al., "Cosmological Parameter Extraction from the First Season of Observations with DASI", Ann. Sci.tro/ph0104490. [16] M.C. Bento, O. Bertolami, Phys. Lett. B 384 (1996) 98 [17] G.G. Ross, S. Sarkar, Nucl. Phys. B 461 (1995) 597 PREPRINT hep-th/0204098 eng Alhaidari, A D King Fadh University Reply to 'Comment on "Solution of the Relativistic Dirac-Morse Problem"' 11 Apr 2002 This combines a reply to the Comment [hep-th/0203067 v1] by A. N. Vaidya and R. de L. Rodrigues with an erratum to our Letter [Phys. Rev. Lett. 87, 210405 (2001)] LANL EDS SzGeCERN Particle Physics - Theory A. D. Alhaidari <haidari@kfupm.edu.sa> http://invenio-software.org/download/invenio-demo-site-files/0204098.pdf http://invenio-software.org/download/invenio-demo-site-files/0204098.ps.gz 2002 11 2002-04-15 00 2002-04-15 BATCH n 200216 [1] A. D. Alhaidari, Phys. Rev. Lett. 87 (2001) 210405 [2] A. N. Vaidya and R. de L. Rodrigues, hep-th/0203067 [3] A. D. Alhaidari, J. Phys. A 34 (2001) 9827 [3] J. Phys. A 35 (2002) 3143 [4] See for example G. A. Natanzon, Teor. Mat. Fiz. 38 (1979) 146 [4] L. E. Gendenshtein, JETP Lett. 38 (1983) 356 [4] F. Cooper, J. N. Ginocchi, and A. Khare, Phys. Rev. D 36 (1987) 2438 [4] R. Dutt, A. Khare, and U. P. Sukhatme, Am. J. Phys. 56 (1988) 163 [4] Am. J. Phys. 59 (1991) 723 [4] G. Lévai, J. Phys. A 22 (1989) 689 [4] J. Phys. A 27 (1994) 3809 [4] R. De, R. Dutt, and U. Sukhatme, J. Phys. A 25 (1992) L843 [5] See for example M. F. Manning, Phys. Rev. 48 (1935) 161 [5] A. Bhattacharjie and E. C. G. Sudarshan, Nuovo Cimento 25 (1962) 864 [5] N. K. Pak and I. Sökmen, Phys. Lett. A 103 (1984) 298 [5] H. G. Goldstein, Classical Mechanics (Addison-Wesley, Reading-MA 1986); R. Montemayer, Phys. Rev. A 36 (1987) 1562 [5] G. Junker, J. Phys. A 23 (1990) L881 [6] A. D. Alhaidari, Phys. Rev. A 65 (2002) 042109 PREPRINT hep-th/0204099 eng CU-TP-1043 Easther, R Columbia Univ. Cosmological String Gas on Orbifolds Irvington-on-Hudson, NY Columbia Univ. Dept. Phys. 12 Apr 2002 14 p It has long been known that strings wound around incontractible cycles can play a vital role in cosmology. In particular, in a spacetime with toroidal spatial hypersurfaces, the dynamics of the winding modes may help yield threelarge spatial dimensions. However, toroidal compactifications are phenomenologically unrealistic. In this paper we therefore take a first step toward extending these cosmological considerations to $D$-dimensional toroidal orbifolds.We use numerical simulation to study the timescales over which "pseudo-wound" strings unwind on these orbifolds with trivial fundamental group. We show that pseudo-wound strings can persist for many ``Hubble times'' in some of thesespaces, suggesting that they may affect the dynamics in the same way as genuinely wound strings. We also outline some possible extensions that include higher-dimensional wrapped branes. LANL EDS SzGeCERN Particle Physics - Theory Greene, B R Jackson, M G M. G. Jackson <markj@phys.columbia.edu> http://invenio-software.org/download/invenio-demo-site-files/0204099.pdf http://invenio-software.org/download/invenio-demo-site-files/0204099.ps.gz CER n 200231 2002 11 Easther, Richard Greene, Brian R. Jackson, Mark G. 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] R. Brandenberger and C. Vafa 391 Nucl. Phys., B 316 1989 Nucl. Phys. B 316 (1989) 391 [2] A. A. Tseytlin and C. Vafa 443 Nucl. Phys., B 372 1992 Nucl. Phys. B 372 (1992) 443 hep-th/9109048 [3] M. Sakellariadou 319 Nucl. Phys., B 468 1996 Nucl. Phys. B 468 (1996) 319 hep-th/9511075 [4] A. G. Smith and A. Vilenkin 990 Phys. Rev., D 36 1987 Phys. Rev. D 36 (1987) 990 [5] R. Brandenberger, D. A. Easson and D. Kimberly 421 Nucl. Phys., B 623 2002 Nucl. Phys. B 623 (2002) 421 hep-th/0109165 [6] B. R. Greene, A. D. Shapere, C. Vafa, and S. T. Yau 1 Nucl. Phys., B 337 1990 Nucl. Phys. B 337 (1990) 1 [7] L. Dixon, J. Harvey, C. Vafa and E. Witten 678 Nucl. Phys., B 261 1985 Nucl. Phys. B 261 (1985) 678 L. Dixon, J. Harvey, C. Vafa and E. Witten 285 Nucl. Phys., B 274 1986 Nucl. Phys. B 274 (1986) 285 [8] M. Sakellariadou and A. Vilenkin 885 Phys. Rev., D 37 1988 Phys. Rev. D 37 (1988) 885 [9] J. J. Atick and E. Witten 291 Nucl. Phys., B 310 1988 Nucl. Phys. B 310 (1988) 291 [10] D. Mitchell and N. Turok 1577 Phys. Rev. Lett. 58 1987 Phys. Rev. Lett. 58 (1987) 1577 Imperial College report, 1987 (unpublished) [11] S. Alexander, R. Brandenberger, and D. Easson 103509 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 103509 hep-th/0005212 [12] D. Easson hep-th/0110225 hep-ph/0204132 eng NUC-MINN-02-3-T Shovkovy, I A Minnesota Univ. Thermal conductivity of dense quark matter and cooling of stars Minneapolis, MN Minnesota Univ. 11 Apr 2002 9 p The thermal conductivity of the color-flavor locked phase of dense quark matter is calculated. The dominant contribution to the conductivity comes from photons and Nambu-Goldstone bosons associated with breaking of baryon numberwhich are trapped in the quark core. Because of their very large mean free path the conductivity is also very large. The cooling of the quark core arises mostly from the heat flux across the surface of direct contact with the nuclearmatter. As the thermal conductivity of the neighboring layer is also high, the whole interior of the star should be nearly isothermal. Our results imply that the cooling time of compact stars with color-flavor locked quark cores issimilar to that of ordinary neutron stars. LANL EDS SzGeCERN Particle Physics - Phenomenology Ellis, P J Igor Shovkovy <shovkovy@physics.umn.edu> http://invenio-software.org/download/invenio-demo-site-files/0204132.pdf http://invenio-software.org/download/invenio-demo-site-files/0204132.ps.gz CER n 200231 2002 11 Shovkovy, Igor A. Ellis, Paul J. 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] J.C. Collins and M.J. Perry 1353 Phys. Rev. Lett. 34 1975 Phys. Rev. Lett. 34 (1975) 1353 [2] B. C. Barrois 390 Nucl. Phys., B 129 1977 Nucl. Phys. B 129 (1977) 390 S. C. Frautschi, in "Hadronic matter at extreme energy density", edited by N. Cabibbo and L. Sertorio (Plenum Press, 1980); D. Bailin and A. Love 325 Phys. Rep. 107 1984 Phys. Rep. 107 (1984) 325 [3] M. G. Alford, K. Rajagopal and F. Wilczek 247 Phys. Lett., B 422 1998 Phys. Lett. B 422 (1998) 247 R. Rapp, T. Schäfer, E. V. Shuryak and M. Velkovsky 53 Phys. Rev. Lett. 81 1998 Phys. Rev. Lett. 81 (1998) 53 [4] D. T. Son 094019 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 094019 R. D. Pisarski and D. H. Rischke 37 Phys. Rev. Lett. 83 1999 Phys. Rev. Lett. 83 (1999) 37 [5] T. Schafer and F. Wilczek 114033 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 114033 D. K. Hong, V. A. Miransky, I. A. Shovkovy and L. C. R. Wijewardhana 056001 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 056001 erratum 059903 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 059903 R. D. Pisarski and D. H. Rischke 051501 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 051501 [6] S. D. Hsu and M. Schwetz 211 Nucl. Phys., B 572 2000 Nucl. Phys. B 572 (2000) 211 W. E. Brown, J. T. Liu and H. C. Ren 114012 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 114012 [7] I. A. Shovkovy and L. C. R. Wijewardhana 189 Phys. Lett., B 470 1999 Phys. Lett. B 470 (1999) 189 T. Schäfer 269 Nucl. Phys., B 575 2000 Nucl. Phys. B 575 (2000) 269 [8] K. Rajagopal and F. Wilczek, arXiv hep-ph/0011333 M. G. Alford 131 Annu. Rev. Nucl. Part. Sci. 51 2001 Annu. Rev. Nucl. Part. Sci. 51 (2001) 131 [9] M. Alford and K. Rajagopal, arXiv hep-ph/0204001 [10] M. Alford, K. Rajagopal and F. Wilczek 443 Nucl. Phys., B 537 1999 Nucl. Phys. B 537 (1999) 443 [11] R. Casalbuoni and R. Gatto 111 Phys. Lett., B 464 1999 Phys. Lett. B 464 (1999) 111 [12] D. T. Son and M. A. Stephanov 074012 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 074012 erratum 059902 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 059902 [13] P. F. Bedaque and T. Schäfer 802 Nucl. Phys., A 697 2002 Nucl. Phys. A 697 (2002) 802 [14] V. A. Miransky and I. A. Shovkovy 111601 Phys. Rev. Lett. 88 2002 Phys. Rev. Lett. 88 (2002) 111601 [arXiv hep-ph/0108178 T. Schafer, D. T. Son, M. A. Stephanov, D. Toublan and J. J. Ver-baarschot 67 Phys. Lett., B 522 2001 Phys. Lett. B 522 (2001) 67 [arXiv hep-ph/0108210 [15] D. T. Son, arXiv hep-ph/0108260 [16] P. Jaikumar, M. Prakash and T. Schäfer, arXiv astro-ph/0203088 [17] E. J. Ferrer, V. P. Gusynin and V. de la Incera, arXiv: cond-matt/0203217 [18] I. S. Gradshteyn and I. M. Ryzhik, Tables of Integrals, Series and Products (Academic, New York, 1965) 3.252.9 [19] J. J. Freeman and A. C. Anderson 5684 Phys. Rev., B 34 1986 Phys. Rev. B 34 (1986) 5684 [20] C. Kittel, Introduction to Solid State Phys.(John Wi-ley & Sons, Inc., 1960) p. 139 [21] V. P. Gusynin and I. A. Shovkovy 577 Nucl. Phys., A 700 2002 Nucl. Phys. A 700 (2002) 577 [22] I. M. Khalatnikov, An introduction to the theory of su-perfluidity, (Addison-Wesley Pub. Co., 1989) [23] P. A. Sturrock, Plasma Physics, (Cambridge University Press, 1994) [24] J. M. Lattimer, K. A. Van Riper, M. Prakash and M. Prakash 802 Astrophys. J. 425 1994 Astrophys. J. 425 (1994) 802 [25] M. G. Alford, K. Rajagopal, S. Reddy and F. Wilczek 074017 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 074017 [26] G. W. Carter and S. Reddy 103002 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 103002 [27] A. W. Steiner, M. Prakash and J. M. Lattimer 10 Phys. Lett., B 509 2001 Phys. Lett. B 509 (2001) 10 [arXiv astro-ph/0101566 [28] S. Reddy, M. Sadzikowski and M. Tachibana, arXiv nucl-th/0203011 [29] M. Prakash, J. M. Lattimer, J. A. Pons, A. W. Steiner and S. Reddy 364 Lect. Notes Phys. 578 2001 Lect. Notes Phys. 578 (2001) 364 [30] S. L. Shapiro and S. A. Teukolsky, Black holes, white dwarfs, and neutron stars: the physics of compact ob-jects, (John Wiley & Sons, 1983) [31] D. Blaschke, H. Grigorian and D. N. Voskresensky, As-tron. Astrophys. : 368 (2001) 561 [32] D. Page, M. Prakash, J. M. Lattimer and A. W. Steiner 2048 Phys. Rev. Lett. 85 2000 Phys. Rev. Lett. 85 (2000) 2048 [33] K. Rajagopal and F. Wilczek 3492 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 3492 [34] J. I. Kapusta, Finite-temperature field theory, (Cam-bridge University Press, 1989) [35] S. M. Johns, P. J. Ellis and J. M. Lattimer 1020 Astrophys. J. 473 1996 Astrophys. J. 473 (1996) 1020 hep-ph/0204133 eng Gomez, M E CFIF Lepton-Flavour Violation in SUSY with and without R-parity 12 Apr 2002 11 p We study whether the individual violation of the lepton numbers L_{e,mu,tau} in the charged sector can lead to measurable rates for BR(mu->e gamma) and BR(tau->mu gamma). We consider three different scenarios, the fist onecorresponds to the Minimal Supersymmetric Standard Model with non-universal soft terms. In the other two cases the violation of flavor in the leptonic charged sector is associated to the neutrino problem in models with a see-sawmechanism and with R-parity violation respectively. LANL EDS SzGeCERN Particle Physics - Phenomenology Carvalho, D F Mario E. Gomez <mgomez@gtae3.ist.utl.pt> http://invenio-software.org/download/invenio-demo-site-files/0204133.pdf http://invenio-software.org/download/invenio-demo-site-files/0204133.ps.gz CER n 200231 2002 11 2002-04-15 00 2002-04-15 BATCH TALK GIVEN BY M E G AT THE CORFU SUMMER INSTITUTE ON ELEMENTARY PARTICLE PHYSICS CORFU 2001 11 PAGES 5 FIGURES PREPRINT [1] Y. Fukuda et al., Super-Kamiokande collaboration 9 Phys. Lett., B 433 1998 Phys. Lett. B 433 (1998) 9 33 Phys. Lett., B 436 1998 Phys. Lett. B 436 (1998) 33 1562 Phys. Rev. Lett. 81 1998 Phys. Rev. Lett. 81 (1998) 1562 [2] M. Apollonio et al., Chooz collaboration 397 Phys. Lett. B 420 1998 Phys. Lett. B 420 (1998) 397 [3] H. N. Brown et al. [Muon g-2 Collaboration] 2227 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 2227 hep-ex/0102017 [4] Review of Particle Physics, D. E. Groom et al 1 Eur. Phys. J., C 15 2000 Eur. Phys. J. C 15 (2000) 1 [5] D. F. Carvalho, M. E. Gomez and S. Khalil 001 J. High Energy Phys. 0107 2001 J. High Energy Phys. 0107 (2001) 001 hep-ph/0104292 [6] D. F. Carvalho, J. R. Ellis, M. Gomez and S. Lola 323 Phys. Lett., B 515 2001 Phys. Lett. B 515 (2001) 323 [7] D. F. Carvalho, M. E. Gomez and J. C. Romao hep-ph/0202054 (to appear in Phys. Rev., D [8] J. R. Ellis, M. E. Gomez, G. K. Leontaris, S. Lola and D. V. Nanopoulos 319 Eur. Phys. J., C 14 2000 Eur. Phys. J. C 14 (2000) 319 [9] A. Belyaev et al 715 Eur. Phys. J., C 22 2002 Eur. Phys. J. C 22 (2002) 715 A. Belyaev et al. [Kaon Physics Working Group Collaboration] hep-ph/0107046 [10] J. Hisano, T. Moroi, K. Tobe and M. Yamaguchi 2442 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 2442 J. Hisano and D. Nomura 116005 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 116005 [11] R. Barbieri and L.J. Hall 212 Phys. Lett., B 338 1994 Phys. Lett. B 338 (1994) 212 R. Barbieri et al 219 Nucl. Phys., B 445 1995 Nucl. Phys. B 445 (1995) 219 Nima Arkani-Hamed, Hsin-Chia Cheng and L.J. Hall 413 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 413 P. Ciafaloni, A. Romanino and A. Strumia 3 Nucl. Phys., B 458 1996 Nucl. Phys. B 458 (1996) 3 M. E. Gomez and H. Goldberg 5244 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 5244 J. Hisano, D. Nomura, Y. Okada, Y. Shimizu and M. Tanaka 116010 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 116010 [12] M. E. Gomez, G. K. Leontaris, S. Lola and J. D. Vergados 116009 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 116009 G.K. Leontaris and N.D. Tracas 90 Phys. Lett., B 431 1998 Phys. Lett. B 431 (1998) 90 W. Buchmuller, D. Delepine and F. Vissani 171 Phys. Lett., B 459 1999 Phys. Lett. B 459 (1999) 171 W. Buchmuller, D. Delepine and L. T. Handoko 445 Nucl. Phys., B 576 2000 Nucl. Phys. B 576 (2000) 445 Q. Shafi and Z. Tavartkiladze 145 Phys. Lett., B 473 2000 Phys. Lett. B 473 (2000) 145 J. L. Feng, Y. Nir and Y. Shadmi 113005 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 113005 [13] A. Brignole, L. E. Iba nez and C. Mu noz 125 Nucl. Phys., B 422 1994 Nucl. Phys. B 422 (1994) 125 [Erratum 747 Nucl. Phys., B 436 1994 Nucl. Phys. B 436 (1994) 747 ] [14] L. Iba nez and G.G. Ross 100 Phys. Lett., B 332 1994 Phys. Lett. B 332 (1994) 100 G.K. Leontaris, S. Lola and G.G. Ross 25 Nucl. Phys., B 454 1995 Nucl. Phys. B 454 (1995) 25 S. Lola and G.G. Ross 81 Nucl. Phys., B 553 1999 Nucl. Phys. B 553 (1999) 81 [15] M. Gell-Mann, P. Ramond and R. Slansky, Proceedings of the Stony Brook Super-gravity Workshop, New York, 1979, eds. P. Van Nieuwenhuizen and D. Freedman (North-Holland, Amsterdam) [16] J. A. Casas and A. Ibarra 171 Nucl. Phys., B 618 2001 Nucl. Phys. B 618 (2001) 171 S. Lavignac, I. Masina and C. A. Savoy 269 Phys. Lett., B 520 2001 Phys. Lett. B 520 (2001) 269 and hep-ph/0202086 [17] J. R. Ellis, D. V. Nanopoulos and K. A. Olive 65 Phys. Lett., B 508 2001 Phys. Lett. B 508 (2001) 65 [18] J. C. Romao, M. A. Diaz, M. Hirsch, W. Porod and J. W. Valle 071703 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 071703 113008 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 113008 [19] M. E. Gomez and K. Tamvakis 057701 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 057701 [20] M. Hirsch, W. Porod, J. W. F. Valle and J. C. Rom ao hep-ph/0202149 [21] L. M. Barkov et al., Research Proposal to PSI, 1999 http://www.icepp.s.u-tokyo.ac.jp/meg http://www.icepp.s.u-tokyo.ac.jp/meg [22] The homepage of the PRISM project http://www-prism.kek.jp/ http://www-prism.kek.jp/ Y. Kuno, Lep-ton Flavor Violation Experiments at KEK/JAERI Joint Project of High Intensity Proton Machine, in Proceedings of Workshop of "LOWNU/NOON 2000", Tokyo, December 4-8, 2000 [23] W. Porod, M. Hirsch, J. Rom ao and J. W. Valle 115004 Phys. Rev., D 63 2001 Phys. Rev. D 63 (2001) 115004 hep-ph/0204134 eng Dzuba, V A University of New South Wales Precise calculation of parity nonconservation in cesium and test of the standard model 12 Apr 2002 24 p We have calculated the 6s-7s parity nonconserving (PNC) E1 transition amplitude, E_{PNC}, in cesium. We have used an improved all-order technique in the calculation of the correlations and have included all significant contributionsto E_{PNC}. Our final value E_{PNC} = 0.904 (1 +/- 0.5 %) \times 10^{-11}iea_{B}(-Q_{W}/N) has half the uncertainty claimed in old calculations used for the interpretation of Cs PNC experiments. The resulting nuclear weak chargeQ_{W} for Cs deviates by about 2 standard deviations from the value predicted by the standard model. LANL EDS SzGeCERN Particle Physics - Phenomenology Flambaum, V V Ginges, J S M "Jacinda S.M. GINGES" <ginges@phys.unsw.edu.au> http://invenio-software.org/download/invenio-demo-site-files/0204134.pdf http://invenio-software.org/download/invenio-demo-site-files/0204134.ps.gz CER n 200231 2002 11 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] I.B. Khriplovich, Parity Nonconservation in Atomic Phenomena (Gordon and Breach, Philadelphia, 1991) [2] M.-A. Bouchiat and C. Bouchiat 1351 Rep. Prog. Phys. 60 1997 Rep. Prog. Phys. 60 (1997) 1351 [3] C.S. Wood et al 1759 Science 275 1997 Science 275 (1997) 1759 [4] V.A. Dzuba, V.V. Flambaum, and O.P. Sushkov 147 Phys. Lett., A 141 1989 Phys. Lett. A 141 (1989) 147 [5] S.A. Blundell, W.R. Johnson, and J. Sapirstein 1411 Phys. Rev. Lett. 65 1990 Phys. Rev. Lett. 65 (1990) 1411 S.A. Blundell, J. Sapirstein, and W.R. Johnson 1602 Phys. Rev., D 45 1992 Phys. Rev. D 45 (1992) 1602 [6] R.J. Rafac, and C.E. Tanner, Phys. Rev., A58 1087 (1998); R.J. Rafac, C.E. Tanner, A.E. Livingston, and H.G. Berry, Phys. Rev., A60 3648 (1999) [7] S.C. Bennett, J.L. Roberts, and C.E. Wieman R16 Phys. Rev., A 59 1999 Phys. Rev. A 59 (1999) R16 [8] S.C. Bennett and C.E. Wieman 2484 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 2484 82, 4153(E) (1999); 83, 889(E) (1999) [9] R. Casalbuoni, S. De Curtis, D. Dominici, and R. Gatto 135 Phys. Lett., B 460 1999 Phys. Lett. B 460 (1999) 135 [10] J. L. Rosner 016006 Phys. Rev., D 61 1999 Phys. Rev. D 61 (1999) 016006 [11] J. Erler and P. Langacker 212 Phys. Rev. Lett. 84 2000 Phys. Rev. Lett. 84 (2000) 212 [12] A. Derevianko 1618 Phys. Rev. Lett. 85 2000 Phys. Rev. Lett. 85 (2000) 1618 [13] V.A. Dzuba, C. Harabati, W.R. Johnson, and M.S. Safronova 044103 Phys. Rev., A 63 2001 Phys. Rev. A 63 (2001) 044103 [14] M.G. Kozlov, S.G. Porsev, and I.I. Tupitsyn 3260 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 3260 [15] W.J. Marciano and A. Sirlin 552 Phys. Rev., D 27 1983 Phys. Rev. D 27 (1983) 552 W.J. Marciano and J.L. Rosner 2963 Phys. Rev. Lett. 65 1990 Phys. Rev. Lett. 65 (1990) 2963 [16] B.W. Lynn and P.G.H. Sandars 1469 J. Phys., B 27 1994 J. Phys. B 27 (1994) 1469 I. Bednyakov et al 012103 Phys. Rev., A 61 1999 Phys. Rev. A 61 (1999) 012103 [17] A.I. Milstein and O.P. Sushkov, e-print hep-ph/0109257 [18] W.R. Johnson, I. Bednyakov, and G. Soff 233001 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 233001 [19] A. Derevianko 012106 Phys. Rev., A 65 2002 Phys. Rev. A 65 (2002) 012106 [20] V.A. Dzuba and V.V. Flambaum 052101 Phys. Rev., A 62 2000 Phys. Rev. A 62 (2000) 052101 [21] V.A. Dzuba, V.V. Flambaum, and O.P. Sushkov R4357 Phys. Rev., A 56 1997 Phys. Rev. A 56 (1997) R4357 [22] D.E. Groom et al., Euro. Phys. J. C : 15 (2000) 1 [23] V.A. Dzuba, V.V. Flambaum, P.G. Silvestrov, and O.P. Sushkov 1399 J. Phys., B 20 1987 J. Phys. B 20 (1987) 1399 [24] V.A. Dzuba, V.V. Flambaum, and O.P. Sushkov 493 Phys. Lett., A 140 1989 Phys. Lett. A 140 (1989) 493 [25] V.A. Dzuba, V.V. Flambaum, A.Ya. Kraftmakher, and O.P. Sushkov 373 Phys. Lett., A 142 1989 Phys. Lett. A 142 (1989) 373 [26] G. Fricke et al 177 At. Data Nucl. Data Tables 60 1995 At. Data Nucl. Data Tables 60 (1995) 177 [27] A. Trzci´nska et al 082501 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 082501 [28] V.B. Berestetskii, E.M. Lifshitz, and L.P. Pitaevskii, Relativistic Quantum Theory (Pergamon Press, Oxford, 1982) [29] P.J. Mohr and Y.-K. Kim 2727 Phys. Rev., A 45 1992 Phys. Rev. A 45 (1992) 2727 P.J. Mohr 4421 Phys. Rev., A 46 1992 Phys. Rev. A 46 (1992) 4421 [30] L.W. Fullerton and G.A. Rinker, Jr 1283 Phys. Rev., A 13 1976 Phys. Rev. A 13 (1976) 1283 [31] E.H. Wichmann and N.M. Kroll 343 Phys. Rev. 101 1956 Phys. Rev. 101 (1956) 343 [32] A.I. Milstein and V.M. Strakhovenko 1247 Zh. Eksp. Teor. Fiz. 84 1983 Zh. Eksp. Teor. Fiz. 84 (1983) 1247 [33] V.V. Flambaum and V.G. Zelevinsky 3108 Phys. Rev. Lett. 83 1999 Phys. Rev. Lett. 83 (1999) 3108 [34] C.E. Moore, Natl. Stand. Ref. Data Ser. (U.S., Natl. Bur. Stand.), 3 (1971) [35] R.J. Rafac, C.E. Tanner, A.E. Livingston, and H.G. Berry 3648 Phys. Rev., A 60 1999 Phys. Rev. A 60 (1999) 3648 [36] M.-A. Bouchiat, J. Gu´ena, and L. Pottier, J. Phys.(France) Lett. : 45 (1984) L523 [37] E. Arimondo, M. Inguscio, and P. Violino 31 Rev. Mod. Phys. 49 1977 Rev. Mod. Phys. 49 (1977) 31 [38] S.L. Gilbert, R.N. Watts, and C.E. Wieman 581 Phys. Rev., A 27 1983 Phys. Rev. A 27 (1983) 581 [39] R.J. Rafac and C.E. Tanner 1027 Phys. Rev., A 56 1997 Phys. Rev. A 56 (1997) 1027 [40] M.-A. Bouchiat and J. Gu´ena, J. Phys.(France) : 49 (1988) 2037 [41] D. Cho et al 1007 Phys. Rev., A 55 1997 Phys. Rev. A 55 (1997) 1007 [42] A.A. Vasilyev, I.M. Savukov, M.S. Safronova, and H.G. Berry, e-print physics/0112071 hep-ph/0204135 eng Bertin, V Universite Blaise Pascal Neutrino Indirect Detection of Neutralino Dark Matter in the CMSSM 12 Apr 2002 16 p We study potential signals of neutralino dark matter indirect detection by neutrino telescopes in a wide range of CMSSM parameters. We also compare with direct detection potential signals taking into account in both cases present andfuture experiment sensitivities. Only models with neutralino annihilation into gauge bosons can satisfy cosmological constraints and current neutrino indirect detection sensitivities. For both direct and indirect detection, only nextgeneration experiments will be able to really test this kind of models. LANL EDS SzGeCERN Particle Physics - Phenomenology Nezri, E Orloff, J Jean Orloff <orloff@in2p3.fr> http://invenio-software.org/download/invenio-demo-site-files/0204135.pdf http://invenio-software.org/download/invenio-demo-site-files/0204135.ps.gz 2002 11 2002-04-15 00 2002-04-15 BATCH n 200216 PREPRINT hep-ph/0204136 eng FISIST-14-2001-CFIF IPPP-01-58 DCPT-01-114 Branco, G C FCIF Supersymmetry and a rationale for small CP violating phases 12 Apr 2002 28 p We analyse the CP problem in the context of a supersymmetric extension of the standard model with universal strength of Yukawa couplings. A salient feature of these models is that the CP phases are constrained to be very small by thehierarchy of the quark masses, and the pattern of CKM mixing angles. This leads to a small amount of CP violation from the usual KM mechanism and a significant contribution from supersymmetry is required. Due to the large generationmixing in some of the supersymmetric interactions, the electric dipole moments impose severe constraints on the parameter space, forcing the trilinear couplings to be factorizable in matrix form. We find that the LL mass insertionsgive the dominant gluino contribution to saturate epsilon_K. The chargino contributions to epsilon'/epsilon are significant and can accommodate the experimental results. In this framework, the standard model gives a negligiblecontribution to the CP asymmetry in B-meson decay, a_{J/\psi K_s}. However, due to supersymmetric contributions to B_d-\bar{B}_d mixing, the recent large value of a_{J/\psi K_s} can be accommodated. LANL EDS SzGeCERN Particle Physics - Phenomenology Gomez, M E Khalil, S Teixeira, A M Shaaban Khalil <shaaban.khalil@durham.ac.uk> http://invenio-software.org/download/invenio-demo-site-files/0204136.pdf http://invenio-software.org/download/invenio-demo-site-files/0204136.ps.gz CER n 200231 2002 11 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] A.G. Cohen, D.B. Kaplan and A.E. Nelson 27 Annu. Rev. Nucl. Part. Sci. 43 1993 Annu. Rev. Nucl. Part. Sci. 43 (1993) 27 M.B. Gavela, P. Hernandez, J. Orloff, O. P ene and C. Quimbay 345 Nucl. Phys., B 430 1994 Nucl. Phys. B 430 (1994) 345 382 Nucl. Phys., B 430 1994 Nucl. Phys. B 430 (1994) 382 A.D. Dolgov hep-ph/9707419 V.A. Rubakov and M.E. Shaposhnikov, Usp. Fiz. Nauk : 166 (1996) 493[ 461 Phys. Usp. 39 1996 Phys. Usp. 39 (1996) 461 ] [2] S. Abel, S. Khalil and O. Lebedev 151 Nucl. Phys., B 606 2001 Nucl. Phys. B 606 (2001) 151 [3] S. Pokorski, J. Rosiek and C. A. Savoy 81 Nucl. Phys., B 570 2000 Nucl. Phys. B 570 (2000) 81 [4] Recent Developments in Gauge Theories, Proceedings of Nato Advanced Study Insti-tute (Carg ese, 1979), edited by G. 't Hooft et al., Plenum, New York (1980) [5] G. C. Branco, J. I. Silva-Marcos and M. N. Rebelo 446 Phys. Lett., B 237 1990 Phys. Lett. B 237 (1990) 446 G. C. Branco, D. Emmanuel­Costa and J. I. Silva-Marcos 107 Phys. Rev., D 56 1997 Phys. Rev. D 56 (1997) 107 [6] P. M. Fishbane and P. Q. Hung 2743 Phys. Rev., D 57 1998 Phys. Rev. D 57 (1998) 2743 [7] P. Q. Hung and M. Seco hep-ph/0111013 [8] G. C. Branco and J. I. Silva-Marcos 166 Phys. Lett., B 359 1995 Phys. Lett. B 359 (1995) 166 [9] M. V. Romalis, W. C. Griffith and E. N. Fortson 2505 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 2505 J. P. Jacobs et al 3782 Phys. Rev. Lett. 71 1993 Phys. Rev. Lett. 71 (1993) 3782 [10] BABAR Collaboration, B. Aubert et al 091801 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 091801 [11] BELLE Collaboration, K. Abe et al 091802 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 091802 [12] G. Eyal and Y. Nir 21 Nucl. Phys., B 528 1998 Nucl. Phys. B 528 (1998) 21 and references therein [13] G. C. Branco, F. Cagarrinho and F. Krüger 224 Phys. Lett., B 459 1999 Phys. Lett. B 459 (1999) 224 [14] H. Fritzsch and J. Plankl 584 Phys. Rev., D 49 1994 Phys. Rev. D 49 (1994) 584 H. Fritzsch and P. Minkowski 393 Nuovo Cimento 30 1975 Nuovo Cimento 30 (1975) 393 H. Fritzsch and D. Jackson 365 Phys. Lett., B 66 1977 Phys. Lett. B 66 (1977) 365 P. Kaus and S. Meshkov 1863 Phys. Rev., D 42 1990 Phys. Rev. D 42 (1990) 1863 [15] H. Fusaoka and Y. Koide 3986 Phys. Rev., D 57 1998 Phys. Rev. D 57 (1998) 3986 [16] See for example, V. Barger, M. S. Berger and P. Ohmann 1093 Phys. Rev., D 47 1993 Phys. Rev. D 47 (1993) 1093 4908 Phys. Rev., D 49 1994 Phys. Rev. D 49 (1994) 4908 [17] G. C. Branco and J. I. Silva-Marcos 390 Phys. Lett., B 331 1994 Phys. Lett. B 331 (1994) 390 [18] Particle Data Group 1 Eur. Phys. J., C 15 2000 Eur. Phys. J. C 15 (2000) 1 [19] C. Jarlskog 1039 Phys. Rev. Lett. 55 1985 Phys. Rev. Lett. 55 (1985) 1039 491 Z. Phys., C 29 1985 Z. Phys. C 29 (1985) 491 [20] M. Dugan, B. Grinstein and L. J. Hall 413 Nucl. Phys., B 255 1985 Nucl. Phys. B 255 (1985) 413 [21] D. A. Demir, A. Masiero and O. Vives 230 Phys. Lett., B 479 2000 Phys. Lett. B 479 (2000) 230 S. M. Barr and S. Khalil 035005 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 035005 [22] S. A. Abel and J. M. Fr ere 1632 Phys. Rev., D 55 1997 Phys. Rev. D 55 (1997) 1632 S. Khalil, T. Kobayashi and A. Masiero 075003 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 075003 S. Khalil and T. Kobayashi 341 Phys. Lett., B 460 1999 Phys. Lett. B 460 (1999) 341 [23] S. Khalil, T. Kobayashi and O. Vives 275 Nucl. Phys., B 580 2000 Nucl. Phys. B 580 (2000) 275 T. Kobayashi and O. Vives 323 Phys. Lett., B 406 2001 Phys. Lett. B 406 (2001) 323 [24] S. Abel, D. Bailin, S. Khalil and O. Lebedev 241 Phys. Lett., B 504 2001 Phys. Lett. B 504 (2001) 241 [25] A. Masiero, M. Piai, A. Romanino and L. Silvestrini 075005 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 075005 and references therein [26] P. G. Harris et al 904 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 904 [27] M. Ciuchini et al 008 J. High Energy Phys. 10 1998 J. High Energy Phys. 10 (1998) 008 [28] S. Khalil and O. Lebedev 387 Phys. Lett., B 515 2001 Phys. Lett. B 515 (2001) 387 [29] A. J. Buras hep-ph/0101336 [30] See, for example, G. C. Branco, L. Lavoura and J. P. Silva, CP Violation, Interna-tional Series of Monographs on Physics (103), Oxford University Press, Clarendon (1999) [31] F. Gabbiani, E. Gabrielli, A. Masiero and L. Silverstrini 321 Nucl. Phys., B 477 1996 Nucl. Phys. B 477 (1996) 321 [32] V. Fanti et al 335 Phys. Lett., B 465 1999 Phys. Lett. B 465 (1999) 335 [33] T. Gershon (NA48) hep-ex/0101034 [34] A. J. Buras, M. Jamin and M. E. Lautenbacher 209 Nucl. Phys., B 408 1993 Nucl. Phys. B 408 (1993) 209 [35] S. Bertolini, M. Fabbrichesi and E. Gabrielli 136 Phys. Lett., B 327 1994 Phys. Lett. B 327 (1994) 136 [36] G. Colangelo and G. Isidori 009 J. High Energy Phys. 09 1998 J. High Energy Phys. 09 (1998) 009 A. Buras, G. Colan-gelo, G. Isidori, A. Romanino and L. Silvestrini 3 Nucl. Phys., B 566 2000 Nucl. Phys. B 566 (2000) 3 [37] OPAL Collaboration, K. Ackerstaff et al 379 Eur. Phys. J., C 5 1998 Eur. Phys. J. C 5 (1998) 379 CDF Collaboration, T. Affolder et al 072005 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 072005 CDF Collaboration, C. A. Blocker, Proceedings of 3rd Workshop on Physics and Detectors for DAPHNE (DAPHNE 99), Frascati, Italy, 16-19 Nov 1999; ALEPH Collaboration, R. Barate et al 259 Phys. Lett., B 492 2000 Phys. Lett. B 492 (2000) 259 [38] S. Bertolini, F. Borzumati, A. Masiero and G. Ridolfi 591 Nucl. Phys., B 353 1991 Nucl. Phys. B 353 (1991) 591 [39] CLEO Collaboration, S. Ahmed et al, CLEO-CONF-99-10 hep-ex/9908022 [40] E. Gabrielli, S. Khalil and E. Torrente­Lujan 3 Nucl. Phys., B 594 2001 Nucl. Phys. B 594 (2001) 3 hep-ph/0204137 eng DO-TH-02-05 Paschos, E A Univ. Dortmund Leptogenesis with Majorana neutrinos Dortmund Dortmund Univ. Inst. Phys. 12 Apr 2002 6 p I review the origin of the lepton asymmetry which is converted to a baryon excess at the electroweak scale. This scenario becomes more attractive if we can relate it to other physical phenomena. For this reason I elaborate on theconditions of the early universe which lead to a sizable lepton asymmetry. Then I describe methods and models which relate the low energy parameters of neutrinos to the high energy (cosmological) CP-violation and to neutrinolessdouble beta-decay. LANL EDS SzGeCERN Particle Physics - Phenomenology Emmanuel A. Paschos <paschos@hal1.physik.uni-dortmund.de> http://invenio-software.org/download/invenio-demo-site-files/0204137.pdf http://invenio-software.org/download/invenio-demo-site-files/0204137.ps.gz CER n 200231 11 2002 2002-04-15 00 2002-04-15 BATCH CONTRIBUTED TO 1ST WORKSHOP ON NEUTRINO - NUCLEUS INTERACTIONS IN THE FEW GEV REGION (NUINT01) TSUKUBA JAPAN 13-16 DEC 2001 6 PAGES 6 FIGURES PREPRINT 1. Fukugida and Yanagida 45 Phys. Lett., B 174 1986 Phys. Lett. B 174 (1986) 45 2. M. Flanz, E.A. Paschos and U. Sarkar 248 Phys. Lett., B 345 1995 Phys. Lett. B 345 (1995) 248 3. M. Luty 445 Phys. Rev., D 45 1992 Phys. Rev. D 45 (1992) 445 4. M. Flanz, E.A. Paschos, U. Sarkar and J. Weiss 693 Phys. Lett., B 389 1996 Phys. Lett. B 389 (1996) 693 M. Flanz and E.A. Paschos 113009 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 113009 5. A. Pilaftsis 5431 Phys. Rev., D 56 1997 Phys. Rev. D 56 (1997) 5431 6. W. Buchmüller and M. Plümacher 354 Phys. Lett., B 431 1998 Phys. Lett. B 431 (1998) 354 7. L. Covi, E. Roulet and F. Vissani 169 Phys. Lett., B 384 1996 Phys. Lett. B 384 (1996) 169 8. E.K. Akhmedov, V.A. Rubakov and A.Y. Smirnov 1359 Phys. Rev. Lett. 81 1998 Phys. Rev. Lett. 81 (1998) 1359 9. S.Y. Khlepnikov and M.E. Shaposhnikov 885 Nucl. Phys., B 308 1988 Nucl. Phys. B 308 (1988) 885 and references therein 10. J. Ellis, S. Lola and D.V. Nanopoulos 87 Phys. Lett., B 452 1999 Phys. Lett. B 452 (1999) 87 11. G. Lazarides and N. Vlachos 482 Phys. Lett., B 459 1999 Phys. Lett. B 459 (1999) 482 12. M.S. Berger and B. Brahmachari 073009 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 073009 13. K. Kang, S.K. Kang and U. Sarkar 391 Phys. Lett., B 486 2000 Phys. Lett. B 486 (2000) 391 14. H. Goldberg 389 Phys. Lett., B 474 2000 Phys. Lett. B 474 (2000) 389 15. M. Hirsch and S.F. King 113005 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 113005 16. H. Nielsen and Y. Takanishi 241 Phys. Lett., B 507 2001 Phys. Lett. B 507 (2001) 241 17. W. Buchmüller and D. Wyler 291 Phys. Lett., B 521 2001 Phys. Lett. B 521 (2001) 291 18. Falcone and Tramontano 1 Phys. Lett., B 506 2001 Phys. Lett. B 506 (2001) 1 F. Buccella et al 241 Phys. Lett., B 524 2002 Phys. Lett. B 524 (2002) 241 19. G.C. Branco et al., Nucl. Phys., B617 (2001) 475 20. A.S. Joshipura, E.A. Paschos and W. Rodejo-hann 227 Nucl. Phys., B 611 2001 Nucl. Phys. B 611 (2001) 227 and 29 J. High Energy Phys. 0108 2001 J. High Energy Phys. 0108 (2001) 29 21. mentioned by H.V. Klapdor­Kleingrothaus, in hep-ph/0103062 hep-ph/0204138 eng DO-TH-02-06 Paschos, E A Univ. Dortmund Neutrino Interactions at Low and Medium Energies Dortmund Dortmund Univ. Inst. Phys. 12 Apr 2002 9 p We discuss the calculations for several neutrino induced reactions from low energies to the GeV region. Special attention is paid to nuclear corrections when the targets are medium or heavy nuclei. Finally, we present several ratiosof neutral to charged current reactions whose values on isoscalar targets can be estimated accurately. The ratios are useful for investigating neutrino oscillations in Long Baseline experiments. LANL EDS SzGeCERN Particle Physics - Phenomenology Emmanuel A. Paschos <paschos@hal1.physik.uni-dortmund.de> http://invenio-software.org/download/invenio-demo-site-files/0204138.pdf http://invenio-software.org/download/invenio-demo-site-files/0204138.ps.gz CER n 200231 11 2002 2002-04-15 00 2002-04-15 BATCH CONTRIBUTED TO 1ST WORKSHOP ON NEUTRINO - NUCLEUS INTERACTIONS IN THE FEW GEV REGION (NUINT01) TSUKUBA JAPAN 13-16 DEC 2001 9 PAGES 15 FIGURES PREPRINT 1. E. A. Paschos, L. Pasquali and J. Y. Yu 263 Nucl. Phys., B 588 2000 Nucl. Phys. B 588 (2000) 263 2. E. A. Paschos and J. Y. Yu 033002 Phys. Rev., D 65 2002 Phys. Rev. D 65 (2002) 033002 3. C. Albright and C. Jarlskog 467 Nucl. Phys., B 84 1975 Nucl. Phys. B 84 (1975) 467 4. N. J. Baker et al 617 Phys. Rev., D 25 1982 Phys. Rev. D 25 (1982) 617 5. M. Hirai, S. Kumano and M. Miyama 034003 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 034003 6. K. J. Eskola, V. J. Kolhinen and P. V. Ru-uskanen 351 Nucl. Phys., B 535 1998 Nucl. Phys. B 535 (1998) 351 K. J. Eskola, V. J. Kolhinen, P. V. Ruuskanen and C. A. Salgado 645 Nucl. Phys., A 661 1999 Nucl. Phys. A 661 (1999) 645 7. See Figure 1 in Ref. [2] 8. P. A. Schreiner and F. V. von Hippel 333 Nucl. Phys., B 58 1973 Nucl. Phys. B 58 (1973) 333 9. S. L. Adler, S. Nussinov. and E. A. Paschos 2125 Phys. Rev., D 9 1974 Phys. Rev. D 9 (1974) 2125 10. S. L. Adler 2644 Phys. Rev., D 12 1975 Phys. Rev. D 12 (1975) 2644 11. P. Musset and J. P. Vialle 1 Phys. Rep. 39 1978 Phys. Rep. 39 (1978) 1 12. H. Kluttig, J. G. Morfin and W. Van Do-minick 446 Phys. Lett., B 71 1977 Phys. Lett. B 71 (1977) 446 13. R. Merenyi et al 743 Phys. Rev., D 45 1982 Phys. Rev. D 45 (1982) 743 14. S. K. Singh, M. T. Vicente-Vacas and E. Oset 23 Phys. Lett., B 416 1998 Phys. Lett. B 416 (1998) 23 15. E. A. Paschos and L. Wolfenstein 91 Phys. Rev., D 7 1973 Phys. Rev. D 7 (1973) 91 see equation (15) 16. E. A. Paschos, Precise Ratios for Neutrino-Nucleon and Neutrino-Nucleus Interactions, Dortmund preprint­DO­TH 02/02; hep-ph 0204090 17. G. Gounaris, E. A. Paschos and P. Porfyri-adis 63 Phys. Lett., B 525 2002 Phys. Lett. B 525 (2002) 63 18. J. Bouchez and I. Giomataris, CEA/Saclay internal note, DAPNIA/01-07, June 2001 hep-ph/0204139 eng Van Beveren, E University of Coimbra Remarks on the f_0(400-1200) scalar meson as the dynamically generated chiral partner of the pion 12 Apr 2002 15 p The quark-level linear sigma model is revisited, in particular concerning the identification of the f_0(400-1200) (or \sigma(600)) scalar meson as the chiral partner of the pion. We demonstrate the predictive power of the linearsigma model through the pi-pi and pi-N s-wave scattering lengths, as well as several electromagnetic, weak, and strong decays of pseudoscalar and vector mesons. The ease with which the data for these observables are reproduced in thelinear sigma model lends credit to the necessity to include the sigma as a fundamental q\bar{q} degree of freedom, to be contrasted with approaches like chiral perturbation theory or the confining NJL model of Shakin and Wang. LANL EDS SzGeCERN Particle Physics - Phenomenology Kleefeld, F Rupp, G Scadron, M D George Rupp <george@ajax.ist.utl.pt> http://invenio-software.org/download/invenio-demo-site-files/0204139.pdf http://invenio-software.org/download/invenio-demo-site-files/0204139.ps.gz CER n 200231 2002 11 Beveren, Eef van Kleefeld, Frieder Rupp, George Scadron, Michael D. 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] D. E. Groom et al. [Particle Data Group Collaboration] 1 Eur. Phys. J., C 15 2000 Eur. Phys. J. C 15 (2000) 1 [2] N. Isgur and J. Speth 2332 Phys. Rev. Lett. 77 1996 Phys. Rev. Lett. 77 (1996) 2332 [3] N. A. Törnqvist and M. Roos 1575 Phys. Rev. Lett. 76 1996 Phys. Rev. Lett. 76 (1996) 1575 hep-ph/9511210 [4] M. Harada, F. Sannino, and J. Schechter 1603 Phys. Rev. Lett. 78 1997 Phys. Rev. Lett. 78 (1997) 1603 hep-ph/9609428 [5] E. van Beveren, T. A. Rijken, K. Metzger, C. Dullemond, G. Rupp, and J. E. Ribeiro 615 Z. Phys., C 30 1986 Z. Phys. C 30 (1986) 615 Eef van Beveren and George Rupp 469 Eur. Phys. J., C 10 1999 Eur. Phys. J. C 10 (1999) 469 hep-ph/9806246 [6] M. Boglione and M. R. Pennington hep-ph/0203149 [7] M. Gell-Mann and M. L´evy 705 Nuovo Cimento 16 1960 Nuovo Cimento 16 (1960) 705 also see V. de Alfaro, S. Fubini, G. Furlan, and C. Rossetti, in Currents in Hadron Physics, North-Holland Publ., Amsterdam, Chap. 5 (1973) [8] R. Delbourgo and M. D. Scadron 251 Mod. Phys. Lett., A 10 1995 Mod. Phys. Lett. A 10 (1995) 251 hep-ph/9910242 657 Int. J. Mod. Phys., A 13 1998 Int. J. Mod. Phys. A 13 (1998) 657 hep-ph/9807504 [9] Y. Nambu and G. Jona-Lasinio 345 Phys. Rev. 122 1961 Phys. Rev. 122 (1961) 345 [10] C. M. Shakin and Huangsheng Wang 094020 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 094020 [11] C. M. Shakin and Huangsheng Wang 014019 Phys. Rev., D 63 2000 Phys. Rev. D 63 (2000) 014019 [12] G. Rupp, E. van Beveren, and M. D. Scadron 078501 Phys. Rev., D 65 2002 Phys. Rev. D 65 (2002) 078501 hep-ph/0104087 [13] Eef van Beveren, George Rupp, and Michael D. Scadron 300 Phys. Lett., B 495 2000 Phys. Lett. B 495 (2000) 300 [Erratum 365 Phys. Lett., B 509 2000 Phys. Lett. B 509 (2000) 365 ] hep-ph/0009265 Frieder Kleefeld, Eef van Beveren, George Rupp, and Michael D. Scadron hep-ph/0109158 [14] M. D. Scadron 239 Phys. Rev., D 26 1982 Phys. Rev. D 26 (1982) 239 2076 Phys. Rev., D 29 1984 Phys. Rev. D 29 (1984) 2076 669 Mod. Phys. Lett., A 7 1992 Mod. Phys. Lett. A 7 (1992) 669 [15] M. L´evy 23 Nuovo Cimento, A 52 1967 Nuovo Cimento, A 52 (1967) 23 S. Gasiorowicz and D. A. Geffen 531 Rev. Mod. Phys. 41 1969 Rev. Mod. Phys. 41 (1969) 531 J. Schechter and Y. Ueda 2874 Phys. Rev., D 3 1971 Phys. Rev. D 3 (1971) 2874 [Erratum 987 Phys. Rev., D 8 1973 Phys. Rev. D 8 (1973) 987 ] [16] T. Eguchi 2755 Phys. Rev., D 14 1976 Phys. Rev. D 14 (1976) 2755 T. Eguchi 611 Phys. Rev., D 17 1978 Phys. Rev. D 17 (1978) 611 [17] The once-subtracted dispersion-relation result hep-ph/0204140 eng CERN-TH-2002-069 RM3-TH-02-4 Aglietti, U CERN - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 A new model-independent way of extracting |V_ub/V_cb| Geneva CERN 12 Apr 2002 20 p The ratio between the photon spectrum in B -> X_s gamma and the differential semileptonic rate wrt the hadronic variable M_X/E_X is a short-distance quantity calculable in perturbation theory and independent of the Fermi motion ofthe b quark in the B meson. We present a NLO analysis of this ratio and show how it can be used to determine |V_ub/V_cb| independently of any model for the shape function. We also discuss how this relation can be used to test thevalidity of the shape-function theory on the data. LANL EDS SzGeCERN Particle Physics - Phenomenology Ciuchini, M Gambino, P Paolo Gambino <paolo.gambino@cern.ch> http://invenio-software.org/download/invenio-demo-site-files/0204140.pdf http://invenio-software.org/download/invenio-demo-site-files/0204140.ps.gz CER n 200231 2002 11 TH CERN 2002-04-15 00 2002-04-15 BATCH Aglietti, Ugo Ciuchini, Marco Gambino, Paolo PREPRINT [1] I. I. Bigi, M. A. Shifman, N. G. Uraltsev and A. I. Vainshtein 496 Phys. Rev. Lett. 71 1993 Phys. Rev. Lett. 71 (1993) 496 [arXiv hep-ph/9304225 and 2467 Int. J. Mod. Phys., A 9 1994 Int. J. Mod. Phys. A 9 (1994) 2467 [arXiv hep-ph/9312359 [2] M. Neubert 4623 Phys. Rev., D 49 1994 Phys. Rev. D 49 (1994) 4623 [arXiv hep-ph/9312311 [3] R. Akhoury and I. Z. Rothstein 2349 Phys. Rev., D 54 1996 Phys. Rev. D 54 (1996) 2349 [arXiv hep-ph/9512303 A. K. Leibovich and I. Z. Rothstein 074006 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 074006 [arXiv hep-ph/9907391 A. K. Leibovich, I. Low and I. Z. Rothstein 053006 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 053006 [arXiv hep-ph/9909404 A. K. Leibovich, I. Low and I. Z. Rothstein 86 Phys. Lett., B 486 2000 Phys. Lett. B 486 (2000) 86 [arXiv hep-ph/0005124 M. Neubert 88 Phys. Lett., B 513 2001 Phys. Lett. B 513 (2001) 88 [arXiv hep-ph/0104280 A. K. Leibovich, I. Low and I. Z. Rothstein 83 Phys. Lett., B 513 2001 Phys. Lett. B 513 (2001) 83 [arXiv hep-ph/0105066 [4] V. D. Barger, C. S. Kim and R. J. Phillips 629 Phys. Lett., B 251 1990 Phys. Lett. B 251 (1990) 629 A. F. Falk, Z. Ligeti and M. B. Wise 225 Phys. Lett., B 406 1997 Phys. Lett. B 406 (1997) 225 [arXiv hep-ph/9705235 I. I. Bigi, R. D. Dikeman and N. Uraltsev 453 Eur. Phys. J., C 4 1998 Eur. Phys. J. C 4 (1998) 453 [arXiv hep-ph/9706520 [5] R. Barate et al. (ALEPH Coll.) 555 Eur. Phys. J., C 6 1999 Eur. Phys. J. C 6 (1999) 555 M. Acciarri et al. (L3 Coll.), Phys. Lett., B436 (1998); P. Abreu et al. (DELPHI Coll.) 14 Phys. Lett., B 478 2000 Phys. Lett. B 478 (2000) 14 G. Abbiendi et al. (OPAL Coll.) 399 Eur. Phys. J., C 21 2001 Eur. Phys. J. C 21 (2001) 399 [6] A. Bornheim [CLEO Coll.], arXiv hep-ex/0202019 [7] C. W. Bauer, Z. Ligeti and M. E. Luke 395 Phys. Lett., B 479 2000 Phys. Lett. B 479 (2000) 395 [arXiv hep-ph/0002161 [8] C. W. Bauer, Z. Ligeti and M. E. Luke 113004 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 113004 [arXiv hep-ph/0107074 [9] U. Aglietti, arXiv hep-ph/0010251 [10] U. Aglietti 308 Phys. Lett., B 515 2001 Phys. Lett. B 515 (2001) 308 [arXiv hep-ph/0103002 [11] U. Aglietti 293 Nucl. Phys., B 610 2001 Nucl. Phys. B 610 (2001) 293 [arXiv hep-ph/0104020 [12] A. Ali and E. Pietarinen 519 Nucl. Phys., B 154 1979 Nucl. Phys. B 154 (1979) 519 [13] G. Altarelli, N. Cabibbo, G. Corb o, L. Maiani and G. Martinelli 365 Nucl. Phys., B 208 1982 Nucl. Phys. B 208 (1982) 365 [14] R. L. Jaffe and L. Randall 79 Nucl. Phys., B 412 1994 Nucl. Phys. B 412 (1994) 79 [arXiv hep-ph/9306201 [15] M. Neubert 3392 Phys. Rev., D 49 1994 Phys. Rev. D 49 (1994) 3392 [arXiv hep-ph/9311325 [16] U. Aglietti, M. Ciuchini, G. Corb o, E. Franco, G. Martinelli and L. Silvestrini 411 Phys. Lett., B 432 1998 Phys. Lett. B 432 (1998) 411 [arXiv hep-ph/9804416 [17] S. Catani, L. Trentadue, G. Turnock and B. R. Webber 3 Nucl. Phys., B 407 1993 Nucl. Phys. B 407 (1993) 3 [18] V. Lubicz 116 Nucl. Phys. B, Proc. Suppl. 94 2001 Nucl. Phys. B, Proc. Suppl. 94 (2001) 116 [arXiv hep-lat/0012003 [19] A. J. Buras, M. Jamin, M. E. Lautenbacher and P. H. Weisz 37 Nucl. Phys., B 400 1993 Nucl. Phys. B 400 (1993) 37 [arXiv hep-ph/9211304 M. Ciuchini, E. Franco, G. Martinelli and L. Reina 403 Nucl. Phys., B 415 1994 Nucl. Phys. B 415 (1994) 403 [arXiv hep-ph/9304257 [20] K. Chetyrkin, M. Misiak and M. Munz 206 Phys. Lett., B 400 1997 Phys. Lett. B 400 (1997) 206 [Erratum 414 Phys. Lett., B 425 1997 Phys. Lett. B 425 (1997) 414 ] [arXiv hep-ph/9612313 and refs. therein [21] P. Gambino and M. Misiak 338 Nucl. Phys., B 611 2001 Nucl. Phys. B 611 (2001) 338 [arXiv hep-ph/0104034 [22] M.B. Voloshin 275 Phys. Lett., B 397 1997 Phys. Lett. B 397 (1997) 275 A. Khodjamirian et al 167 Phys. Lett., B 402 1997 Phys. Lett. B 402 (1997) 167 Z. Ligeti, L. Randall and M.B. Wise 178 Phys. Lett., B 402 1997 Phys. Lett. B 402 (1997) 178 A.K. Grant, A.G. Morgan, S. Nussinov and R.D. Peccei 3151 Phys. Rev., D 56 1997 Phys. Rev. D 56 (1997) 3151 G. Buchalla, G. Isidori and S.J. Rey 594 Nucl. Phys., B 511 1998 Nucl. Phys. B 511 (1998) 594 [23] P. Gambino and U. Haisch 020 J. High Energy Phys. 0110 2001 J. High Energy Phys. 0110 (2001) 020 [arXiv hep-ph/0109058 and 001 J. High Energy Phys. 0009 2000 J. High Energy Phys. 0009 (2000) 001 [arXiv hep-ph/0007259 [24] F. De Fazio and M. Neubert 017 J. High Energy Phys. 9906 1999 J. High Energy Phys. 9906 (1999) 017 [arXiv hep-ph/9905351 [25] U. Aglietti, arXiv hep-ph/0105168 to appear in the Proceedings of "XIII Convegno sulla Fisica al LEP (LEPTRE 2001)", Rome (Italy), 18-20 April 2001 [26] T. van Ritbergen 353 Phys. Lett., B 454 1999 Phys. Lett. B 454 (1999) 353 [27] C. W. Bauer, M. E. Luke and T. Mannel, arXiv hep-ph/0102089 [28] The Particle Data Group 1 Eur. Phys. J., C 15 2000 Eur. Phys. J. C 15 (2000) 1 [29] M. Ciuchini et al 013 J. High Energy Phys. 0107 2001 J. High Energy Phys. 0107 (2001) 013 [arXiv hep-ph/0012308 [30] S. Chen et al., CLEO Coll 251807 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 251807 [31] N. Pott 938 Phys. Rev. D 54 1996 Phys. Rev., D 54 (1996) 938 [arXiv hep-ph/9512252 [32] C. Greub, T. Hurth and D. Wyler 3350 Phys. Rev. D 54 1996 Phys. Rev., D 54 (1996) 3350 [arXiv hep-ph/9603404 A. J. Buras, A. Czarnecki, M. Misiak and J. Urban 488 Nucl. Phys. B 611 2001 Nucl. Phys., B 611 (2001) 488 [arXiv hep-ph/0105160 [33] A. J. Buras, A. Czarnecki, M. Misiak and J. Urban, arXiv hep-ph/0203135 hep-ph/0204141 eng Appelquist, T Yale University Neutrino Masses in Theories with Dynamical Electroweak Symmetry Breaking 12 Apr 2002 4 p We address the problem of accounting for light neutrino masses in theories with dynamical electroweak symmetry breaking. As a possible solution, we embed (extended) technicolor in a theory in which a $|\Delta L|=2$ neutrinocondensate forms at a scale $\Lambda_N \gsim 10^{11}$ GeV, and produces acceptably small (Majorana) neutrino masses. We present an explicit model illustrating this mechanism. LANL EDS SzGeCERN Particle Physics - Phenomenology Shrock, R Robert Shrock <shrock@insti.physics.sunysb.edu> http://invenio-software.org/download/invenio-demo-site-files/0204141.pdf http://invenio-software.org/download/invenio-demo-site-files/0204141.ps.gz CER n 200231 2002 11 Appelquist, Thomas Shrock, Robert 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] S. Fukuda, et al 5651 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 5651 S. Fukuda et al. ibid, 5656 (2001) (SuperK) and Q.R. Ahmad et al 071301 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 071301 (SNO). Other data is from the Homestake, Kamiokande, GALLEX, and SAGE experiments [2] Y. Fukuda et al 9 Phys. Lett., B 433 1998 Phys. Lett. B 433 (1998) 9 1562 Phys. Rev. Lett. 81 1998 Phys. Rev. Lett. 81 (1998) 1562 2644 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 2644 185 Phys. Lett., B 467 1999 Phys. Lett. B 467 (1999) 185 (SuperK) and data from Kamiokande, IMB, Soudan-2, and MACRO experiments. The data, which is consistent with results from K2K, indicates that |m( 3)2 - m( 2)2| |m( 3)2 - m( 1)2| 2.5 × 10-3 eV2. With a hierarchical mass assumption, one infers m( 3) m232 0.05 eV [3] S. Weinberg 1277 Phys. Rev., D 19 1979 Phys. Rev. D 19 (1979) 1277 L. Susskind 2619 Phys. Rev., D 20 1979 Phys. Rev. D 20 (1979) 2619 E. Eichten and K. Lane 125 Phys. Lett., B 90 1980 Phys. Lett. B 90 (1980) 125 [4] P. Sikivie, L. Susskind, M. Voloshin, and V. Zakharov 189 Nucl. Phys., B 173 1980 Nucl. Phys. B 173 (1980) 189 [5] B. Holdom 301 Phys. Lett., B 150 1985 Phys. Lett. B 150 (1985) 301 K Yamawaki, M. Bando, and K. Matumoto 1335 Phys. Rev. Lett. 56 1986 Phys. Rev. Lett. 56 (1986) 1335 T. Appelquist, D. Karabali, and L. Wijeward-hana 957 Phys. Rev. Lett. 57 1986 Phys. Rev. Lett. 57 (1986) 957 T. Appelquist and L.C.R. Wijewardhana 774 Phys. Rev., D 35 1987 Phys. Rev. D 35 (1987) 774 568 Phys. Rev., D 36 1987 Phys. Rev. D 36 (1987) 568 [6] B. Holdom 1637 Phys. Rev., D 23 1981 Phys. Rev. D 23 (1981) 1637 169 Phys. Lett., B 246 1990 Phys. Lett. B 246 (1990) 169 [7] T. Appelquist and J. Terning 139 Phys. Lett., B 315 1993 Phys. Lett. B 315 (1993) 139 T. Appelquist, J. Terning, and L. Wijewardhana 1214 Phys. Rev. Lett. 77 1996 Phys. Rev. Lett. 77 (1996) 1214 2767 Phys. Rev. Lett. 79 1997 Phys. Rev. Lett. 79 (1997) 2767 T. Appelquist, N. Evans, S. Selipsky 145 Phys. Lett., B 374 1996 Phys. Lett. B 374 (1996) 145 T. Appelquist and S. Selipsky 364 Phys. Lett., B 400 1997 Phys. Lett. B 400 (1997) 364 [8] T. Appelquist, J. Terning 2116 Phys. Rev., D 50 1994 Phys. Rev. D 50 (1994) 2116 [9] Recent reviews include R. Chivukula hep-ph/0011264 K. Lane hep-ph/0202255 C. Hill E. Simmons hep-ph/0203079 [10] M. Gell-Mann, P. Ramond, R. Slansky, in Supergrav-ity (North Holland, Amsterdam, 1979), p. 315; T. Yanagida in proceedings of Workshop on Unified Theory and Baryon Number in the Universe, KEK, 1979 [11] Although we require our model to yield a small S, a re-analysis of precision electroweak data is called for in view of the value of sin2 W reported in G. Zeller et al 091802 Phys. Rev. Lett. 88 2002 Phys. Rev. Lett. 88 (2002) 091802 [12] For a vectorial SU(N) theory with Nf fermions in the fundamental representation, an IRFP occurs if Nf > Nf,min,IR, where, perturbatively, Nf,min,IR 34N3/(13N2 -3). At this IRFP, using the criticality con-dition [13], the theory is expected to exist in a confining phase with S SB if Nf,min,IR < Nf < Nf,con, where Nf,con (2/5)N(50N2 - 33)/(5N2 - 3) and in a confor-mal phase if Nf,con < Nf < 11N/2. For N = 2 we have Nf,min,IR 5 and Nf,con 8, respectively. For attempts at lattice measurements, see R. Mawhinney 57 Nucl. Phys. B, Proc. Suppl. 83 2000 Nucl. Phys. B, Proc. Suppl. 83 (2000) 57 [13] In the approximation of a single-gauge-boson exchange, the critical coupling for the condensation of fermion rep-resentations R1 × R2 Rc is 3 2 C2 = 1, where C2 = [C2(R1) + C2(R2) - C2(Rc)], and C2(R) is the quadratic Casimir invariant. Instanton contributions are also important [7] [14] J. Gasser, H. Leutwyler 77 Phys. Rep. 87 1982 Phys. Rep. 87 (1982) 77 H. Leutwyler, in 108 Nucl. Phys. B, Proc. Suppl. 94 2001 Nucl. Phys. B, Proc. Suppl. 94 (2001) 108 [15] A. Ali Khan et al 4674 Phys. Rev. Lett. 85 2000 Phys. Rev. Lett. 85 (2000) 4674 M. Wingate et al., Int. J. Mod. Phys., A16 S B1 (2001) 585 [16] Here a = exp[ETC,a fF (dµ/µ) ( (µ))], and in walking TC theories the anomalous dimension 1 so a ETC,a/fF [17] By convention, we write SM-singlet neutrinos as right-handed fields j,R. These are assigned lepton number 1. Thus, in writing SU(4)PS SU(3)c × U(1), the U(1) is not U(1)B-L since some neutrinos in the model are SU(4)PS-singlet states [18] Z. Maki, M. Nakagawa, S. Sakata 870 Prog. Theor. Phys. 28 1962 Prog. Theor. Phys. 28 (1962) 870 (2 × 2 matrix); B. W. Lee, S. Pakvasa, R. Shrock, and H. Sugawara 937 Phys. Rev. Lett. 38 1977 Phys. Rev. Lett. 38 (1977) 937 (3 × 3 matrix) [19] T. Appelquist and R. Shrock, to appear [20] K. Dienes, E. Dudas, T. Gherghetta 25 Nucl. Phys., B 557 1999 Nucl. Phys. B 557 (1999) 25 N. Arkani-Hamed, S. Dimopoulos, G. Dvali, and J. March-Russell hep-ph/9811448 T. Appelquist, B. Dobrescu, E. Ponton, and H.-U. Yee hep-ph/0201131 hep-th/0204100 eng LBNL-50097 UCB-PTH-02-14 Gaillard, M K University of California, Berkeley Modular Invariant Anomalous U(1) Breaking Berkeley, CA Lawrence Berkeley Nat. Lab. 11 Apr 2002 19 p We describe the effective supergravity theory present below the scale of spontaneous gauge symmetry breaking due to an anomalous U(1), obtained by integrating out tree-level interactions of massive modes. A simple case is examined insome detail. We find that the effective theory can be expressed in the linear multiplet formulation, with some interesting consequences. Among them, the modified linearity conditions lead to new interactions not present in the theorywithout an anomalous U(1). These additional interactions are compactly expressed through a superfield functional. LANL EDS SzGeCERN Particle Physics - Theory Giedt, J Mary K Gaillard <gaillard@thsrv.lbl.gov> http://invenio-software.org/download/invenio-demo-site-files/0204100.pdf http://invenio-software.org/download/invenio-demo-site-files/0204100.ps.gz CER n 200231 2002 11 Gaillard, Mary K. Giedt, Joel 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] J. Giedt 1 Ann. Phys. (N.Y.) 297 2002 Ann. Phys. (N.Y.) 297 (2002) 1 hep-th/0108244 [2] M. Dine, N. Seiberg and E. Witten 585 Nucl. Phys., B 289 1987 Nucl. Phys. B 289 (1987) 585 J. J. Atick, L. Dixon and A. Sen 109 Nucl. Phys., B 292 1987 Nucl. Phys. B 292 (1987) 109 M. Dine, I. Ichinose and N. Seiberg 253 Nucl. Phys., B 293 1987 Nucl. Phys. B 293 (1987) 253 [3] M. B. Green and J. H. Schwarz 117 Phys. Lett., B 149 1984 Phys. Lett. B 149 (1984) 117 [4] P. Bin´etruy, G. Girardi and R. Grimm 111 Phys. Lett., B 265 1991 Phys. Lett. B 265 (1991) 111 [5] M. Müller 292 Nucl. Phys., B 264 1986 Nucl. Phys. B 264 (1986) 292 P. Bin´etruy, G. Girardi, R. Grimm and M. Müller 389 Phys. Lett., B 189 1987 Phys. Lett. B 189 (1987) 389 [6] P. Bin´etruy, G. Girardi and R. Grimm 255 Phys. Rep. 343 2001 Phys. Rep. 343 (2001) 255 [7] G. Girardi and R. Grimm 49 Ann. Phys. (N.Y.) 272 1999 Ann. Phys. (N.Y.) 272 (1999) 49 [8] P. Bin´etruy, M. K. Gaillard and Y.-Y. Wu 109 Nucl. Phys., B 481 1996 Nucl. Phys. B 481 (1996) 109 [9] P. Bin´etruy, M. K. Gaillard and Y.-Y. Wu 27 Nucl. Phys., B 493 1997 Nucl. Phys. B 493 (1997) 27 P. Bin´etruy, M. K. Gaillard and Y.-Y. Wu 288 Phys. Lett., B 412 1997 Phys. Lett. B 412 (1997) 288 [10] M. K. Gaillard, B. Nelson and Y.-Y. Wu 549 Phys. Lett., B 459 1999 Phys. Lett. B 459 (1999) 549 [11] M. K. Gaillard and B. Nelson 3 Nucl. Phys., B 571 2000 Nucl. Phys. B 571 (2000) 3 [12] S. Ferrara, C. Kounnas and M. Porrati 263 Phys. Lett., B 181 1986 Phys. Lett. B 181 (1986) 263 [13] M. Cveti c, J. Louis and B. A. Ovrut 227 Phys. Lett., B 206 1988 Phys. Lett. B 206 (1988) 227 L. E. Iba nez and D. Lüst 305 Nucl. Phys., B 382 1992 Nucl. Phys. B 382 (1992) 305 [14] M. K. Gaillard 125 Phys. Lett., B 342 1995 Phys. Lett. B 342 (1995) 125 105027 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 105027 D : 61 (2000) 084028 [15] E. Witten 151 Phys. Lett., B 155 1985 Phys. Lett. B 155 (1985) 151 [16] L. J. Dixon, V. S. Kaplunovsky and J. Louis 27 Nucl. Phys., B 329 1990 Nucl. Phys. B 329 (1990) 27 [17] S.J. Gates, M. Grisaru, M. Ro cek and W. Siegel, Superspace (Benjamin/Cummings, 1983) [18] M.K. Gaillard and T.R. Taylor 577 Nucl. Phys., B 381 1992 Nucl. Phys. B 381 (1992) 577 [19] J. Wess and J. Bagger, Supersymmetry and supergravity (Princeton, 1992) [20] P. Bin´etruy, C. Deffayet and P. Peter 163 Phys. Lett., B 441 1998 Phys. Lett. B 441 (1998) 163 [21] M. K. Gaillard and J. Giedt, in progress hep-ph/0204142 eng Chacko, Z University of California, Berkeley Fine Structure Constant Variation from a Late Phase Transition Berkeley, CA Lawrence Berkeley Nat. Lab. 12 Apr 2002 9 p Recent experimental data indicates that the fine structure constant alpha may be varying on cosmological time scales. We consider the possibility that such a variation could be induced by a second order phase transition which occursat late times (z ~ 1 - 3) and involves a change in the vacuum expectation value (vev) of a scalar with milli-eV mass. Such light scalars are natural in supersymmetric theories with low SUSY breaking scale. If the vev of this scalarcontributes to masses of electrically charged fields, the low-energy value of alpha changes during the phase transition. The observational predictions of this scenario include isotope-dependent deviations from Newtonian gravity atsub-millimeter distances, and (if the phase transition is a sharp event on cosmological time scales) the presence of a well-defined step-like feature in the alpha(z) plot. The relation between the fractional changes in alpha and theQCD confinement scale is highly model dependent, and even in grand unified theories the change in alpha does not need to be accompanied by a large shift in nucleon masses. LANL EDS SzGeCERN Particle Physics - Phenomenology Grojean, C Perelstein, M Maxim Perelstein <meperelstein@lbl.gov> http://invenio-software.org/download/invenio-demo-site-files/0204142.pdf http://invenio-software.org/download/invenio-demo-site-files/0204142.ps.gz CER n 200231 2002 11 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] J. K. Webb, M. T. Murphy, V. V. Flambaum, V. A. Dzuba, J. D. Barrow, C. W. Churchill, J. X. Prochaska and A. M. Wolfe 091301 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 091301 astro-ph/0012539 see also J. K. Webb, V. V. Flambaum, C. W. Churchill, M. J. Drinkwater and J. D. Barrow 884 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 884 astro-ph/9803165 V. A. Dzuba, V. V. Flambaum, and J. K. Webb 888 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 888 [2] P. A. Dirac 323 Nature 139 1937 Nature 139 (1937) 323 for an historial perspective, see F. Dyson, "The fundamental constants and their time variation", in Aspects of Quantum Theory, eds A. Salam and E. Wigner [3] T. Damour gr-qc/0109063 [4] J. D. Bekenstein 1527 Phys. Rev., D 25 1982 Phys. Rev. D 25 (1982) 1527 [5] G. R. Dvali and M. Zaldarriaga 091303 Phys. Rev. Lett. 88 2002 Phys. Rev. Lett. 88 (2002) 091303 hep-ph/0108217 [6] K. A. Olive and M. Pospelov 085044 Phys. Rev., D 65 2002 Phys. Rev. D 65 (2002) 085044 hep-ph/0110377 [7] T. Banks, M. Dine and M. R. Douglas 131301 Phys. Rev. Lett. 88 2002 Phys. Rev. Lett. 88 (2002) 131301 hep-ph/0112059 [8] P. Langacker, G. Segr e and M. J. Strassler 121 Phys. Lett., B 528 2002 Phys. Lett. B 528 (2002) 121 hep-ph/0112233 [9] A. Y. Potekhin, A. V. Ivanchik, D. A. Varshalovich, K. M. Lanzetta, J. A. Bald-win, G. M. Williger and R. F. Carswell 523 Astrophys. J. 505 1998 Astrophys. J. 505 (1998) 523 astro-ph/9804116 [10] S. Weinberg 3357 Phys. Rev., D 9 1974 Phys. Rev. D 9 (1974) 3357 L. Dolan and R. Jackiw 3320 Phys. Rev., D 9 1974 Phys. Rev. D 9 (1974) 3320 [11] N. Arkani-Hamed, L. J. Hall, C. Kolda and H. Murayama 4434 Phys. Rev. Lett. 85 2000 Phys. Rev. Lett. 85 (2000) 4434 astro-ph/0005111 [12] M. Dine, W. Fischler and M. Srednicki 575 Nucl. Phys., B 189 1981 Nucl. Phys. B 189 (1981) 575 S. Dimopou-los and S. Raby 353 Nucl. Phys., B 192 1981 Nucl. Phys. B 192 (1981) 353 L. Alvarez-Gaum´e, M. Claudson and M. B. Wise 96 Nucl. Phys., B 207 1982 Nucl. Phys. B 207 (1982) 96 M. Dine and A. E. Nelson 1277 Phys. Rev., D 48 1993 Phys. Rev. D 48 (1993) 1277 hep-ph/9303230 M. Dine, A. E. Nelson and Y. Shirman 1362 Phys. Rev., D 51 1995 Phys. Rev. D 51 (1995) 1362 hep-ph/9408384 M. Dine, A. E. Nelson, Y. Nir and Y. Shirman 2658 Phys. Rev., D 53 1996 Phys. Rev. D 53 (1996) 2658 hep-ph/9507378 [13] N. Arkani-Hamed, S. Dimopoulos, N. Kaloper and R. Sundrum 193 Phys. Lett., B 480 2000 Phys. Lett. B 480 (2000) 193 hep-th/0001197 S. Kachru, M. Schulz and E. Silverstein 045021 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 045021 hep-th/0001206 C. Cs´aki, J. Erlich and C. Grojean 312 Nucl. Phys., B 604 2001 Nucl. Phys. B 604 (2001) 312 hep-th/0012143 [14] X. Calmet and H. Fritzsch hep-ph/0112110 H. Fritzsch hep-ph/0201198 [15] G. R. Dvali and S. Pokorski 126 Phys. Lett., B 379 1996 Phys. Lett. B 379 (1996) 126 hep-ph/9601358 [16] Z. Chacko and R. N. Mohapatra 2836 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 2836 hep-ph/9810315 [17] J. P. Turneaure, C. M. Will, B. F. Farrell, E. M. Mattison and R. F. C. Vessot 1705 Phys. Rev., D 27 1983 Phys. Rev. D 27 (1983) 1705 J. D. Prestage, R. L. Tjoelker and L. Maleki 3511 Phys. Rev. Lett. 74 1995 Phys. Rev. Lett. 74 (1995) 3511 [18] A. I. Shlyakhter 340 Nature 264 1976 Nature 264 (1976) 340 T. Damour and F. Dyson 37 Nucl. Phys., B 480 1996 Nucl. Phys. B 480 (1996) 37 hep-ph/9606486 Y. Fujii, A. Iwamoto, T. Fukahori, T. Ohnuki, M. Nakagawa, H. Hidaka, Y. Oura, P. Möller 377 Nucl. Phys., B 573 2000 Nucl. Phys. B 573 (2000) 377 hep-ph/9809549 [19] E. W. Kolb, M. J. Perry and T. P. Walker 869 Phys. Rev., D 33 1986 Phys. Rev. D 33 (1986) 869 B. A. Camp-bell and K. A. Olive 429 Phys. Lett., B 345 1995 Phys. Lett. B 345 (1995) 429 hep-ph/9411272 L. Bergström, S. Iguri and H. Rubinstein 045005 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 045005 astro-ph/9902157 P. P. Avelino et al 103505 Phys. Rev., D 64 2001 Phys. Rev. D 64 (2001) 103505 astro-ph/0102144 [20] S. Hannestad 023515 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 023515 astro-ph/9810102 M. Kaplinghat, R. J. Scherrer and M. S. Turner 023516 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 023516 astro-ph/9810133 P. P. Avelino, C. J. Martins, G. Rocha and P. Viana 123508 Phys. Rev., D 62 2000 Phys. Rev. D 62 (2000) 123508 astro-ph/0008446 [21] C. D. Hoyle, U. Schmidt, B. R. Heckel, E. G. Adelberger, J. H. Gundlach, D. J. Kap-ner and H. E. Swanson 1418 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 1418 hep-ph/0011014 E. G. Adelberger [EOT-WASH Group Collaboration] hep-ex/0202008 [22] S. Coleman, Aspects of symmetry. (Cambridge Univ. Press, 1985.) hep-ph/0204143 eng Domin, P Comenius University Phenomenological Study of Solar-Neutrino Induced Double Beta Decay of Mo100 12 Apr 2002 8 p The detection of solar-neutrinos of different origin via induced beta beta process of Mo100 is investigated. The particular counting rates and energy distributions of emitted electrons are presented. A discussion in respect tosolar-neutrino detector consisting of 10 tones of Mo100 is included. Both the cases of the standard solar model and neutrino oscillation scenarios are analyzed. Moreover, new beta^- beta^+ and beta^-/EC channels of the double-betaprocess are introduced and possibilities of their experimental observation are addressed. LANL EDS SzGeCERN Particle Physics - Phenomenology Simkovic, F Semenov, S V Gaponov, Y V Pavol Domin <domin@chavena.dnp.fmph.uniba.sk> http://invenio-software.org/download/invenio-demo-site-files/0204143.pdf http://invenio-software.org/download/invenio-demo-site-files/0204143.ps.gz CER n 200231 2002 11 Gaponov, Yu. V. 2002-04-15 00 2002-04-15 BATCH 8 PAGES LATEX 2 POSTSCRIPT FIGURES TALK PRESENTED BY P DOMIN ON THE WORKSHOP MEDEX'01 (PRAGUE JUNE 2001) TO APPEAR IN CZECH J PHYS 52 (2002) PREPRINT [1] S. M. Bilenky, C. Giunti and W. Grimus 1 Prog. Part. Nucl. Phys. 45 1999 Prog. Part. Nucl. Phys. 45 (1999) 1 [2] J. N. Bahcall, S. Basu and M. H. Pinsonneault 1 Phys. Lett., B 433 1998 Phys. Lett. B 433 (1998) 1 [3] R. Davis Jr 13 Prog. Part. Nucl. Phys. 32 1994 Prog. Part. Nucl. Phys. 32 (1994) 13 [4] Kamiokande Collaboration, Y Fukuda et al 1683 Phys. Rev. Lett. 77 1996 Phys. Rev. Lett. 77 (1996) 1683 [5] SAGE collaboration, A. I. Abazov et al 3332 Phys. Rev. Lett. 67 1991 Phys. Rev. Lett. 67 (1991) 3332 D. N. Abdurashitov et al 4708 Phys. Rev. Lett. 77 1996 Phys. Rev. Lett. 77 (1996) 4708 [6] GALLEX collaboration, P. Anselmann et al 376 Phys. Lett., B 285 1992 Phys. Lett. B 285 (1992) 376 W. Hampel et al 384 Phys. Lett., B 388 1996 Phys. Lett. B 388 (1996) 384 [7] Super-Kamiokande Coll., S. Fukuda et al 5651 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 5651 [8] SNO Collaboration, Q.R. Ahmad et. al 071301 Phys. Rev. Lett. 87 2001 Phys. Rev. Lett. 87 (2001) 071301 [9] H. Ejiri et al., Phys. Rev. Lett.85 2917 (2000); H. Ejiri 265 Phys. Rep. 338 2000 Phys. Rep. 338 (2000) 265 [10] S. V. Semenov, Yu. V. Gaponov and R. U. Khafizov 1379 Yad. Fiz. 61 1998 Yad. Fiz. 61 (1998) 1379 [11] L. V. Inzhechik, Yu. V. Gaponov and S. V. Semenov 1384 Yad. Fiz. 61 1998 Yad. Fiz. 61 (1998) 1384 [12] http://www.sns.ias.edu/~jnb. http://www.sns.ias.edu/~jnb [13] B. Singh et al 478 Nucl. Data Sheets 84 1998 Nucl. Data Sheets 84 (1998) 478 [14] H. Akimune et al 23 Phys. Lett., B 394 1997 Phys. Lett. B 394 (1997) 23 [15] J. N. Bahcall, P. I. Krastev, and A. Yu. Smirnov 096016 Phys. Rev., D 58 1998 Phys. Rev. D 58 (1998) 096016 hep-th/0204101 eng CSULB-PA-02-2 Nishino, H California State University Axisymmetric Gravitational Solutions as Possible Classical Backgrounds around Closed String Mass Distributions 12 Apr 2002 15 p By studying singularities in stationary axisymmetric Kerr and Tomimatsu-Sato solutions with distortion parameter \d = 2, 3, ... in general relativity, we conclude that these singularities can be regarded as nothing other than closedstring-like circular mass distributions. We use two different regularizations to identify \d-function type singularities in the energy-momentum tensor for these solutions, realizing a regulator independent result. This result givessupporting evidence that these axisymmetric exact solutions may well be the classical solutions around closed string-like mass distributions, just like Schwarzschild solution corresponding to a point mass distribution. In otherwords, these axisymmetric exact solutions may well provide the classical backgrounds around closed strings. LANL EDS SzGeCERN Particle Physics - Theory Rajpoot, S Hitoshi Nishino <hnishino@csulb.edu> http://invenio-software.org/download/invenio-demo-site-files/0204101.pdf http://invenio-software.org/download/invenio-demo-site-files/0204101.ps.gz CER n 200231 2002 11 Nishino, Hitoshi Rajpoot, Subhash 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] K. Schwarzschild, Sitzungsberichte Preuss. Akad. Wiss., 424 (1916) [2] M. Green, J.H. Schwarz and E. Witten, `Superstring Theory', Vols. I and II, Cambridge University Press (1987) [3] J. Chazy, Bull. Soc. Math. France: 52 (1924) 17H.E.J. Curzon, Proc. London Math. Soc. : 23 (1924) 477 [4] P. Ho rava and E. Witten 506 Nucl. Phys., B 460 1996 Nucl. Phys. B 460 (1996) 506 94 Nucl. Phys., B 475 1996 Nucl. Phys. B 475 (1996) 94 [5] N. Arkani-Hamed, S. Dimopoulos and G. Dvali 263 Phys. Lett. 429 1998 Phys. Lett. 429 (1998) 263 I. Anto-niadis, N. Arkani-Hamed, S. Dimopoulos and G. Dvali 257 Phys. Lett. 436 1998 Phys. Lett. 436 (1998) 257 [6] L. Randall and R. Sundrum 3370 Phys. Rev. Lett. 83 1999 Phys. Rev. Lett. 83 (1999) 3370 4690 Phys. Rev. Lett. 83 1999 Phys. Rev. Lett. 83 (1999) 4690 [7] R.P. Kerr 237 Phys. Rev. Lett. 11 1963 Phys. Rev. Lett. 11 (1963) 237 [8] A. Ya Burinskii 441 Phys. Lett., A 185 1994 Phys. Lett. A 185 (1994) 441 `Complex String as Source of Kerr Ge-ometry' hep-th/9503094 2392 Phys. Rev., D 57 1998 Phys. Rev. D 57 (1998) 2392 `Structure of Spinning Parti-cle Suggested by Gravity, Supergravity & Low-Energy String Theory' hep-th/9910045 Czech. J. Phys.50S : 1 (2000) 201 [9] See, e.g., A. Sen 2081 Mod. Phys. Lett., A 10 1995 Mod. Phys. Lett. A 10 (1995) 2081 P.H. Frampton and T.W. Kephart 2571 Mod. Phys. Lett., A 10 1995 Mod. Phys. Lett. A 10 (1995) 2571 A. Strominger and C. Vafa 99 Phys. Lett. 379 1996 Phys. Lett. 379 (1996) 99 K. Behrndt 188 Nucl. Phys., B 455 1995 Nucl. Phys. B 455 (1995) 188 J.C. Breckenridge, D.A. Lowe, R.C. Myers, A.W. Peet, A. Strominger and C. Vafa 423 Phys. Lett., B 381 1996 Phys. Lett. B 381 (1996) 423 C. Callan and J. Maldacena 591 Nucl. Phys., B 472 1996 Nucl. Phys. B 472 (1996) 591 G. Horowitz and A. Stro-minger 2368 Phys. Rev. Lett. 77 1996 Phys. Rev. Lett. 77 (1996) 2368 J.M. Maldacena, `Black Holes in String Theory', Ph.D. Thesis hep-th/9607235 A. Dabholkar and J.A. Harvey 478 Phys. Rev. Lett. 63 1989 Phys. Rev. Lett. 63 (1989) 478 A. Dabholkar, G.W. Gibbons, J.A. Harvey and F. Ruiz Ruiz 33 Nucl. Phys., B 340 1990 Nucl. Phys. B 340 (1990) 33 C.G. Callan, Jr., J.M. Maldacena, A.W. Peet 645 Nucl. Phys. B 475 1996 Nucl. Phys. B 475 (1996) 645 [10] A. Tomimatu and H. Sato 95 Prog. Theor. Phys. 50 1973 Prog. Theor. Phys. 50 (1973) 95 [11] M. Yamazaki and S. Hori 696 Prog. Theor. Phys. 57 1977 Prog. Theor. Phys. 57 (1977) 696 erratum 1248 Prog. Theor. Phys. 60 1978 Prog. Theor. Phys. 60 (1978) 1248 S. Hori 1870 Prog. Theor. Phys. 59 1978 Prog. Theor. Phys. 59 (1978) 1870 erratum 365 Prog. Theor. Phys. 61 1979 Prog. Theor. Phys. 61 (1979) 365 [12] H. Nishino 77 Phys. Lett. 359 1995 Phys. Lett. 359 (1995) 77 [13] H. Weyl, Ann. de Phys. : 54 (1917) 117 [14] J.M. Bardeen, Astrophys. Jour. : 162 (1970) 71 [15] D. Kramer, H. Stephani, E. Herlt and M. MacCallum, `Exact Solutions of Einstein's Field Equations', Cambridge University Press (1980) [16] R. Arnowitt, S. Deser and C. Misner, in `Gravitation': `An Introduction to Current Re-search', ed. L. Witten (New York, Wiley, 1962) hep-th/0204102 eng Bo-Yu, H Northwest University, China Soliton on Noncommutative Orbifold $ T^2/Z_k $ 12 Apr 2002 13 p Following the construction of the projection operators on $ T^2 $ presented by Gopakumar, Headrick and Spradin, we construct the projection operators on the integral noncommutative orbifold $ T^2/G (G=Z_k,k=2, 3, 4, 6)$. Suchoperators are expressed by a function on this orbifold. So it provides a complete set of projection operators upon the moduli space $T^2 \times K/Z_k$. All these operators has the same trace 1/A ($A$ is an integer). Since theprojection operators correspond to solitons in noncommutative string field theory, we obtained the explicit expression of all the soliton solutions on $ T^2/Z_k $. LANL EDS SzGeCERN Particle Physics - Theory Kangjie, S Zhan-ying, Y Zhanying Yang <yzy@phy.nwu.edu.cn> http://invenio-software.org/download/invenio-demo-site-files/0204102.pdf http://invenio-software.org/download/invenio-demo-site-files/0204102.ps.gz CER n 200231 2002 11 Bo-yu, Hou Kangjie, Shi Zhan-ying, Yang 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] A. Connes, Non-commutative Geometry, Academic Press, 1994 [2] G. Landi," An introduction to non-commutative space and their geometry" hep-th/9701078 J. Varilly, "An introduction to non-commutative Geometry" physics/9709045 [3] J. Madore, "An introduction to non-commutative Differential Geometry and its physical Applications", Cambridge University press 2nd edition, 1999 [4] A. Connes, M. Douglas, A. Schwartz, Matrix theory compactification on Tori 003 J. High Energy Phys. 9802 1998 J. High Energy Phys. 9802 (1998) 003 hep-th/9711162 M. dougals, C. Hull 008 J. High Energy Phys. 9802 1998 J. High Energy Phys. 9802 (1998) 008 hep-th/9711165 [5] Nathan. Seiberg and Edward. Witten," String theory and non-commutative geometry" 032 J. High Energy Phys. 9909 1999 J. High Energy Phys. 9909 (1999) 032 hep-th/9908142 V. Schomerus," D-branes and Deformation Quan-tization" 030 J. High Energy Phys. 9906 1999 J. High Energy Phys. 9906 (1999) 030 [6] E. Witten, "Noncommutative Geometry and String Field Theory" 253 Nucl. Phys., B 268 1986 Nucl. Phys. B 268 (1986) 253 [7] R. B. Laughlin, "The quantum Hall Effect", edited by R. Prange and S. Girvin, p233 [8] L. Susskind hep-th/0101029 J. P. Hu and S. C. Zhang cond-mat/0112432 [9] R. Gopakumar, M. Headrick, M. Spradin, "on Noncommutative Multi-solitons" hep-th/0103256 [10] E. J. Martinec and G. Moore, "Noncommutative Solitons on Orbifolds" hep-th/0101199 [11] D. J. Gross and N. A. Nekrasov, " Solitons in noncommutative Gauge Theory" hep-th/0010090 M. R. Douglas and N. A. Nekrasov, "Noncommutative Field Theory" hep-th/0106048 [12] R. Gopakumar, S. Minwalla and A. Strominger, " Noncommutative Soliton" 048 J. High Energy Phys. 005 2000 J. High Energy Phys. 005 (2000) 048 hep-th/0003160 [13] J. Harvey, " Komaba Lectures on Noncommutative Solitons and D-branes hep-th/0102076 J. A. Harvey, P. Kraus and F.Larsen, J. High Energy Phys.0012 (200) 024 hep-th/0010060 [14] A. Konechny and A. Schwarz, "Compactification of M(atrix) theory on noncommutative toroidal orbifolds" 667 Nucl. Phys., B 591 2000 Nucl. Phys. B 591 (2000) 667 hep-th/9912185 " Moduli spaces of max-imally supersymmetric solutions on noncommutative tori and noncommutative orbifolds", J. High Energy Phys.0009, (2000) 005 hep-th/0005167 [15] S. Walters, "Projective modules over noncommutative sphere", J. London Math. Soc. : 51 (1995) 589"Chern characters of Fourier modules", Can. J. Math. : 52 (2000) 633 [16] M. Rieffel, Pacific J. Math. : 93 (1981) 415 [17] F. P. Boca 325 Commun. Math. Phys. 202 1999 Commun. Math. Phys. 202 (1999) 325 [18] H. Bacry, A. Grossman and J. Zak 1118 Phys. Rev., B 12 1975 Phys. Rev. B 12 (1975) 1118 [19] J. Zak, In Solid State Phys.edited by H. Ehrenreich, F. Seitz and D. Turnbull (Aca-demic,new York,1972), Vol. 27 nucl-th/0204031 eng LA-UR-02-2040 Page, P R Los Alamos Sci. Lab. Hybrid Baryons Los Alamos, NM Los Alamos Sci. Lab. 11 Apr 2002 12 p We review the status of hybrid baryons. The only known way to study hybrids rigorously is via excited adiabatic potentials. Hybrids can be modelled by both the bag and flux-tube models. The low-lying hybrid baryon is N 1/2^+ with amass of 1.5-1.8 GeV. Hybrid baryons can be produced in the glue-rich processes of diffractive gamma N and pi N production, Psi decays and p pbar annihilation. LANL EDS SzGeCERN Nuclear Physics "Philip R. page" <prp@t16prp.lanl.gov> http://invenio-software.org/download/invenio-demo-site-files/0204031.pdf http://invenio-software.org/download/invenio-demo-site-files/0204031.ps.gz 11 2002 Page, Philip R. 2002-04-15 00 2002-04-15 BATCH INVITED PLENARY TALK PRESENTED AT THE ``9TH INTERNATIONAL CONFERENCE ON THE STRUCTURE OF BARYONS'' (BARYONS 2002) 3-8 MARCH NEWPORT NEWS VA USA 12 PAGES 7 ENCAPSULATED POSTSCRIPT FIGURES LATEX n 200216 1. T. Barnes, contribution at the COSY Workshop on Baryon Excitations (May 2000, Jülich, Germany), nucl-th/0009011 2. E.I. Ivanov et al., Phys. Rev. Lett. 86 (2001) 3977 3. T.T. Takahashi, H. Matsufuru, Y. Nemoto and H. Suganuma, Phys. Rev. Lett. 86 (2001) 18 3. ; ibid., Proc. of "Int. Symp. on Hadron and Nuclei" (February 2001, Seoul, Korea), published by Institute of Physics and Applied Phyics (2001), ed. Dr. T.K. Choi, p. 341; ibid., T. Umeda, Nucl. Phys. Proc. S. : 94 (2001) 554. 4. Yu. A. Simonov, these proceedings; D.S. Kuzmenko and Yu. A. Simonov, hep-ph/0202277 5. S. Capstick and N. Isgur, Phys. Rev. D 34 (1986) 2809 6. C. Alexandrou, Ph. de Forcrand and A. Tsapalis, Phys. Rev. D 65 (2002) 054503 7. C.E. Carlson and N.C. Mukhopadhyay, Phys. Rev. Lett. 67 (1991) 3745 8. C.-K. Chow, D. Pirjol and T.-M. Yan, Phys. Rev. D 59 (1999) 056002 9. T. Barnes, Ph. D. thesis, California Institute of Technology, 1977; T. Barnes and F.E. Close, Phys. Lett. B 123 (1983) 89 10. E. Golowich, E. Haqq and G. Karl, Phys. Rev. D 28 (1983) 160 11. C.E. Carlson, Proc. of the 7th Int. Conf. on the Structure of Baryons (October 1995, Santa Fe, NM), p. 461, eds. B. F. Gibson et al. (World Scientific, Singapore, 1996). 12. C.E. Carlson and T.H. Hansson, Phys. Lett. B 128 (1983) 95 13. I. Duck and E. Umland, Phys. Lett. B 128 (1983) 221 14. P.R. Page, Proc. of "The Physics of Excited Nucleons" (NSTAR2000) (February 2000, Newport News, VA). 15. J. Merlin and J. Paton, J. Phys. G 11 (1985) 439 16. K.J. Juge, J. Kuti and C.J. Morningstar, Nucl. Phys. Proc. S. : 63 (1998) 543. 17. E.S. Swanson and A.P. Szczepaniak, Phys. Rev. D 59 (1999) 014035 18. T.J. Allen, M.G. Olsson and S. Veseli, Phys. Lett. B 434 (1998) 110 19. S. Capstick and P.R. Page, Phys. Rev. D 60 (1999) 111501 20. L.S. Kisslinger et al., Phys. Rev. D 51 (1995) 5986 20. Nucl. Phys. A 629 (1998) 30c 20. A.P. Martynenko, Sov. J. Nucl. Phys. 54 (1991) 488 21. S.M. Gerasyuta and V.I. Kochkin, hep-ph/0203104 22. T.D. Cohen and L.Ya. Glozman, Phys. Rev. D 65 (2002) 016006 23. E. Klempt, these proceedings. 24. A.M. Zaitsev (VES Collab.), Proc. of ICHEP’96 (Warsaw, 1996). 25. D.E. Groom et al. (Particle Data Group), Eur. Phys. J. C 15 (2000) 1 26. H. Li (BES Collab.), Nucl. Phys. A 675 (2000) 189c 26. B.-S. Zou et al., hep-ph/9909204 27. L.S. Kisslinger and Z.-P. Li, Phys. Lett. B 445 (1999) 271 28. N. Isgur, Phys. Rev. D 60 (1999) 114016 29. Z.-P. Li et al., Phys. Rev. D 44 (1991) 2841 29. Phys. Rev. D 46 (1992) 70 30. T. Barnes and F.E. Close, Phys. Lett. B 128 (1983) 277 31. O. Kittel and G.F. Farrar, hep-ph/0010186 32. P.R. Page, Proc. of "3rd Int. Conf. on Quark Confinement and Hadron Spectrum" (Confinement III), (June 1998, Newport News, VA). 33. K.J. Juge, J. Kuti and C.J. Morningstar, Nucl. Phys. Proc. S. : 63 (1998) 326. PREPRINT nucl-th/0204032 eng Amos, K The University of Melbourne A simple functional form for proton-nucleus total reaction cross sections 12 Apr 2002 13 p A simple functional form has been found that gives a good representation of the total reaction cross sections for the scattering of protons from (15) nuclei spanning the mass range ${}^{9}$Be to ${}^{238}$U and for proton energiesranging from 20 to 300 MeV. LANL EDS SzGeCERN Nuclear Physics Deb, P K Ken Amos <amos@physics.unimelb.edu.au> http://invenio-software.org/download/invenio-demo-site-files/0204032.pdf http://invenio-software.org/download/invenio-demo-site-files/0204032.ps.gz 2002 11 2002-04-15 00 2002-04-15 BATCH n 200216 PREPRINT nucl-th/0204033 eng Oyamatsu, K Aichi Shukutoku Univ Saturation of nuclear matter and radii of unstable nuclei 12 Apr 2002 26 p We examine relations among the parameters characterizing the phenomenological equation of state (EOS) of nearly symmetric, uniform nuclear matter near the saturation density by comparing macroscopic calculations of radii and massesof stable nuclei with the experimental data. The EOS parameters of interest here are the symmetry energy S_0, the symmetry energy density-derivative coefficient L and the incompressibility K_0 at the normal nuclear density. We find aconstraint on the relation between K_0 and L from the empirically allowed values of the slope of the saturation line (the line joining the saturation points of nuclear matter at finite neutron excess), together with a strongcorrelation between S_0 and L. In the light of the uncertainties in the values of K_0 and L, we macroscopically calculate radii of unstable nuclei as expected to be produced in future facilities. We find that the matter radii dependstrongly on L while being almost independent of K_0, a feature that will help to determine the L value via systematic measurements of nuclear size. LANL EDS SzGeCERN Nuclear Physics Iida, K Kei Iida <keiiida@postman.riken.go.jp> http://invenio-software.org/download/invenio-demo-site-files/0204033.pdf http://invenio-software.org/download/invenio-demo-site-files/0204033.ps.gz CER n 200231 2002 11 Oyamatsu, Kazuhiro Iida, Kei 2002-04-15 00 2002-04-15 BATCH PREPRINT [1] J.M. Blatt and V.F. Weisskopf, Theoretical Nuclear Physics, Wiley, New York, 1952 [2] H. Heiselberg, V.R. Pandharipande 481 Annu. Rev. Nucl. Part. Sci. 50 2000 Annu. Rev. Nucl. Part. Sci. 50 (2000) 481 [3] K. Oyamatsu, I. Tanihata, Y. Sugahara, K. Sumiyoshi, H. Toki 3 Nucl. Phys., A 634 1998 Nucl. Phys. A 634 (1998) 3 [4] B.A. Brown 5296 Phys. Rev. Lett. 85 2000 Phys. Rev. Lett. 85 (2000) 5296 [5] K.C. Chung, C.S. Wang, A.J. Santiago nucl-th/0102017 [6] B.A. Li 4221 Phys. Rev. Lett. 85 2000 Phys. Rev. Lett. 85 (2000) 4221 [7] C. Sturm et al 39 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 39 [8] C. Fuchs, A. Faessler, E. Zabrodin, Y.M. Zheng 1974 Phys. Rev. Lett. 86 2001 Phys. Rev. Lett. 86 (2001) 1974 [9] P. Danielewicz, in: Proc. Int. Symp. on Non-Equilibrium and Nonlinear Dynamics in Nuclear and Other Finite Systems, Beijing, 2001 nucl-th/0112006 [10] D.H. Youngblood, H.L. Clark, Y.-W. Lui 691 Phys. Rev. Lett. 82 1999 Phys. Rev. Lett. 82 (1999) 691 [11] J.A. Pons, F.M. Walter, J.M. Lattimer, M. Prakash, R. Neuhaeuser, P. An 981 Astrophys. J. 564 2002 Astrophys. J. 564 (2002) 981 [12] J.M. Lattimer 337 Annu. Rev. Nucl. Part. Sci. 31 1981 Annu. Rev. Nucl. Part. Sci. 31 (1981) 337 [13] K. Oyamatsu 431 Nucl. Phys., A 561 1993 Nucl. Phys. A 561 (1993) 431 [14] L.R.B. Elton, A. Swift 52 Nucl. Phys., A 94 1967 Nucl. Phys. A 94 (1967) 52 [15] M. Yamada 512 Prog. Theor. Phys. 32 1964 Prog. Theor. Phys. 32 (1964) 512 [16] H. de Vries, C.W. de Jager, C. de Vries 495 At. Data Nucl. Data Tables 36 1987 At. Data Nucl. Data Tables 36 (1987) 495 [17] G. Audi, A.H. Wapstra 409 Nucl. Phys., A 595 1995 Nucl. Phys. A 595 (1995) 409 [18] S. Goriely, F. Tondeur, J.M. Pearson 311 At. Data Nucl. Data Tables 77 2001 At. Data Nucl. Data Tables 77 (2001) 311 [19] M. Samyn, S. Goriely, P.-H. Heenen, J.M. Pearson, F. Tondeur 142 Nucl. Phys., A 700 2002 Nucl. Phys. A 700 (2002) 142 [20] E. Chabanat, P. Bonche, P. Haensel, J. Meyer, R. Schaeffer 231 Nucl. Phys., A 635 1998 Nucl. Phys. A 635 (1998) 231 [21] Y. Sugahara, H. Toki 557 Nucl. Phys., A 579 1994 Nucl. Phys. A 579 (1994) 557 [22] A. Ozawa, T. Suzuki, I. Tanihata 32 Nucl. Phys., A 693 2001 Nucl. Phys. A 693 (2001) 32 [23] C.J. Batty, E. Friedman, H.J. Gils, H. Rebel 1 Adv. Nucl. Phys. 19 1989 Adv. Nucl. Phys. 19 (1989) 1 [24] G. Fricke, C. Bernhardt, K. Heilig, L.A. Schaller, L. Schellenberg, E.B. Shera, C.W. de Jager 177 At. Data Nucl. Data Tables 60 1995 At. Data Nucl. Data Tables 60 (1995) 177 [25] G. Huber et al 2342 Phys. Rev., C 18 1978 Phys. Rev. C 18 (1978) 2342 [26] L. Ray, G.W. Hoffmann, W.R. Coker 223 Phys. Rep. 212 1992 Phys. Rep. 212 (1992) 223 [27] S. Yoshida, H. Sagawa, N. Takigawa 2796 Phys. Rev., C 58 1998 Phys. Rev. C 58 (1998) 2796 [28] C.J. Pethick, D.G. Ravenhall 173 Nucl. Phys., A 606 1996 Nucl. Phys. A 606 (1996) 173 [29] K. Iida, K. Oyamatsu, unpublished [30] J.P. Blaizot, J.F. Berger, J. Decharg´e, M. Girod 435 Nucl. Phys., A 591 1995 Nucl. Phys. A 591 (1995) 435 nucl-th/0204034 eng Bozek, P Institute of Nuclear Physics, Cracow, Poland Nuclear matter with off-shell propagation 12 Apr 2002 Symmetric nuclear matter is studied within the conserving, self-consistent T-matrix approximation. This approach involves off-shell propagation of nucleons in the ladder diagrams. The binding energy receives contributions from thebackground part of the spectral function, away form the quasiparticle peak. The Fermi energy at the saturation point fulfills the Hugenholz-Van Hove relation. In comparison to the Brueckner-Hartree-Fock approach, the binding energyis reduced and the equation of state is harder LANL EDS SzGeCERN Nuclear Physics Bozek <bozek@sothis.ifj.edu.pl> http://invenio-software.org/download/invenio-demo-site-files/0204034.pdf http://invenio-software.org/download/invenio-demo-site-files/0204034.ps.gz 2002 11 2002-04-15 00 2002-04-15 BATCH n 200216 PREPRINT SCAN-9605068 eng McGILL-96-15 Contogouris, A P University of Athens One loop corrections for certain reactions initiated by 5-parton subprocesses via helicity amplitudes Montreal McGill Univ. Phys. Dept. Apr 1996? 28 p UNC9808 SzGeCERN Particle Physics - Phenomenology Merebashvili, Z V Lebessis, F Veropoulos, G http://invenio-software.org/download/invenio-demo-site-files/convert_SCAN-9605068.pdf http://invenio-software.org/download/invenio-demo-site-files/SCAN-9605068.tif 13 1996 1996-05-08 50 2001-12-14 BATCH 4234-4243 7 Phys. Rev., D 54 1996 h 199620 ARTICLE eng TRI-PP-86-73 Bryman, D A University of British Columbia Exotic muon decay mu --> e + x Burnaby, BC TRIUMF Aug 1986 8 p jv200203 SzGeCERN Particle Physics - Experimental Results Clifford, E T H 13 1986 1990-01-29 50 2002-03-26 BATCH 2787-88 22 Phys. Rev. Lett. 57 1986 SLAC 1594699 h 198648n ARTICLE hep-th/0003289 eng PUPT-1926 Costa, M S Princeton University A Test of the AdS/CFT Duality on the Coulomb Branch Princeton, NJ Princeton Univ. Joseph-Henry Lab. Phys. 31 Mar 2000 11 p We consider the N=4 SU(N) Super Yang Mills theory on the Coulomb branch with gauge symmetry broken to S(U(N_1)*U(N_2)). By integrating the W particles, the effective action near the IR SU(N_i) conformal fixed points is seen to be adeformation of the Super Yang Mills theory by a non-renormalized, irrelevant, dimension 8 operator. The correction to the two-point function of the dilaton field dual operator near the IR is related to a three-point function ofchiral primary operators at the conformal fixed points and agrees with the classical gravity prediction, including the numerical factor. LANL EDS LANLPUBL200104 SzGeCERN Particle Physics - Theory Miguel S Costa <miguel@feynman.princeton.edu> http://invenio-software.org/download/invenio-demo-site-files/0003289.pdf http://invenio-software.org/download/invenio-demo-site-files/0003289.ps.gz 2000 13 Princeton University 2000-04-03 50 2001-11-09 BATCH Costa, Miguel S. 287-292 Phys. Lett., B 482 2000 SLAC 4356110 n 200014 ARTICLE [1] J.M. Maldacena, The Large N Limit of Superconformal Field Theories and Supergrav-ity 231 Adv. Theor. Math. Phys. 2 1998 Adv. Theor. Math. Phys. 2 (1998) 231 hep-th/9711200 [2] S.S. Gubser, I.R. Klebanov and A.M. Polyakov, Gauge Theory Correlators from Non-Critical String Theory 105 Phys. Lett., B 428 1998 Phys. Lett. B 428 (1998) 105 hep-th/9802109 [3] E. Witten, Anti De Sitter Space And Holography 253 Adv. Theor. Math. Phys. 2 1998 Adv. Theor. Math. Phys. 2 (1998) 253 hep-th/9802150 [4] O. Aharony, S.S. Gubser, J. Maldacena, H. Ooguri and Y. Oz, Large N Field Theories, String Theory and Gravity 183 Phys. Rep. 323 2000 Phys. Rep. 323 (2000) 183 hep-th/9905111 [5] J.A. Minahan and N.P. Warner, Quark Potentials in the Higgs Phase of Large N Supersymmetric Yang-Mills Theories 005 J. High Energy Phys. 06 1998 J. High Energy Phys. 06 (1998) 005 hep-th/9805104 [6] M.R. Douglas and W. Taylor, Branes in the bulk of Anti-de Sitter space hep-th/9807225 [7] A.A. Tseytlin and S. Yankielowicz, Free energy of N=4 super Yang-Mills in Higgs phase and non-extremal D3-brane interactions 145 Nucl. Phys., B 541 1999 Nucl. Phys. B 541 (1999) 145 hep-th/9809032 [8] Y. Wu, A Note on AdS/SYM Correspondence on the Coulomb Branch hep-th/9809055 [9] P. Kraus, F. Larsen, S. Trivedi, The Coulomb Branch of Gauge Theory from Rotating Branes 003 J. High Energy Phys. 03 1999 J. High Energy Phys. 03 (1999) 003 hep-th/9811120 [10] I.R. Klebanov and E. Witten, AdS/CFT Correspondence and Symmetry Breaking 89 Nucl. Phys., B 556 1999 Nucl. Phys. B 556 (1999) 89 hep-th/9905104 [11] D.Z. Freedman, S.S. Gubser, K. Pilch and N.P. Warner, Continuous distributions of D3-branes and gauged supergravity hep-th/9906194 [12] A. Brandhuber and K. Sfetsos, Wilson loops from multicentre and rotating branes, mass gaps and phase structure in gauge theories hep-th/9906201 [13] I. Chepelev and R. Roiban, A note on correlation functions in AdS5/SY M4 corre-spondence on the Coulomb branch 74 Phys. Lett., B 462 1999 Phys. Lett. B 462 (1999) 74 hep-th/9906224 [14] S.B. Giddings and S.F. Ross, D3-brane shells to black branes on the Coulomb branch 024036 Phys. Rev., D 61 2000 Phys. Rev. D 61 (2000) 024036 hep-th/9907204 [15] M. Cvetic, S.S. Gubser, H. Lu and C.N. Pope, Symmetric Potentials of Gauged Su-pergravities in Diverse Dimensions and Coulomb Branch of Gauge Theories hep-th/9909121 [16] R.C.Rashkov and K.S.Viswanathan, Correlation functions in the Coulomb branch of N=4 SYM from AdS/CFT correspondence hep-th/9911160 [17] M.S. Costa, Absorption by Double-Centered D3-Branes and the Coulomb Branch of N = 4 SYM Theory hep-th/9912073 [18] Y.S. Myung, G. Kang and H.W. Lee, Greybody factor for D3-branes in B field hep-th/9911193 S-wave absorption of scalars by noncommutative D3-branes hep-th/9912288 [19] R. Manvelyan, H.J.W. Mueller-Kirsten, J.-Q. Liang, Y. Zhang, Absorption Cross Sec-tion of Scalar Field in Supergravity Background hep-th/0001179 [20] S.S. Gubser and I.R. Klebanov, Absorption by Branes and Schwinger Terms in the World Volume Theory 41 Phys. Lett., B 413 1997 Phys. Lett. B 413 (1997) 41 hep-th/9708005 [21] K. Intriligator, Maximally Supersymmetric RG Flows and AdS Duality hep-th/9909082 [22] S.S. Gubser, A. Hashimoto, I.R. Klebanov and M. Krasnitz, Scalar Absorption and the Breaking of the World Volume Conformal Invariance 393 Nucl. Phys., B 526 1998 Nucl. Phys. B 526 (1998) 393 hep-th/9803023 [23] S. Lee, S. Minwalla, M. Rangamani and N. Seiberg, Three-Point Functions of Chiral Operators in D=4, N = 4 SYM at Large N 697 Adv. Theor. Math. Phys. 2 1998 Adv. Theor. Math. Phys. 2 (1998) 697 hep-th/9806074 [24] E. D'Hoker, D.Z. Freedman and W. Skiba, Field Theory Tests for Correlators in the AdS/CFT Correspondence 045008 Phys. Rev., D 59 1999 Phys. Rev. D 59 (1999) 045008 hep-th/9807098 [25] F. Gonzalez-Rey, B. Kulik and I.Y. Park, Non-renormalization of two and three Point Correlators of N=4 SYM in N=1 Superspace 164 Phys. Lett., B 455 1999 Phys. Lett. B 455 (1999) 164 hep-th/9903094 [26] K. Intriligator, Bonus Symmetries of N=4 Super-Yang-Mills Correlation Functions via AdS Duality 575 Nucl. Phys., B 551 1999 Nucl. Phys. B 551 (1999) 575 hep-th/9811047 K. Intriligator and W. Skiba, Bonus Symmetry and the Operator Product Expansion of N=4 Super-Yang-Mills 165 Nucl. Phys., B 559 1999 Nucl. Phys. B 559 (1999) 165 hep-th/9905020 [27] B. Eden, P.S. Howe and P.C. West, Nilpotent invariants in N=4 SYM 19 Phys. Lett., B 463 1999 Phys. Lett. B 463 (1999) 19 hep-th/9905085 P.S. Howe, C. Schubert, E. Sokatchev and P.C. West, Explicit construction of nilpotent covariants in N=4 SYM hep-th/9910011 [28] A. Petkou and K. Skenderis, A non-renormalization theorem for conformal anomalies 100 Nucl. Phys., B 561 1999 Nucl. Phys. B 561 (1999) 100 hep-th/9906030 [29] M.R. Douglas, D. Kabat, P. Pouliot and S.H. Shenker, D-branes and Short Distances in String Theory 85 Nucl. Phys., B 485 1997 Nucl. Phys. B 485 (1997) 85 hep-th/9608024 [30] G. Lifschytz and S.D. Mathur, Supersymmetry and Membrane Interactions in M(atrix) Theory 621 Nucl. Phys., B 507 1997 Nucl. Phys. B 507 (1997) 621 hep-th/9612087 [31] J. Maldacena, Probing Near Extremal Black Holes with D-branes 3736 Phys. Rev., D 57 1998 Phys. Rev. D 57 (1998) 3736 hep-th/9705053 Branes probing black holes 17 Nucl. Phys. B, Proc. Suppl. 68 1998 Nucl. Phys. B, Proc. Suppl. 68 (1998) 17 hep-th/9709099 [32] I. Chepelev and A.A. Tseytlin, Interactions of type IIB D-branes from D-instanton ma-trix model 629 Nucl. Phys., B 511 1998 Nucl. Phys. B 511 (1998) 629 hep-th/9705120 Long-distance interactions of branes: correspondence between supergravity and super Yang-Mills descriptions 73 Nucl. Phys., B 515 1998 Nucl. Phys. B 515 (1998) 73 hep-th/9709087 A.A. Tseytlin, Interactions Between Branes and Matrix Theories 99 Nucl. Phys. B, Proc. Suppl. 68 1998 Nucl. Phys. B, Proc. Suppl. 68 (1998) 99 hep-th/9709123 [33] M. Dine and N. Seiberg, Comments on Higher Derivative Operators in Some SUSY Field Theories 239 Phys. Lett., B 409 1997 Phys. Lett. B 409 (1997) 239 hep-th/9705057 [34] A.A. Tseytlin, On non-abelian generalisation of Born-Infeld action in string theory 41 Nucl. Phys., B 501 1997 Nucl. Phys. B 501 (1997) 41 hep-th/9701125 [35] S.S. Gubser and A. Hashimoto, Exact absorption probabilities for the D3-brane, Com-mun. Math. Phys. : 203 (1999) 325 hep-th/9805140 [36] S.S. Gubser, Non-conformal examples of AdS/CFT 1081 Class. Quantum Gravity 17 2000 Class. Quantum Gravity 17 (2000) 1081 hep-th/9910117 eng Bollen, G Institut fur Physic, Universitat Mainz ISOLTRAP : a tandem penning trap system for accurate on-line mass determination of short-lived isotopes SzGeCERN Detectors and Experimental Techniques Becker, S Kluge, H J Konig, M Moore, M Otto, T Raimbault-Hartmann, H Savard, G Schweikhard, L Stolzenberg, H ISOLDE Collaboration 1996 13 IS302 ISOLDE PPE CERN PS 1996-05-08 50 2001-12-14 BATCH 675-697 Nucl. Instrum. Methods Phys. Res., A 368 1996 n 199600 a1996 ARTICLE ISOLDEPAPER hep-th/0003291 eng McInnes, B National University of Singapore AdS/CFT For Non-Boundary Manifolds In its Euclidean formulation, the AdS/CFT correspondence begins as a study of Yang-Mills conformal field theories on the sphere, S^4. It has been successfully extended, however, to S^1 X S^3 and to the torus T^4. It is natural tohope that it can be made to work for any manifold on which it is possible to define a stable Yang-Mills conformal field theory. We consider a possible classification of such manifolds, and show how to deal with the most obviousobjection : the existence of manifolds which cannot be represented as boundaries. We confirm Witten's suggestion that this can be done with the help of a brane in the bulk. LANL EDS SzGeCERN Particle Physics - Theory Brett McInnes <matmcinn@nus.edu.sg> http://invenio-software.org/download/invenio-demo-site-files/0003291.pdf http://invenio-software.org/download/invenio-demo-site-files/0003291.ps.gz 2000 13 Innes, Brett Mc 2000-04-03 50 2001-11-09 BATCH 025 J. High Energy Phys. 05 2000 SLAC 4356136 n 200014 ARTICLE SCAN-9605071 eng KEK-Preprint-95-196 TUAT-HEP-96-1 DPNU-96-04 Emi, K KEK Study of a dE/dx measurement and the gas-gain saturation by a prototype drift chamber for the BELLE-CDC Tsukuba KEK Jan 1996 20 p UNC9806 SzGeCERN Detectors and Experimental Techniques Tsukamoto, T Hirano, H Mamada, H Sakai, Y Uno, S Itami, S Kajikawa, R Nitoh, O Ohishi, N Sugiyama, A Suzuki, S Takahashi, T Tamagawa, Y Tomoto, M Yamaki, T library@kekvax.kek.jp http://invenio-software.org/download/invenio-demo-site-files/convert_SCAN-9605071.pdf http://invenio-software.org/download/invenio-demo-site-files/SCAN-9605071.tif 1996 13 1996-05-08 50 2001-12-14 BATCH 225 2 Nucl. Instrum. Methods Phys. Res., A 379 1996 SLAC 3328660 h 199620 ARTICLE hep-th/0003293 eng Smailagic, A University of Osijek Higher Dimensional Schwinger-like Anomalous Effective Action We construct explicit form of the anomalous effective action, in arbitrary even dimension, for Abelian vector and axial gauge fields coupled to Dirac fermions. It turns out to be a surprisingly simple extension of 2D Schwinger modeleffective action. LANL EDS LANLPUBL200104 SzGeCERN Particle Physics - Theory Spallucci, E spallucci@ts.infn.it http://invenio-software.org/download/invenio-demo-site-files/0003293.pdf http://invenio-software.org/download/invenio-demo-site-files/0003293.ps.gz CER n 200231 2000 13 2000-04-03 50 2001-11-09 BATCH 045010 Phys. Rev., D 62 2000 SLAC 4356152 ARTICLE [1] S.L. Adler 2426 Phys. Rev. 177 1969 Phys. Rev. 177 (1969) 2426 [2] S.E.Treiman, R. Jackiw, D.J.Gross " Lectures on Current Algebra and its Applications ", Princeton UP, Princeton NJ, (1972) [3] T.Berger " Fermions in two (1+1)-dimensional anomalous gauge theories: the chiral Schwinger model and the chiral quantum gravity " Hamburg U DESY-90-084 July 1990 [4] L.Rosenberg, Phys. Rev.129, (1963) 2786 [5] R.Jackiw " Topological Investigations of Quantized Gauge Theories " in Relativity, Groups and Topology eds. B.deWitt and R.Stora (Elsevier, Amsterdam 1984) [6] M.T.Grisaru, N.K.Nielsen, W.Siegel, D.Zanon 157 Nucl. Phys., B 247 1984 Nucl. Phys. B 247 (1984) 157 [7] A.M. Polyakov 207 Phys. Lett., B 103 1981 Phys. Lett. B 103 (1981) 207 A.M. Polyakov 893 Mod. Phys. Lett., A 2 1987 Mod. Phys. Lett. A 2 (1987) 893 [8] R.J. Riegert 56 Phys. Lett. 134 1984 Phys. Lett. 134 (1984) 56 [9] K.Fujikawa 1195 Phys. Rev. Lett. 42 1979 Phys. Rev. Lett. 42 (1979) 1195 [10] B.deWitt, Relativity, Groups and Topology, Paris (1963); A.O.Barvinsky, G.A.Vilkovisky 1 Phys. Rep. 119 1985 Phys. Rep. 119 (1985) 1 [11] P.H.Frampton, T.W.Kephart 1343 Phys. Rev. Lett. 50 1983 Phys. Rev. Lett. 50 (1983) 1343 L. Alvarez-Gaume, E.Witten 269 Nucl. Phys. 234 1983 Nucl. Phys. 234 (1983) 269 [12] A.Smailagic, R.E.Gamboa-Saravi 145 Phys. Lett. 192 1987 Phys. Lett. 192 (1987) 145 A.Smailagic, E.Spallucci 17 Phys. Lett. 284 1992 Phys. Lett. 284 (1992) 17 hep-th/0003294 eng Matsubara, K Uppsala University Restrictions on Gauge Groups in Noncommutative Gauge Theory We show that the gauge groups SU(N), SO(N) and Sp(N) cannot be realized on a flat noncommutative manifold, while it is possible for U(N). LANL EDS LANLPUBL200104 SzGeCERN Particle Physics - Theory Keizo Matsubara <keizo.matsubara@teorfys.uu.se> http://invenio-software.org/download/invenio-demo-site-files/0003294.pdf http://invenio-software.org/download/invenio-demo-site-files/0003294.ps.gz CER n 200231 2000 13 Matsubara, Keizo 2000-04-03 50 2001-11-09 BATCH 417-419 Phys. Lett., B 482 2000 SLAC 4356160 ARTICLE [1] J.Polchinski, TASI Lectures on D-branes hep-th/9611050 [2] M.R.Douglas and C.Hull, D-branes and the Noncommuta-tive torus 8 J. High Energy Phys. 2 1998 J. High Energy Phys. 2 (1998) 8 hep-th/9711165 [3] V.Schomerus, D-branes and Deformation Quantization hep-th/9903205 [4] N.Seiberg and E.Witten, String Theory and Noncommu-tative Geometry hep-th/9908142 2 hep-th/0003295 eng Wang, B Fudan University Quasinormal modes of Reissner-Nordstrom Anti-de Sitter Black Holes Complex frequencies associated with quasinormal modes for large Reissner-Nordstr$\ddot{o}$m Anti-de Sitter black holes have been computed. These frequencies have close relation to the black hole charge and do not linearly scale withthe black hole temperature as in Schwarzschild Anti-de Sitter case. In terms of AdS/CFT correspondence, we found that the bigger the black hole charge is, the quicker for the approach to thermal equilibrium in the CFT. The propertiesof quasinormal modes for $l>0$ have also been studied. LANL EDS LANLPUBL200104 SzGeCERN Particle Physics - Theory Lin, C Y Abdalla, E Elcio Abdalla <eabdalla@fma.if.usp.br> http://invenio-software.org/download/invenio-demo-site-files/0003295.pdf http://invenio-software.org/download/invenio-demo-site-files/0003295.ps.gz http://invenio-software.org/download/invenio-demo-site-files/0003295.fig1.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig2.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig3.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig4.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig5.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig6a.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig6b.ps.gz Additional http://invenio-software.org/download/invenio-demo-site-files/0003295.fig7.ps.gz Additional CER n 200231 2000 13 Wang, Bin Lin, Chi-Yong Abdalla, Elcio 2000-04-03 50 2001-11-09 BATCH 79-88 Phys. Lett., B 481 2000 SLAC 4356179 ARTICLE [1] K. D. Kokkotas, B. G. Schmidt gr-qc/9909058 and references therein [2] W. Krivan 101501 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 101501 [3] S. Hod gr-qc/9902072 [4] P. R. Brady, C. M. Chambers, W. G. Laarakkers and E. Poisson 064003 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 064003 [5] P. R. Brady, C. M. Chambers, W. Krivan and P. Laguna 7538 Phys. Rev., D 55 1997 Phys. Rev. D 55 (1997) 7538 [6] G. T. Horowitz and V. E. Hubeny hep-th/9909056 G. T. Horowitz hep-th/9910082 [7] E. S. C. Ching, P. T. Leung, W. M. Suen and K. Young 2118 Phys. Rev., D 52 1995 Phys. Rev. D 52 (1995) 2118 [8] J. M. Maldacena 231 Adv. Theor. Math. Phys. 2 1998 Adv. Theor. Math. Phys. 2 (1998) 231 [9] E. Witten 253 Adv. Theor. Math. Phys. 2 1998 Adv. Theor. Math. Phys. 2 (1998) 253 [10] S. S. Gubser, I. R. Klebanov and A. M. Polyakov 105 Phys. Lett., B 428 1998 Phys. Lett. B 428 (1998) 105 [11] A. Chamblin, R. Emparan, C. V. Johnson and R. C. Myers 064018 Phys. Rev., D 60 1999 Phys. Rev. D 60 (1999) 064018 [12] E. W. Leaver 1238 J. Math. Phys. 27 1986 J. Math. Phys. 27 (1986) 1238 [13] E. W. Leaver 2986 Phys. Rev., D 41 1990 Phys. Rev. D 41 (1990) 2986 [14] C. O. Lousto 1733 Phys. Rev., D 51 1995 Phys. Rev. D 51 (1995) 1733 [15] O. Kaburaki 316 Phys. Lett., A 217 1996 Phys. Lett. A 217 (1996) 316 [16] R. K. Su, R. G. Cai and P. K. N. Yu 2932 Phys. Rev., D 50 1994 Phys. Rev. D 50 (1994) 2932 3473 Phys. Rev., D 48 1993 Phys. Rev. D 48 (1993) 3473 6186 Phys. Rev., D 52 1995 Phys. Rev. D 52 (1995) 6186 B. Wang, J. M. Zhu 1269 Mod. Phys. Lett., A 10 1995 Mod. Phys. Lett. A 10 (1995) 1269 [17] A. Chamblin, R. Emparan, C. V. Johnson and R. C. Myers, Phys. Rev., D60: 104026 (1999) 5070 90 110 130 150 r+ 130 230 330 50 70 90 110 130 150 r+ rus Пушкин, А С Медный всадник <!--HTML-->На берегу пустынных волн, <br /> Стоял он, дум великих полн, <br /> И вдаль глядел. Пред ним широко<br /> Река неслася; бедный чёлн<br /> По ней стремился одиноко. <br /> По мшистым, топким берегам<br /> Чернели избы здесь и там, <br /> Приют убогого чухонца; <br /> И лес, неведомый лучам<br /> В тумане спрятанного солнца, <br /> Кругом шумел. 1833 1990-01-27 00 2002-04-12 BATCH POETRY gre Καβάφης, Κ Π Ιθάκη <!--HTML-->Σα βγεις στον πηγαιμό για την Ιθάκη, <br /> να εύχεσαι νάναι μακρύς ο δρόμος, <br /> γεμάτος περιπέτειες, γεμάτος γνώσεις. <br/> Τους Λαιστρυγόνας και τους Κύκλωπας, <br /> τον θυμωμένο Ποσειδώνα μη φοβάσαι, <br /> τέτοια στον δρόμο σου ποτέ σου δεν θα βρείς, <br /> αν μέν' η σκέψις σου υψηλή, αν εκλεκτή<br /> συγκίνησις το πνεύμα και το σώμα σου αγγίζει. <br /> Τους Λαιστρυγόνας και τους Κύκλωπας, <br /> τον άγριο Ποσειδώνα δεν θα συναντήσεις, <br /> αν δεν τους κουβανείς μες στην ψυχή σου, <br /> αν η ψυχή σου δεν τους στήνει εμπρός σου. <br /> <br> Να εύχεσαι νάναι μακρύς ο δρόμος. <br /> Πολλά τα καλοκαιρινά πρωϊά να είναι<br /> που με τι ευχαρίστησι, με τι χαρά<br /> θα μπαίνεις σε λιμένας πρωτοειδωμένους· <br /> να σταματήσεις σ' εμπορεία Φοινικικά, <br /> και τες καλές πραγμάτειες ν' αποκτήσεις, <br /> σεντέφια και κοράλλια, κεχριμπάρια κ' έβενους, <br /> και ηδονικά μυρωδικά κάθε λογής, <br /> όσο μπορείς πιο άφθονα ηδονικά μυρωδικά· <br /> σε πόλεις Αιγυπτιακές πολλές να πας, <br /> να μάθεις και να μάθεις απ' τους σπουδασμένους. <br /> <br /> Πάντα στον νου σου νάχεις την Ιθάκη. <br/> Το φθάσιμον εκεί είν' ο προορισμός σου. <br /> Αλλά μη βιάζεις το ταξίδι διόλου. <br /> Καλλίτερα χρόνια πολλά να διαρκέσει· <br /> και γέρος πια ν' αράξεις στο νησί, <br /> πλούσιος με όσα κέρδισες στον δρόμο, <br /> μη προσδοκώντας πλούτη να σε δώσει η Ιθάκη. <br /> <br /> Η Ιθάκη σ' έδωσε το ωραίο ταξίδι. <br /> Χωρίς αυτήν δεν θάβγαινες στον δρόμο. <br /> Αλλο δεν έχει να σε δώσει πια. <br /> <br /> Κι αν πτωχική την βρεις, η Ιθάκη δεν σε γέλασε. <br /> Ετσι σοφός που έγινες, με τόση πείρα, <br /> ήδη θα το κατάλαβες η Ιθάκες τι σημαίνουν. 1911 2005-03-02 00 2005-03-02 BATCH POETRY SzGeCERN 2345180CERCER SLAC 5278333 hep-th/0210114 eng Klebanov, Igor R Princeton University AdS Dual of the Critical O(N) Vector Model 2002 11 Oct 2002 11 p We suggest a general relation between theories of infinite number of higher-spin massless gauge fields in $AdS_{d+1}$ and large $N$ conformal theories in $d$ dimensions containing $N$-component vector fields. In particular, we propose that the singlet sector of the well-known critical 3-d O(N) model with the $(\phi^a \phi^a)^2$ interaction is dual, in the large $N$ limit, to the minimal bosonic theory in $AdS_4$ containing massless gauge fields of even spin. LANL EDS SIS LANLPUBL2003 SIS:2003 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Polyakov, A M 213-219 Phys. Lett. B 550 2002 http://invenio-software.org/download/invenio-demo-site-files/0210114.pdf http://invenio-software.org/download/invenio-demo-site-files/0210114.ps.gz klebanov@feynman.princeton.edu n 200242 13 20060826 0012 CER01 20021014 PUBLIC 002345180CER ARTICLE DRAFT [1] G.’t Hooft, "A planar diagram theory for strong interactions," Nucl. Phys. B 72 (1974) 461 [2] A.M. Polyakov, "String theory and quark confinement," Nucl. Phys. B, Proc. Suppl. 68 (1998) 1 hep-th/9711002 [2] "The wall of the cave," hep-th/9809057 [3] J. Maldacena, "The large N limit of superconformal field theories and supergravity," Adv. Theor. Math. Phys. 2 (1998) 231 hep-th/9711200 [4] S. S. Gubser, I. R. Klebanov, and A. M. Polyakov, "Gauge theory correlators from non-critical string theory," Phys. Lett. B 428 (1998) 105 hep-th/9802109 [5] E. Witten, "Anti-de Sitter space and holography," Adv. Theor. Math. Phys. 2 (1998) 253 hep-th/9802150 [6] E. Brezin, D.J. Wallace, Phys. Rev. B 7 (1973) 1976 [7] K.G. Wilson and J. Kogut, "The Renormalization Group and the Epsilon Expansion," Phys. Rep. 12 (1974) 75 [8] C. Fronsdal, Phys. Rev. D 18 (1978) 3624 [9] E. Fradkin and M. Vasiliev, Phys. Lett. B 189 (1987) 89 [9] Nucl. Phys. B 291 (1987) 141 [10] M.A. Vasiliev, "Higher Spin Gauge Theories Star Product and AdS Space," hep-th/9910096 [11] A. M. Polyakov, "Gauge fields and space-time," hep-th/0110196 [12] P. Haggi-Mani and B. Sundborg, "Free Large N Supersymmetric Yang-Mills Theory Ann. Sci. a String Theory," hep-th/0002189 [12] B. Sundborg, "Stringy Gravity, Interacting Tensionless Strings and Massless Higher Spins," hep-th/0103247 [13] E. Witten, Talk at the John Schwarz 60-th Birthday Symposium, http://theory.caltech.edu/jhs60/witten/1.html http://theory.caltech.edu/jhs60/witten/1.html [14] E. Sezgin and P. Sundell, "Doubletons and 5D Higher Spin Gauge Theory," hep-th/0105001 [15] A. Mikhailov, "Notes On Higher Spin Symmetries," hep-th/0201019 [16] E. Sezgin and P. Sundell, "Analysis of Higher Spin Field Equations in Four Dimensions," hep-th/0205132 [16] J. Engquist, E. Sezgin, P. Sundell, "On N=1,2,4 Higher Spin Gauge Theories in Four Dimensions," hep-th/0207101 [17] M. Vasiliev, "Higher Spin Gauge Theories in Four, Three and Two Dimensions," Int. J. Mod. Phys. D 5 (1996) 763 hep-th/9611024 [18] I.R. Klebanov and E. Witten, "AdS/CFT correspondence and Symmetry Breaking," Nucl. Phys. B 556 (1999) 89 hep-th/9905104 [19] O. Aharony, M. Berkooz, E. Silverstein, "Multiple Trace Operators and Nonlocal String Theories," J. High Energy Phys. 0108 (2001) 006 hep-th-0105309 [20] E. Witten, "Multi-Trace Operators, Boundary Conditions, And AdS/CFT Correspondence," hep-th/0112258 [21] M. Berkooz, A. Sever and A. Shomer, "Double Trace Deformations, Boundary Conditions and Space-time Singularities," J. High Energy Phys. 0205 (2002) 034 hep-th-0112264 [22] S.S. Gubser and I. Mitra, "Double-Trace Operators and One-Loop Vacuum Energy in AdS/CFT," hep-th/0210093 [23] I.R. Klebanov, "Touching Random Surfaces and Liouville Gravity," Phys. Rev. D 51 (1995) 1836 hep-th/9407167 [23] I.R. Klebanov and A. Hashimoto, "Non-Perturbative Solution of Matrix Models Modified by Trace-Squared Terms," Nucl. Phys. B 434 (1995) 264 hep-th/9409064 [24] A.M. Polyakov, "Non-Hamiltonian Approach to Quantum Field Theory at Small Distances," Zh. Eksp. Teor. Fiz. 66 (1974) 23 [25] E. D’Hoker, D. Z. Freedman, S. Mathur, A. Matusis and L. Rastelli, "Graviton exchange and complete 4-point functions in the AdS/CFT correspondence, " hep-th/9903196 [26] For a review with a comprehensive set of references, see E. d‘Hoker and D.Z. Freedman, "Supersymmetric Gauge Theories and the AdS/CFT Correspondence," hep-th/0201253 2292727CERCER SLAC 4828445 UNCOVER 1021768628 hep-th/0201100 eng DSF-2002-2 Mück, W INFN Universita di Napoli An improved correspondence formula for AdS/CFT with multi-trace operators 2002 Napoli Napoli Univ. 15 Jan 2002 6 p An improved correspondence formula is proposed for the calculation of correlation functions of a conformal field theory perturbed by multi-trace operators from the analysis of the dynamics of the dual field theory in Anti-de Sitter space. The formula reduces to the usual AdS/CFT correspondence formula in the case of single-trace perturbations. LANL EDS SIS ING2002 SIS:2002 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory 301-304 3-4 Phys. Lett. B 531 2002 http://invenio-software.org/download/invenio-demo-site-files/0201100.pdf http://invenio-software.org/download/invenio-demo-site-files/0201100.ps.gz wolfgang.mueck@na.infn.it n 200204 13 20060826 0008 CER01 20020128 PUBLIC 002292727CER ARTICLE [1] E. Witten, hep-th/0112258 [2] S. S. Gubser, I. R. Klebanov and A. M. Polyakov, Phys. Lett. B 428 (1998) 105 hep-th/9802109 [3] E. Witten, Adv. Theor. Math. Phys. 2 (1998) 253 hep-th/9802150 [4] P. Breitenlohner and D. Z. Freedman, Ann. Phys. (San Diego) 144 (1982) 249 [5] I. R. Klebanov and E. Witten, Nucl. Phys. B 556 (1999) 89 hep-th/9905104 [6] W. Mück and K. S. Viswanathan, Phys. Rev. D 60 (1999) 081901 hep-th/9906155 [7] W. Mück, Nucl. Phys. B 620 (2002) 477 hep-th/0105270 [8] M. Bianchi, D. Z. Freedman and K. Skenderis, J. High Energy Phys. 08 (2001) 041 hep-th/0105276 SzGeCERN 2307939CERCER SLAC 4923022 hep-th/0205061 eng DSF-2002-11 QMUL-PH-2002-11 Martelli, D University of London Holographic Renormalization and Ward Identities with the Hamilton-Jacobi Method 2003 Napoli Napoli Univ. 7 May 2002 31 p A systematic procedure for performing holographic renormalization, which makes use of the Hamilton-Jacobi method, is proposed and applied to a bulk theory of gravity interacting with a scalar field and a U(1) gauge field in the Stueckelberg formalism. We describe how the power divergences are obtained as solutions of a set of "descent equations" stemming from the radial Hamiltonian constraint of the theory. In addition, we isolate the logarithmic divergences, which are closely related to anomalies. The method allows to determine also the exact one-point functions of the dual field theory. Using the other Hamiltonian constraints of the bulk theory, we derive the Ward identities for diffeomorphisms and gauge invariance. In particular, we demonstrate the breaking of U(1)_R current conservation, recovering the holographic chiral anomaly recently discussed in hep-th/0112119 and hep-th/0202056. LANL EDS SIS LANLPUBL2004 SIS:2004 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Mück, W Martelli, Dario Mueck, Wolfgang 248-276 Nucl. Phys. B 654 2003 http://invenio-software.org/download/invenio-demo-site-files/0205061.pdf http://invenio-software.org/download/invenio-demo-site-files/0205061.ps.gz d.martelli@qmul.ac.uk n 200219 13 20060823 0005 CER01 20020508 PUBLIC 002307939CER ARTICLE [1] J. M. Maldacena, Adv. Theor. Math. Phys. 2 (1998) 231 hep-th/9711200 [2] S. S. Gubser, I. R. Klebanov and A. M. Polyakov, Phys. Lett. B 428 (1998) 105 hep-th/9802109 [3] E. Witten, Adv. Theor. Math. Phys. 2 (1998) 253 hep-th/9802150 [4] E. D’Hoker and D. Z. Freedman, hep-th/0201253 [5] W. Mück and K. S. Viswanathan, Phys. Rev. D 58 (1998) 041901 hep-th/9804035 [6] D. Z. Freedman, S. D. Mathur, A. Matusis and L. Rastelli, Nucl. Phys. B 546 (1998) 96 hep-th/9812032 [7] H. Liu and Astron. Astrophys. Tseytlin, Nucl. Phys. B 533 (1998) 88 hep-th/9804083 [8] M. Henningson and K. Skenderis, J. High Energy Phys. 07 (1998) 023 hep-th/9806087 [9] J. D. Brown and J. W. York, Phys. Rev. D 47 (1993) 1407 [10] B. Balasubramanian and P. Kraus, Commun. Math. Phys. 208 (1999) 413 hep-th/9902121 [11] R. C. Myers, Phys. Rev. D 60 (1999) 046002 hep-th/9903203 [12] R. Emparan, C. V. Johnson and R. C. Myers, Phys. Rev. D p. 104001 (1999), hep-th/9903238 [13] S. de Haro, K. Skenderis and S. N. Solodukhin, Commun. Math. Phys. 217 (2000) 595 hep-th/0002230 [14] M. Bianchi, D. Z. Freedman and K. Skenderis, hep-th/0112119 [15] M. Bianchi, D. Z. Freedman and K. Skenderis, J. High Energy Phys. 08 (2001) 041 hep-th/0105276 [16] J. de Boer, E. Verlinde and H. Verlinde, J. High Energy Phys. 08 (2000) 003 hep-th/9912012 [17] J. Kalkkinen, D. Martelli and W. Mück, J. High Energy Phys. 04 (2001) 036 hep-th/0103111 [18] S. Corley, Phys. Lett. B 484 (2000) 141 hep-th/0004030 [19] J. Kalkkinen and D. Martelli, Nucl. Phys. B 596 (2001) 415 hep-th/0007234 [20] M. Bianchi, O. DeWolfe, D. Z. Freedman and K. Pilch, J. High Energy Phys. 01 (2001) 021 hep-th/0009156 [21] I. R. Klebanov, P. Ouyang and E. Witten, Phys. Rev. D 65 (2002) 105007 hep-th/0202056 [22] C. Fefferman and C. R. Graham, in Elie Cartan et les Mathématiques d’aujour d’hui, Astérique, p. 95 (1985). [23] D. Martelli and A. Miemic, J. High Energy Phys. 04 (2002) 027 hep-th/0112150 [24] S. Ferrara and A. Zaffaroni, hep-th/9908163 [25] J. Parry, D. S. Salopek and J. M. Stewart, Phys. Rev. D 49 (1994) 2872 gr-qc/9310020 [26] B. Darian, Class. Quantum Gravity 15 (1998) 143 gr-qc/9707046 [27] V. L. Campos, G. Ferretti, H. Larsson, D. Martelli and B. E. W. Nilsson, J. High Energy Phys. 0006 (2000) 023 hep-th/0003151 [28] L. Girardello, M. Petrini, M. Porrati and A. Zaffaroni, Nucl. Phys. B 569 (2000) 451 hep-th/9909047 [29] W. Mück, hep-th/0201100 [30] W. Mück and K. S. Viswanathan, Phys. Rev. D 58 (1998) 106006 hep-th/9805145 [31] M. M. Taylor-Robinson, hep-th/0002125 [32] C. W. Misner, K. S. Thorne and J. A. Wheeler, Gravitation, Freeman, San Francisco (1973). SzGeCERN 2327507CERCER SLAC 5004500 hep-th/0207111 eng BROWN-HEP-1309 Ramgoolam, S Brown University Higher dimensional geometries related to fuzzy odd-dimensional spheres 2002 Providence, RI Brown Univ. 11 Jul 2002 32 p We study $SO(m)$ covariant Matrix realizations of $ \sum_{i=1}^{m} X_i^2 = 1 $ for even $m$ as candidate fuzzy odd spheres following hep-th/0101001. As for the fuzzy four sphere, these Matrix algebras contain more degrees of freedom than the sphere itself and the full set of variables has a geometrical description in terms of a higher dimensional coset. The fuzzy $S^{2k-1} $ is related to a higher dimensional coset $ {SO(2k) \over U(1) \times U(k-1)}$. These cosets are bundles where base and fibre are hermitian symmetric spaces. The detailed form of the generators and relations for the Matrix algebras related to the fuzzy three-spheres suggests Matrix actions which admit the fuzzy spheres as solutions. These Matrix actions are compared with the BFSS, IKKT and BMN Matrix models as well as some others. The geometry and combinatorics of fuzzy odd spheres lead to some remarks on the transverse five-brane problem of Matrix theories and the exotic scaling of the entropy of 5-branes with the brane number. LANL EDS SIS:2003 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Ramgoolam, Sanjaye 064 J. High Energy Phys. 10 2002 http://invenio-software.org/download/invenio-demo-site-files/0207111.pdf http://invenio-software.org/download/invenio-demo-site-files/0207111.ps.gz ramgosk@het.brown.edu n 200228 13 20070205 2036 CER01 20020712 PUBLIC 002327507CER ARTICLE [1] D. Kabat and W. Taylor, "Spherical membranes in Matrix theory," Adv. Theor. Math. Phys. 2 (1998) 181 hep-th/9711078 [2] J.Castelino, S. Lee and W. Taylor IV, "Longitudinal Five-Branes Ann. Sci. Four Spheres in Matrix Theory," Nucl. Phys. B 526 (1998) 334 hep-th/9712105 [3] R. Myers, "Dielectric-Branes," hep-th/9910053 [4] N. Constable, R. Myers, O. Tafjord, "Non-abelian Brane intersections, " J. High Energy Phys. 0106 (2001) 023 hep-th/0102080 [5] D. Berenstein, J. Maldacena, H. Nastase "Strings in flat space and pp waves from N = 4 Super Yang Mills," J. High Energy Phys. 0204 (2002) 013 hep-th/0202021 [6] J. Maldacena, A. Strominger, "AdS3 Black Holes and a Stringy Exclusion Principle," hep-th/980408, J. High Energy Phys. 9812 (1998) 005 [7] A. Jevicki, S. Ramgoolam, "Non commutative gravity from the ADS/CFT correspon-dence," J. High Energy Phys. 9904 (1999) 032 hep-th/9902059 [8] P.M. Ho, M. Li, "Fuzzy Spheres in AdS/CFT Correspondence and Holography from Noncommutativity," Nucl. Phys. B 596 (2001) 259 hep-th/0004072 [9] M. Berkooz, H. Verlinde "Matrix Theory, AdS/CFT and Higgs-Coulomb Equiva-lence," J. High Energy Phys. 9911 (1999) 037 hep-th/9907100 [10] Z. Guralnik, S. Ramgoolam "On the Polarization of Unstable D0-Branes into Non-Commutative Odd Spheres," J. High Energy Phys. 0102 (2001) 032 hep-th/0101001 [11] S. Ramgoolam, " On spherical harmonics for fuzzy spheres in diverse dimensions, " Nucl. Phys. B 610 (2001) 461 hep-th/0105006 [12] P.M. Ho, S. Ramgoolam, "Higher dimensional geometries from matrix brane construc-tions," Nucl. Phys. B 627 (2002) 266 hep-th/0111278 [13] Y. Kimura "Noncommutative Gauge Theory on Fuzzy Four-Sphere and Matrix Model," hep-th/0204256 [14] S.C Zhang, J. Hu "A Four Dimensional Generalization of the Quantum Hall Effect," Science 294 (2001) 823 cond-mat/0110572 [15] M. Fabinger, "Higher-Dimensional Quantum Hall Effect in String Theory," J. High Energy Phys. 0205 (2002) 037 hep-th/0201016 [16] A.P. Balachandran "Quantum Spacetimes in the Year 1," hep-th/0203259 [17] A. Salam, J. Strathdee, "On Kaluza-Klein Theory," Ann. Phys. 141, 1982, 216 [18] N.L. Wallach, "Harmonic Analysis on homogeneous spaces," M. Drekker Inc. NY 1973 [19] Y. Kazama, H. Suzuki, "New N = 2 superconformal field theories and superstring compactification" Nucl. Phys. B 321 (1989) 232 [20] M. Kramer, " Some remarks suggesting an interesting theory of harmonic functions on SU(2n + 1)/Sp(n) and SO(2n + 1)/U(n)," Arch. Math. 33 ( 1979/80), 76-79. [21] P.M. Ho, "Fuzzy sphere from Matrix model," J. High Energy Phys. 0012 (2000) 015 hep-th/0110165 [22] T. Banks, W. Fischler, S. Shenker, L. Susskind, "M-Theory Ann. Sci. a Matrix model A conjecture," Phys. Rev. D 55 (1997) 5112 hep-th/9610043 [23] N. Ishibashi, H. Kawai, Y. Kitazawa, A. Tsuchiya, " A large-N reduced model Ann. Sci. Superstring, " Nucl. Phys. B 498 (1997) 467 [24] V. Periwal, "Matrices on a point Ann. Sci. the theory of everything," Phys. Rev. D 55 (1997) 1711 [25] S. Chaudhuri, "Bosonic Matrix Theory and D-branes," hep-th/0205306 [26] M. Bagnoud, L. Carlevaro, A. Bilal, "Supermatrix models for M-theory based on osp(1—32,R)," hep-th/0201183 [27] L. Smolin, "M theory Ann. Sci. a matrix extension of Chern Simons theory," Nucl. Phys. B 591 (2000) 227 hep-th/0002009 [28] I. Bandos, J. Lukierski, "New superparticle models outside the HLS suersymmetry scheme," hep-th/9812074 [29] S.Iso, Y.Kimura, K.Tanaka, K. Wakatsuki, "Noncommutative Gauge Theory on Fuzzy Sphere from Matrix Model," hep-th/0101102 [30] W. Fulton and G. Harris, "Representation theory," Springer Verlag 1991. [31] M. Atiyah and E. Witten, "M-Theory Dynamics On A Manifold Of G2 Holonomy," hep-th/0107177 [32] S. Ramgoolam, D. Waldram, "Zero branes on a compact orbifold," J. High Energy Phys. 9807 (1998) 009 hep-th/9805191 [33] Brian R. Greene, C.I. Lazaroiu, Piljin Yi " D Particles on T4 /Z(N) Orbifolds and their resolutions," Nucl. Phys. B 539 (1999) 135 hep-th/9807040 [34] I. Klebanov, A. Tseytlin, "Entropy of Near-Extremal Black p-branes," Nucl. Phys. B 475 (1996) 164 hep-th/9604089 SzGeCERN 2341644CERCER SLAC 5208424 hep-th/0209226 eng PUTP-2002-48 SLAC-PUB-9504 SU-ITP-2002-36 Adams, A Stanford University Decapitating Tadpoles 2002 Beijing Beijing Univ. Dept. Phys. 26 Sep 2002 31 p We argue that perturbative quantum field theory and string theory can be consistently modified in the infrared to eliminate, in a radiatively stable manner, tadpole instabilities that arise after supersymmetry breaking. This is achieved by deforming the propagators of classically massless scalar fields and the graviton so as to cancel the contribution of their zero modes. In string theory, this modification of propagators is accomplished by perturbatively deforming the world-sheet action with bi-local operators similar to those that arise in double-trace deformations of AdS/CFT. This results in a perturbatively finite and unitary S-matrix (in the case of string theory, this claim depends on standard assumptions about unitarity in covariant string diagrammatics). The S-matrix is parameterized by arbitrary scalar VEVs, which exacerbates the vacuum degeneracy problem. However, for generic values of these parameters, quantum effects produce masses for the nonzero modes of the scalars, lifting the fluctuating components of the moduli. LANL EDS SzGeCERN Particle Physics - Theory PREPRINT LANL EDS High Energy Physics - Theory McGreevy, J Silverstein, E Adams, Allan Greevy, John Mc Silverstein, Eva http://invenio-software.org/download/invenio-demo-site-files/0209226.pdf http://invenio-software.org/download/invenio-demo-site-files/0209226.ps.gz evas@slac.stanford.edu n 200239 11 20060218 0013 CER01 20020927 PUBLIC 002341644CER PREPRINT [1] W. Fischler and L. Susskind, "Dilaton Tadpoles, String Condensates And Scale In-variance," Phys. Lett. B 171 (1986) 383 [2] W. Fischler and L. Susskind, "Dilaton Tadpoles, String Condensates And Scale In-variance. 2," Phys. Lett. B 173 (1986) 262 [3] C. G. Callan, C. Lovelace, C. R. Nappi and S. A. Yost, "Loop Corrections To Super-string Equations Of Motion," Nucl. Phys. B 308 (1988) 221 [4] H. Ooguri and N. Sakai, "String Multiloop Corrections To Equations Of Motion," Nucl. Phys. B 312 (1989) 435 [5] J. Polchinski, "Factorization Of Bosonic String Amplitudes," Nucl. Phys. B 307 (1988) 61 [6] H. La and P. Nelson, "Effective Field Equations For Fermionic Strings," Nucl. Phys. B 332 (1990) 83 [7] O. Aharony, M. Berkooz and E. Silverstein, "Multiple-trace operators and non-local string theories," J. High Energy Phys. 0108 (2001) 006 hep-th/0105309 [8] O. Aharony, M. Berkooz and E. Silverstein, "Non-local string theories on AdS3 × S3 and stable non-supersymmetric backgrounds," Phys. Rev. D 65 (2002) 106007 hep-th/0112178 [9] N. Arkani-Hamed, S. Dimopoulos, G. Dvali, G. Gabadadze, to appear. [10] E. Witten, "Strong Coupling Expansion Of Calabi-Yau Compactification," Nucl. Phys. B 471 (1996) 135 hep-th/9602070 [11] O. Aharony and T. Banks, "Note on the Quantum Mech. of M theory," J. High Energy Phys. 9903 (1999) 016 hep-th/9812237 [12] T. Banks, "On isolated vacua and background independence," arXiv hep-th/0011255 [13] R. Bousso and J. Polchinski, "Quantization of four-form fluxes and dynamical neutral-ization of the cosmological constant," J. High Energy Phys. 0006 (2000) 006 hep-th/0004134 [14] S. B. Giddings, S. Kachru and J. Polchinski, "Hierarchies from fluxes in string com-pactifications," arXiv hep-th/0105097 [15] A. Maloney, E. Silverstein and A. Strominger, "De Sitter space in noncritical string theory," arXiv hep-th/0205316 [16] S. Kachru and E. Silverstein, "4d conformal theories and strings on orbifolds," Phys. Rev. Lett. 80 (1998) 4855 hep-th/9802183 [17] A. E. Lawrence, N. Nekrasov and C. Vafa, "On conformal field theories in four di-mensions," Nucl. Phys. B 533 (1998) 199 hep-th/9803015 [18] M. Bershadsky, Z. Kakushadze and C. Vafa, "String expansion Ann. Sci. large N expansion of gauge theories," Nucl. Phys. B 523 (1998) 59 hep-th/9803076 [19] I. R. Klebanov and Astron. Astrophys. Tseytlin, "A non-supersymmetric large N CFT from type 0 string theory," J. High Energy Phys. 9903 (1999) 015 hep-th/9901101 [20] E. Witten, "Multi-trace operators, boundary conditions, and AdS/CFT correspon-dence," arXiv hep-th/0112258 [21] M. Berkooz, A. Sever and A. Shomer, "Double-trace deformations, boundary condi-tions and spacetime singularities," J. High Energy Phys. 0205 (2002) 034 hep-th/0112264 [22] A. Adams and E. Silverstein, "Closed string tachyons, AdS/CFT, and large N QCD," Phys. Rev. D 64 (2001) 086001 hep-th/0103220 [23] Astron. Astrophys. Tseytlin and K. Zarembo, "Effective potential in non-supersymmetric SU(N) x SU(N) gauge theory and interactions of type 0 D3-branes," Phys. Lett. B 457 (1999) 77 hep-th/9902095 [24] M. Strassler, to appear [25] V. Balasubramanian and P. Kraus, "A stress tensor for anti-de Sitter gravity," Commun. Math. Phys. 208 (1999) 413 hep-th/9902121 [26] S. Thomas, in progress. [27] O. Aharony, M. Fabinger, G. T. Horowitz and E. Silverstein, "Clean time-dependent string backgrounds from bubble baths," J. High Energy Phys. 0207 (2002) 007 hep-th/0204158 [28] G. Dvali, G. Gabadadze and M. Shifman, "Diluting cosmological constant in infinite volume extra dimensions," arXiv hep-th/0202174 [29] D. Friedan, "A tentative theory of large distance Physics," arXiv hep-th/0204131 [30] G. Dvali, G. Gabadadze and M. Shifman, "Diluting cosmological constant via large distance modification of gravity," arXiv hep-th/0208096 [31] J. W. Moffat, arXiv hep-th/0207198 [32] Astron. Astrophys. Tseytlin, "On ’Macroscopic String’ Approximation In String Theory," Phys. Lett. B 251 (1990) 530 [33] B. Zwiebach, "Closed string field theory Quantum action and the B-V master equa-tion," Nucl. Phys. B 390 (1993) 33 hep-th/9206084 [34] J. Polchinski, "String Theory. Vol. 1 An Introduction To The Bosonic String," Cam-bridge, UK Univ. Phys. Rev. (1998) 402 p. [35] S. Kachru, X. Liu, M. B. Schulz and S. P. Trivedi, "Supersymmetry changing bubbles in string theory," arXiv hep-th/0205108 [36] A. R. Frey and J. Polchinski, "N = 3 warped compactifications," Phys. Rev. D 65 (2002) 126009 hep-th/0201029 [37] A. Adams, O. Aharony, J. McGreevy, E. Silverstein,..., work in progress SzGeCERN 2342206CERCER SLAC 5224543 hep-th/0209257 eng Berkooz, M The Weizmann Inst. of Science Double Trace Deformations, Infinite Extra Dimensions and Supersymmetry Breaking 2002 29 Sep 2002 22 p It was recently shown how to break supersymmetry in certain $AdS_3$ spaces, without destabilizing the background, by using a ``double trace'' deformation which localizes on the boundary of space-time. By viewing spatial sections of $AdS_3$ as a compactification space, one can convert this into a SUSY breaking mechanism which exists uniformly throughout a large 3+1 dimensional space-time, without generating any dangerous tadpoles. This is a generalization of a Visser type infinite extra dimensions compactification. Although the model is not Lorentz invariant, the dispersion relation is relativistic at high enough momenta, and it can be arranged such that at the same kinematical regime the energy difference between between former members of a SUSY multiplet is large. LANL EDS SzGeCERN Particle Physics - Theory PREPRINT LANL EDS High Energy Physics - Theory Berkooz, Micha http://invenio-software.org/download/invenio-demo-site-files/0209257.pdf http://invenio-software.org/download/invenio-demo-site-files/0209257.ps.gz berkooz@wisemail.weizmann.ac.il n 200240 11 20060603 0013 CER01 20021001 PUBLIC 002342206CER PREPRINT [1] T. Banks, "Cosmological Breaking of Supersymmetry ? Or Little Lambda Goes Back to the Future 2.", hep-th/0007146 [2] J. Brown and C. Teitelboim, Phys. Lett. B 195 (1987) 177 [2] Nucl. Phys. B 297 (1988) 787 [2] R. Bousso and J. Polchinski, "Quantization of Four-form Fluxes and Dynami-cal Neutralization of the Cosmological Constant", J. High Energy Phys. 0006 (2000) 006 hep-th/0004134 [2] J.L. Feng, J. March-Russell, S. Sethi and F. Wilczek, "Saltatory Relaxation of the Cosmological Constant", Nucl. Phys. B 602 (2001) 307 hep-th/0005276 [3] E. Witten, "Strong Coupling and the Cosmological Constant", Mod. Phys. Lett. A 10 (1995) 2153 hep-th/9506101 [4] A. Maloney, E. Silverstein and A. Strominger "de Sitter Space in Non-Critical String Theory", hep-th/0205316 [4] , Hawking Festschrift. [5] S. Kachru and E. Silverstein, "On Vanishing Two Loop Cosmological Constant in Nonsupersymmetric Strings", J. High Energy Phys. 9901 (1999) 004 hep-th/9810129 [6] S. Kachru, M. Schulz and E. Silverstein, "Self-tuning flat domain walls in 5d gravity and string theory", Phys. Rev. D 62 (2000) 045021 hep-th/0001206 [7] V.A. Rubakov and M.E. Shaposhnikov, "Extra Space-time Dimensions Towards a Solution to the Cosmological Constant Problem", Phys. Lett. B 125 (1983) 139 [8] G. Dvali, G. Gabadadze and M. Shifman, "Diluting Cosmological Constant In Infinite Volume Extra", hep-th/0202174 [9] G.W. Moore, "Atkin-Lehner Symmetry", Nucl. Phys. B 293 (1987) 139 [9] Erratum- Nucl. Phys. B 299 (1988) 847 [10] By K. Akama, "Pregeometry", Lect. Notes Phys. 176 (1982) 267 hep-th/0001113 [10] Also in *Nara 1982, Proceedings, Gauge Theory and Gravitation*, 267-271. [11] M. Visser, "An Exotic Class of Kaluza-Klein Models", Phys. Lett. B 159 (1985) 22 hep-th/9910093 [12] L. Randall and R. Sundrum, "An Alternative to Compactification", Phys. Rev. Lett. 83 (1999) 4690 hep-th/9906064 [13] A. Adams and E. Silverstein, "Closed String Tachyons, AdS/CFT and Large N QCD", Phys. Rev. D 64 (2001) 086001 hep-th/0103220 [14] O. Aharony, M. Berkooz and E. Silverstein, "Multiple-Trace Operators and Non-Local String Theories", J. High Energy Phys. 0108 (2001) 006 hep-th/0105309 [15] O. Aharony, M. Berkooz and E. Silverstein, "Non-local String Theories on AdS3 × S3 and non-supersymmetric backgrounds", Phys. Rev. D 65 (2002) 106007 hep-th/0112178 [16] M. Berkooz, A. Sever and A. Shomer, "Double-trace Deformations, Boundary Condi-tions and Space-time Singularities", J. High Energy Phys. 0205 (2002) 034 hep-th/0112264 [17] E. Witten, "Multi-Trace Operators, Boundary Conditions, And AdS/CFT Correspon-dence", hep-th/0112258 [18] A. Sever and A. Shomer, "A Note on Multi-trace Deformations and AdS/CFT", J. High Energy Phys. 0207 (2002) 027 hep-th/0203168 [19] J. Maldacena, "The large N limit of superconformal field theories and supergravity," Adv. Theor. Math. Phys. 2 (1998) 231 hep-th/9711200 [19] Int. J. Theor. Phys. 38 (1998) 1113 [20] E. Witten, "Anti-de Sitter space and holography," Adv. Theor. Math. Phys. 2 (1998) 253 hep-th/9802150 [21] S. S. Gubser, I. R. Klebanov and A. M. Polyakov, "Gauge theory correlators from non-critical string theory," hep-th/980210, Phys. Lett. B 428 (1998) 105 [22] O. Aharony, S.S. Gubser, J. Maldacena, H. Ooguri and Y. Oz, "Large N Field Theories, String Theory and Gravity", Phys. Rep. 323 (2000) 183 hep-th/9905111 [23] A. Giveon, D. Kutasov and N. Seiberg, "Comments on string theory on AdS3," he-th/9806194, Adv. Theor. Math. Phys. 2 (1998) 733 [24] J. Maldacena, J. Michelson and A. Strominger, "Anti-de Sitter Fragmentation", J. High Energy Phys. 9902 (1999) 011 hep-th/9812073 [25] N. Seiberg and E. Witten, "The D1/D5 System And Singular CFT", J. High Energy Phys. 9904 (1999) 017 hep-th/9903224 [26] J. Maldacena and H. Ooguri, "Strings in AdS3 and the SL(2, R) WZW Model. Part 1 The Spectrum", J. Math. Phys. 42 (2001) 2929 hep-th/0001053 [27] I. R. Klebanov and E. Witten, "AdS/CFT correspondence and Symmetry breaking," Nucl. Phys. B 556 (1999) 89 hep-th/9905104 [28] R. Kallosh, A.D. Linde, S. Prokushkin and M. Shmakova, "Gauged Supergravities, de Sitter space and Cosmology", Phys. Rev. D 65 (2002) 105016 hep-th/0110089 [29] R. Kallosh, "Supergravity, M-Theory and Cosmology", hep-th/0205315 [30] R. Kallosh, A.D. Linde, S. Prokushkin and M. Shmakova, "Supergravity, Dark Energy and the Fate of the Universe", hep-th/0208156 [31] C.M. Hull and N.P. Warner, "Non-compact Gauging from Higher Dimensions", Class. Quantum Gravity 5 (1988) 1517 [32] P. Kraus and E.T. Tomboulis "Title Photons and Gravitons Ann. Sci. Goldstone Bosons, and the Cosmological Constant", Phys. Rev. D 66 (2002) 045015 hep-th/0203221 [33] M. Berkooz and S.-J. Rey, "Non-Supersymmetric Stable Vacua of M-Theory", J. High Energy Phys. 9901 (1999) 014 hep-th/9807200 [34] A. Adams, J. McGreevy and E. Silverstein, "Decapitating Tadpoles", hep-th/0209226 [35] N. Arkani-Hamed, S. Dimopoulos, G. Dvali and G. Gabadadze, "Non-Local Modifi-cation of Gravity and the Cosmological Constant Problem", hep-th/0209227 [36] V. Balasubramanian, P. Kraus and A. Lawrence "Bulk vs. Boundary Dynamics in Anti-de Sitter Space-time" Phys. Rev. D 59 (1999) 046003 hep-th/9805171 [37] H. Verlinde, "Holography and Compactification", Nucl. Phys. B 580 (2000) 264 hep-th/9906182 [38] S.B. Giddings, S. Kachru and J. Polchinski, "Hierarchies from Fluxes in String Com-pactifications", hep-th/0105097 [39] G. Dvali, G. Gabadadze and M. Shifman, "Diluting Cosmological Constant via Large Distance Modification of Gravity" hep-th/0208096 [40] D. Gepner, "Lectures on N=2 String Theory", In Superstrings 89, The Trieste Spring School, 1989. [41] R.G. Leigh, "Dirac-Born-Infeld Action from Dirichlet SIGMA, Symmetry Integrability Geom. Methods Appl. Model", Mod. Phys. Lett. A 4 (1989) 2767 [42] J. Bagger and A. Galperin "Linear and Non-linear Supersymmetries", hep-th/9810109 [42] , *Dubna 1997, Supersymmetries and quantum symmetries* 3-20. [43] A, Giveon and M. Rocek, "Supersymmetric String Vacua on AdS3 × N ", hep-th/9904024 [44] E.J. Martinec and W. McElgin, "String Theory on AdS Orbifolds" J. High Energy Phys. 0204 (2002) 029 hep-th/0106171 [45] E.J. Martinec and W. McElgin, "Exciting AdS Orbifolds", hep-th/0206175 [46] V. Balasubramanian, J. de Boer, E. Keski-Vakkuri and S.F. Ross, "Supersymmetric Conical Defects", Phys. Rev. D 64 (2001) 064011 hep-th/0011217 SzGeCERN CERCER 2344398 SLAC 5256739 hep-th/0210075 eng SISSA-2002-64-EP Borunda, M INFN On the quantum stability of IIB orbifolds and orientifolds with Scherk-Schwarz SUSY breaking 2003 Trieste Scuola Int. Sup. Studi Avan. 8 Oct 2002 26 p We study the quantum stability of Type IIB orbifold and orientifold string models in various dimensions, including Melvin backgrounds, where supersymmetry (SUSY) is broken {\it \`a la} Scherk-Schwarz (SS) by twisting periodicity conditions along a circle of radius R. In particular, we compute the R-dependence of the one-loop induced vacuum energy density $\rho(R)$, or cosmological constant. For SS twists different from Z2 we always find, for both orbifolds and orientifolds, a monotonic $\rho(R)<0$, eventually driving the system to a tachyonic instability. For Z2 twists, orientifold models can have a different behavior, leading either to a runaway decompactification limit or to a negative minimum at a finite value R_0. The last possibility is obtained for a 4D chiral orientifold model where a more accurate but yet preliminary analysis seems to indicate that $R_0\to \infty$ or towards the tachyonic instability, as the dependence on the other geometric moduli is included. LANL EDS SIS LANLPUBL2003 SIS:2003 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Serone, M Trapletti, M 85-108 Nucl. Phys. B 653 2003 http://invenio-software.org/download/invenio-demo-site-files/0210075.pdf http://invenio-software.org/download/invenio-demo-site-files/0210075.ps.gz serone@he.sissa.it n 200241 13 20060823 0006 CER01 20021009 PUBLIC 002344398CER ARTICLE [1] J. Scherk and J. H. Schwarz, Phys. Lett. B 82 (1979) 60 [1] Nucl. Phys. B 153 (1979) 61 [2] R. Rohm, Nucl. Phys. B 237 (1984) 553 [3] H. Itoyama and T.R. Taylor, Phys. Lett. B 186 (1987) 129 [4] C. Kounnas and M. Porrati, Nucl. Phys. B 310 (1988) 355 [4] S. Ferrara, C. Kounnas, M. Porrati and F. Zwirner, Nucl. Phys. B 318 (1989) 75 [4] C. Kounnas and B. Rostand, Nucl. Phys. B 341 (1990) 641 [4] I. Antoniadis and C. Kounnas, Phys. Lett. B 261 (1991) 369 [4] E. Kiritsis and C. Kounnas, Nucl. Phys. B 503 (1997) 117 hep-th/9703059 [5] I. Antoniadis, Phys. Lett. B 246 (1990) 377 [6] C. A. Scrucca and M. Serone, J. High Energy Phys. 0110 (2001) 017 hep-th/0107159 [7] I. Antoniadis, E. Dudas and A. Sagnotti, Nucl. Phys. B 544 (1999) 469 hep-th/9807011 [8] I. Antoniadis, G. D’Appollonio, E. Dudas and A. Sagnotti, Nucl. Phys. B 553 (1999) 133 hep-th/9812118 [8] Nucl. Phys. B 565 (2000) 123 hep-th/9907184 [8] I. Antoniadis, K. Benakli and A. Laugier, hep-th/0111209 [9] C. A. Scrucca, M. Serone and M. Trapletti, Nucl. Phys. B 635 (2002) 33 hep-th/0203190 [10] J. D. Blum and K. R. Dienes, Nucl. Phys. B 516 (1998) 83 hep-th/9707160 [11] M. Fabinger and P. Horava, Nucl. Phys. B 580 (2000) 243 hep-th/0002073 [12] P. Ginsparg and C. Vafa, Nucl. Phys. B 289 (1987) 414 [13] M. A. Melvin, Phys. Lett. 8 (1964) 65 [13] G. W. Gibbons and K. i. Maeda, Nucl. Phys. B 298 (1988) 741 [13] F. Dowker, J. P. Gauntlett, D. A. Kastor and J. Traschen, Phys. Rev. D 49 (1994) 2909 hep-th/9309075 [14] A. Adams, J. Polchinski and E. Silverstein, J. High Energy Phys. 0110 (2001) 029 hep-th/0108075 [15] J. R. David, M. Gutperle, M. Headrick and S. Minwalla, J. High Energy Phys. 0202 (2002) 041 hep-th/0111212 [16] T. Suyama, J. High Energy Phys. 0207 (2002) 015 hep-th/0110077 [17] C. Vafa, arXiv hep-th/0111051 [18] G. Aldazabal, A. Font, L. E. Ibanez and G. Violero, Nucl. Phys. B 536 (1998) 29 hep-th/9804026 [19] K. H. O’Brien and C. I. Tan, Phys. Rev. D 36 (1987) 1184 [20] J. Polchinski, Commun. Math. Phys. 104 (1986) 37 [21] D. M. Ghilencea, H. P. Nilles and S. Stieberger, arXiv hep-th/0108183 [22] P. Mayr and S. Stieberger, Nucl. Phys. B 407 (1993) 725 hep-th/9303017 [23] E. Alvarez, Nucl. Phys. B 269 (1986) 596 [24] J. G. Russo and Astron. Astrophys. Tseytlin, J. High Energy Phys. 0111 (2001) 065 hep-th/0110107 [24] Nucl. Phys. B 611 (2001) 93 hep-th/0104238 [24] A. Dabholkar, Nucl. Phys. B 639 (2002) 331 hep-th/0109019 [24] M. Gutperle and A. Strominger, J. High Energy Phys. 0106 (2001) 035 hep-th/0104136 [24] M. S. Costa and M. Gutperle, J. High Energy Phys. 0103 (2001) 027 hep-th/0012072 [25] E. Dudas and J. Mourad, Nucl. Phys. B 622 (2002) 46 hep-th/0110186 [25] T. Takayanagi and T. Uesugi, J. High Energy Phys. 0111 (2001) 036 hep-th/0110200 [25] Phys. Lett. B 528 (2002) 156 hep-th/0112199 [25] C. Angelantonj, E. Dudas and J. Mourad, Nucl. Phys. B 637 (2002) 59 hep-th/0205096 [26] M. Trapletti, in preparation. [27] A. Adams, J. McGreevy and E. Silverstein, arXiv hep-th/0209226 [28] E. Witten, Nucl. Phys. B 195 (1982) 481 SzGeCERN 2355566CERCER SLAC 5419166 hep-th/0212138 eng PUPT-2069 Gubser, S S Princeton University A universal result on central charges in the presence of double-trace deformations 2003 Princeton, NJ Princeton Univ. Joseph-Henry Lab. Phys. 12 Dec 2002 15 p We study large N conformal field theories perturbed by relevant double-trace deformations. Using the auxiliary field trick, or Hubbard-Stratonovich transformation, we show that in the infrared the theory flows to another CFT. The generating functionals of planar correlators in the ultraviolet and infrared CFT's are shown to be related by a Legendre transform. Our main result is a universal expression for the difference of the scale anomalies between the ultraviolet and infrared fixed points, which is of order 1 in the large N expansion. Our computations are entirely field theoretic, and the results are shown to agree with predictions from AdS/CFT. We also remark that a certain two-point function can be computed for all energy scales on both sides of the duality, with full agreement between the two and no scheme dependence. LANL EDS SIS LANLPUBL2004 SIS:2004 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Klebanov, Igor R Gubser, Steven S. Klebanov, Igor R. 23-36 Nucl. Phys. B 656 2003 http://invenio-software.org/download/invenio-demo-site-files/0212138.ps.gz http://invenio-software.org/download/invenio-demo-site-files/0212138.pdf ssgubser@Princeton.EDU n 200250 13 20060823 0007 CER01 20021213 PUBLIC 002355566CER ARTICLE SzGeCERN 2356302CERCER SLAC 5423422 hep-th/0212181 eng Girardello, L INFN Universita di Milano-Bicocca 3-D Interacting CFTs and Generalized Higgs Phenomenon in Higher Spin Theories on AdS 2003 16 Dec 2002 8 p We study a duality, recently conjectured by Klebanov and Polyakov, between higher-spin theories on AdS_4 and O(N) vector models in 3-d. These theories are free in the UV and interacting in the IR. At the UV fixed point, the O(N) model has an infinite number of higher-spin conserved currents. In the IR, these currents are no longer conserved for spin s>2. In this paper, we show that the dual interpretation of this fact is that all fields of spin s>2 in AdS_4 become massive by a Higgs mechanism, that leaves the spin-2 field massless. We identify the Higgs field and show how it relates to the RG flow connecting the two CFTs, which is induced by a double trace deformation. LANL EDS SIS LANLPUBL2004 SIS:2004 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Porrati, Massimo Zaffaroni, A 289-293 Phys. Lett. B 561 2003 http://invenio-software.org/download/invenio-demo-site-files/0212181.pdf http://invenio-software.org/download/invenio-demo-site-files/0212181.ps.gz alberto.zaffaroni@mib.infn.it n 200251 13 20060823 0007 CER01 20021217 PUBLIC 002356302CER ARTICLE [1] D. Francia and A. Sagnotti, Phys. Lett. B 543 (2002) 303 hep-th/0207002 [1] P. Haggi-Mani and B. Sundborg, J. High Energy Phys. 0004 (2000) 031 hep-th/0002189 [1] B. Sundborg, Nucl. Phys. B, Proc. Suppl. 102 (2001) 113 hep-th/0103247 [1] E. Sezgin and P. Sundell, J. High Energy Phys. 0109 (2001) 036 hep-th/0105001 [1] A. Mikhailov, hep-th/0201019 [1] E. Sezgin and P. Sundell, Nucl. Phys. B 644 (2002) 303 hep-th/0205131 [1] E. Sezgin and P. Sundell, J. High Energy Phys. 0207 (2002) 055 hep-th/0205132 [1] J. Engquist, E. Sezgin and P. Sundell, Class. Quantum Gravity 19 (2002) 6175 hep-th/0207101 [1] M. A. Vasiliev, Int. J. Mod. Phys. D 5 (1996) 763 hep-th/9611024 [1] D. Anselmi, Nucl. Phys. B 541 (1999) 323 hep-th/9808004 [1] D. Anselmi, Class. Quantum Gravity 17 (2000) 1383 hep-th/9906167 [2] E. S. Fradkin and M. A. Vasiliev, Nucl. Phys. B 291 (1987) 141 [2] E. S. Fradkin and M. A. Vasiliev, Phys. Lett. B 189 (1987) 89 [3] I. R. Klebanov and A. M. Polyakov, Phys. Lett. B 550 (2002) 213 hep-th/0210114 [4] M. A. Vasiliev, hep-th/9910096 [5] T. Leonhardt, A. Meziane and W. Ruhl, hep-th/0211092 [6] O. Aharony, M. Berkooz and E. Silverstein, J. High Energy Phys. 0108 (2001) 006 hep-th/0105309 [7] E. Witten, hep-th/0112258 [8] M. Berkooz, A. Sever and A. Shomer J. High Energy Phys. 0205 (2002) 034 hep-th/0112264 [9] S. S. Gubser and I. Mitra, hep-th/0210093 [10] S. S. Gubser and I. R. Klebanov, hep-th/0212138 [11] M. Porrati, J. High Energy Phys. 0204 (2002) 058 hep-th/0112166 [12] K. G. Wilson and J. B. Kogut, Phys. Rep. 12 (1974) 75 [13] I. R. Klebanov and E. Witten, Nucl. Phys. B 556 (1999) 89 hep-th/9905104 [14] W. Heidenreich, J. Math. Phys. 22 (1981) 1566 [15] D. Anselmi, hep-th/0210123 SzGeCERN 20041129103619.0 2357700CERCER SLAC 5435544 hep-th/0212314 eng KUNS-1817 YITP-2002-73 TAUP-2719 Fukuma, M Kyoto University Holographic Renormalization Group 2003 Kyoto Kyoto Univ. 26 Dec 2002 90 p The holographic renormalization group (RG) is reviewed in a self-contained manner. The holographic RG is based on the idea that the radial coordinate of a space-time with asymptotically AdS geometry can be identified with the RG flow parameter of the boundary field theory. After briefly discussing basic aspects of the AdS/CFT correspondence, we explain how the notion of the holographic RG comes out in the AdS/CFT correspondence. We formulate the holographic RG based on the Hamilton-Jacobi equations for bulk systems of gravity and scalar fields, as was introduced by de Boer, Verlinde and Verlinde. We then show that the equations can be solved with a derivative expansion by carefully extracting local counterterms from the generating functional of the boundary field theory. The calculational methods to obtain the Weyl anomaly and scaling dimensions are presented and applied to the RG flow from the N=4 SYM to an N=1 superconformal fixed point discovered by Leigh and Strassler. We further discuss a relation between the holographic RG and the noncritical string theory, and show that the structure of the holographic RG should persist beyond the supergravity approximation as a consequence of the renormalizability of the nonlinear sigma model action of noncritical strings. As a check, we investigate the holographic RG structure of higher-derivative gravity systems, and show that such systems can also be analyzed based on the Hamilton-Jacobi equations, and that the behaviour of bulk fields are determined solely by their boundary values. We also point out that higher-derivative gravity systems give rise to new multicritical points in the parameter space of the boundary field theories. LANL EDS SIS INIS2004 SIS LANLPUBL2004 SIS:2004 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Matsuura, S Sakai, T Fukuma, Masafumi Matsuura, So Sakai, Tadakatsu 489-562 Prog. Theor. Phys. 109 2003 http://invenio-software.org/download/invenio-demo-site-files/0212314.pdf http://invenio-software.org/download/invenio-demo-site-files/0212314.ps.gz matsu@yukawa.kyoto-u.ac.jp n 200201 13 20051024 1938 CER01 20021230 PUBLIC 002357700CER ARTICLE [1] Y. Nambu, in Symmetries and quark models, ed. R. Chand (Tordon and Breach 1970), p 269; H. Nielsen, in the 15th International Conference on High Energy Physics (Kiev 1970); L. Susskind, Nuovo Cimento A 69 (1970) 457 [2] G. ’t Hooft, "A Planar Diagram Theory For Strong Interactions," Nucl. Phys. B 72 (1974) 461 [3] K. G. Wilson, ‘Confinement of Quarks," Phys. Rev. D 10 (1974) 2445 [4] R. Gopakumar and C. Vafa, "On the gauge theory/geometry correspondence," Adv. Theor. Math. Phys. 3 (1999) 1415 hep-th/9811131 [5] J. Maldacena, "The large N limit of superconformal field theories and supergravity," Adv. Theor. Math. Phys. 2 (1998) 231 hep-th/9711200 [6] S. S. Gubser, I. R. Klebanov and A. M. Polyakov, "Gauge Theory Correlators from Non-Critical String Theory," Phys. Lett. B 428 (1998) 105 hep-th/9802109 [7] E. Witten, "Anti De Sitter Space And Holography," Adv. Theor. Math. Phys. 2 (1998) 253 hep-th/9802150 [8] O. Aharony, S. S. Gubser, J. Maldacena, H. Ooguri and Y. Oz, "Large N Field Theories, String Theory and Gravity," hep-th/9905111 [8] , and references therein. [9] G. T. Horowitz and A. Strominger, "Black Strings And P-Branes," Nucl. Phys. B 360 (1991) 197 [10] L. Susskind and E. Witten, "The holographic bound in anti-de Sitter space," hep-th/9805114 [11] E. T. Akhmedov, "A remark on the AdS/CFT correspondence and the renormaliza-tion group flow," Phys. Lett. B 442 (1998) 152 hep-th/9806217 [12] E. Alvarez and C. Gomez, "Geometric Holography, the Renormalization Group and the c-Theorem," Nucl. Phys. B 541 (1999) 441 hep-th/9807226 [13] L. Girardello, M. Petrini, M. Porrati and A. Zaffaroni, "Novel Local CFT and Exact Results on Perturbations of N=4 Super Yang Mills from AdS Dynamics," J. High Energy Phys. 12 (1998) 022 hep-th/9810126 [14] M. Porrati and A. Starinets, "RG Fixed Points in Supergravity Duals of 4-d Field Theory and Asymptotically AdS Spaces," Phys. Lett. B 454 (1999) 77 hep-th/9903085 [15] V. Balasubramanian and P. Kraus, "Spacetime and the Holographic Renormalization Group," Phys. Rev. Lett. 83 (1999) 3605 hep-th/9903190 [16] D. Z. Freedman, S. S. Gubser, K. Pilch and N. P. Warner, "Renormalization group flows from holography supersymmetry and a c-theorem," Adv. Theor. Math. Phys. 3 (1999) 363 hep-th/9904017 [17] L. Girardello, M. Petrini, M. Porrati and A. Zaffaroni "The Supergravity Dual of N=1 Super Yang-Mills Theory," Nucl. Phys. B 569 (2000) 451 hep-th/9909047 [18] K. Skenderis and P. K. Townsend, "Gravitational Stability and Renormalization-Group Flow," Phys. Lett. B 468 (1999) 46 hep-th/9909070 [19] O. DeWolfe, D. Z. Freedman, S. S. Gubser and A. Karch, "Modeling the fifth dimen-sion with scalars and gravity," Phys. Rev. D 62 (2000) 046008 hep-th/9909134 [20] V. Sahakian, "Holography, a covariant c-function and the geometry of the renormal-ization group," Phys. Rev. D 62 (2000) 126011 hep-th/9910099 [21] E. Alvarez and C. Gomez, "A comment on the holographic renormalization group and the soft dilaton theorem," Phys. Lett. B 476 (2000) 411 hep-th/0001016 [22] S. Nojiri, S. D. Odintsov and S. Zerbini, "Quantum (in)stability of dilatonic AdS backgrounds and holographic renormalization group with gravity," Phys. Rev. D 62 (2000) 064006 hep-th/0001192 [23] M. Li, "A note on relation between holographic RG equation and Polchinski’s RG equation," Nucl. Phys. B 579 (2000) 525 hep-th/0001193 [24] V. Sahakian, "Comments on D branes and the renormalization group," J. High Energy Phys. 0005 (2000) 011 hep-th/0002126 [25] O. DeWolfe and D. Z. Freedman, "Notes on fluctuations and correlation functions in holographic renormalization group flows," hep-th/0002226 [26] V. Balasubramanian, E. G. Gimon and D. Minic, "Consistency conditions for holo-graphic duality," J. High Energy Phys. 0005 (2000) 014 hep-th/0003147 [27] C. V. Johnson, K. J. Lovis and D. C. Page, "Probing some N = 1 AdS/CFT RG flows," J. High Energy Phys. 0105 (2001) 036 hep-th/0011166 [28] J. Erdmenger, "A field-theoretical interpretation of the holographic renormalization group," Phys. Rev. D 64 (2001) 085012 hep-th/0103219 [29] S. Yamaguchi, "Holographic RG flow on the defect and g-theorem," J. High Energy Phys. 0210 (2002) 002 hep-th/0207171 [30] J. de Boer, E. Verlinde and H. Verlinde, "On the Holographic Renormalization Group," hep-th/9912012 [31] M. Henningson and K. Skenderis, "The Holographic Weyl anomaly," J. High Energy Phys. 07 (1998) 023 hep-th/9806087 [32] V. Balasubramanian and P. Kraus, "A stress tensor for anti-de Sitter gravity," Commun. Math. Phys. 208 (1999) 413 hep-th/9902121 [33] S. de Haro, K. Skenderis and S. Solodukhin, "Holographic Reconstruction of Space-time and Renormalization in the AdS/CFT Correspondence," hep-th/0002230 [34] M. J. Duff, "Twenty Years of the Weyl Anomaly," Class. Quantum Gravity 11 (1994) 1387 hep-th/9308075 [35] M. Fukuma, S. Matsuura and T. Sakai, "A note on the Weyl anomaly in the holographic renormalization group," Prog. Theor. Phys. 104 (2000) 1089 hep-th/0007062 [36] M. Fukuma and T. Sakai, "Comment on ambiguities in the holographic Weyl anomaly," Mod. Phys. Lett. A 15 (2000) 1703 hep-th/0007200 [37] M. Fukuma, S. Matsuura and T. Sakai, "Higher-Derivative Gravity and the AdS/CFT Correspondence," Prog. Theor. Phys. 105 (2001) 1017 hep-th/0103187 [38] M. Fukuma and S. Matsuura, "Holographic renormalization group structure in higher-derivative gravity," Prog. Theor. Phys. 107 (2002) 1085 hep-th/0112037 [39] A. Fayyazuddin and M. Spalinski "Large N Superconformal Gauge Theories and Supergravity Orientifolds," Nucl. Phys. B 535 (1998) 219 hep-th/9805096 [39] O. Aharony, A. Fayyazuddin and J. Maldacena, "The Large N Limit of N = 1, 2 Field Theories from Three Branes in F-theory," J. High Energy Phys. 9807 (1998) 013 hep-th/9806159 [40] M. Blau, K. S. Narain and E. Gava "On Subleading Contributions to the AdS/CFT Trace Anomaly," J. High Energy Phys. 9909 (1999) 018 hep-th/9904179 [41] O. Aharony, J. Pawelczyk, S. Theisen and S. Yankielowicz, "A Note on Anomalies in the AdS/CFT correspondence," Phys. Rev. D 60 (1999) 066001 hep-th/9901134 [42] S. Corley, "A Note on Holographic Ward Identities," Phys. Lett. B 484 (2000) 141 hep-th/0004030 [43] J. Kalkkinen and D. Martelli, "Holographic renormalization group with fermions and form fields," Nucl. Phys. B 596 (2001) 415 hep-th/0007234 [44] S. Nojiri, S. D. Odintsov and S. Ogushi, "Scheme-dependence of holographic confor-mal anomaly in d5 gauged supergravity with non-trivial bulk potential," Phys. Lett. B 494 (2000) 318 hep-th/0009015 [45] N. Hambli, "On the holographic RG-flow and the low-Energy, strong coupling, large N limit," Phys. Rev. D 64 (2001) 024001 hep-th/0010054 [46] S. Nojiri, S. D. Odintsov and S. Ogushi, "Holographic renormalization group and conformal anomaly for AdS(9)/CFT(8) correspondence," Phys. Lett. B 500 (2001) 199 hep-th/0011182 [47] J. de Boer, "The holographic renormalization group," Fortschr. Phys. 49 (2001) 339 hep-th/0101026 [48] J. Kalkkinen, D. Martelli and W. Muck, "Holographic renormalisation and anoma-lies," J. High Energy Phys. 0104 (2001) 036 hep-th/0103111 [49] S. Nojiri and S. D. Odintsov, "Conformal anomaly from dS/CFT correspondence," Phys. Lett. B 519 (2001) 145 hep-th/0106191 [50] S. Nojiri and S. D. Odintsov, "Asymptotically de Sitter dilatonic space-time, holo-graphic RG flow and conformal anomaly from (dilatonic) dS/CFT correspondence," Phys. Lett. B 531 (2002) 143 hep-th/0201210 [51] R. G. Leigh and M. J. Strassler, "Exactly marginal operators and duality in four-dimensional N=1 supersymmetric gauge theory," Nucl. Phys. B 447 (1995) 95 hep-th/9503121 [52] S. Ferrara, C. Fronsdal and A. Zaffaroni, "On N = 8 supergravity on AdS(5) and N = 4 superconformal Yang-Mills theory," Nucl. Phys. B 532 (1998) 153 hep-th/9802203 [53] L. Andrianopoli and S. Ferrara, "K-K excitations on AdS(5) x S(5) Ann. Sci. N = 4 *pri-mary* superfields," Phys. Lett. B 430 (1998) 248 hep-th/9803171 [54] S. Ferrara, M. A. Lledo and A. Zaffaroni, "Born-Infeld corrections to D3 brane action in AdS(5) x S(5) and N = 4, d = 4 primary superfields," Phys. Rev. D 58 (1998) 105029 hep-th/9805082 [55] M. F. Sohnius, "Introducing Supersymmetry," Phys. Rep. 128 (1985) 39 [56] O. Aharony, M. Berkooz and E. Silverstein, "Multiple-trace operators and non-local string theories," J. High Energy Phys. 0108 (2001) 006 hep-th/0105309 [57] E. Witten, "Multi-trace operators, boundary conditions, and AdS/CFT correspon-dence," hep-th/0112258 [58] M. Berkooz, A. Sever and A. Shomer, "Double-trace deformations, boundary condi-tions and spacetime singularities," J. High Energy Phys. 0205 (2002) 034 hep-th/0112264 [59] S. Minwalla, "Restrictions imposed by superconformal invariance on quantum field theories," Adv. Theor. Math. Phys. 2 (1998) 781 hep-th/9712074 [60] M. Gunaydin, D. Minic, and M. Zagermann, "Novel supermultiplets of SU(2, 2|4) and the AdS5 / CFT4 duality," hep-th/9810226 [61] L. Andrianopoli and S. Ferrara, "K-K Excitations on AdS5 ×S5 Ann. Sci. N = 4 ‘Primary’ Superfields," Phys. Lett. B 430 (1998) 248 hep-th/9803171 [62] L. Andrianopoli and S. Ferrara, "Nonchiral’ Primary Superfields in the AdSd+1 / CFTd Correspondence," Lett. Math. Phys. 46 (1998) 265 hep-th/9807150 [63] S. Ferrara and A. Zaffaroni, "Bulk gauge fields in AdS supergravity and supersingle-tons," hep-th/9807090 [64] M. Gunaydin, D. Minic, and M. Zagermann, "4-D doubleton conformal theories, CPT and II B string on AdS5 × S5," Nucl. Phys. B 534 (1998) 96 hep-th/9806042 [65] L. Andrianopoli and S. Ferrara, "On Short and Long SU(2, 2/4) Multiplets in the AdS/CFT Correspondence," hep-th/9812067 [66] P. S. Howe, K. S. Stelle and P. K. Townsend, "Supercurrents," Nucl. Phys. B 192 (1981) 332 [67] P. S. Howe and P. C. West, "Operator product expansions in four-dimensional super-conformal field theories," Phys. Lett. B 389 (1996) 273 hep-th/9607060 [67] "Is N = 4 Yang-Mills theory soluble?," hep-th/9611074 [67] "Superconformal invariants and extended supersymmetry," Phys. Lett. B 400 (1997) 307 hep-th/9611075 [68] H. J. Kim, L. J. Romans and P. van Nieuwenhuizen, "The Mass Spectrum Of Chiral N=2 D = 10 Supergravity On S**5," Phys. Rev. D 32 (1985) 389 [69] M. Günaydin and N. Marcus, "The Spectrum Of The S**5 Compactification Of The Chiral N=2, D=10 Supergravity And The Unitary Supermultiplets Of U(2, 2/4)," Class. Quantum Gravity 2 (1985) L11 [70] V. A. Novikov, M. A. Shifman, A. I. Vainshtein and V. I. Zakharov, "Exact Gell-Mann-Low Function Of Supersymmetric Yang-Mills Theories From Instanton Cal-culus," Nucl. Phys. B 229 (1983) 381 [71] D. Anselmi, D. Z. Freedman, M. T. Grisaru and Astron. Astrophys. Johansen, "Nonperturbative formulas for central functions of supersymmetric gauge theories," Nucl. Phys. B 526 (1998) 543 hep-th/9708042 [72] A. Khavaev, K. Pilch and N. P. Warner, "New vacua of gauged N = 8 supergravity in five dimensions," Phys. Lett. B 487 (2000) 14 hep-th/9812035 [73] K. Pilch and N. P. Warner, "N = 1 supersymmetric renormalization group flows from ICFA Instrum. Bull. supergravity," Adv. Theor. Math. Phys. 4 (2002) 627 hep-th/0006066 [74] D. Berenstein, J. M. Maldacena and H. Nastase, "Strings in flat space and pp waves from N = 4 super Yang Mills," J. High Energy Phys. 0204 (2002) 013 hep-th/0202021 [75] M. Blau, J. Figueroa-O’Farrill, C. Hull and G. Papadopoulos, "A new maximally supersymmetric background of ICFA Instrum. Bull. superstring theory," J. High Energy Phys. 0201 (2002) 047 hep-th/0110242 [75] M. Blau, J. Figueroa-O’Farrill, C. Hull and G. Papadopoulos, "Pen-rose limits and maximal supersymmetry," Class. Quantum Gravity 19 (2002) L87 hep-th/0201081 [75] M. Blau, J. Figueroa-O’Farrill and G. Papadopoulos, "Penrose lim-its, supergravity and brane dynamics," Class. Quantum Gravity 19 (2002) 4753 hep-th/0202111 [76] R. R. Metsaev, "Type ICFA Instrum. Bull. Green-Schwarz superstring in plane wave Ramond-Ramond background," Nucl. Phys. B 625 (2002) 70 hep-th/0112044 [77] R. Corrado, N. Halmagyi, K. D. Kennaway and N. P. Warner, "Penrose limits of RG fixed points and pp-waves with background fluxes," hep-th/0205314 [77] E. G. Gi-mon, L. A. Pando Zayas and J. Sonnenschein, "Penrose limits and RG flows," hep-th/0206033 [77] D. Brecher, C. V. Johnson, K. J. Lovis and R. C. Myers, "Penrose limits, deformed pp-waves and the string duals of N = 1 large N gauge theory," J. High Energy Phys. 0210 (2002) 008 hep-th/0206045 [78] Y. Oz and T. Sakai, "Penrose limit and six-dimensional gauge theories," Phys. Lett. B 544 (2002) 321 hep-th/0207223 [78] ; etc. [79] A. B. Zamolodchikov, "Irreversibility’ Of The Flux Of The Renormalization Group In A 2-D Field Theory," JETP Lett. 43 (1986) 730 [79] [ Pis'ma Zh. Eksp. Teor. Fiz. 43 (1986) 565 [79] ]. [80] D. Anselmi, "Anomalies, unitarity, and quantum irreversibility," Ann. Phys. 276 (1999) 361 hep-th/9903059 [81] G. W. Gibbons and S. W. Hawking, "Action Integrals and Partition Functions in Quantum Gravity," Phys. Rev. D 15 (1977) 2752 [82] C. R. Graham and J. M. Lee, "Einstein Metrics with Prescribed Conformal Infinity on the Ball," Adv. Math. 87 (1991) 186 [83] M. Green, J. Schwarz and E. Witten, "Superstring Theory," Cambridge University Press, New York, 1987. [84] S. Nojiri and S. Odintsov, "Conformal Anomaly for Dilaton Coupled Theories from AdS/CFT Correspondence," Phys. Lett. B 444 (1998) 92 hep-th/9810008 [84] S. Nojiri, S. Odintsov and S. Ogushi, "Conformal Anomaly from d5 Gauged Super-gravity and c-function Away from Conformity," hep-th/9912191 [84] "Finite Action in d5 Gauged Supergravity and Dilatonic Conformal Anomaly for Dual Quantum Field Theory," hep-th/0001122 [85] A. Polyakov, Phys. Lett. B 103 (1981) 207 [85] 211; V. Knizhnik, A. Polyakov and A. Zamolodchikov, Mod. Phys. Lett. A 3 (1988) 819 [86] F. David, Mod. Phys. Lett. A 3 (1988) 1651 [86] J. Distler and H. Kawai, Nucl. Phys. B 321 (1989) 509 [87] N. Seiberg, "Notes on quantum Liouville theory and quantum gravity," Prog. Theor. Phys. Suppl. 102 (1990) 319 [88] R. Myer, Phys. Lett. B 199 (1987) 371 [89] A. Dhar and S. Wadia, "Noncritical strings, RG flows and holography," Nucl. Phys. B 590 (2000) 261 hep-th/0006043 [90] S. Nojiri and S. D. Odintsov, "Brane World Inflation Induced by Quantum Effects," Phys. Lett. B 484 (2000) 119 hep-th/0004097 [91] R. C. Myers, "Higher-derivative gravity, surface terms, and string theory," Phys. Rev. D 36 (1987) 392 [92] S. Nojiri and S. D. Odintsov, "Brane-World Cosmology in Higher Derivative Gravity or Warped Compactification in the Next-to-leading Order of AdS/CFT Correspon-dence," J. High Energy Phys. 0007 (2000) 049 hep-th/0006232 [92] S. Nojiri, S. D. Odintsov and S. Ogushi, "Dynamical Branes from Gravitational Dual of N = 2 Sp(N) Superconformal Field Theory," hep-th/0010004 [92] "Holographic Europhys. Newstropy and brane FRW-dynamics from AdS black hole in d5 higher derivative gravity," hep-th/0105117 [93] S. Nojiri and S. D. Odintsov, "On the conformal anomaly from higher derivative grav-ity in AdS/CFT correspondence," Int. J. Mod. Phys. A 15 (2000) 413 hep-th/9903033 [93] S. Nojiri and S. D. Odintsov, "Finite gravitational action for higher derivative and stringy gravity," Phys. Rev. D 62 (2000) 064018 hep-th/9911152 [94] J. Polchinski, "String Theory," Vol. II, Cambridge University Press, 1998. [95] S. Kamefuchi, L. O’Raifeartaigh and A. Salam, "Change Of Variables And Equiva-lence Theorems In Quantum Field Theories," Nucl. Phys. 28 (1961) 529 [96] D. J. Gross and E. Witten, "Superstring Modifications Of Einstein’s Equations," Nucl. Phys. B 277 (1986) 1 [97] J. I. Latorre and T. R. Morris, "Exact scheme independence," J. High Energy Phys. 0011 (2000) 004 hep-th/0008123 [98] M. Fukuma and S. Matsuura, "Comment on field redefinitions in the AdS/CFT cor-respondence," Prog. Theor. Phys. 108 (2002) 375 hep-th/0204257 [99] I. R. Klebanov and A. M. Polyakov, "AdS dual of the critical O(N) vector model," Phys. Lett. B 550 (2002) 213 hep-th/0210114 [100] A. M. Polyakov, "Gauge Fields Ann. Sci. Rings Of Glue," Nucl. Phys. B 164 (1980) 171 [101] Y. Makeenko and Astron. Astrophys. Migdal, "Quantum Chromodynamics Ann. Sci. Dynamics Of Loops," Nucl. Phys. B 188 (1981) 269 [102] A. M. Polyakov, "Confining strings," Nucl. Phys. B 486 (1997) 23 hep-th/9607049 [103] A. M. Polyakov, "String theory and quark confinement," Nucl. Phys. B, Proc. Suppl. 68 (1998) 1 hep-th/9711002 [104] A. M. Polyakov, "The wall of the cave," Int. J. Mod. Phys. A 14 (1999) 645 hep-th/9809057 [105] A. M. Polyakov and V. S. Rychkov, "Gauge fields - strings duality and the loop equation," Nucl. Phys. B 581 (2000) 116 hep-th/0002106 [106] A. M. Polyakov and V. S. Rychkov, "Loop dynamics and AdS/CFT correspondence," Nucl. Phys. B 594 (2001) 272 hep-th/0005173 [107] A. M. Polyakov, "String theory Ann. Sci. a universal language," Phys. At. Nucl. 64 (2001) 540 hep-th/0006132 [108] A. M. Polyakov, "Gauge fields and space-time," Int. J. Mod. Phys. A 17S : 1 (2002) 119, hep-th/0110196 [109] J. B. Kogut and L. Susskind, "Hamiltonian Formulation Of Wilson’s Lattice Gauge Theories," Phys. Rev. D 11 (1975) 395 [110] A. Santambrogio and D. Zanon, "Exact anomalous dimensions of N = 4 Yang-Mills operators with large R charge," Phys. Lett. B 545 (2002) 425 hep-th/0206079 [111] Y. Oz and T. Sakai, "Exact anomalous dimensions for N = 2 ADE SCFTs," hep-th/0208078 [112] S. R. Das, C. Gomez and S. J. Rey, "Penrose limit, spontaneous Symmetry break-ing and holography in pp-wave background," Phys. Rev. D 66 (2002) 046002 hep-th/0203164 [113] R. G. Leigh, K. Okuyama and M. Rozali, "PP-waves and holography," Phys. Rev. D 66 (2002) 046004 hep-th/0204026 [114] D. Berenstein and H. Nastase, "On lightcone string field theory from super Yang-Mills and holography," hep-th/0205048 SzGeCERN 2373792CERCER hep-th/0304229 eng Barvinsky, A O Lebedev Physics Institute Nonlocal action for long-distance modifications of gravity theory 2003 28 Apr 2003 9 p We construct the covariant nonlocal action for recently suggested long-distance modifications of gravity theory motivated by the cosmological constant and cosmological acceleration problems. This construction is based on the special nonlocal form of the Einstein-Hilbert action explicitly revealing the fact that this action within the covariant curvature expansion begins with curvature-squared terms. LANL EDS SIS LANLPUBL2004 SIS:2004 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory 109-116 Phys. Lett. B 572 2003 http://invenio-software.org/download/invenio-demo-site-files/0304229.pdf http://invenio-software.org/download/invenio-demo-site-files/0304229.ps.gz barvin@lpi.ru n 200318 13 20060826 0015 CER01 20030429 PUBLIC 002373792CER ARTICLE [1] N.Arkani-Hamed, S.Dimopoulos, G.Dvali and G.Gabadadze, Nonlocal modifica-tion of gravity and the cosmological constant problem, hep-th/0209227 [2] S.Weinberg, Rev. Mod. Phys. 61 (1989) 1 [3] M.K.Parikh and S.N.Solodukhin, Phys. Lett. B 503 (2001) 384 hep-th/0012231 [4] A.O.Barvinsky and G.A.Vilkovisky, Nucl. Phys. B 282 (1987) 163 [5] A.O.Barvinsky and G.A.Vilkovisky, Nucl. Phys. B 333 (1990) 471 [6] A.O.Barvinsky, Yu.V.Gusev, G.A.Vilkovisky and V.V.Zhytnikov, J. Math. Phys. 35 (1994) 3525 [6] J. Math. Phys. 35 (1994) 3543 [7] A.Adams, J.McGreevy and E.Silverstein, hep-th/0209226 [8] R.Gregory, V.A.Rubakov and S.M.Sibiryakov, Phys. Rev. Lett. 84 (2000) 5928 hep-th/0002072 [9] G.Dvali, G.Gabadadze and M.Porrati, Phys. Rev. Lett. B : 485 (2000) 208, hep-th/0005016 [10] S.L.Dubovsky and V.A.Rubakov, Phys. Rev. D 67 (2003) 104014 hep-th/0212222 [11] A.O.Barvinsky, Phys. Rev. D 65 (2002) 062003 hep-th/0107244 [12] A.O.Barvinsky, A.Yu.Kamenshchik, A.Rathke and C.Kiefer, Phys. Rev. D 67 (2003) 023513 hep-th/0206188 [13] E.S. Fradkin and Astron. Astrophys. Tseytlin, Phys. Lett. B 104 (1981) 377 [13] A.O.Barvinsky and I.G.Avramidi, Phys. Lett. B 159 (1985) 269 [14] A.O.Barvinsky, A.Yu.Kamenshchik and I.P.Karmazin, Phys. Rev. D 48 (1993) 3677 gr-qc/9302007 [15] E.V.Gorbar and I.L.Shapiro, J. High Energy Phys. 0302 (2003) 021 [16] M.Porrati, Phys. Lett. B 534 (2002) 209 hep-th/0203014 [17] H. van Damm and M.J.Veltman, Nucl. Phys. D : 22 (1970) 397; V.I.Zakharov, JETP Lett. 12 (1970) 312 [17] M.Porrati, Phys. Lett. B 498 (2001) 92 hep-th/0011152 [18] A.O.Barvinsky, Yu.V.Gusev, V.F.Mukhanov and D.V.Nesterov, Nonperturbative late time asymptotics for heat kernel in gravity theory, hep-th/0306052 [19] A.Strominger, J. High Energy Phys. 0110 (2001) 034 hep-th/0106113 [19] J. High Energy Phys. 0111 (2001) 049 hep-th/0110087 [20] J.Schwinger, J. Math. Phys. 2 (1961) 407 [20] J.L.Buchbinder, E.S.Fradkin and D.M.Gitman, Fortschr. Phys. 29 (1981) 187 [20] R.D.Jordan, Phys. Rev. D 33 (1986) 444 [21] C.Deffayet, G.Dvali and G.Gabadadze, Phys. Rev. D 65 (2002) 044023 astro-ph/0105068 [22] G.Dvali, A.Gruzinov and M.Zaldarriaga, The accelerated Universe and the Moon, hep-ph/0212069 [23] M.E.Soussa and R.P.Woodard, A nonlocal metric formulation of MOND, astro-ph/0302030 [24] M.Milgrom, Astrophys. J. 270 (1983) 365 [24] Astrophys. J. 270 (1983) 371 [24] J.Bekenstein and M.Milgrom, Astrophys. J. 286 (1984) 7 [25] L.R.Abramo and R.P.Woodard, Phys. Rev. D 65 (2002) 063516 [25] V.K.Onemli and R.P.Woodard, Class. Quantum Gravity 19 (2002) 4607 gr-qc/0204065 SzGeCERN hep-th/0307041 eng Witten, Edward Princeton University SL(2,Z) Action On Three-Dimensional Conformal Field Theories With Abelian Symmetry 2003 3 Jul 2003 24 p On the space of three-dimensional conformal field theories with U(1) symmetry and a chosen coupling to a background gauge field, there is a natural action of the group SL(2,Z). The generator S of SL(2,Z) acts by letting the background gauge field become dynamical, an operation considered recently by Kapustin and Strassler. The other generator T acts by shifting the Chern-Simons coupling of the background field. This SL(2,Z) action in three dimensions is related by the AdS/CFT correspondence to SL(2,Z) duality of low energy U(1) gauge fields in four dimensions. LANL EDS SzGeCERN Particle Physics - Theory PREPRINT LANL EDS High Energy Physics - Theory Witten, Edward http://invenio-software.org/download/invenio-demo-site-files/0307041.pdf http://invenio-software.org/download/invenio-demo-site-files/0307041.ps.gz witten@ias.edu n 200327 11 20061123 0917 CER01 20030704 PUBLIC 002385282CER PREPRINT [1] C. Burgess and B. P. Dolan, "Particle Vortex Duality And The Modular Group Applications To The Quantum Hall Effect And Other 2-D Systems," hep-th/0010246 [2] A. Shapere and F. Wilczek, "Self-Dual Models With Theta Terms," Nucl. Phys. B 320 (1989) 669 [3] S. J. Rey and A. Zee, "Self-Duality Of Three-Dimensional Chern-Simons Theory," Nucl. Phys. B 352 (1991) 897 [4] C. A. Lutken and G. G. Ross, "Duality In The Quantum Hall System," Phys. Rev. B 45 (1992) 11837 [4] Phys. Rev. B 48 (1993) 2500 [5] D.-H. Lee, S. Kivelson, and S.-C. Zhang, Phys. Lett. 68 (1992) 2386 [5] Phys. Rev. B 46 (1992) 2223 [6] C. A. Lutken, "Geometry Of Renormalization Group Flows Constrained By Discrete Global Symmetries," Nucl. Phys. B 396 (1993) 670 [7] B. P. Dolan, "Duality And The Modular Group In The Quantum Hall Effect," J. Phys. A 32 (1999) L243 cond-mat/9805171 [8] C. P. Burgess, R. Dib, and B. P. Dolan, Phys. Rev. B 62 (2000) 15359 cond-mat/9911476 [9] A. Zee, "Quantum Hall Fluids," cond-mat/9501022 [10] A. Kapustin and M. Strassler, "On Mirror Symmetry In Three Dimensional Abelian Gauge Theories," hep-th/9902033 [11] K. Intriligator and N. Seiberg, "Mirror Symmetry In Three-Dimensional Gauge The-ories," Phys. Lett. B 387 (1996) 512 hep-th/9607207 [12] J. Cardy and E. Rabinovici, "Phase Structure Of Z. Phys. Models In The Presence Of A Theta Parameter," Nucl. Phys. B 205 (1982) 1 [12] J. Cardy, "Duality And The Theta Parameter In Abelian Lattice Models," Nucl. Phys. B 205 (1982) 17 [13] C. Vafa and E. Witten, "A Strong Coupling Test Of S-Duality," Nucl. Phys. B 431 (1994) 3 hep-th/9408074 [14] E. Witten, "On S Duality In Abelian Gauge Theory," Selecta Mathematica : 1 (1995) 383, hep-th/9505186 [15] S. Deser, R. Jackiw, and S. Templeton, "Topologically Massive Gauge Theories," Ann. Phys. 140 (1982) 372 [16] E. Guadagnini, M. Martinelli, and M. Mintchev, "Scale-Invariant SIGMA, Symmetry Integrability Geom. Methods Appl. Models On Homogeneous Spaces," Phys. Lett. B 194 (1987) 69 [17] K. Bardacki, E. Rabinovici, and B. Saring, Nucl. Phys. B 299 (1988) 157 [18] D. Karabali, Q.-H. Park, H. J. Schnitzer, and Z. Yang, Phys. Lett. B 216 (1989) 307 [18] H. J. Schnitzer, Nucl. Phys. B 324 (1989) 412 [18] D. Karabali and H. J. Schnitzer, Nucl. Phys. B 329 (1990) 649 [19] T. Appelquist and R. D. Pisarski, "Hot Yang-Mills Theories And Three-Dimensional QCD," Phys. Rev. D 23 (1981) 2305 [20] R. Jackiw and S. Templeton, "How Superrenormalizable Interactions Cure Their In-frared Divergences," Phys. Rev. D 23 (1981) 2291 [21] S. Templeton, "Summation Of Dominant Coupling Constant Logarithms In QED In Three Dimensions," Phys. Lett. B 103 (1981) 134 [21] "Summation Of Coupling Constant Logarithms In QED In Three Dimensions," Phys. Rev. D 24 (1981) 3134 [22] T. Appelquist and U. W. Heinz,"Three-Dimensional O(N) Theories At Large Dis-tances," Phys. Rev. D 24 (1981) 2169 [23] D. Anselmi, "Large N Expansion, Conformal Field Theory, And Renormalization Group Flows In Three Dimensions," J. High Energy Phys. 0006 (2000) 042 hep-th/0005261 [24] V. Borokhov, A. Kapustin, and X. Wu, "Topological Disorder Operators In Three-Dimensional Conformal Field Theory," hep-th/0206054 [25] V. Borokhov, A. Kapustin, and X. Wu, "Monopole Operators And Mirror Symmetry In Three Dimensions," J. High Energy Phys. 0212 (2002) 044 hep-th/0207074 [26] P. Breitenlohner and D. Z. Freedman, "Stability In Gauged Extended Supergravity," Ann. Phys. 144 (1982) 249 [27] I. R. Klebanov and E. Witten, "AdS/CFT Correspondence And Symmetry Breaking," Nucl. Phys. B 536 (1998) 199 hep-th/9905104 [28] R. Jackiw, "Topological Investigations Of Quantized Gauge Theories," in Current Algebra And Anomalies, ed. S. B. Treiman et. al. (World-Scientific, 1985). [29] A. Schwarz, "The Partition Function Of A Degenerate Functional," Commun. Math. Phys. 67 (1979) 1 [30] M. Rocek and E. Verlinde, "Duality, Quotients, and Currents," Nucl. Phys. B 373 (1992) 630 hep-th/9110053 [31] S. Elitzur, G. Moore, A. Schwimmer, and N. Seiberg, "Remarks On The Canonical Quantization Of The Chern-Simons-Witten Theory," Nucl. Phys. B 326 (1989) 108 [32] E. Witten, "Quantum Field Theory And The Jones Polynomial," Commun. Math. Phys. 121 (1989) 351 [33] N. Redlich, "Parity Violation And Gauge Non-Invariance Of The Effective Gauge Field Action In Three Dimensions," Phys. Rev. D 29 (1984) 2366 [34] E. Witten, "Multi-Trace Operators, Boundary Conditions, and AdS/CFT Correspon-dence," hep-th/0112258 [35] M. Berkooz, A. Sever, and A. Shomer, "Double-trace Deformations, Boundary Con-ditions, and Spacetime Singularities," J. High Energy Phys. 05 (2002) 034 hep-th/0112264 [36] P. Minces, "Multi-trace Operators And The Generalized AdS/CFT Prescription," hep-th/0201172 [37] O. Aharony, M. Berkooz, and E. Silverstein, "Multiple Trace Operators And Non-Local String Theories," J. High Energy Phys. 08 (2001) 006 [38] V. K. Dobrev, "Intertwining Operator Realization Of The AdS/CFT Correspon-dence," Nucl. Phys. B 553 (1999) 559 hep-th/9812194 [39] I. R. Klebanov, "Touching Random Surfaces And Liouville Theory," Phys. Rev. D 51 (1995) 1836 hep-th/9407167 [39] I. R. Klebanov and A. Hashimoto, "Non-perturbative Solution Of Matrix Models Modified By Trace Squared Terms," Nucl. Phys. B 434 (1995) 264 hep-th/9409064 [40] S. Gubser and I. Mitra, "Double-trace Operators And One-Loop Vacuum Energy In AdS/CFT," hep-th/0210093 Phys.Rev. D67 (2003) 064018 [41] S. Gubser and I. R. Klebanov, "A Universal Result On Central Charges In The Presence Of Double-Trace Deformations," Nucl.Phys. B656 (2003) 23 hep-th/0212138 SzGeCERN 20070403111954.0 hep-th/0402130 eng NYU-TH-2004-02-17 Dvali, G New York University Filtering Gravity: Modification at Large Distances? Infrared Modification of Gravity Preprint title 2005 New York, NY New York Univ. Dept. Phys. 17 Feb 2004 18 p In this lecture I address the issue of possible large distance modification of gravity and its observational consequences. Although, for the illustrative purposes we focus on a particular simple generally-covariant example, our conclusions are rather general and apply to large class of theories in which, already at the Newtonian level, gravity changes the regime at a certain very large crossover distance $r_c$. In such theories the cosmological evolution gets dramatically modified at the crossover scale, usually exhibiting a "self-accelerated" expansion, which can be differentiated from more conventional "dark energy" scenarios by precision cosmology. However, unlike the latter scenarios, theories of modified-gravity are extremely constrained (and potentially testable) by the precision gravitational measurements at much shorter scales. Despite the presence of extra polarizations of graviton, the theory is compatible with observations, since the naive perturbative expansion in Newton's constant breaks down at a certain intermediate scale. This happens because the extra polarizations have couplings singular in $1/r_c$. However, the correctly resummed non-linear solutions are regular and exhibit continuous Einsteinian limit. Contrary to the naive expectation, explicit examples indicate that the resummed solutions remain valid after the ultraviolet completion of the theory, with the loop corrections taken into account. LANL EDS SIS:200704 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Dvali, Gia 92-98 Phys. Scr. Top. Issues T117 2005 http://invenio-software.org/download/invenio-demo-site-files/0402130.pdf n 200408 13 20070425 1019 CER01 20040218 002414101 92-98 sigtuna20030814 PUBLIC 002426503CER ARTICLE [1] G. Dvali, G. Gabadadze and M. Porrati, Phys. Lett. B 485 (2000) 208 hep-th/0005016 [1] G. R. Dvali and G. Gabadadze, Phys. Rev. D 63 (2001) 065007 hep-th/0008054 [2] G. Dvali, G. Gabadadze, M. Kolanovic and F. Nitti, Phys. Rev. D 65 (2002) 024031 hep-ph/0106058 [3] G. Dvali, G. Gabadadze, M. Kolanovic and F. Nitti, Phys. Rev. D 64 (2001) 084004 hep-ph/0102216 [4] C. Deffayet, G. Dvali and G. Gabadadze, Phys. Rev. D 65 (2002) 044023 astro-ph/0105068 [5] C. Deffayet, Phys. Lett. B 502 (2001) 199 hep-th/0010186 [6] A. G. Riess et al. [Supernova Search Team Collaboration], Astron. J. 116 (1998) 1009 astro-ph/9805201 [6] S. Perlmutter et al. [Supernova Cosmology Project Collaboration], Astrophys. J. 517 (1999) 565 astro-ph/9812133 [7] G. Dvali and M. Turner, astro-ph/0301510 [8] H. van Dam and M. Veltman, Nucl. Phys. B 22 (1970) 397 [9] V. I. Zakharov, JETP Lett. 12 (1970) 312 [10] A. I. Vainshtein, Phys. Lett. B 39 (1972) 393 [11] C. Deffayet, G. Dvali, G. Gabadadze and A. I. Vainshtein, Phys. Rev. D 65 (2002) 044026 hep-th/0106001 [12] N. Arkani-Hamed, H. Georgi and M.D. Schwartz, Ann. Phys. 305 (2003) 96 hep-th/0210184 [13] D. G..Boulware and S. Deser., Phys. Rev. D 6 (1972) 3368 [14] G. Gabadadze and A. Gruzinov, Phys.Rev. D72 (2005) 124007 hep-th/0312074 [15] M. A. Luty, M. Porrati and R. Rattazzi, J. High Energy Phys. 0309 (2003) 029 hep-th/0303116 [16] A. Lue, Phys. Rev. D 66 (2002) 043509 hep-th/0111168 [17] A. Gruzinov, astro-ph/0112246 New Astron. 10 (2005) 311 [18] S. Corley, D.A.Lowe and S. Ramgoolam, J. High Energy Phys. 0107 (2001) 030 hep-th/0106067 [19] I. Antoniadis, R. Minasian and P. Vanhove, Nucl. Phys. B 648 (2003) 69 hep-th/0209030 [20] R. L. Davis, Phys. Rev. D 35 (1987) 3705 [21] G. Dvali, A. Gruzinov and M. Zaldarriaga, Phys. Rev. D 68 (2003) 024012 hep-ph/0212069 [22] A. Lue and G. Starkman, Phys. Rev. D 67 (2003) 064002 astro-ph/0212083 [23] E. Adelberger (2002). Private communication. [24] T. Damour, I. I. Kogan, A. Papazoglou, Phys. Rev. D 66 (2002) 104025 hep-th/0206044 [25] G. Dvali, G. Gabadadze and M. Shifman, Phys. Rev. D 67 (2003) 044020 hep-th/0202174 [26] A. Adams, J. McGreevy and E. Silverstein, hep-th/0209226 [27] N. Arkani-Hamed, S. Dimopoulos, G. Dvali and G. Gabadadze, hep-th/0209227 [28] S.M. Carrol, V. Duvvuri, M. Trodden and M.S. Turner, astro-ph/0306438 Phys.Rev. D70 (2004) 043528 [29] G.Gabadadze and M. Shifman, hep-th/0312289 Phys.Rev. D69 (2004) 124032 [30] M.Porrati and G. W. Rombouts, hep-th/0401211 Phys.Rev. D69 (2004) 122003 SzGeCERN 20060124104603.0 hep-th/0501145 eng Durin, B LPTHE Closed strings in Misner space: a toy model for a Big Bounce ? 2005 19 Jan 2005 Misner space, also known as the Lorentzian orbifold $R^{1,1}/boost$, is one of the simplest examples of a cosmological singularity in string theory. In this lecture, we review the semi-classical propagation of closed strings in this background, with a particular emphasis on the twisted sectors of the orbifold. Tree-level scattering amplitudes and the one-loop vacuum amplitude are also discussed. LANL EDS SIS LANLPUBL2006 SIS:2006 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Pioline, B Durin, Bruno Pioline, Boris http://invenio-software.org/download/invenio-demo-site-files/0501145.pdf LPTHE LPTHE, Lptens n 200503 13 20061202 0008 CER01 20050120 002424942 177 cargese20040607 PUBLIC 002503681CER ARTICLE [1] S. Lem, "The Seventh Voyage", in The Star Diaries, Varsaw 1971, english translation New York, 1976. [2] A. Borde and A. Vilenkin, "Eternal inflation and the initial singu-larity," Phys. Rev. Lett. 72 (1994) 3305 gr-qc/9312022 [3] C. W. Misner, in Relativity Theory and Astrophysics I Relativity and Cosmology, edited by J. Ehlers, Lectures in Applied Mathe-matics, Vol. 8 (American Electron. Res. Announc. Am. Math. Soc., Providence, 1967), p. 160. [4] M. Berkooz, and B. Pioline, "Strings in an electric field, and the Milne universe," J. Cosmol. Astropart. Phys. 0311 (2003) 007 hep-th/0307280 [5] M. Berkooz, B. Pioline and M. Rozali, "Closed strings in Mis-ner space Cosmological production of winding strings," J. Cosmol. Astropart. Phys. 07 (2004) 003 hep-th/0405126 [6] JCAP 0410 (2004) 002 M. Berkooz, B. Durin, B. Pioline and D. Reichmann, "Closed strings in Misner space Stringy fuzziness with a twist," arXiv hep-th/0407216 [7] G. T. Horowitz and A. R. Steif, "Singular String Solutions With Nonsingular Initial Data," Phys. Lett. B 258 (1991) 91 [8] J. Khoury, B. A. Ovrut, N. Seiberg, P. J. Steinhardt and N. Turok, "From big crunch to big bang," Phys. Rev. D 65 (2002) 086007 hep-th/0108187 [9] Surveys High Energ.Phys. 17 (2002) 115 N. A. Nekrasov, "Milne universe, tachyons, and quantum group," arXiv hep-th/0203112 [10] V. Balasubramanian, S. F. Hassan, E. Keski-Vakkuri and A. Naqvi, "A space-time orbifold A toy model for a cosmological singu-larity," Phys. Rev. D 67 (2003) 026003 hep-th/0202187 [10] R. Biswas, E. Keski-Vakkuri, R. G. Leigh, S. Nowling and E. Sharpe, "The taming of closed time-like curves," J. High Energy Phys. 0401 (2004) 064 hep-th/0304241 [11] I. Antoniadis, C. Bachas, J. R. Ellis and D. V. Nanopoulos, "Cosmo-logical String Theories And Discrete Inflation," Phys. Lett. B 211 (1988) 393 [11] I. Antoniadis, C. Bachas, J. R. Ellis and D. V. Nanopou-los, "An Expanding Universe In String Theory," Nucl. Phys. B 328 (1989) 117 [11] I. Antoniadis, C. Bachas, J. R. Ellis and D. V. Nanopou-los, "Comments On Cosmological String Solutions," Phys. Lett. B 257 (1991) 278 [12] C. R. Nappi and E. Witten, "A Closed, expanding universe in string theory," Phys. Lett. B 293 (1992) 309 hep-th/9206078 [13] C. Kounnas and D. Lust, "Cosmological string backgrounds from gauged WZW models," Phys. Lett. B 289 (1992) 56 hep-th/9205046 [14] E. Kiritsis and C. Kounnas, "Dynamical Topology change in string theory," Phys. Lett. B 331 (1994) 51 hep-th/9404092 [15] S. Elitzur, A. Giveon, D. Kutasov and E. Rabinovici, "From big bang to big crunch and beyond," J. High Energy Phys. 0206 (2002) 017 hep-th/0204189 [15] S. Elitzur, A. Giveon and E. Rabinovici, "Removing singularities," J. High Energy Phys. 0301 (2003) 017 hep-th/0212242 [16] L. Cornalba and M. S. Costa, "A New Cosmological Scenario in String Theory," Phys. Rev. D 66 (2002) 066001 hep-th/0203031 [16] L. Cornalba, M. S. Costa and C. Kounnas, "A res-olution of the cosmological singularity with orientifolds," Nucl. Phys. B 637 (2002) 378 hep-th/0204261 [16] L. Cornalba and M. S. Costa, "On the classical stability of orientifold cosmologies," Class. Quantum Gravity 20 (2003) 3969 hep-th/0302137 [17] B. Craps, D. Kutasov and G. Rajesh, "String propagation in the presence of cosmological singularities," J. High Energy Phys. 0206 (2002) 053 hep-th/0205101 [17] B. Craps and B. A. Ovrut, "Global fluc-tuation spectra in big crunch / big bang string vacua," Phys. Rev. D 69 (2004) 066001 hep-th/0308057 [18] E. Dudas, J. Mourad and C. Timirgaziu, "Time and space depen-dent backgrounds from nonsupersymmetric strings," Nucl. Phys. B 660 (2003) 3 hep-th/0209176 [19] L. Cornalba and M. S. Costa, "Time-dependent orbifolds and string cosmology," Fortschr. Phys. 52 (2004) 145 hep-th/0310099 [20] Phys.Rev. D70 (2004) 126011 C. V. Johnson and H. G. Svendsen, "An exact string theory model of closed time-like curves and cosmological singularities," arXiv hep-th/0405141 [21] N. Toumbas and J. Troost, "A time-dependent brane in a cosmolog-ical background," J. High Energy Phys. 0411 (2004) 032 hep-th/0410007 [22] W. A. Hiscock and D. A. Konkowski, "Quantum Vacuum Energy In Taub - Nut (Newman-Unti-Tamburino) Type Cosmologies," Phys. Rev. D 26 (1982) 1225 [23] A. H. Taub, "Empty Space-Times Admitting A Three Parameter Group Of Motions," Ann. Math. 53 (1951) 472 [23] E. Newman, L. Tamburino and T. Unti, "Empty Space Generalization Of The Schwarzschild Metric," J. Math. Phys. 4 (1963) 915 [24] J. G. Russo, "Cosmological string models from Milne spaces and SL(2,Z) orbifold," arXiv hep-th/0305032 [25] Mod.Phys.Lett. A19 (2004) 421 J. R. I. Gott, "Closed Timelike Curves Produced By Pairs Of Mov-ing Cosmic Strings Exact Solutions," Phys. Rev. Lett. 66 (1991) 1126 [25] J. D. Grant, "Cosmic strings and chronology protection," Phys. Rev. D 47 (1993) 2388 hep-th/9209102 [26] S. W. Hawking, "The Chronology protection conjecture," Phys. Rev. D 46 (1992) 603 [27] Commun.Math.Phys. 256 (2005) 491 D. Kutasov, J. Marklof and G. W. Moore, "Melvin Models and Diophantine Approximation," arXiv hep-th/0407150 [28] C. Gabriel and P. Spindel, "Quantum charged fields in Rindler space," Ann. Phys. 284 (2000) 263 gr-qc/9912016 [29] N. Turok, M. Perry and P. J. Steinhardt, "M theory model of a big crunch / big bang transition," Phys. Rev. D 70 (2004) 106004 hep-th/0408083 [30] C. Bachas and M. Porrati, "Pair Creation Of Open Strings In An Electric Field," Phys. Lett. B 296 (1992) 77 hep-th/9209032 [31] J. M. Maldacena, H. Ooguri and J. Son, "Strings in AdS(3) and the SL(2,R) WZW model. II Euclidean black hole," J. Math. Phys. 42 (2001) 2961 hep-th/0005183 [32] M. Berkooz, B. Craps, D. Kutasov and G. Rajesh, "Comments on cosmological singularities in string theory," arXiv hep-th/0212215 [33] D. J. Gross and P. F. Mende, "The High-Energy Behavior Of String Scattering Amplitudes," Phys. Lett. B 197 (1987) 129 [34] H. Liu, G. Moore and N. Seiberg, "Strings in a time-dependent orbifold," J. High Energy Phys. 0206 (2002) 045 hep-th/0204168 [34] H. Liu, G. Moore and N. Seiberg, "Strings in time-dependent orbifolds," J. High Energy Phys. 0210 (2002) 031 hep-th/0206182 [35] D. Amati, M. Ciafaloni and G. Veneziano, "Class. Quantum Gravity Effects From Planckian Energy Superstring Collisions," Int. J. Mod. Phys. A 3 (1988) 1615 [36] G. T. Horowitz and J. Polchinski, "Instability of spacelike and null orbifold singularities," Phys. Rev. D 66 (2002) 103512 hep-th/0206228 [37] C. R. Nappi and E. Witten, "A WZW model based on a non-semisimple group," Phys. Rev. Lett. 71 (1993) 3751 hep-th/9310112 [38] D. I. Olive, E. Rabinovici and A. Schwimmer, "A Class of string backgrounds Ann. Sci. a semiclassical limit of WZW models," Phys. Lett. B 321 (1994) 361 hep-th/9311081 [39] E. Kiritsis and C. Kounnas, "String Propagation In Gravitational Wave Backgrounds," Phys. Lett. B 320 (1994) 264 [39] [Addendum- Phys. Lett. B 325 (1994) 536 hep-th/9310202 [39] E. Kiritsis, C. Koun-nas and D. Lust, "Superstring gravitational wave backgrounds with space-time supersymmetry," Phys. Lett. B 331 (1994) 321 hep-th/9404114 [40] E. Kiritsis and B. Pioline, "Strings in homogeneous gravitational waves and null holography," J. High Energy Phys. 0208 (2002) 048 hep-th/0204004 [41] Nucl.Phys. B674 (2003) 80 G. D’Appollonio and E. Kiritsis, "String interactions in gravita-tional wave backgrounds," arXiv hep-th/0305081 [42] Y. K. Cheung, L. Freidel and K. Savvidy, "Strings in gravimagnetic fields," J. High Energy Phys. 0402 (2004) 054 hep-th/0309005 [43] O. Aharony, M. Berkooz and E. Silverstein, "Multiple-trace op-erators and non-local string theories," J. High Energy Phys. 0108 (2001) 006 hep-th/0105309 [43] M. Berkooz, A. Sever and A. Shomer, "Double-trace deformations, boundary conditions and spacetime singularities," J. High Energy Phys. 0205 (2002) 034 hep-th/0112264 [43] E. Witten, "Multi-trace operators, boundary conditions, and AdS/CFT correspondence," arXiv hep-th/0112258 [44] T. Damour, M. Henneaux and H. Nicolai, "Cosmological billiards," Class. Quantum Gravity 20 (2003) R145 hep-th/0212256 SzGeCERN 20060713170102.0 hep-th/0606038 eng DESY-06-083 DESY-2006-083 Papadimitriou, I DESY Non-Supersymmetric Membrane Flows from Fake Supergravity and Multi-Trace Deformations 2007 Hamburg DESY 5 Jun 2006 45 p We use fake supergravity as a solution generating technique to obtain a continuum of non-supersymmetric asymptotically $AdS_4\times S^7$ domain wall solutions of eleven-dimensional supergravity with non-trivial scalars in the $SL(8,\mathbb{R})/SO(8)$ coset. These solutions are continuously connected to the supersymmetric domain walls describing a uniform sector of the Coulomb branch of the $M2$-brane theory. We also provide a general argument that identifies the fake superpotential with the exact large-N quantum effective potential of the dual theory, thus arriving at a very general description of multi-trace deformations in the AdS/CFT correspondence, which strongly motivates further study of fake supergravity as a solution generating method. This identification allows us to interpret our non-supersymmetric solutions as a family of marginal triple-trace deformations of the Coulomb branch that completely break supersymmetry and to calculate the exact large-N anomalous dimensions of the operators involved. The holographic one- and two-point functions for these solutions are also computed. LANL EDS SIS JHEP2007 SIS:200703 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Papadimitriou, Ioannis 008 J. High Energy Phys. 02 2007 http://invenio-software.org/download/invenio-demo-site-files/0606038.pdf n 200623 13 20070307 2032 CER01 20060607 PUBLIC 002623855CER ARTICLE [1] M. Cvetic and H. H. Soleng, "Supergravity domain walls," Phys. Rep. 282 (1997) 159 hep-th/9604090 [2] D. Z. Freedman, C. Nunez, M. Schnabl and K. Skenderis, "Fake supergravity and domain wall stability," Phys. Rev. D 69 (2004) 104027 hep-th/0312055 [3] A. Celi, A. Ceresole, G. Dall’Agata, A. Van Proeyen and M. Zagermann, "On the fakeness of fake supergravity," Phys. Rev. D 71 (2005) 045009 hep-th/0410126 [4] K. Skenderis and P. K. Townsend, "Gravitational stability and renormalization-group flow," Phys. Lett. B 468 (1999) 46 hep-th/9909070 [5] I. Bakas, A. Brandhuber and K. Sfetsos, "Domain walls of gauged supergravity, M-branes, and algebraic curves," Adv. Theor. Math. Phys. 3 (1999) 1657 hep-th/9912132 [6] M. Zagermann, "N = 4 fake supergravity," Phys. Rev. D 71 (2005) 125007 hep-th/0412081 [7] K. Skenderis and P. K. Townsend, "Hidden supersymmetry of domain walls and cosmologies," arXiv hep-th/0602260 [8] K. Skenderis, private communication. [9] P. K. Townsend, "Positive Energy And The Scalar Potential In Higher Dimensional (Super)Gravity Theories," Phys. Lett. B 148 (1984) 55 [10] O. DeWolfe, D. Z. Freedman, S. S. Gubser and A. Karch, "Modeling the fifth dimension with scalars and gravity," Phys. Rev. D 62 (2000) 046008 hep-th/9909134 [11] S. S. Gubser, "Curvature singularities The good, the bad, and the naked," Adv. Theor. Math. Phys. 4 (2002) 679 hep-th/0002160 [12] I. Papadimitriou and K. Skenderis, "AdS / CFT correspondence and geometry," arXiv hep-th/0404176 [13] V. L. Campos, G. Ferretti, H. Larsson, D. Martelli and B. E. W. Nilsson, "A study of holographic renormalization group flows in d = 6 and d = 3," J. High Energy Phys. 0006 (2000) 023 hep-th/0003151 [14] M. Cvetic, S. S. Gubser, H. Lu and C. N. Pope, "Symmetric potentials of gauged supergravities in diverse dimensions and Coulomb branch of gauge theories," Phys. Rev. D 62 (2000) 086003 hep-th/9909121 [15] M. Cvetic, H. Lu, C. N. Pope and A. Sadrzadeh, "Consistency of Kaluza-Klein sphere reductions of symmetric potentials," Phys. Rev. D 62 (2000) 046005 hep-th/0002056 [16] P. Kraus, F. Larsen and S. P. Trivedi, "The Coulomb branch of gauge theory from rotating branes," J. High Energy Phys. 9903 (1999) 003 hep-th/9811120 [17] D. Z. Freedman, S. S. Gubser, K. Pilch and N. P. Warner, "Continuous distributions of D3-branes and gauged supergravity," J. High Energy Phys. 0007 (2000) 038 hep-th/9906194 [18] I. Bakas and K. Sfetsos, "States and curves of five-dimensional gauged supergravity," Nucl. Phys. B 573 (2000) 768 hep-th/9909041 [19] C. Martinez, R. Troncoso and J. Zanelli, "Exact black hole solution with a minimally coupled scalar field," Phys. Rev. D 70 (2004) 084035 hep-th/0406111 [20] B. de Wit and H. Nicolai, "The Consistency Of The S7 Truncation In D = 11 Supergravity," Nucl. Phys. B 281 (1987) 211 [21] H. Nastase, D. Vaman and P. van Nieuwenhuizen, "Consistent Nonlinearity K K reduction of 11d supergravity on AdS7 × S4 and self-duality in odd dimensions," Phys. Lett. B 469 (1999) 96 hep-th/9905075 [22] H. Nastase, D. Vaman and P. van Nieuwenhuizen, "Consistency of the AdS7 × S4 reduction and the origin of self-duality in odd dimensions," Nucl. Phys. B 581 (2000) 179 hep-th/9911238 [23] P. Breitenlohner and D. Z. Freedman, "Stability In Gauged Extended Supergravity," Ann. Phys. 144 (1982) 249 [24] I. R. Klebanov and E. Witten, "AdS/CFT correspondence and Symmetry breaking," Nucl. Phys. B 556 (1999) 89 hep-th/9905104 [25] Dr. E. Kamke, Differentialgleichungen Lösungsmethoden und Lösungen, Chelsea Publishing Company, 1971. [26] E. S. Cheb-Terrab and A. D. Roche, "Abel ODEs Equivalence and Integrable Classes," Comput. Phys. Commun. 130, Issues 1- : 2 (2000) 204 [arXiv math-ph/0001037 [26] E. S. Cheb-Terrab and A. D. Roche, "An Abel ordinary differential equation class generalizing known integrable classes," European J. Appl. Math. 14 (2003) 217 math.GM/0002059 [26] V. M. Boyko, "Symmetry, Equivalence and Integrable Classes of Abel’s Equations," Proceedings of the Institute of Mathematics of the NAS of Ukraine 50, Part : 1 (2004) 47 [arXiv nlin.SI/0404020 [27] M. J. Duff and J. T. Liu, "Anti-de Sitter black holes in gauged N = 8 supergravity," Nucl. Phys. B 554 (1999) 237 hep-th/9901149 [28] M. Cvetic et al., "Embedding AdS black holes in ten and eleven dimensions," Nucl. Phys. B 558 (1999) 96 hep-th/9903214 [29] J. de Boer, E. P. Verlinde and H. L. Verlinde, "On the holographic renormalization group," J. High Energy Phys. 0008 (2000) 003 hep-th/9912012 [30] M. Bianchi, D. Z. Freedman and K. Skenderis, "How to go with an RG flow," J. High Energy Phys. 0108 (2001) 041 hep-th/0105276 [31] I. Papadimitriou and K. Skenderis, "Correlation functions in holographic RG flows," J. High Energy Phys. 0410 (2004) 075 hep-th/0407071 [32] M. Henningson and K. Skenderis, "The holographic Weyl anomaly," J. High Energy Phys. 9807 (1998) 023 hep-th/9806087 [33] V. Balasubramanian and P. Kraus, "A stress tensor for anti-de Sitter gravity," Commun. Math. Phys. 208 (1999) 413 hep-th/9902121 [34] P. Kraus, F. Larsen and R. Siebelink, "The gravitational action in asymptotically AdS and flat spacetimes," Nucl. Phys. B 563 (1999) 259 hep-th/9906127 [35] S. de Haro, S. N. Solodukhin and K. Skenderis, "Holographic reconstruction of spacetime and renormalization in the AdS/CFT correspondence," Commun. Math. Phys. 217 (2001) 595 hep-th/0002230 [36] M. Bianchi, D. Z. Freedman and K. Skenderis, "Holographic renormalization," Nucl. Phys. B 631 (2002) 159 hep-th/0112119 [37] D. Martelli and W. Muck, "Holographic renormalization and Ward identities with the Hamilton-Jacobi method," Nucl. Phys. B 654 (2003) 248 hep-th/0205061 [38] K. Skenderis, "Lecture notes on holographic renormalization," Class. Quantum Gravity 19 (2002) 5849 hep-th/0209067 [39] D. Z. Freedman, S. D. Mathur, A. Matusis and L. Rastelli, "Correlation functions in the CFT(d)/AdS(d + 1) correspondence," Nucl. Phys. B 546 (1999) 96 hep-th/9804058 [40] O. DeWolfe and D. Z. Freedman, "Notes on fluctuations and correlation functions in holographic renormalization group flows," arXiv hep-th/0002226 [41] W. Muck, "Correlation functions in holographic renormalization group flows," Nucl. Phys. B 620 (2002) 477 hep-th/0105270 [42] M. Bianchi, M. Prisco and W. Muck, "New results on holographic three-point functions," J. High Energy Phys. 0311 (2003) 052 hep-th/0310129 [43] E. Witten, "Multi-trace operators, boundary conditions, and AdS/CFT correspondence," arXiv hep-th/0112258 [44] M. Berkooz, A. Sever and A. Shomer, "Double-trace deformations, boundary conditions and spacetime singularities," J. High Energy Phys. 0205 (2002) 034 hep-th/0112264 [45] W. Muck, "An improved correspondence formula for AdS/CFT with multi-trace operators," Phys. Lett. B 531 (2002) 301 hep-th/0201100 [46] P. Minces, "Multi-trace operators and the generalized AdS/CFT prescription," Phys. Rev. D 68 (2003) 024027 hep-th/0201172 [47] A. Sever and A. Shomer, "A note on multi-trace deformations and AdS/CFT," J. High Energy Phys. 0207 (2002) 027 hep-th/0203168 [48] S. S. Gubser and I. R. Klebanov, "A universal result on central charges in the presence of double-trace deformations," Nucl. Phys. B 656 (2003) 23 hep-th/0212138 [49] O. Aharony, M. Berkooz and B. Katz, "Non-local effects of multi-trace deformations in the AdS/CFT correspondence," J. High Energy Phys. 0510 (2005) 097 hep-th/0504177 [50] S. Elitzur, A. Giveon, M. Porrati and E. Rabinovici, "Multitrace deformations of vector and adjoint theories and their holographic duals," J. High Energy Phys. 0602 (2006) 006 hep-th/0511061 [51] R. Corrado, K. Pilch and N. P. Warner, "An N = 2 supersymmetric membrane flow," Nucl. Phys. B 629 (2002) 74 hep-th/0107220 [52] T. Hertog and K. Maeda, "Black holes with scalar hair and asymptotics in N = 8 supergravity," J. High Energy Phys. 0407 (2004) 051 hep-th/0404261 [53] T. Hertog and G. T. Horowitz, "Towards a big crunch dual," J. High Energy Phys. 0407 (2004) 073 hep-th/0406134 [54] T. Hertog and G. T. Horowitz, "Designer gravity and field theory effective potentials," Phys. Rev. Lett. 94 (2005) 221301 hep-th/0412169 [55] T. Hertog and G. T. Horowitz, "Holographic description of AdS cosmologies," J. High Energy Phys. 0504 (2005) 005 hep-th/0503071 [56] S. de Haro, I. Papadimitriou and A. C. Petkou, "Conformally coupled scalars, instantons and Vacuum instability in AdS(4)," [arXiv hep-th/0611315 SzGeCERN 20060616163757.0 hep-th/0606096 eng UTHET-2006-05-01 Koutsoumbas, G National Technical University of Athens Quasi-normal Modes of Electromagnetic Perturbations of Four-Dimensional Topological Black Holes with Scalar Hair 2006 10 Jun 2006 17 p We study the perturbative behaviour of topological black holes with scalar hair. We calculate both analytically and numerically the quasi-normal modes of the electromagnetic perturbations. In the case of small black holes we find clear evidence of a second-order phase transition of a topological black hole to a hairy configuration. We also find evidence of a second-order phase transition of the AdS vacuum solution to a topological black hole. LANL EDS SIS JHEP2007 SIS:200702 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE LANL EDS High Energy Physics - Theory Musiri, S Papantonopoulos, E Siopsis, G Koutsoumbas, George Musiri, Suphot Papantonopoulos, Eleftherios Siopsis, George 006 J. High Energy Phys. 10 2006 http://invenio-software.org/download/invenio-demo-site-files/0606096.pdf n 200624 13 20070425 1021 CER01 20060613 PUBLIC 002628325CER ARTICLE [1] K. D. Kokkotas and B. G. Schmidt, Living Rev. Relativ. 2 (1999) 2 gr-qc/9909058 [2] H.-P. Nollert, Class. Quantum Gravity 16 (1999) R159 [3] J. S. F. Chan and R. B. Mann, Phys. Rev. D 55 (1997) 7546 gr-qc/9612026 [3] Phys. Rev. D 59 (1999) 064025 [4] G. T. Horowitz and V. E. Hubeny, Phys. Rev. D 62 (2000) 024027 hep-th/9909056 [5] V. Cardoso and J. P. S. Lemos, Phys. Rev. D 64 (2001) 084017 gr-qc/0105103 [6] B. Wang, C. Y. Lin and E. Abdalla, Phys. Lett. B 481 (2000) 79 hep-th/0003295 [7] E. Berti and K. D. Kokkotas, Phys. Rev. D 67 (2003) 064020 gr-qc/0301052 [8] F. Mellor and I. Moss, Phys. Rev. D 41 (1990) 403 [9] C. Martinez and J. Zanelli, Phys. Rev. D 54 (1996) 3830 gr-qc/9604021 [10] M. Henneaux, C. Martinez, R. Troncoso and J. Zanelli, Phys. Rev. D 65 (2002) 104007 hep-th/0201170 [11] C. Martinez, R. Troncoso and J. Zanelli, Phys. Rev. D 67 (2003) 024008 hep-th/0205319 [12] N. Bocharova, K. Bronnikov and V. Melnikov, Vestn. Mosk. Univ. Fizika Astronomy 6 (1970) 706 [12] J. D. Bekenstein, Ann. Phys. 82 (1974) 535 [12] Ann. Phys. 91 (1975) 75 [13] T. Torii, K. Maeda and M. Narita, Phys. Rev. D 64 (2001) 044007 [14] E. Winstanley, Found. Phys. 33 (2003) 111 gr-qc/0205092 [15] T. Hertog and K. Maeda, J. High Energy Phys. 0407 (2004) 051 hep-th/0404261 [16] J. P. S. Lemos, Phys. Lett. B 353 (1995) 46 gr-qc/9404041 [17] R. B. Mann, Class. Quantum Gravity 14 (1997) L109 gr-qc/9607071 [17] R. B. Mann, Nucl. Phys. B 516 (1998) 357 hep-th/9705223 [18] L. Vanzo, Phys. Rev. D 56 (1997) 6475 gr-qc/9705004 [19] D. R. Brill, J. Louko and P. Peldan, Phys. Rev. D 56 (1997) 3600 gr-qc/9705012 [20] D. Birmingham, Class. Quantum Gravity 16 (1999) 1197 hep-th/9808032 [21] R. G. Cai and K. S. Soh, Phys. Rev. D 59 (1999) 044013 gr-qc/9808067 [22] Phys.Rev. D65 (2002) 084006 B. Wang, E. Abdalla and R. B. Mann, [arXiv hep-th/0107243 [23] Phys.Rev. D65 (2002) 084006 R. B. Mann, [arXiv gr-qc/9709039 [24] J. Crisostomo, R. Troncoso and J. Zanelli, Phys. Rev. D 62 (2000) 084013 hep-th/0003271 [25] R. Aros, R. Troncoso and J. Zanelli, Phys. Rev. D 63 (2001) 084015 hep-th/0011097 [26] R. G. Cai, Y. S. Myung and Y. Z. Zhang, Phys. Rev. D 65 (2002) 084019 hep-th/0110234 [27] M. H. Dehghani, Phys. Rev. D 70 (2004) 064019 hep-th/0405206 [28] C. Martinez, R. Troncoso and J. Zanelli, Phys. Rev. D 70 (2004) 084035 hep-th/0406111 [29] Phys.Rev. D74 (2006) 044028 C. Martinez, J. P. Staforelli and R. Troncoso, [arXiv hep-th/0512022 [29] C. Martinez and R. Troncoso, [arXiv Phys.Rev. D74 (2006) 064007 hep-th/0606130 [30] E. Winstanley, Class. Quantum Gravity 22 (2005) 2233 gr-qc/0501096 [30] E. Radu and E. Win-stanley, Phys. Rev. D 72 (2005) 024017 gr-qc/0503095 [30] A. M. Barlow, D. Doherty and E. Winstanley, Phys. Rev. D 72 (2005) 024008 gr-qc/0504087 [31] I. Papadimitriou, [arXiv JHEP 0702 (2007) 008 hep-th/0606038 [32] P. Breitenlohner and D. Z. Freedman, Phys. Lett. B 115 (1982) 197 [32] Ann. Phys. 144 (1982) 249 [33] L. Mezincescu and P. K. Townsend, Ann. Phys. 160 (1985) 406 [34] V. Cardoso, J. Natario and R. Schiappa, J. Math. Phys. 45 (2004) 4698 hep-th/0403132 [35] J. Natario and R. Schiappa, Adv. Theor. Math. Phys. 8 (2004) 1001 hep-th/0411267 [36] S. Musiri, S. Ness and G. Siopsis, Phys. Rev. D 73 (2006) 064001 hep-th/0511113 [37] L. Motl and A. Neitzke, Adv. Theor. Math. Phys. 7 (2003) 307 hep-th/0301173 [38] Astron. J. M. Medved, D. Martin and M. Visser, Class. Quantum Gravity 21 (2004) 2393 gr-qc/0310097 [39] W.-H. Press, S. A. Teukolsky, W. T. Vetterling and B. P. Flannery in Numerical Recipies (Cambridge University Press, Cambridge, England, 1992). [40] G. Koutsoumbas, S. Musiri, E. Papantonopoulos and G. Siopsis, in preparation. SzGeCERN hep-th/0703265 eng IGPG-07-3-4 Alexander, S The Pennsylvania State University A new PPN parameter to test Chern-Simons gravity 2007 28 Mar 2007 4 p We study Chern-Simons (CS) gravity in the parameterized post-Newtonian (PPN) framework through weak-field solutions of the modified field equations for a perfect fluid source. We discover that CS gravity possesses the same PPN parameters as general relativity, except for the inclusion of a new term, proportional both to the CS coupling parameter and the curl of the PPN vector potentials. This new term encodes the key physical effect of CS gravity in the weak-field limit, leading to a modification of frame dragging and, thus, the Lense-Thirring contribution to gyroscopic precession. We provide a physical interpretation for the new term, as well as an estimate of the size of this effect relative to the general relativistic Lense-Thirring prediction. This correction to frame dragging might be used in experiments, such as Gravity Probe B and lunar ranging, to place bounds on the CS coupling parameter, as well as other intrinsic parameters of string theory. LANL EDS SzGeCERN Particle Physics - Theory PREPRINT LANL EDS High Energy Physics - Theory Yunes, N Alexander, Stephon Yunes, Nicolas Phys. Rev. Lett. http://invenio-software.org/download/invenio-demo-site-files/0703265.pdf yunes@gravity.psu.edu> Uploader Engine <uploader@sundh99.cern.ch n 200713 11 20070417 2012 CER01 20070330 PUBLIC 002685163CER PREPRINT [1] J. Polchinski, String theory. Vol. 2 Superstring theory and beyond (Cambridge University Press, Cambridge, UK, 1998). [2] S. H. S. Alexander, M. E. Peskin, and M. M. Sheik-Jabbari, Phys. Rev. Lett. 96 (2006) 081301 [3] A. Lue, L.-M. Wang, and M. Kamionkowski, Phys. Rev. Lett. 83 (1999) 1506 astro-ph/9812088 [4] C. M. Will, Theory and experiment in gravitational Physics (Cambridge Univ. Press, Cambridge, UK, 1993). [5] C. M. Will, Phys. Rev. D 57 (1998) 2061 gr-qc/9709011 [6] C. M. Will and N. Yunes, Class. Quantum Gravity 21 (2004) 4367 [7] E. Berti, A. Buonanno, and C. M. Will, Phys. Rev. D 71 (2005) 084025 [8] A discussion of the history, technology and Physics of Gravity Probe B can be found at http://einstein.standfod.edu http://einstein.standfod.edu [9] J. Murphy, T. W., K. Nordtvedt, and S. G. Turyshev, Phys. Rev. Lett. 98 (2007) 071102 gr-qc/0702028 [10] R. Jackiw and S. Y. Pi, Phys. Rev. D 68 (2003) 104012 [11] D. Guarrera and Astron. J. Hariton (2007), Phys. Rev. D 76 (2007) 044011 gr-qc/0702029 [12] S. Alexander and J. Martin, Phys. Rev. D 71 (2005) 063526 hep-th/0410230 [13] R. J. Gleiser and C. N. Kozameh, Phys. Rev. D 64 (2001) 083007 gr-qc/0102093 [14] R. H. Brandenberger and C. Vafa, Nucl. Phys. B 316 (1989) 391 [15] L. Randall and R. Sundrum, Phys. Rev. Lett. 83 (1999) 4690 hep-th/9906064 [16] S. Alexander and N. Yunes (2007), in progress. [17] L. Blanchet, Living Rev. Relativ. 9 (2006) 4 [17] and references therein, gr-qc/0202016 [18] S. Alexander, L. S. Finn, and N. Yunes, in progress (2007). SzGeCERN 0237765CERCER SLAC 3455840 hep-th/9611103 eng PUPT-1665 Periwal, V Princeton University Matrices on a point as the theory of everything 1997 Princeton, NJ Princeton Univ. Joseph-Henry Lab. Phys. 14 Nov 1996 5 p It is shown that the world-line can be eliminated in the matrix quantum mechanics conjectured by Banks, Fischler, Shenker and Susskind to describe the light-cone physics of M theory. The resulting matrix model has a form that suggests origins in the reduction to a point of a Yang-Mills theory. The reduction of the Nishino-Sezgin $10+2$ dimensional supersymmetric Yang-Mills theory to a point gives a matrix model with the appropriate features: Lorentz invariance in $9+1$ dimensions, supersymmetry, and the correct number of physical degrees of freedom. SIS UNC98 LANL EDS SzGeCERN Particle Physics - Theory ARTICLE Periwal, Vipul 1711 4 Phys. Rev. D 55 1997 http://invenio-software.org/download/invenio-demo-site-files/9611103.pdf vipul@viper.princeton.edu n 199648 13 20070310 0012 CER01 19961115 PUBLIC 000237765CER ARTICLE 1. T. Banks, W. Fischler, S. Shenker and L. Susskind hep-th/9610043 2. E. Witten Nucl. Phys B 460 (1995) 335 3. B. de Wit, J. Hoppe and H. Nicolai Nucl. Phys B 305 (1988) 545 4. M. Berkooz and M. Douglas hep-th/9610236 5. H. Nishino and E. Sezgin hep-th/9607185 6. M. Blencowe and M. Duff Nucl. Phys B 310 (1988) 387 7. C. Vafa Nucl. Phys B 469 (1996) 403 9 7. C. Hull hep-th/9512181 8. D. Kutasov and E. Martinec hep-th/9602049 10 8. I. Bars hep-th/9607112 11. For some background on the choice of 10+2, see e.g 8. L. Castellani, P. Fré, F. Giani, K. Pilch and P. van Nieuwenhuizen Phys. Rev D 26 (1982) 1481 12 8. A. Connes Non-commutative Geometry, Academic Press (San Diego, 1994) 5 3. B. de Wit, J. Hoppe and H. Nicolai Nucl. Phys B 305 (1988) 545 4. M. Berkooz and M. Douglas hep-th/9610236 5. H. Nishino and E. Sezgin hep-th/9607185 6. M. Blencowe and M. Duff Nucl. Phys B 310 (1988) 387 7. C. Vafa Nucl. Phys B 469 (1996) 403 9 7. C. Hull hep-th/9512181 8. D. Kutasov and E. Martinec hep-th/9602049 10 8. I. Bars hep-th/9607112 11. For some background on the choice of 10+2, see e.g 8. L. Castellani, P. Fré, F. Giani, K. Pilch and P. van Nieuwenhuizen Phys. Rev D 26 (1982) 1481 12 8. A. Connes Non-commutative Geometry, Academic Press (San Diego, 1994) 5 0289446CERCER SLAC 3838510 hep-th/9809057 eng Polyakov, A M Princeton University The wall of the cave 1999 In this article old and new relations between gauge fields and strings are discussed. We add new arguments that the Yang Mills theories must be described by the non-critical strings in the five dimensional curved space. The physical meaning of the fifth dimension is that of the renormalization scale represented by the Liouville field. We analyze the meaning of the zigzag symmetry and show that it is likely to be present if there is a minimal supersymmetry on the world sheet. We also present the new string backgrounds which may be relevant for the description of the ordinary bosonic Yang-Mills theories. The article is written on the occasion of the 40-th anniversary of the IHES. SIS LANLPUBL2001 LANL EDS SIS:2001 PR/LKR added SzGeCERN Particle Physics - Theory ARTICLE 645-658 Int. J. Mod. Phys. A 14 1999 polyakov@puhep1.princeton.edu n 199837 13 20060916 0007 CER01 19980910 PUBLIC 000289446CER ARTICLE http://invenio-software.org/download/invenio-demo-site-files/9809057.pdf [1] K. Wilson Phys. Rev. D 10 (1974) 2445 [2] A. Polyakov Phys. Lett. B 59 (1975) 82 [3] A.Polyakov Nucl. Phys. B 120 (1977) 429 [4] S. Mandelstam Phys. Rep., C 23 (1976) 245 [5] G. t’Hooft in High Energy Phys., Zichichi editor, Bolognia (1976) [6] A. Polyakov hep-th/9711002 [7] I. Klebanov Nucl. Phys. B 496 (1997) 231 [8] J. Maldacena hep-th/9711200 [9] S. Gubser I. Klebanov A. Polyakov hep-th/9802109 [10] E. Witten hep-th/9802150 [11] L. Brink P. di Vecchia P. Howe Phys. Lett. B 63 (1976) 471 [12] S. Deser B. Zumino Phys. Lett. B 65 (1976) 369 [13] A. Polyakov Phys. Lett. B 103 (1981) 207 [14] T. Curtright C. Thorn Phys. Rev. Lett. 48 (1982) 1309 [15] J. Gervais A. Neveu Nucl. Phys. B 199 (1982) 59 [16] J. Polchinski Nucl. Phys. B 346 (1990) 253 [17] C. Callan E. Martinec M. Perry D. Friedan Nucl. Phys. B 262 (1985) 593 [18] A. Polyakov Proceedings of Les Houches (1992) [19] A. Polyakov Nucl. Phys. B 164 (1980) 171 [20] Y. Makeenko A. Migdal Nucl. Phys. B 188 (1981) 269 [21] H. Verlinde hep-th/9705029 [22] A. Migdal Nucl. Phys. B, Proc. Suppl. 41 (1995) 51 [23] J. Maldacena hep-th/9803002 [24] G. Horowitz A. Strominger Nucl. Phys. B 360 (1991) 197 [25] A. Lukas B. Ovrut D. Waldram hep-th/9802041 [26] K. Wilson Phys. Rev. 179 (1969) 1499 [27] A. Polyakov Zh. Eksp. Teor. Fiz. 59 (1970) 542 [27] Pis'ma Zh. Eksp. Teor. Fiz. 12 (1970) 538 [28] A. Peet J. Polchinski hep-th/9809022 [29] E. Fradkin A. Tseytlin Phys. Lett. B 178 (1986) 34 [30] S. Gubser I. Klebanov hep-th/9708005 SzGeCERN 2174811CERCER SLAC 4308492 hep-ph/0002060 eng ACT-2000-1 CTP-TAMU-2000-2 OUTP-2000-03-P TPI-MINN-2000-6 Cleaver, G B Non-Abelian Flat Directions in a Minimal Superstring Standard Model 2000 Houston, TX Houston Univ. Adv. Res. Cent. The Woodlands 4 Feb 2000 14 p Recently, by studying exact flat directions of non-Abelian singlet fields, wedemonstrated the existence of free fermionic heterotic-string models in whichthe SU(3)_C x SU(2)_L x U(1)_Y-charged matter spectrum, just below the stringscale, consists solely of the MSSM spectrum. In this paper we generalize theanalysis to include VEVs of non-Abelian fields. We find several,MSSM-producing, exact non-Abelian flat directions, which are the first suchexamples in the literature. We examine the possibility that hidden sectorcondensates lift the flat directions. LANL EDS SIS LANLPUBL2001 SIS:2001 PR/LKR added SzGeCERN Particle Physics - Phenomenology ARTICLE Faraggi, A E Nanopoulos, Dimitri V Walker, J W Walker, Joel W. 10.1142/S0217732300001444 1191-1202 Mod. Phys. Lett. A 15 2000 gcleaver@rainbow.physics.tamu.edu n 200006 13 20070425 1017 CER01 20000207 PUBLIC 002174811CER ARTICLE [1] A.E. Faraggi and D.V. Nanopoulos and L. Yuan Nucl. Phys. B 335 (1990) 347 [2] I. Antoniadis and J. Ellis and J. Hagelin and D.V. Nanopoulos Phys. Lett. B 213 (1989) 65 [3] I. Antoniadis and C. Bachas and C. Kounnas Nucl. Phys. B 289 (1987) 87 [4] A.E. Faraggi and D.V. Nanopoulos Phys. Rev. D 48 (1993) 3288 [5] G.B. Cleaver and A.E. Faraggi and D.V. Nanopoulos and L. Yuan Phys. Lett. B 455 (1999) 135 [6] hep-ph/9904301 [7] hep-ph/9910230 [8] Phys. Lett. B 256 (1991) 150 [10] hep-ph/9511426 [12] J. Ellis, K. Enqvist, D.V. Nanopoulos Phys. Lett., B 151 (1985) 357 [13] P. Horava Phys. Rev. D 54 (1996) 7561 http://invenio-software.org/download/invenio-demo-site-files/0002060.pdf http://invenio-software.org/download/invenio-demo-site-files/0002060.ps.gz SzGeCERN 20060914104330.0 INIS 34038281 UNCOVER 251,129,189,013 eng SCAN-0005061 TESLA-FEL-99-07 Treusch, R Development of photon beam diagnostics for VUV radiation from a SASE FEL 2000 Hamburg DESY Dec 1999 For the proof-of-principle experiment of self-amplified spontaneous emission (SASE) at short wavelengths on the VUV FEL at DESY a multi-facetted photon beam diagnostics experiment has been developed employing new detection concepts to measure all SASE specific properties on a single pulse basis. The present setup includes instrumentation for the measurement of the energy and the angular and spectral distribution of individual photon pulses. Different types of photon detectors such as PtSi-photodiodes and fast thermoelectric detectors based on YBaCuO-films are used to cover some five orders of magnitude of intensity from the level of spontaneous emission to FEL radiation at saturation. A 1 m normal incidence monochromator in combination with a fast intensified CCD camera allows to select single photon pulses and to record the full spectrum at high resolution to resolve the fine structure due to the start-up from noise. SIS INIS2004 SIS UNC2002 Development of photon beam diagnostics for VUV radiation from a SASE FEL SzGeCERN Accelerators and Storage Rings ARTICLE INIS Particle accelerators INIS ceramics- INIS desy- INIS far-ultraviolet-radiation INIS free-electron-lasers INIS photodiodes- INIS photon-beams INIS superradiance- INIS thin-films INIS x-ray-detection INIS x-ray-sources INIS accelerators- INIS beams- INIS cyclic-accelerators INIS detection- INIS electromagnetic-radiation INIS emission- INIS energy-level-transitions INIS films- INIS lasers- INIS photon-emission INIS radiation-detection INIS radiation-sources INIS radiations- INIS semiconductor-devices INIS semiconductor-diodes INIS stimulated-emission INIS synchrotrons- INIS ultraviolet-radiation Lokajczyk, T Xu, W Jastrow, U Hahn, U Bittner, L Feldhaus, J 456-462 1-3 Nucl. Instrum. Methods Phys. Res., A 445 2000 n 200430 13 20061230 0016 CER01 20040727 000289917 456-462 hamburg990823 PUBLIC 002471378CER ARTICLE http://invenio-software.org/download/invenio-demo-site-files/convert_SCAN-0005061.pdf SzGeCERN 20070110102840.0 0008580CERCER eng SCAN-9709037 UCRL-8417 Orear, J Notes on statistics for physicists Statistics for physicists 1958 Berkeley, CA Lawrence Berkeley Nat. Lab. 13 Aug 1958 34 p SzGeCERN Mathematical Physics and Mathematics PREPRINT oai:cds.cern.ch:SCAN-9709037 cerncds:SCAN cerncds:FULLTEXT h 199700 11 20070110 1028 CER01 19900127 PUBLIC PREPRINT DRAFT 0001 000008580CER http://invenio-software.org/download/invenio-demo-site-files/9709037.pdf BUL-NEWS-2009-001 eng Charles Darwin A naturalist's voyage around the world <!--HTML--><p class="articleHeader">After having been twice driven back by heavy south-western gales, Her Majesty's ship Beagle" a ten-gun brig, under the command of Captain Fitz Roy, R.N., sailed from Devonport on the 27th of December, 1831. The object of the expedition was to complete the survey of Patagonia and Tierra del Fuego, commenced under Captain King in 1826 to 1830--to survey the shores of Chile, Peru, and of some islands in the Pacific--and to carry a chain of chronometrical measurements round the World.</p> <div class="phwithcaption"> <div class="imageScale"><img alt="" src="http://invenio-software.org/download/invenio-demo-site-files/icon-journal_hms_beagle_image.gif" /></div> <p>H.M.S. Beagle</p> </div> <p>On the 6th of January we reached Teneriffe, but were prevented landing, by fears of our bringing the cholera: the next morning we saw the sun rise behind the rugged outline of the Grand Canary Island, and suddenly illumine the Peak of Teneriffe, whilst the lower parts were veiled in fleecy clouds. This was the first of many delightful days never to be forgotten. On the 16th of January 1832 we anchored at Porto Praya, in St. Jago, the chief island of the Cape de Verd archipelago.</p> <p>The neighbourhood of Porto Praya, viewed from the sea, wears a desolate aspect. The volcanic fires of a past age, and the scorching heat of a tropical sun, have in most places rendered the soil unfit for vegetation. The country rises in successive steps of table-land, interspersed with some truncate conical hills, and the horizon is bounded by an irregular chain of more lofty mountains. The scene, as beheld through the hazy atmosphere of this climate, is one of great interest; if, indeed, a person, fresh from sea, and who has just walked, for the first time, in a grove of cocoa-nut trees, can be a judge of anything but his own happiness. The island would generally be considered as very uninteresting, but to any one accustomed only to an English landscape, the novel aspect of an utterly sterile land possesses a grandeur which more vegetation might spoil. A single green leaf can scarcely be discovered over wide tracts of the lava plains; yet flocks of goats, together with a few cows, contrive to exist. It rains very seldom, but during a short portion of the year heavy torrents fall, and immediately afterwards a light vegetation springs out of every crevice. This soon withers; and upon such naturally formed hay the animals live. It had not now rained for an entire year. When the island was discovered, the immediate neighbourhood of Porto Praya was clothed with trees,1 the reckless destruction of which has caused here, as at St. Helena, and at some of the Canary islands, almost entire sterility. The broad, flat-bottomed valleys, many of which serve during a few days only in the season as watercourses, are clothed with thickets of leafless bushes. Few living creatures inhabit these valleys. The commonest bird is a kingfisher (Dacelo Iagoensis), which tamely sits on the branches of the castor-oil plant, and thence darts on grasshoppers and lizards. It is brightly coloured, but not so beautiful as the European species: in its flight, manners, and place of habitation, which is generally in the driest valley, there is also a wide difference. One day, two of the officers and myself rode to Ribeira Grande, a village a few miles eastward of Porto Praya. Until we reached the valley of St. Martin, the country presented its usual dull brown appearance; but here, a very small rill of water produces a most refreshing margin of luxuriant vegetation. In the course of an hour we arrived at Ribeira Grande, and were surprised at the sight of a large ruined fort and cathedral. This little town, before its harbour was filled up, was the principal place in the island: it now presents a melancholy, but very picturesque appearance. Having procured a black Padre for a guide, and a Spaniard who had served in the Peninsular war as an interpreter, we visited a collection of buildings, of which an ancient church formed the principal part. It is here the governors and captain-generals of the islands have been buried. Some of the tombstones recorded dates of the sixteenth century.1 The heraldic ornaments were the only things in this retired place that reminded us of Europe. The church or chapel formed one side of a quadrangle, in the middle of which a large clump of bananas were growing. On another side was a hospital, containing about a ozen miserable-looking inmates.</p> <p>We returned to the Vênda to eat our dinners. A considerable number of men, women, and children, all as black as jet, collected to watch us. Our companions were extremely merry; and everything we said or did was followed by their hearty laughter. Before leaving the town we visited the cathedral. It does not appear so rich as the smaller church, but boasts of a little organ, which sent forth singularly inharmonious cries. We presented the black priest with a few shillings, and the Spaniard, patting him on the head, said, with much candour, he thought his colour made no great difference. We then returned, as fast as the ponies would go, to Porto Praya.</p> (Excerpt from A NATURALIST'S VOYAGE ROUND THE WORLD Chapter 1, By Charles Darwin) <!--HTML--><br /> 3 02/2009 Atlantis Times 3 03/2009 Atlantis Times ATLANTISTIMESNEWS http://invenio-software.org/download/invenio-demo-site-files/journal_hms_beagle_image.gif http://invenio-software.org/download/invenio-demo-site-files/icon-journal_hms_beagle_image.gif BUL-NEWS-2009-002 eng Plato Atlantis (Critias) <!--HTML--><p class="articleHeader">I have before remarked in speaking of the allotments of the gods, that they distributed the whole earth into portions differing in extent, and made for themselves temples and instituted sacrifices. And Poseidon, receiving for his lot the island of Atlantis, begat children by a mortal woman, and settled them in a part of the island, which I will describe.</p> <p>Looking towards the sea, but in the centre of the whole island, there was a plain which is said to have been the fairest of all plains and very fertile. Near the plain again, and also in the centre of the island at a distance of about fifty stadia, there was a mountain not very high on any side. In this mountain there dwelt one of the earth-born primeval men of that country, whose name was Evenor, and he had a wife named Leucippe, and they had an only daughter who was called Cleito. The maiden had already reached womanhood, when her father and mother died; Poseidon fell in love with her and had intercourse with her, and breaking the ground, inclosed the hill in which she dwelt all round, making alternate zones of sea and land larger and smaller, encircling one another; there were two of land and three of water, which he turned as with a lathe, each having its circumference equidistant every way from the centre, so that no man could get to the island, for ships and voyages were not as yet. He himself, being a god, found no difficulty in making special arrangements for the centre island, bringing up two springs of water from beneath the earth, one of warm water and the other of cold, and making every variety of food to spring up abundantly from the soil. He also begat and brought up five pairs of twin male children; and dividing the island of Atlantis into ten portions, he gave to the first-born of the eldest pair his mother's dwelling and the surrounding allotment, which was the largest and best, and made him king over the rest; the others he made princes, and gave them rule over many men, and a large territory. And he named them all; the eldest, who was the first king, he named Atlas, and after him the whole island and the ocean were called Atlantic. To his twin brother, who was born after him, and obtained as his lot the extremity of the island towards the pillars of Heracles, facing the country which is now called the region of Gades in that part of the world, he gave the name which in the Hellenic language is Eumelus, in the language of the country which is named after him, Gadeirus. Of the second pair of twins he called one Ampheres, and the other Evaemon. To the elder of the third pair of twins he gave the name Mneseus, and Autochthon to the one who followed him. Of the fourth pair of twins he called the elder Elasippus, and the younger Mestor. And of the fifth pair he gave to the elder the name of Azaes, and to the younger that of Diaprepes. All these and their descendants for many generations were the inhabitants and rulers of divers islands in the open sea; and also, as has been already said, they held sway in our direction over the country within the pillars as far as Egypt and Tyrrhenia. Now Atlas had a numerous and honourable family, and they retained the kingdom, the eldest son handing it on to his eldest for many generations; and they had such an amount of wealth as was never before possessed by kings and potentates, and is not likely ever to be again, and they were furnished with everything which they needed, both in the city and country. For because of the greatness of their empire many things were brought to them from foreign countries, and the island itself provided most of what was required by them for the uses of life. In the first place, they dug out of the earth whatever was to be found there, solid as well as fusile, and that which is now only a name and was then something more than a name, orichalcum, was dug out of the earth in many parts of the island, being more precious in those days than anything except gold. There was an abundance of wood for carpenter's work, and sufficient maintenance for tame and wild animals. Moreover, there were a great number of elephants in the island; for as there was provision for all other sorts of animals, both for those which live in lakes and marshes and rivers, and also for those which live in mountains and on plains, so there was for the animal which is the largest and most voracious of all. Also whatever fragrant things there now are in the earth, whether roots, or herbage, or woods, or essences which distil from fruit and flower, grew and thrived in that land; also the fruit which admits of cultivation, both the dry sort, which is given us for nourishment and any other which we use for food&mdash;we call them all by the common name of pulse, and the fruits having a hard rind, affording drinks and meats and ointments, and good store of chestnuts and the like, which furnish pleasure and amusement, and are fruits which spoil with keeping, and the pleasant kinds of dessert, with which we console ourselves after dinner, when we are tired of eating&mdash;all these that sacred island which then beheld the light of the sun, brought forth fair and wondrous and in infinite abundance. With such blessings the earth freely furnished them; meanwhile they went on constructing their temples and palaces and harbours and docks.</p> (Excerpt from CRITIAS, By Plato, translated By Jowett, Benjamin) <!--HTML--><br /> 2 02/2009 Atlantis Times 2 03/2009 Atlantis Times ATLANTISTIMESNEWS BUL-NEWS-2009-003 eng Plato Atlantis (Timaeus) <!--HTML--><p class="articleHeader">This great island lay over against the Pillars of Heracles, in extent greater than Libya and Asia put together, and was the passage to other islands and to a great ocean of which the Mediterranean sea was only the harbour; and within the Pillars the empire of Atlantis reached in Europe to Tyrrhenia and in Libya to Egypt.</p> <p>This mighty power was arrayed against Egypt and Hellas and all the countries</p> <div class="phrwithcaption"> <div class="imageScale"><img src="http://invenio-software.org/download/invenio-demo-site-files/icon-journal_Athanasius_Kircher_Atlantis_image.gif" alt="" /></div> <p>Representation of Atlantis by Athanasius Kircher (1669)</p> </div> bordering on the Mediterranean. Then your city did bravely, and won renown over the whole earth. For at the peril of her own existence, and when the other Hellenes had deserted her, she repelled the invader, and of her own accord gave liberty to all the nations within the Pillars. A little while afterwards there were great earthquakes and floods, and your warrior race all sank into the earth; and the great island of Atlantis also disappeared in the sea. This is the explanation of the shallows which are found in that part of the Atlantic ocean. <p> </p> (Excerpt from TIMAEUS, By Plato, translated By Jowett, Benjamin)<br /> <!--HTML--><br /> 1 02/2009 Atlantis Times 1 03/2009 Atlantis Times 1 04/2009 Atlantis Times ATLANTISTIMESNEWS http://invenio-software.org/download/invenio-demo-site-files/journal_Athanasius_Kircher_Atlantis_image.gif http://invenio-software.org/download/invenio-demo-site-files/icon-journal_Athanasius_Kircher_Atlantis_image.gif BUL-SCIENCE-2009-001 eng Charles Darwin The order Rodentia in South America <!--HTML--><p>The order Rodentia is here very numerous in species: of mice alone I obtained no less than eight kinds. <sup><a name="note1" href="#footnote1">1</a></sup>The largest gnawing animal in the world, the Hydrochærus capybara (the water-hog), is here also common. One which I shot at Monte Video weighed ninety-eight pounds: its length, from the end of the snout to the stump-like tail, was three feet two inches; and its girth three feet eight. These great Rodents occasionally frequent the islands in the mouth of the Plata, where the water is quite salt, but are far more abundant on the borders of fresh-water lakes and rivers. Near Maldonado three or four generally live together. In the daytime they either lie among the aquatic plants, or openly feed on the turf plain.<sup><a name="note2" href="#footnote2">2</a></sup></p> <p> <div class="phlwithcaption"> <div class="imageScale"><img src="http://invenio-software.org/download/invenio-demo-site-files/icon-journal_water_dog_image.gif" alt="" /></div> <p>Hydrochærus capybara or Water-hog</p> </div> When viewed at a distance, from their manner of walking and colour they resemble pigs: but when seated on their haunches, and attentively watching any object with one eye, they reassume the appearance of their congeners, cavies and rabbits. Both the front and side view of their head has quite a ludicrous aspect, from the great depth of their jaw. These animals, at Maldonado, were very tame; by cautiously walking, I approached within three yards of four old ones. This tameness may probably be accounted for, by the Jaguar having been banished for some years, and by the Gaucho not thinking it worth his while to hunt them. As I approached nearer and nearer they frequently made their peculiar noise, which is a low abrupt grunt, not having much actual sound, but rather arising from the sudden expulsion of air: the only noise I know at all like it, is the first hoarse bark of a large dog. Having watched the four from almost within arm's length (and they me) for several minutes, they rushed into the water at full gallop with the greatest impetuosity, and emitted at the same time their bark. After diving a short distance they came again to the surface, but only just showed the upper part of their heads. When the female is swimming in the water, and has young ones, they are said to sit on her back. These animals are easily killed in numbers; but their skins are of trifling value, and the meat is very indifferent. On the islands in the Rio Parana they are exceedingly abundant, and afford the ordinary prey to the Jaguar.</p> <p><small><sup><a name="footnote1" href="#note1">1</a></sup>. In South America I collected altogether twenty-seven species of mice, and thirteen more are known from the works of Azara and other authors. Those collected by myself have been named and described by Mr. Waterhouse at the meetings of the Zoological Society. I must be allowed to take this opportunity of returning my cordial thanks to Mr. Waterhouse, and to the other gentleman attached to that Society, for their kind and most liberal assistance on all occasions.</small></p> <p><small><sup><a name="footnote2" href="#note2">2</a></sup>. In the stomach and duodenum of a capybara which I opened, I found a very large quantity of a thin yellowish fluid, in which scarcely a fibre could be distinguished. Mr. Owen informs me that a part of the oesophagus is so constructed that nothing much larger than a crowquill can be passed down. Certainly the broad teeth and strong jaws of this animal are well fitted to grind into pulp the aquatic plants on which it feeds.</small></p> (Excerpt from A NATURALIST'S VOYAGE ROUND THE WORLD Chapter 3, By Charles Darwin) <!--HTML--><br />test fr 1 02/2009 Atlantis Times 1 03/2009 Atlantis Times ATLANTISTIMESSCIENCE http://invenio-software.org/download/invenio-demo-site-files/journal_water_dog_image.gif http://invenio-software.org/download/invenio-demo-site-files/icon-journal_water_dog_image.gif BUL-NEWS-2009-004 eng Charles Darwin Rio Macâe <!--HTML--><p class="articleHeader">April 14th, 1832.—Leaving Socêgo, we rode to another estate on the Rio Macâe, which was the last patch of cultivated ground in that direction. The estate was two and a half miles long, and the owner had forgotten how many broad.</p> <p> <div class="phlwithcaption"> <div class="imageScale"><img src="http://invenio-software.org/download/invenio-demo-site-files/icon-journal_virgin_forest_image.gif" alt="" /></div> <p>Virgin Forest</p> </div> Only a very small piece had been cleared, yet almost every acre was capable of yielding all the various rich productions of a tropical land. Considering the enormous area of Brazil, the proportion of cultivated ground can scarcely be considered as anything compared to that which is left in the state of nature: at some future age, how vast a population it will support! During the second day's journey we found the road so shut up that it was necessary that a man should go ahead with a sword to cut away the creepers. The forest abounded with beautiful objects; among which the tree ferns, though not large, were, from their bright green foliage, and the elegant curvature of their fronds, most worthy of admiration. In the evening it rained very heavily, and although the thermometer stood at 65°, I felt very cold. As soon as the rain ceased, it was curious to observe the extraordinary evaporation which commenced over the whole extent of the forest. At the height of a hundred feet the hills were buried in a dense white vapour, which rose like columns of smoke from the most thickly-wooded parts, and especially from the valleys. I observed this phenomenon on several occasions: I suppose it is owing to the large surface of foliage, previously heated by the sun's rays.</p> <p>While staying at this estate, I was very nearly being an eye-witness to one of those atrocious acts which can only take place in a slave country. Owing to a quarrel and a lawsuit, the owner was on the point of taking all the women and children from the male slaves, and selling them separately at the public auction at Rio. Interest, and not any feeling of compassion, prevented this act. Indeed, I do not believe the inhumanity of separating thirty families, who had lived together for many years, even occurred to the owner. Yet I will pledge myself, that in humanity and good feeling he was superior to the common run of men. It may be said there exists no limit to the blindness of interest and selfish habit. I may mention one very trifling anecdote, which at the time struck me more forcibly than any story of cruelty. I was crossing a ferry with a negro who was uncommonly stupid. In endeavouring to make him understand, I talked loud, and made signs, in doing which I passed my hand near his face. He, I suppose, thought I was in a passion, and was going to strike him; for instantly, with a frightened look and half-shut eyes, he dropped his hands. I shall never forget my feelings of surprise, disgust, and shame, at seeing a great powerful man afraid even to ward off a blow, directed, as he thought, at his face. This man had been trained to a degradation lower than the slavery of the most helpless animal.</p> (Excerpt from A NATURALIST'S VOYAGE ROUND THE WORLD Chapter 2, By Charles Darwin) 1 03/2009 Atlantis Times ATLANTISTIMESNEWS http://invenio-software.org/download/invenio-demo-site-files/journal_virgin_forest_image.gif http://invenio-software.org/download/invenio-demo-site-files/icon-journal_virgin_forest_image.gif zho 李白 Li Bai Alone Looking at the Mountain eng 敬亭獨坐 <!--HTML-->眾鳥高飛盡<br /> 孤雲去獨閒<br /> 相看兩不厭<br /> 唯有敬亭山 <!--HTML-->All the birds have flown up and gone;<br /> A lonely cloud floats leisurely by.<br /> We never tire of looking at each other -<br /> Only the mountain and I. 701-762 2009-09-16 00 2009-09-16 BATCH POETRY 20110118111428.0 Inspire 882629 SPIRES 8921016 eng CERN-THESIS-99-074 Goodsir, S M Imperial Coll., London A W mass measurement with the ALEPH detector London Imperial Coll. 1999 PhD London U. 1999 No fulltext CERN EDS SzGeCERN Detectors and Experimental Techniques THESIS CERN ALEPH CERN LHC ALEPH h 201103 14 20110128 1717 CER01 20110118 PUBLIC 002943225CER ALEPHTHESIS THESIS DRAFT oai:cds.cern.ch:1322667 cerncds:CERN SzGeCERN CDS INIS 33028075 eng Hodgson, P A measurement of the di-jet cross-sections in two photon physics at LEP 2 Sheffield Sheffield Univ. 2001 mult. p PhD Sheffield Univ. 2001 This thesis presents a study of di-jet production in untagged two photon events in the ALEPH detector at LEP with sq root s=183 GeV. A low background sample of 145146 untagged gamma gamma events is obtained and from this 2346 di-jet events are found. A clustering algorithm, KTCLUS, is used to reconstruct the jet momenta. The data is corrected back to hadron level using the PHOJET Monte Carlo and this sample is compared with two independent NLO QCD calculations. Good agreement is seen except at the lowest jet P sub T , where the calculations overshoot the data; however, it should be noted that perturbative QCD is less reliable at low P sub T. SIS INIS2004 SzGeCERN Particle Physics THESIS ALEPH CERN LEP ALEPH INIS Physics of elementary particles and fields INIS accelerators- INIS bosons- INIS computer-codes INIS cyclic-accelerators INIS elementary-particles INIS energy-range INIS field-theories INIS gev-range INIS jet-model INIS k-codes INIS lep-storage-rings INIS linear-momentum INIS massless-particles INIS mathematical-models INIS multiple-production INIS particle-discrimination INIS particle-identification INIS particle-models INIS particle-production INIS photons- INIS quantum-chromodynamics INIS quantum-field-theory INIS storage-rings INIS synchrotrons- INIS transverse-momentum n 200431 14 20100419 1112 CER01 20040730 PUBLIC 002474361CER ALEPHTHESIS SzGeCERN 20080521084337.0 SPIRES 4066995 CERN-EP-99-060 eng CERN Library EP-1999-060 SCAN-9910048 CERN-L3-175 CERN. Geneva Limits on Higgs boson masses from combining the data of the four LEP experiments at $\sqrt{s} \leq 183 GeV$ 1999 Geneva CERN 26 Apr 1999 18 p ALEPH Papers Preprint not submitted to publication No authors CERN-EP OA SIS:200740 PR/LKR not found (from SLAC, INSPEC) SzGeCERN Particle Physics - Experiment CERN PREPRINT CERN LEP ALEPH CERN LEP DELPHI CERN LEP L3 CERN LEP OPAL MEDLINE searches Higgs bosons LexiHiggs EP ALEPH Collaboration DELPHI Collaboration L3 Collaboration LEP Working Group for Higgs Boson Searches OPAL Collaboration CERN h 199941 11 PUBLIC 000330309CER ARTICLE SzGeCERN 20090128145544.0 CERN-ALEPH-ARCH-DATA-2009-004 eng Beddall, Andrew Gaziantep U. Residual Bose-Einstein Correlations and the Söding Model 2008 Geneva CERN 19 Jan 2009 8 p Bose--Einstein correlations between identical pions close in phase-space is thought to be responsible for the observed distortion in mass spectra of non-identical pions. For example in the decays \rho 0 \rightarrow \pi + \pi - and \rho \pm \rightarrow \pi \pm \pi 0, such distortions are a residual effect where the pions from the \rho decay interact with other identical pions that are close in phase-space. Such interactions can be significant in, for example, hadronic decays of Z bosons where pion multiplicities are high, and resonances such as \rho mesons decay with a very short lifetime thereby creating pions that are close to prompt pions created directly. We present the S{ö}ding model and show that it has been used successfully to model distortions in \pi \pm \pi 0 mass spectra in hadronic Z decays recorded by ALEPH. CERN EDS SzGeCERN Particle Physics - Experiment CERN LEP ALEPH Beddall, Ayda Gaziantep U. Bingül, Ahmet Gaziantep U. PH-EP 173-180 1 Acta Phys. Pol. B 39 2008 nathalie.grub@cern.ch n 200904 13 20100205 1021 CER01 20090119 PUBLIC 000701647CER ARTICLE ALEPHPAPER SzGeCERN 20080909102446.0 INTINT 0000990 WAI01 000004764 eng CERN-ALEPH-95-089 CERN-ALEPH-PHYSIC-95-083 CERN-SL-Note-95-77-BI SL-Note-95-77-BI CERN. Geneva LEP Center-of-Mass Energies in Presence of Opposite Sign Vertical Dispersion in Bunch-Train Operation 1995 Geneva CERN 17 Jul 1995 14 p SIS ALEPH2004 SIS SLNOTE2003 SzGeCERN Accelerators and Storage Rings CERN CERN LEP CERN beam-energy CERN bunch-trains LEP = Large Electron Positron Collider CERN LEP ALEPH CERN PHYSIC (PHYSICs) LEP Energy Working Group SL The LEP energy working group DD506 n 200350 04 PUBLIC 000415594CER NOTE ALEPHNOTE SzGeCERN 20040304154728.0 0335074CERCER eng CERN-PS-PA-Note-93-04 CERN-PS-PA-Note-93-04-PPC Geneva CERN 1993 207 p gift: Bouthéon, Marcel SzGeCERN Accelerators and Storage Rings SzGeCERN Miscellaneous CERN East Hall CERN ISOLDE CERN antiprotons CERN heavy ions CERN proton beams CERN CONFERENCE PROCEEDINGS Manglunki, Django ed. PS PPD '93 CERN d h 199936 y1999 42 20091104 2203 CER01 19991117 PUBLIC PROCEEDINGS 0001 000335074CER ISOLDENOTE BUL-SCIENCE-2009-002 eng Charles Darwin Scissor-beak <!--HTML--><p class="articleHeader"> <i>October 15th.</i>&mdash;We got under way and passed Punta Gorda, where there is a colony of tame Indians from the province of Missiones. We sailed rapidly down the current, but before sunset, from a silly fear of bad weather, we brought-to in a narrow arm of the river. I took the boat and rowed some distance up this creek. It was very narrow, winding, and deep; on each side a wall thirty or forty feet high, formed by trees intwined with creepers, gave to the canal a singularly gloomy appearance. I here saw a very extraordinary bird, called the Scissor-beak (Rhynchops nigra). It has short legs, web feet, extremely long-pointed wings, and is of about the size of a tern.</p> <div class="phrwithcaption"> <div class="imageScale"> <img src="http://invenio-software.org/download/invenio-demo-site-files/icon-journal_scissor_beak.jpg" /></div> </div> <p> The beak is flattened laterally, that is, in a plane at right angles to that of a spoonbill or duck. It is as flat and elastic as an ivory paper-cutter, and the lower mandible, differently from every other bird, is an inch and a half longer than the upper. In a lake near Maldonado, from which the water had been nearly drained, and which, in consequence, swarmed with small fry, I saw several of these birds, generally in small flocks, flying rapidly backwards and forwards close to the surface of the lake. They kept their bills wide open, and the lower mandible half buried in the water. Thus skimming the surface, they ploughed it in their course: the water was quite smooth, and it formed a most curious spectacle to behold a flock, each bird leaving its narrow wake on the mirror-like surface. In their flight they frequently twist about with extreme quickness, and dexterously manage with their projecting lower mandible to plough up small fish, which are secured by the upper and shorter half of their scissor-like bills. This fact I repeatedly saw, as, like swallows, they continued to fly backwards and forwards close before me. Occasionally when leaving the surface of the water their flight was wild, irregular, and rapid; they then uttered loud harsh cries. When these birds are fishing, the advantage of the long primary feathers of their wings, in keeping them dry, is very evident. When thus employed, their forms resemble the symbol by which many artists represent marine birds. Their tails are much used in steering their irregular course.</p> <p> These birds are common far inland along the course of the Rio Parana; it is said that they remain here during the whole year, and breed in the marshes. During the day they rest in flocks on the grassy plains, at some distance from the water. Being at anchor, as I have said, in one of the deep creeks between the islands of the Parana, as the evening drew to a close, one of these scissor-beaks suddenly appeared. The water was quite still, and many little fish were rising. The bird continued for a long time to skim the surface, flying in its wild and irregular manner up and down the narrow canal, now dark with the growing night and the shadows of the overhanging trees. At Monte Video, I observed that some large flocks during the day remained on the mud-banks at the head of the harbour, in the same manner as on the grassy plains near the Parana; and every evening they took flight seaward. From these facts I suspect that the Rhynchops generally fishes by night, at which time many of the lower animals come most abundantly to the surface. M. Lesson states that he has seen these birds opening the shells of the mactr&aelig; buried in the sand-banks on the coast of Chile: from their weak bills, with the lower mandible so much projecting, their short legs and long wings, it is very improbable that this can be a general habit.</p> DRAFT 2 03/2009 Atlantis Times 2 04/2009 Atlantis Times ATLANTISTIMESSCIENCEDRAFT http://invenio-software.org/download/invenio-demo-site-files/journal_scissor_beak.jpg http://invenio-software.org/download/invenio-demo-site-files/icon-journal_scissor_beak.jpg http://invenio-software.org/download/invenio-demo-site-files/journal_scissor_beak.jpg http://invenio-software.org/download/invenio-demo-site-files/icon-journal_scissor_beak.jpg restricted-journal_scissor_beak.jpg restricted BUL-NEWS-2009-005 Charles Darwin Galapagos Archipelago <!--HTML--><p class="articleHeader"><i>September 15th.</i>&mdash;This archipelago consists of ten principal islands, of which five exceed the others in size. They are situated under the Equator, and between five and six hundred miles westward of the coast of America. They are all formed of volcanic rocks; a few fragments of granite curiously glazed and altered by the heat can hardly be considered as an exception.</p> <p> Some of the craters surmounting the larger islands are of immense size, and they rise to a height of between three and four thousand feet. Their flanks are studded by innumerable smaller orifices. I scarcely hesitate to affirm that there must be in the whole archipelago at least two thousand craters. These consist either of lava and scori&aelig;, or of finely-stratified, sandstone-like tuff. Most of the latter are beautifully symmetrical; they owe their origin to eruptions of volcanic mud without any lava: it is a remarkable circumstance that every one of the twenty-eight tuff-craters which were examined had their southern sides either much lower than the other sides, or quite broken down and removed. As all these craters apparently have been formed when standing in the sea, and as the waves from the trade wind and the swell from the open Pacific here unite their forces on the southern coasts of all the islands, this singular uniformity in the broken state of the craters, composed of the soft and yielding tuff, is easily explained.</p> <p style="text-align: center;"> <img alt="" class="ph" src="http://invenio-software.org/download/invenio-demo-site-files/icon-journal_galapagos_archipelago.jpg" style="width: 300px; height: 294px;" /></p> <p> Considering that these islands are placed directly under the equator, the climate is far from being excessively hot; this seems chiefly caused by the singularly low temperature of the surrounding water, brought here by the great southern Polar current. Excepting during one short season very little rain falls, and even then it is irregular; but the clouds generally hang low. Hence, whilst the lower parts of the islands are very sterile, the upper parts, at a height of a thousand feet and upwards, possess a damp climate and a tolerably luxuriant vegetation. This is especially the case on the windward sides of the islands, which first receive and condense the moisture from the atmosphere.</p> DRAFT 1 06/2009 Atlantis Times 1 07/2009 Atlantis Times ATLANTISTIMESNEWSDRAFT http://invenio-software.org/download/invenio-demo-site-files/journal_galapagos_archipelago.jpg http://invenio-software.org/download/invenio-demo-site-files/icon-journal_galapagos_archipelago.jpg CERN-MOVIE-2010-075 silent CMS team Produced by CMS animation of the high-energy collisions at 7 TeV on 30th March 2010 2010 CERN Copyright 2010-03-30 10 sec 720x576 16/9, 25 UNKNOWN PAL CERN EDS LHC CERN CMS CERN LHCfirstphysics CERN publvideomovie 2010 VIDEO Run 132440 - Event 2732271 CERN 2010 http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_POSTER.jpg CERN-MOVIE-2010-075_POSTER jpg POSTER POSTER http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075.mpg;master CERN-MOVIE-2010-075 mpg;master MASTER MASTER http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075.webm;480p CERN-MOVIE-2010-075 webm;480p WEBM_480P WEBM_480P http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075.webm;720p CERN-MOVIE-2010-075 webm;720p WEBM_720P WEBM_720P http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_01.jpg;big CERN-MOVIE-2010-075_01 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_01.jpg;small CERN-MOVIE-2010-075_01 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_02.jpg;big CERN-MOVIE-2010-075_02 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_02.jpg;small CERN-MOVIE-2010-075_02 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_03.jpg;big CERN-MOVIE-2010-075_03 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_03.jpg;small CERN-MOVIE-2010-075_03 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_04.jpg;big CERN-MOVIE-2010-075_04 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_04.jpg;small CERN-MOVIE-2010-075_04 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_05.jpg;big CERN-MOVIE-2010-075_05 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_05.jpg;small CERN-MOVIE-2010-075_05 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_06.jpg;big CERN-MOVIE-2010-075_06 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_06.jpg;small CERN-MOVIE-2010-075_06 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_07.jpg;big CERN-MOVIE-2010-075_07 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_07.jpg;small CERN-MOVIE-2010-075_07 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_08.jpg;big CERN-MOVIE-2010-075_08 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_08.jpg;small CERN-MOVIE-2010-075_08 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_09.jpg;big CERN-MOVIE-2010-075_09 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_09.jpg;small CERN-MOVIE-2010-075_09 jpg;small SMALLTHUMB SMALLTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_10.jpg;big CERN-MOVIE-2010-075_10 jpg;big BIGTHUMB BIGTHUMB http://invenio-software.org/download/invenio-demo-site-files/CERN-MOVIE-2010-075_10.jpg;small CERN-MOVIE-2010-075_10 jpg;small SMALLTHUMB SMALLTHUMB DLC 19951121053638.0 (OCoLC)oca00230701 AUTHOR|(SzGeCERN)aaa0001 Mann, Thomas 1875-1955 Man, Tomas 1875-1955 Mann, Tomas 1875-1955 Mān, Tūmās 1875-1955 Mann, Paul Thomas 1875-1955 Thomas, Paul 1875-1955 Mani, Tʿomas 1875-1955 Man, Tʿomasŭ 1875-1955 Mann, Tomasz 1875-1955 His Königliche Hoheit, 1909. Volgina, A.A. Tomas Mann--biobibliogr. ukazatelʹ, 1979: t.p. (Tomas Mann) Najīb, N. Qiṣṣat al-ajyāl bayna Tūmās Mān wa-Najīb Maħfūẓ, 1982: t.p. (Tūmās Mān) Vaget, H.R. Thomas Mann-Kommentar zu sämtlichen Erzählungen, c1984: t.p. (Thomas Mann) p. 13, etc. (b. 6-6-1875 in Lübeck as Paul Thomas Mann; used pseud. Paul Thomas as co-editor of student newspaper in 1893; d. 8-12-1955) Kakabadze, N. Tomas Mann, 1985: t.p. (Tomas Mann) added t.p. (Tʿomas Mani) Chʿoe, S.B. Tʿomasŭ Man yŏnʾgu, 1981: t.p. (Tʿomasŭ Man) Łukosz, J. Terapia jako duchowa forma życia, 1990: t.p. (Tomasza Manna) AUTHORITY AUTHOR DLC 19991204070327.0 AUTHOR|(OCoLC)oca00955355 AUTHOR|(SzGeCERN)aaa0002 Bach, Johann Sebastian 1685-1750. Es erhub sich ein Streit Bach, Johann Sebastian 1685-1750. See how fiercely they fight Bach, Johann Sebastian 1685-1750. There uprose a great strife Bach, Johann Sebastian 1685-1750. Cantatas, BWV 19 Bach, Johann Sebastian 1685-1750. Cantatas, no. 19 Bach, Johann Sebastian 1685-1750. There arose a great strife Bach, Johann Sebastian 1685-1750. Kantate am Michaelisfest BWV 19 Bach, Johann Sebastian 1685-1750. Festo Michaelis BWV 19 Bach, Johann Sebastian 1685-1750. Kantate zum Michaelistag BWV 19 Bach, Johann Sebastian 1685-1750. Cantata for Michaelmas Day BWV 19 Bach, Johann Sebastian 1685-1750. Cantate am Michaelisfeste BWV 19 Bach, J.S. BWV 19, Es erhub sich ein Streit [SR] p1988: label (BWV 19, Es erhub sich ein Streit = There arose a great strife) Schmieder, 1990 (19. Es erhub sich ein Streit; Kantate am Michaelisfest (Festo Michaelis)) AUTHORITY AUTHOR DLC 19850502074119.0 AUTHOR|(SzGeCERN)aaa0003 Bach, Johann Sebastian 1685-1750. Keyboard music. Selections (Bach Guild) Bach, Johann Sebastian 1685-1750. Historical anthology of music. V, Baroque (late). F, Johann Sebastian Bach. 1, Works for keyboard Historical anthology of music. V, Baroque (late). F, Johann Sebastian Bach. 1, Works for keyboard nnaa Historical anthology of music period V, category F, sub-category 1 Johann Sebastian Bach. 1 Works for keyboard Bach, Johann Sebastian 1685-1750. Johann Sebastian Bach. 1, Works for keyboard Bach, Johann Sebastian 1685-1750. Works for keyboard New York, NY Bach Guild Bach, J.S. Organ works [SR] c1981. AUTHORITY AUTHOR 19960528091722.0 Solar energy technology handbook, c1980- (a.e.) v. 1, t.p. (William C. Dickinson) pub. info sheet (William Clarence Dickinson, b. 3/15/22) Dickinson, William C. 1922- AUTHOR|(DLC)n 80007472 AUTHOR|(SzGeCERN)aaa0004 AUTHORITY AUTHOR Europhysics Study Conference on Unification of the Fundamental Particle Interactions, Erice, Italy, 1980. Unification of the fundamental particle interactions, 1980 (a.e.) t.p. (John Ellis) Supersymmetry and supergravity, c1986: CIP t.p. (J. Ellis) Quantum reflections, 2000: CIP t.p. (John Ellis) data sht. (b. July 1, 1946) pub. info. (Jonathan Richard Ellis) Ellis, J. 1946- (John), Ellis, Jonathan Richard 1946- Ellis, John 1946- AUTHOR|(DLC)n 80141717 AUTHOR|(SzGeCERN)aaa0005 AUTHORITY AUTHOR EllisDeleted, JohnDeleted 1946- AUTHOR|(SzGeCERN)aaa0006 AUTHORITY AUTHOR DELETED - + Stanford Linear Accelerator Center SLAC SLAC STANFORD DESY_AFF DOE HEP200 LABLIST PDGLIST PPF SLUO TOP050 TOP100 TOP200 TOP500 WEB http://www.slac.stanford.edu/ 2011-01-21 1989-07-18 INST-6300 Accel. Ctr. Stanford Linear Center SLAC Stanford DESY CORE - INSTITUTION|(SzGeCERN)iii0001 + INSTITUTE|(SzGeCERN)iii0001 94025 US SLAC National Accelerator Laboratory SLAC National Accelerator Laboratory 2575 Sand Hill Road 2575 Sand Hill Road Menlo Park, CA 94025-7090 Menlo Park, CA 94025-7090 USA USA CA Menlo Park AUTHORITY - INSTITUTION + INSTITUTE http://www.cern.ch 2011-01-21 1989-07-16 INST-1147 Conseil européen pour la Recherche Nucléaire (1952-1954) Organisation européenne pour la Recherche nucléaire (1954-now) Sub title: Laboratoire européen pour la Physique des Particules (1984-now) Sub title: European Laboratory for Particle Physics (1984-now) HEP200 LABLIST PDGLIST PPF SLUO TOP050 TOP100 TOP200 TOP500 WEB DESY CERN Geneva Centre Européen de Recherches Nucléaires center European Organization for Nuclear Research CERN CERN CERN CH-1211 Genève 23 Geneva Switzerland 1211 CH Research centre 2nd address: Organisation Européenne pour la Recherche Nucléaire (CERN), F-01631 Prévessin Cedex, France CORE - INSTITUTION|(SzGeCERN)iii0002 + INSTITUTE|(SzGeCERN)iii0002 AUTHORITY - INSTITUTION + INSTITUTE 19891121083347.0 SUBJECT|(DLC)sh 85101653 SUBJECT|(SzGeCERN)sss0001 Physics Natural philosophy Philosophy, Natural g Physical sciences Dynamics AUTHORITY SUBJECT DLC 20010904160459.0 SUBJECT|(SzGeCERN)sss0003 Computer crimes Computer fraud Computers Law and legislation Criminal provisions Computers and crime Cyber crimes Cybercrimes Electronic crimes (Computer crimes) g Crime Privacy, Right of 00351496: Adamski, A. Prawo kame komputerowe, c2000. Excite WWW directory of subjects, July 10, 2001 (cybercrimes; subcategory under Criminal, Branches of law, Law, Education) Electronic crime needs assessment for state and local law enforcement, 2001: glossary, p. 41 (electronic crime includes but is not limited to fraud, theft, forgery, child pornography or exploitation, stalking, traditional white-collar crimes, privacy violations, illegal drug transactions, espionage, computer intrusions; no synonyms given) AUTHORITY SUBJECT DLC 20010904162409.0 SUBJECT|(SzGeCERN)sss0004 Embellishment (Music) Diminution (Music) Ornamentation (Music) Ornaments (Music) g Music Performance g Performance practice (Music) Musical notation Variation (Music) Heim, N.M. Ornamentation for the clarinetist, c1993. Massin. De la variation, c2000. AUTHORITY SUBJECT DLC 20010904162503.0 SUBJECT|(SzGeCERN)sss0005 Embellishment (Vocal music) Colorature Fioriture g Embellishment (Music) g Vocal music History and criticism Massin. De la variation, c2000. AUTHORITY SUBJECT PER:749 Kilian, K. 0 fzj Other ways to make polarized antiproton beams 2010 107 6697 Verhandlungen der Deutschen Physikalischen Gesellschaft (Reihe 06) 2 Journal Article PER:513 Grzonka, D. 1 fzj PER:1182 Oelert, W. 2 fzj --NOT MATCHED-- Vol. 2 2:< 2 2010 GRANT:413 P53 Struktur der Materie der Materie Physik der Hadronen und Kerne 2010 - INSTITUTION|(DE-Juel1)795 + INSTITUTE|(DE-Juel1)795 IKP IKP-1 Experimentelle Hadronstruktur VDB:126525 VDB DOI 10.1063/1.2737136 VDB VDB:88636 WOS WOS:000246413400056 ISSN 0003-6951 inh:9498831 inh English Inspec Atom-, molecule-, and ion-surface impact and interactions Inspec Pulsed laser deposition Inspec Stoichiometry and homogeneity Inspec Thin film growth, structure, and epitaxy Inspec Vacuum deposition 39744 Heeg, T. 0 fzj Epitaxially stabilized growth of orthorhombic LuScO3 thin films 2007 192901-1 - 192901-3 562 Applied Physics Letters 90 0003-6951 Journal Article Metastable lutetium scandate (LuScO3) thin films with an orthorhombic perovskite structure have been prepared by molecular-beam epitaxy and pulsed-laser deposition on NdGaO3(110) and DyScO3(110) substrates. Stoichiometry and crystallinity were investigated using Rutherford backscattering spectrometry/channeling, x-ray diffraction, and transmission electron microscopy. The results indicate that LuScO3, which normally only exists as a solid solution of Sc2O3 and Lu2O3 with the cubic bixbyite structure, can be grown in the orthorhombically distorted perovskite structure. Rocking curves as narrow as 0.05deg were achieved. A critical film thickness of approximately 200 nm for the epitaxially stabilized perovskite polymorph of LuScO3 on NdGaO3(110) substrates was determined. Enriched from Web of Science, Inspec Inspec DyScO3 Inspec DyScO3(110) substrates Inspec Fuel cells Inspec LuScO3 Inspec NdGaO3 Inspec NdGaO3(110) substrates Inspec Rutherford backscattering Inspec Rutherford backscattering channeling Inspec Rutherford backscattering spectrometry Inspec X-ray diffraction Inspec critical film thickness Inspec crystallinity Inspec epitaxial layers Inspec epitaxially stabilized growth Inspec epitaxially stabilized perovskite polymorph Inspec lutetium compounds Inspec metastable lutetium scandate thin films Inspec molecular beam epitaxial growth Inspec molecular beam epitaxy Inspec orthorhombically distorted perovskite structure Inspec polymorphism Inspec pulsed laser deposition Inspec rocking curves Inspec stoichiometry Inspec transmission electron microscopy PER:64142 Roeckerath, M. 1 fzj PER:5409 Schubert, J. 2 fzj PER:5482 Zander, W. 3 fzj PER:14557 Buchal, Ch. 4 fzj PER:60616 Chen, H. Y. 5 fzj PER:5020 Jia, C. L. 6 fzj PER:45799 Jia, Y. 7 fzj PER:65921 Adamo, C. 8 PER:15220 Schlom, D. G. 9 ZDBID:2265524-4 10.1063/1.2737136 Vol. 90, no. 19, p. 192901 19 90:19<192901 Applied physics reviews 90 0003-6951 2007 http://dx.doi.org/10.1063/1.2737136 GRANT:412 P42 Schlüsseltechnologien Grundlagen für zukünftige Informationstechnologien 2007 - INSTITUTION|(DE-Juel1)381 + INSTITUTE|(DE-Juel1)381 14.09.2008 CNI CNI Center of Nanoelectronic Systems for Information Technology Zusammenschluss der am FE-Vorhaben I01 beteiligtenute: IFF-TH-I, IFF-TH-II, IFF-IEM, IFF-IMF, IFF-IEE, ISG-1, ISG-2, ISG-3 - INSTITUTION|(DE-Juel1)788 + INSTITUTE|(DE-Juel1)788 IFF IFF-8 Mikrostrukturforschung - INSTITUTION|(DE-Juel1)799 + INSTITUTE|(DE-Juel1)799 IBN IBN-1 Halbleiter-Nanoelektronik VDB:88636 VDB ARTICLE DOI 10.4028/www.scientific.net/MSF.638-642.1098 VDB VDB:125298 ISSN 0255-5476 inh:11707323 inh English Inspec Fuel cells PER:96536 Menzler, N.H. 0 fzj Influence of processing parameters on the manufacturing of anode-supported solid oxide fuel cells by different wet chemical routes 2010 4206 Materials Science Forum 638-642 0255-5476 1098 - 1105 Journal Article Anode-supported solid oxide fuel cells (SOFC) are manufactured at Forschungszentrum Jülich by different wet chemical powder processes and subsequent sintering at high temperatures. Recently, the warm pressing of Coat-Mix powders has been replaced by tape casting as the shaping technology for the NiO/8YSZ-containing substrate in order to decrease the demand for raw materials due to lower substrate thickness and in order to increase reproducibility and fabrication capacities (scalable process). Different processing routes for the substrates require the adjustment of process parameters for further coating with functional layers. Therefore, mainly thermal treatment steps have to be adapted to the properties of the new substrate types in order to obtain high-performance cells with minimum curvature (for stack assembly). In this presentation, the influence of selected process parameters during cell manufacturing will be characterized with respect to the resulting physical parameters such as slurry viscosity, green tape thickness, relative density, substrate strength, electrical conductivity, and shrinkage of the different newly developed substrate types. The influencing factors during manufacturing and the resulting characteristics will be presented and possible applications for the various substrates identified. Enriched from Inspec Inspec anode-supported solid oxide fuel cells Inspec coating Inspec electrical conductivity Inspec green tape thickness Inspec powders Inspec processing parameters Inspec shrinkage Inspec sintering Inspec slurry viscosity Inspec solid oxide fuel cells Inspec tape casting Inspec thermal treatment Inspec viscosity Inspec warm pressing Inspec wet chemical powder processes PER:76694 Schafbauer, W. 1 fzj PER:96316 Buchkremer, H.P. 2 fzj ZDBID:2047372-2 10.4028/www.scientific.net/MSF.638-642.1098 Vol. 638-642, p. 1098 - 1105 638-642:<1098 - 1105 Materials science forum 638-642 0255-5476 2010 http://dx.doi.org/10.4028/www.scientific.net/MSF.638-642.1098 GRANT:402 P12 Energie Rationelle Energieumwandlung 2010 - INSTITUTION|(DE-Juel1)1130 + INSTITUTE|(DE-Juel1)1130 IEK IEK-1 Werkstoffsynthese und Herstellverfahren VDB:125298 VDB ARTICLE - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 Forschungszentrum Jülich Energieforschungszentrum Jülich KFA Research Centre Jülich KFA Jülich FZJ a Kernforschungsanlage Jülich - INSTITUTION + INSTITUTE AUTHORITY - INSTITUTION|(DE-Juel1)301 + INSTITUTE|(DE-Juel1)301 INST - INSTITUTION|(DE-Juel1)301 + INSTITUTE|(DE-Juel1)301 Institut für Kernphysik 31.12.2000 IKP d - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 GND Forschungszentrum Jülich t - INSTITUTION|(DE-Juel1)301 + INSTITUTE|(DE-Juel1)301 INST IKP g - INSTITUTION|(DE-Juel1)301 + INSTITUTE|(DE-Juel1)301 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)795 INST - INSTITUTION|(DE-Juel1)795 + INSTITUTE|(DE-Juel1)795 Experimentelle Hadronstruktur IKP-1 d - INSTITUTION|(DE-Juel1)301 + INSTITUTE|(DE-Juel1)301 INST IKP g - INSTITUTION|(DE-Juel1)221 + INSTITUTE|(DE-Juel1)221 INST Institut 1 (Experimentelle Kernphysik I) a (DE-Juel1)795 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)241 INST - INSTITUTION|(DE-Juel1)241 + INSTITUTE|(DE-Juel1)241 Institut für Festkörperforschung IFF d - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 GND Forschungszentrum Jülich t - INSTITUTION|(DE-Juel1)241 + INSTITUTE|(DE-Juel1)241 INST IFF g (DE-Juel1)241 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)1107 INST - INSTITUTION|(DE-Juel1)1107 + INSTITUTE|(DE-Juel1)1107 Institut für Bio- und Nanosysteme IBN d - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 GND Forschungszentrum Jülich t - INSTITUTION|(DE-Juel1)1107 + INSTITUTE|(DE-Juel1)1107 INST IBN g (DE-Juel1)1107 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)1125 INST - INSTITUTION|(DE-Juel1)1125 + INSTITUTE|(DE-Juel1)1125 Institut für Energie- und Klimaforschung IEK d - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 GND Forschungszentrum Jülich t - INSTITUTION|(DE-Juel1)1125 + INSTITUTE|(DE-Juel1)1125 INST IEK g (DE-Juel1)1125 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)1115 INST - INSTITUTION|(DE-Juel1)1115 + INSTITUTE|(DE-Juel1)1115 Institut für Energieforschung IEF d - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 GND Forschungszentrum Jülich t - INSTITUTION|(DE-Juel1)1115 + INSTITUTE|(DE-Juel1)1115 INST IEF g (DE-Juel1)1115 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)381 INST - INSTITUTION|(DE-Juel1)381 + INSTITUTE|(DE-Juel1)381 Center of Nanoelectronic Systems for Information Technology 14.09.2008 CNI d - INSTITUTION|(DE-Juel1)5008462-8 + INSTITUTE|(DE-Juel1)5008462-8 GND Forschungszentrum Jülich t - INSTITUTION|(DE-Juel1)381 + INSTITUTE|(DE-Juel1)381 INST CNI g (DE-Juel1)381 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)788 INST - INSTITUTION|(DE-Juel1)788 + INSTITUTE|(DE-Juel1)788 Mikrostrukturforschung IFF-8 d - INSTITUTION|(DE-Juel1)241 + INSTITUTE|(DE-Juel1)241 INST IFF g - INSTITUTION|(DE-Juel1)37 + INSTITUTE|(DE-Juel1)37 INST Mikrostrukturforschung a (DE-Juel1)788 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)861 INST - INSTITUTION|(DE-Juel1)861 + INSTITUTE|(DE-Juel1)861 Institut für Halbleiterschichten und Bauelemente 30.09.2007 IBN-1 d - INSTITUTION|(DE-Juel1)1107 + INSTITUTE|(DE-Juel1)1107 INST IBN g - INSTITUTION|(DE-Juel1)41 + INSTITUTE|(DE-Juel1)41 INST Institut für Halbleiterschichten und Bauelemente a - INSTITUTION|(DE-Juel1)799 + INSTITUTE|(DE-Juel1)799 INST Halbleiter-Nanoelektronik b (DE-Juel1)861 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)799 INST - INSTITUTION|(DE-Juel1)799 + INSTITUTE|(DE-Juel1)799 Halbleiter-Nanoelektronik IBN-1 d - INSTITUTION|(DE-Juel1)1107 + INSTITUTE|(DE-Juel1)1107 INST IBN g - INSTITUTION|(DE-Juel1)861 + INSTITUTE|(DE-Juel1)861 INST Institut für Halbleiterschichten und Bauelemente a (DE-Juel1)799 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)1130 INST - INSTITUTION|(DE-Juel1)1130 + INSTITUTE|(DE-Juel1)1130 Werkstoffsynthese und Herstellverfahren IEK-1 d - INSTITUTION|(DE-Juel1)1125 + INSTITUTE|(DE-Juel1)1125 INST IEK g - INSTITUTION|(DE-Juel1)809 + INSTITUTE|(DE-Juel1)809 INST Werkstoffsynthese und Herstellungsverfahren a (DE-Juel1)1130 - INSTITUTION + INSTITUTE AUTHORITY (DE-Juel1)809 INST - INSTITUTION|(DE-Juel1)809 + INSTITUTE|(DE-Juel1)809 Werkstoffsynthese und Herstellungsverfahren 30.09.2010 IEF-1 d - INSTITUTION|(DE-Juel1)1115 + INSTITUTE|(DE-Juel1)1115 INST IEF g - INSTITUTION|(DE-Juel1)5 + INSTITUTE|(DE-Juel1)5 INST Werkstoffsynthese und Herstellungsverfahren a - INSTITUTION|(DE-Juel1)1130 + INSTITUTE|(DE-Juel1)1130 INST Werkstoffsynthese und Herstellverfahren b (DE-Juel1)809 - INSTITUTION + INSTITUTE AUTHORITY diff --git a/modules/miscutil/demo/democfgdata.sql b/modules/miscutil/demo/democfgdata.sql index c9a542082..bb4a68c59 100644 --- a/modules/miscutil/demo/democfgdata.sql +++ b/modules/miscutil/demo/democfgdata.sql @@ -1,2614 +1,2614 @@ -- This file is part of Invenio. -- Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 CERN. -- -- 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. -- -- 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 Invenio; if not, write to the Free Software Foundation, Inc., -- 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. INSERT INTO user VALUES (2,'jekyll@cds.cern.ch',AES_ENCRYPT(email,'j123ekyll'),'1',NULL,'jekyll',''); INSERT INTO user VALUES (3,'hyde@cds.cern.ch',AES_ENCRYPT(email,'h123yde'),'1',NULL,'hyde',''); INSERT INTO user VALUES (4,'dorian.gray@cds.cern.ch',AES_ENCRYPT(email,'d123orian'),'1',NULL,'dorian',''); INSERT INTO user VALUES (5,'romeo.montague@cds.cern.ch',AES_ENCRYPT(email,'r123omeo'),'1',NULL,'romeo',''); INSERT INTO user VALUES (6,'juliet.capulet@cds.cern.ch',AES_ENCRYPT(email,'j123uliet'),'1',NULL,'juliet',''); INSERT INTO user VALUES (7,'benvolio.montague@cds.cern.ch',AES_ENCRYPT(email,'b123envolio'),'1',NULL,'benvolio',''); INSERT INTO user VALUES (8,'balthasar.montague@cds.cern.ch',AES_ENCRYPT(email,'b123althasar'),'1',NULL,'balthasar',''); INSERT INTO usergroup VALUES (1,'Theses viewers','Theses viewers internal group','VO','INTERNAL'); INSERT INTO usergroup VALUES (2,'montague-family','The Montague family.','VM','INTERNAL'); INSERT INTO usergroup VALUES (3,'ALEPH viewers','ALEPH viewers internal group','VO','INTERNAL'); INSERT INTO usergroup VALUES (4,'ISOLDE Internal Notes viewers','ISOLDE Internal Notes viewers internal group','VO','INTERNAL'); INSERT INTO user_usergroup VALUES (2,1,'M',NOW()); INSERT INTO user_usergroup VALUES (5,2,'A',NOW()); INSERT INTO user_usergroup VALUES (6,2,'M',NOW()); INSERT INTO user_usergroup VALUES (7,2,'M',NOW()); INSERT INTO collection VALUES (2,'Preprints','980:"PREPRINT"',NULL,NULL); INSERT INTO collection VALUES (3,'Books','980:"BOOK"',NULL,NULL); INSERT INTO collection VALUES (4,'Theses','980:"THESIS"',NULL,NULL); INSERT INTO collection VALUES (5,'Reports','980:"REPORT"',NULL,NULL); INSERT INTO collection VALUES (6,'Articles','980:"ARTICLE"',NULL,NULL); INSERT INTO collection VALUES (8,'Pictures','980:"PICTURE"',NULL,NULL); INSERT INTO collection VALUES (9,'CERN Divisions',NULL,NULL,NULL); INSERT INTO collection VALUES (10,'CERN Experiments',NULL,NULL,NULL); INSERT INTO collection VALUES (11,'Theoretical Physics (TH)','division:TH',NULL,NULL); INSERT INTO collection VALUES (12,'Experimental Physics (EP)','division:EP',NULL,NULL); INSERT INTO collection VALUES (13,'ISOLDE','',NULL,NULL); INSERT INTO collection VALUES (14,'ALEPH','',NULL,NULL); INSERT INTO collection VALUES (15,'Articles & Preprints',NULL,NULL,NULL); INSERT INTO collection VALUES (16,'Books & Reports',NULL,NULL,NULL); INSERT INTO collection VALUES (17,'Multimedia & Arts',NULL,NULL,NULL); INSERT INTO collection VALUES (18,'Poetry','980:"POETRY"',NULL,NULL); INSERT INTO collection VALUES (19,'Atlantis Times News','980:"ATLANTISTIMESNEWS"',NULL,NULL); INSERT INTO collection VALUES (20,'Atlantis Times Arts','980:"ATLANTISTIMESARTS"',NULL,NULL); INSERT INTO collection VALUES (21,'Atlantis Times Science','980:"ATLANTISTIMESSCIENCE"',NULL,NULL); INSERT INTO collection VALUES (22,'Atlantis Times',NULL,NULL,NULL); INSERT INTO collection VALUES (23,'Atlantis Institute Books','hostedcollection:',NULL,NULL); INSERT INTO collection VALUES (24,'Atlantis Institute Articles','hostedcollection:',NULL,NULL); INSERT INTO collection VALUES (25,'Atlantis Times Drafts','980:"ATLANTISTIMESSCIENCEDRAFT" or 980:"ATLANTISTIMESARTSDRAFT" or 980:"ATLANTISTIMESNEWSDRAFT"',NULL,NULL); INSERT INTO collection VALUES (26, 'Notes', '980:"NOTE"', NULL, NULL); INSERT INTO collection VALUES (27, 'ALEPH Papers', '980:"ALEPHPAPER"', NULL, NULL); INSERT INTO collection VALUES (28, 'ALEPH Internal Notes', '980:"ALEPHNOTE"', NULL, NULL); INSERT INTO collection VALUES (29, 'ALEPH Theses', '980:"ALEPHTHESIS"', NULL, NULL); INSERT INTO collection VALUES (30, 'ISOLDE Papers', '980:"ISOLDEPAPER"', NULL, NULL); INSERT INTO collection VALUES (31, 'ISOLDE Internal Notes', '980:"ISOLDENOTE"', NULL, NULL); INSERT INTO collection VALUES (32, 'Drafts', '980:"DRAFT"', NULL, NULL); -INSERT INTO collection VALUES (33,'Videos','980:"VIDEO"',NULL,NULL); -INSERT INTO collection VALUES (34, 'Authority Records', 'collection:AUTHORITY', null, null); -INSERT INTO collection VALUES (35, 'Authority Author', 'collection:AUTHOR', null, null); -INSERT INTO collection VALUES (36, 'Authority Institution', 'collection:INSTITUTION', null, null); -INSERT INTO collection VALUES (37, 'Authority Journal', 'collection:JOURNAL', null, null); -INSERT INTO collection VALUES (38, 'Authority Subject', 'collection:SUBJECT', null, null); +INSERT INTO collection VALUES (33, 'Videos','980:"VIDEO"',NULL,NULL); +INSERT INTO collection VALUES (34, 'Authorities', 'collection:AUTHORITY', null, null); +INSERT INTO collection VALUES (35, 'People', 'collection:AUTHOR', null, null); +INSERT INTO collection VALUES (36, 'Institutes', 'collection:INSTITUTE', null, null); +INSERT INTO collection VALUES (37, 'Journals', 'collection:JOURNAL', null, null); +INSERT INTO collection VALUES (38, 'Subjects', 'collection:SUBJECT', null, null); INSERT INTO collectiondetailedrecordpagetabs VALUES (8, 'usage;comments;metadata'); INSERT INTO collectiondetailedrecordpagetabs VALUES (19, 'usage;comments;metadata'); INSERT INTO collectiondetailedrecordpagetabs VALUES (18, 'usage;comments;metadata'); INSERT INTO collectiondetailedrecordpagetabs VALUES (17, 'usage;comments;metadata'); INSERT INTO clsMETHOD VALUES (1,'HEP','http://invenio-software.org/download/invenio-demo-site-files/HEP.rdf','High Energy Physics Taxonomy','0000-00-00 00:00:00'); INSERT INTO clsMETHOD VALUES (2,'NASA-subjects','http://invenio-software.org/download/invenio-demo-site-files/NASA-subjects.rdf','NASA Subjects','0000-00-00 00:00:00'); INSERT INTO collection_clsMETHOD VALUES (2,1); INSERT INTO collection_clsMETHOD VALUES (12,2); 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','Preprint'); 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 (2,'hr','ln','Preprinti'); INSERT INTO collectionname VALUES (2,'zh_CN','ln','预印'); INSERT INTO collectionname VALUES (2,'zh_TW','ln','預印'); INSERT INTO collectionname VALUES (2,'hu','ln','Preprintek'); INSERT INTO collectionname VALUES (2,'af','ln','Pre-drukke'); INSERT INTO collectionname VALUES (2,'gl','ln','Preprints'); INSERT INTO collectionname VALUES (2,'ro','ln','Preprinturi'); INSERT INTO collectionname VALUES (2,'rw','ln','Preprints'); INSERT INTO collectionname VALUES (2,'ka','ln','პრეპრინტები'); INSERT INTO collectionname VALUES (2,'lt','ln','Rankraščiai'); INSERT INTO collectionname VALUES (2,'ar','ln','مسودات'); INSERT INTO collectionname VALUES (2,'fa','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 (3,'hr','ln','Knjige'); INSERT INTO collectionname VALUES (3,'zh_CN','ln','书本'); INSERT INTO collectionname VALUES (3,'zh_TW','ln','書本'); INSERT INTO collectionname VALUES (3,'hu','ln','Könyvek'); INSERT INTO collectionname VALUES (3,'af','ln','Boeke'); INSERT INTO collectionname VALUES (3,'gl','ln','Libros'); INSERT INTO collectionname VALUES (3,'ro','ln','Cărţi'); INSERT INTO collectionname VALUES (3,'rw','ln','Ibitabo'); INSERT INTO collectionname VALUES (3,'ka','ln','წიგნები'); INSERT INTO collectionname VALUES (3,'lt','ln','Knygos'); INSERT INTO collectionname VALUES (3,'ar','ln','كتب'); INSERT INTO collectionname VALUES (3,'fa','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 (4,'hr','ln','Disertacije'); INSERT INTO collectionname VALUES (4,'zh_CN','ln','论文'); INSERT INTO collectionname VALUES (4,'zh_TW','ln','論文'); INSERT INTO collectionname VALUES (4,'hu','ln','Disszertációk'); INSERT INTO collectionname VALUES (4,'af','ln','Tesise'); INSERT INTO collectionname VALUES (4,'gl','ln','Teses'); INSERT INTO collectionname VALUES (4,'ro','ln','Teze'); INSERT INTO collectionname VALUES (4,'rw','ln','Igitabo ky\'ubushakashatsi'); -- ' INSERT INTO collectionname VALUES (4,'ka','ln','თეზისები'); INSERT INTO collectionname VALUES (4,'lt','ln','Disertacijos'); INSERT INTO collectionname VALUES (4,'ar','ln','أطروحات'); INSERT INTO collectionname VALUES (4,'fa','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 (5,'hr','ln','Izvještaji'); INSERT INTO collectionname VALUES (5,'zh_CN','ln','报告'); INSERT INTO collectionname VALUES (5,'zh_TW','ln','報告'); INSERT INTO collectionname VALUES (5,'hu','ln','Tanulmányok'); INSERT INTO collectionname VALUES (5,'af','ln','Verslae'); INSERT INTO collectionname VALUES (5,'gl','ln','Informes'); INSERT INTO collectionname VALUES (5,'ro','ln','Rapoarte'); INSERT INTO collectionname VALUES (5,'rw','ln','Raporo'); INSERT INTO collectionname VALUES (5,'ka','ln','რეპორტები'); INSERT INTO collectionname VALUES (5,'lt','ln','Pranešimai'); INSERT INTO collectionname VALUES (5,'ar','ln','تقارير'); INSERT INTO collectionname VALUES (5,'fa','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 (6,'hr','ln','Članci'); INSERT INTO collectionname VALUES (6,'zh_CN','ln','文章'); INSERT INTO collectionname VALUES (6,'zh_TW','ln','文章'); INSERT INTO collectionname VALUES (6,'hu','ln','Cikkek'); INSERT INTO collectionname VALUES (6,'af','ln','Artikels'); INSERT INTO collectionname VALUES (6,'gl','ln','Artigos'); INSERT INTO collectionname VALUES (6,'ro','ln','Articole'); INSERT INTO collectionname VALUES (6,'rw','ln','Ikinyamakuru ky\'ubushakashatsi'); -- ' INSERT INTO collectionname VALUES (6,'ka','ln','სტატიები'); INSERT INTO collectionname VALUES (6,'lt','ln','Straipsniai'); INSERT INTO collectionname VALUES (6,'ar','ln','مقالات'); INSERT INTO collectionname VALUES (6,'fa','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 (8,'hr','ln','Slike'); INSERT INTO collectionname VALUES (8,'zh_CN','ln','图片'); INSERT INTO collectionname VALUES (8,'zh_TW','ln','圖片'); INSERT INTO collectionname VALUES (8,'hu','ln','Képek'); INSERT INTO collectionname VALUES (8,'af','ln','Prente'); INSERT INTO collectionname VALUES (8,'gl','ln','Imaxes'); INSERT INTO collectionname VALUES (8,'ro','ln','Poze'); INSERT INTO collectionname VALUES (8,'rw','ln','Ifoto'); INSERT INTO collectionname VALUES (8,'ka','ln','სურათები'); INSERT INTO collectionname VALUES (8,'lt','ln','Paveikslėliai'); INSERT INTO collectionname VALUES (8,'ar','ln','صور'); INSERT INTO collectionname VALUES (8,'fa','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','Разделения CERNа'); 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','Отдели в CERN'); INSERT INTO collectionname VALUES (9,'hr','ln','Odjeli CERN-a'); INSERT INTO collectionname VALUES (9,'zh_CN','ln','CERN 分类'); INSERT INTO collectionname VALUES (9,'zh_TW','ln','CERN 分類'); INSERT INTO collectionname VALUES (9,'hu','ln','CERN részlegek'); INSERT INTO collectionname VALUES (9,'af','ln','CERN Afdelings'); INSERT INTO collectionname VALUES (9,'gl','ln','Divisións do CERN'); INSERT INTO collectionname VALUES (9,'ro','ln','Divizii CERN'); INSERT INTO collectionname VALUES (9,'rw','ln','Ishami ya CERN'); INSERT INTO collectionname VALUES (9,'ka','ln','ცერნის განყოფილებები'); INSERT INTO collectionname VALUES (9,'lt','ln','CERN Padaliniai'); INSERT INTO collectionname VALUES (9,'ar','ln','أقسام المنظمة الأوربية للبحوث النووية'); INSERT INTO collectionname VALUES (9,'fa','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','Эксперименты CERNа'); 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','Експерименти в CERN'); INSERT INTO collectionname VALUES (10,'hr','ln','Eksperimenti CERN-a'); INSERT INTO collectionname VALUES (10,'zh_CN','ln','CERN 实验'); INSERT INTO collectionname VALUES (10,'zh_TW','ln','CERN 實驗'); INSERT INTO collectionname VALUES (10,'hu','ln','CERN kísérletek'); INSERT INTO collectionname VALUES (10,'af','ln','CERN Experimente'); INSERT INTO collectionname VALUES (10,'gl','ln','Experimentos do CERN'); INSERT INTO collectionname VALUES (10,'ro','ln','Experimente CERN'); INSERT INTO collectionname VALUES (10,'rw','ln','Ubushakashatsi bwa CERN'); INSERT INTO collectionname VALUES (10,'ka','ln','ცერნის ექსპერემენტები'); INSERT INTO collectionname VALUES (10,'lt','ln','CERN Eksperimentai'); INSERT INTO collectionname VALUES (10,'ar','ln','تجارب المنظمة الأوربية للبحوث النووية'); INSERT INTO collectionname VALUES (10,'fa','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','Теоретическая физика (TH)'); 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 (11,'bg','ln','Теоретична физика (TH)'); INSERT INTO collectionname VALUES (11,'hr','ln','Teorijska fizika (TH)'); INSERT INTO collectionname VALUES (11,'zh_CN','ln','理论物理 (TH)'); INSERT INTO collectionname VALUES (11,'zh_TW','ln','理論物理 (TH)'); INSERT INTO collectionname VALUES (11,'hu','ln','Elméleti fizika (TH)'); INSERT INTO collectionname VALUES (11,'af','ln','Teoretiese Fisika (TH)'); INSERT INTO collectionname VALUES (11,'gl','ln','Física Teórica (TH)'); INSERT INTO collectionname VALUES (11,'ro','ln','Fizică Teoretică (TH)'); INSERT INTO collectionname VALUES (11,'rw','ln','Theoretical Physics (TH)'); INSERT INTO collectionname VALUES (11,'ka','ln','თეორიული ფიზიკა (თფ)'); INSERT INTO collectionname VALUES (11,'lt','ln','Teorinė fizika (TH)'); INSERT INTO collectionname VALUES (11,'ar','ln','الفيزياء النظرية'); INSERT INTO collectionname VALUES (11,'fa','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','Экспериментальная Физика (EP)'); 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','Експериментална физика (EP)'); INSERT INTO collectionname VALUES (12,'hr','ln','Eksperimentalna fizika (EP)'); INSERT INTO collectionname VALUES (12,'zh_CN','ln','实验物理 (EP)'); INSERT INTO collectionname VALUES (12,'zh_TW','ln','實驗物理 (EP)'); INSERT INTO collectionname VALUES (12,'hu','ln','Kísérleti fizika (EP)'); INSERT INTO collectionname VALUES (12,'af','ln','Eksperimentele Fisika (EP)'); INSERT INTO collectionname VALUES (12,'gl','ln','Física Experimental (EP)'); INSERT INTO collectionname VALUES (12,'ro','ln','Fizică Experimentală (EP)'); INSERT INTO collectionname VALUES (12,'rw','ln','Experimental Physics (EP)'); INSERT INTO collectionname VALUES (12,'ka','ln','ექსპერიმენტული ფიზიკა (ეფ)'); INSERT INTO collectionname VALUES (12,'lt','ln','Eksperimentinė fizika (EP)'); INSERT INTO collectionname VALUES (12,'ar','ln','الفيزياء التجريبية'); INSERT INTO collectionname VALUES (12,'fa','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','ISOLDE'); 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','ISOLDE'); INSERT INTO collectionname VALUES (13,'hr','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'zh_CN','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'zh_TW','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'hu','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'af','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'gl','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'ro','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'rw','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'ka','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'lt','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'ar','ln','ISOLDE'); INSERT INTO collectionname VALUES (13,'fa','ln','ISOLDE'); 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','ALEPH'); 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','ALEPH'); INSERT INTO collectionname VALUES (14,'hr','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'zh_CN','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'zh_TW','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'hu','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'af','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'gl','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'ro','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'rw','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'ka','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'lt','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'ar','ln','ALEPH'); INSERT INTO collectionname VALUES (14,'fa','ln','ALEPH'); 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 Preprint'); 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 (15,'hr','ln','Članci i Preprinti'); INSERT INTO collectionname VALUES (15,'zh_CN','ln','文章和预印'); INSERT INTO collectionname VALUES (15,'zh_TW','ln','文章和預印'); INSERT INTO collectionname VALUES (15,'hu','ln','Cikkek és Preprintek'); INSERT INTO collectionname VALUES (15,'af','ln','Artikels & Pre-drukke'); INSERT INTO collectionname VALUES (15,'gl','ln','Artigos e Preprints'); INSERT INTO collectionname VALUES (15,'ro','ln','Articole şi Preprinturi'); INSERT INTO collectionname VALUES (15,'rw','ln','Ibinyamakuru'); INSERT INTO collectionname VALUES (15,'ka','ln','სტატიები და პრეპრინტები'); INSERT INTO collectionname VALUES (15,'lt','ln','Straipsniai ir Rankraščiai'); INSERT INTO collectionname VALUES (15,'ar','ln','مقالات & مسودات'); INSERT INTO collectionname VALUES (15,'fa','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 (16,'hr','ln','Knjige i Izvještaji'); INSERT INTO collectionname VALUES (16,'zh_CN','ln','书本和报告'); INSERT INTO collectionname VALUES (16,'zh_TW','ln','書本和報告'); INSERT INTO collectionname VALUES (16,'hu','ln','Könyvek és tanulmányok'); INSERT INTO collectionname VALUES (16,'af','ln','Boeke & Verslae'); INSERT INTO collectionname VALUES (16,'gl','ln','Libros e Informes'); INSERT INTO collectionname VALUES (16,'ro','ln','Cărţi şi Rapoarte'); INSERT INTO collectionname VALUES (16,'rw','ln','Ibitabo & Raporo'); INSERT INTO collectionname VALUES (16,'ka','ln','წიგნები და მოხსენებები'); INSERT INTO collectionname VALUES (16,'lt','ln','Knygos ir Pranešimai'); INSERT INTO collectionname VALUES (16,'ar','ln','كتب & تقارير'); INSERT INTO collectionname VALUES (16,'fa','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 (17,'hr','ln','Multimedija i Umjetnost'); INSERT INTO collectionname VALUES (17,'zh_CN','ln','多媒体和艺术'); INSERT INTO collectionname VALUES (17,'zh_TW','ln','多媒體和藝術'); INSERT INTO collectionname VALUES (17,'hu','ln','Multimédia és képzőművészet'); INSERT INTO collectionname VALUES (17,'af','ln','Multimedia & Kunste'); INSERT INTO collectionname VALUES (17,'gl','ln','Multimedia e Arte'); INSERT INTO collectionname VALUES (17,'ro','ln','Multimedia şi Arte'); INSERT INTO collectionname VALUES (17,'rw','ln','Multimedia & Arts'); INSERT INTO collectionname VALUES (17,'ka','ln','მულტიმედია და ხელოვნება'); INSERT INTO collectionname VALUES (17,'lt','ln','Multimedija ir Menas'); INSERT INTO collectionname VALUES (17,'ar','ln','وسائط متعددة & فنون'); INSERT INTO collectionname VALUES (17,'fa','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 collectionname VALUES (18,'hr','ln','Poezija'); INSERT INTO collectionname VALUES (18,'zh_CN','ln','诗歌'); INSERT INTO collectionname VALUES (18,'zh_TW','ln','詩歌'); INSERT INTO collectionname VALUES (18,'hu','ln','Költészet'); INSERT INTO collectionname VALUES (18,'af','ln','Poësie'); INSERT INTO collectionname VALUES (18,'gl','ln','Poesía'); INSERT INTO collectionname VALUES (18,'ro','ln','Poezie'); INSERT INTO collectionname VALUES (18,'rw','ln','Umuvugo'); INSERT INTO collectionname VALUES (18,'ka','ln','პოეზია'); INSERT INTO collectionname VALUES (18,'lt','ln','Poezija'); INSERT INTO collectionname VALUES (18,'ar','ln','شعر'); INSERT INTO collectionname VALUES (18,'fa','ln','شعر'); INSERT INTO collectionname VALUES (19,'en','ln','Atlantis Times News'); INSERT INTO collectionname VALUES (19,'fr','ln','Atlantis Times Actualités'); INSERT INTO collectionname VALUES (20,'en','ln','Atlantis Times Arts'); INSERT INTO collectionname VALUES (20,'fr','ln','Atlantis Times Arts'); INSERT INTO collectionname VALUES (21,'en','ln','Atlantis Times Science'); INSERT INTO collectionname VALUES (21,'fr','ln','Atlantis Times Science'); INSERT INTO collectionname VALUES (22,'en','ln','Atlantis Times'); INSERT INTO collectionname VALUES (22,'fr','ln','Atlantis Times'); INSERT INTO collectionname VALUES (23,'en','ln','Atlantis Institute Books'); INSERT INTO collectionname VALUES (23,'fr','ln','Atlantis Institute Books'); INSERT INTO collectionname VALUES (24,'en','ln','Atlantis Institute Articles'); INSERT INTO collectionname VALUES (24,'fr','ln','Atlantis Institute Articles'); INSERT INTO collectionname VALUES (25,'en','ln','Atlantis Times Drafts'); INSERT INTO collectionname VALUES (25,'fr','ln','Atlantis Times Ébauches'); INSERT INTO collectionname VALUES (26,'en','ln','Notes'); INSERT INTO collectionname VALUES (27,'en','ln','ALEPH Papers'); INSERT INTO collectionname VALUES (28,'en','ln','ALEPH Internal Notes'); INSERT INTO collectionname VALUES (29,'en','ln','ALEPH Theses'); INSERT INTO collectionname VALUES (30, 'en','ln', 'ISOLDE Papers'); INSERT INTO collectionname VALUES (31, 'en','ln', 'ISOLDE Internal Notes'); INSERT INTO collectionname VALUES (32, 'en','ln', 'Drafts'); INSERT INTO collectionname VALUES (33,'en','ln','Videos'); INSERT INTO collectionname VALUES (33,'fr','ln','Vidéos'); INSERT INTO collectionname VALUES (33,'it','ln','Filmati'); -INSERT INTO collectionname VALUES (34,'en','ln','Authority Records'); -INSERT INTO collectionname VALUES (34,'fr','ln','Notices d''autorité'); +INSERT INTO collectionname VALUES (34,'en','ln','Authorities'); +INSERT INTO collectionname VALUES (34,'fr','ln','Autorités'); INSERT INTO collectionname VALUES (34,'pl','ln','Rekordy kontrolne'); -INSERT INTO collectionname VALUES (35,'en','ln','Authors'); +INSERT INTO collectionname VALUES (35,'en','ln','People'); INSERT INTO collectionname VALUES (35,'fr','ln','Auteurs'); INSERT INTO collectionname VALUES (35,'pl','ln','Autorzy'); -INSERT INTO collectionname VALUES (36,'en','ln','Institutions'); -INSERT INTO collectionname VALUES (36,'fr','ln','Institutions'); +INSERT INTO collectionname VALUES (36,'en','ln','Institutes'); +INSERT INTO collectionname VALUES (36,'fr','ln','Instituts'); INSERT INTO collectionname VALUES (36,'pl','ln','Instytucje'); INSERT INTO collectionname VALUES (37,'en','ln','Journals'); INSERT INTO collectionname VALUES (37,'fr','ln','Journals'); INSERT INTO collectionname VALUES (37,'pl','ln','Czasopisma'); INSERT INTO collectionname VALUES (38,'en','ln','Subjects'); INSERT INTO collectionname VALUES (38,'fr','ln','Sujets'); INSERT INTO collectionname VALUES (38,'pl','ln','Tematy'); INSERT INTO collectionboxname VALUES (33,'en','l','Latest videos:'); INSERT INTO collectionboxname VALUES (33,'fr','l','Dernières vidéos:'); INSERT INTO collectionboxname VALUES (9,'en','r','Browse by division:'); INSERT INTO collectionboxname VALUES (9,'fr','r','Naviguer par division:'); 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 (1,23,'r',20); -- INSERT INTO collection_collection VALUES (1,24,'r',10); INSERT INTO collection_collection VALUES (15,6,'r',20); INSERT INTO collection_collection VALUES (15,2,'r',10); INSERT INTO collection_collection VALUES (15,32,'r',10); INSERT INTO collection_collection VALUES (15,26,'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',30); INSERT INTO collection_collection VALUES (17,18,'r',20); INSERT INTO collection_collection VALUES (17,22,'r',10); INSERT INTO collection_collection VALUES (17,33,'r',30); INSERT INTO collection_collection VALUES (22,19,'r',30); INSERT INTO collection_collection VALUES (22,20,'r',20); INSERT INTO collection_collection VALUES (22,21,'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_collection VALUES (13,30,'r',20); -- INSERT INTO collection_collection VALUES (13,31,'r',10); -- ISOLDE Internal Notes INSERT INTO collection_collection VALUES (14,27,'r',20); INSERT INTO collection_collection VALUES (14,28,'r',10); INSERT INTO collection_collection VALUES (14,29,'r',10); INSERT INTO collection_collection VALUES (1,34,'v',5); INSERT INTO collection_collection VALUES (34,35,'r',4); INSERT INTO collection_collection VALUES (34,36,'r',3); INSERT INTO collection_collection VALUES (34,37,'r',2); INSERT INTO collection_collection VALUES (34,38,'r',1); 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_example VALUES (1,19,0); INSERT INTO collection_example VALUES (15,19,0); INSERT INTO collection_example VALUES (16,19,0); 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,19,NULL,'sew',3,65); 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 (1,2,NULL,'soo',40,0); INSERT INTO collection_field_fieldvalue VALUES (1,3,NULL,'soo',30,0); INSERT INTO collection_field_fieldvalue VALUES (1,6,NULL,'soo',20,0); INSERT INTO collection_field_fieldvalue VALUES (1,12,NULL,'soo',10,0); INSERT INTO collection_field_fieldvalue VALUES (3,2,NULL,'soo',40,0); INSERT INTO collection_field_fieldvalue VALUES (3,3,NULL,'soo',30,0); INSERT INTO collection_field_fieldvalue VALUES (3,15,NULL,'soo',20,0); INSERT INTO collection_field_fieldvalue VALUES (3,12,NULL,'soo',10,0); INSERT INTO collection_field_fieldvalue VALUES (34,33,NULL,'sew',4,0); INSERT INTO collection_field_fieldvalue VALUES (34,34,NULL,'sew',3,0); INSERT INTO collection_field_fieldvalue VALUES (34,35,NULL,'sew',2,0); INSERT INTO collection_field_fieldvalue VALUES (34,36,NULL,'sew',1,0); INSERT INTO collection_field_fieldvalue VALUES (35,33,NULL,'sew',1,0); INSERT INTO collection_field_fieldvalue VALUES (36,34,NULL,'sew',1,0); INSERT INTO collection_field_fieldvalue VALUES (37,35,NULL,'sew',1,0); INSERT INTO collection_field_fieldvalue VALUES (38,36,NULL,'sew',1,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_format VALUES (15,1,100); INSERT INTO collection_format VALUES (15,2,90); INSERT INTO collection_format VALUES (15,18,85); INSERT INTO collection_format VALUES (15,3,80); INSERT INTO collection_format VALUES (15,4,70); INSERT INTO collection_format VALUES (15,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 collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,66,'hr','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,67,'hr','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,68,'zh_CN','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,69,'zh_CN','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,70,'zh_TW','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,71,'zh_TW','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,72,'hu','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,73,'hu','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,74,'af','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,75,'af','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,76,'gl','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,77,'gl','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (19,78,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (20,78,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (21,78,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (22,78,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,79,'ro','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,80,'ro','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,81,'rw','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,82,'rw','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,83,'ka','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,84,'ka','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,85,'lt','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,86,'lt','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,87,'ar','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,88,'ar','rt',90); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (26,89,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (27,90,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (28,91,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (29,92,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (30,93,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (31,94,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (32,95,'en','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,96,'fa','rt',100); INSERT INTO collection_portalbox (id_collection,id_portalbox,ln,position,score) VALUES (1,97,'fa','rt',90); INSERT INTO collectiondetailedrecordpagetabs(id_collection,tabs) VALUES(33,''); INSERT INTO example VALUES (1,'author search','author:"Ellis, J"'); INSERT INTO example VALUES (2,'word search','quantum'); INSERT INTO example VALUES (3,'wildcard word search','quant*'); INSERT INTO example VALUES (4,'phrase search','title:\'standard model\''); INSERT INTO example VALUES (5,'boolean search','quark -sigma +dense'); INSERT INTO example VALUES (6,'complex boolean search','author:draper title:electrical'); INSERT INTO example VALUES (7,'complex boolean search','author:ellis -muon* +abstract:\'dense quark matter\''); INSERT INTO example VALUES (8,'boolean search','ellis muon*'); INSERT INTO example VALUES (13,'reference search','references:"Theor. Math. Phys. 2 (1998) 231"'); INSERT INTO example VALUES (14,'phrase search','abstract:\'Higgs boson\''); INSERT INTO example VALUES (15,'wildcard word search','cal*'); INSERT INTO example VALUES (16,'keyword search','keyword:Nobel'); INSERT INTO example VALUES (17,'author search','author:Cole'); INSERT INTO example VALUES (18,'phrase search','title:\'nuclear electronics\''); INSERT INTO example VALUES (19,'combined search','supergravity and author:"Ellis, J" and year:1980->1990'); 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 oaiREPOSITORY(id,setName,setSpec,setCollection,setDescription,setDefinition,setRecList,p1,f1,m1,p2,f2,m2,p3,f3,m3,last_updated) VALUES (2,'CERN experimental papers','cern:experiment','','','c=;p1=CERN;f1=reportnumber;m1=a;p2=(EP|PPE);f2=division;m2=r;p3=;f3=;m3=;',NULL,'CERN','reportnumber','a','(EP|PPE)','division','r','','','',NOW()); INSERT INTO oaiREPOSITORY(id,setName,setSpec,setCollection,setDescription,setDefinition,setRecList,p1,f1,m1,p2,f2,m2,p3,f3,m3,last_updated) VALUES (3,'CERN theoretical papers','cern:theory','','','c=;p1=CERN;f1=reportnumber;m1=a;p2=TH;f2=division;m2=e;p3=;f3=;m3=;',NULL,'CERN','reportnumber','a','TH','division','e','','','',NOW()); INSERT INTO portalbox VALUES (1,'ABOUT THIS SITE','Welcome to the demo site of the 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','Invenio
    CERN'); 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 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (27,'O TÝCHTO STRÁNKACH','Vitajte na demonštračných stránkach 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Ž','Invenio
    CERN'); INSERT INTO portalbox VALUES (29,'O TĚCHTO STRÁNKÁCH','Vítejte na demonstračních stránkách 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ÉŽ','Invenio
    CERN'); INSERT INTO portalbox VALUES (31,'ÜBER DIESEN SEITEN','Willkommen Sie bei der Demo-Seite des 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (33,'ACERCA DE ESTAS PÁGINAS','Bienvenidos a las páginas de demostración de 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (35,'A PROPOSITO DI QUESTO SITO','Benvenuti nel sito demo di Invenio, un software libero 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (37,'OM DENNE SIDEN','Velkommen til demosiden for 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Å','Invenio
    CERN'); INSERT INTO portalbox VALUES (39,'SOBRE ESTE SITE','Bem vindo ao site de demonstração do 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (41,'ОБ ЭТОМ САЙТЕ','Добро пожаловать на наш демонстрационный сайт Invenio. Invenio -- свободная программа для серверов документов, разработанная в CERNе. Пожалуйста пользуйтесь свободно этим сайтом.'); INSERT INTO portalbox VALUES (42,'СМОТРИТЕ ТАКЖЕ','Invenio
    CERN'); INSERT INTO portalbox VALUES (43,'OM DENNA WEBBPLATS','Välkommen till demoinstallationen av 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (45,'SUBMIT PREPRINT','Submit a new preprint'); INSERT INTO portalbox VALUES (46,'SUBMIT BOOK','Submit a new book'); INSERT INTO portalbox VALUES (47,'SUBMIT THESIS','Submit a new thesis'); INSERT INTO portalbox VALUES (48,'SUBMIT REPORT','Submit a new report'); INSERT INTO portalbox VALUES (49,'SUBMIT ARTICLE','Submit a new article'); INSERT INTO portalbox VALUES (50,'SUBMIT PICTURE','Submit a new picture'); INSERT INTO portalbox VALUES (51,'SUBMIT NEW DOCUMENT','Submit a new article
    Submit a new preprint'); INSERT INTO portalbox VALUES (52,'SUBMIT NEW DOCUMENT','Submit a new book
    Submit a new thesis
    Submit a new report'); INSERT INTO portalbox VALUES (53,'SUBMIT NEW DOCUMENT','Submit a new picture'); INSERT INTO portalbox VALUES (54,'ΣΧΕΤΙΚΑ ΜΕ ΤΗΝ ΣΕΛΙΔΑ','Καλως ήλθατε στον δικτυακό τόπο του Invenio, ενός δωρεάν εξυπηρετητή για έγγραφα προερχόμενο απο το CERN. Είστε ευπρόσδεκτοι να εξερευνήσετε σε βάθος τις δυνατότητες που σας παρέχει ο δικτυακός αυτός τόπος.'); INSERT INTO portalbox VALUES (55,'ΔΕΙΤΕ ΕΠΙΣΗΣ','Invenio
    CERN'); INSERT INTO portalbox VALUES (56,'ПРО ЦЕЙ САЙТ','Ласкаво просимо до демонстраційного сайту Invenio, вільного програмного забезпечення, розробленого CERN. Випробуйте всі можливості цього демонстраційного сайту в повному обсязі.'); INSERT INTO portalbox VALUES (57,'ДИВИСЬ ТАКОЖ','Invenio
    CERN'); INSERT INTO portalbox VALUES (58,'SOBRE AQUEST LLOC','Benvinguts al lloc de demo de 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É','Invenio
    CERN'); INSERT INTO portalbox VALUES (60,'この場所について','Invenioデモンストレーションの場所への歓迎, CERN から来る自由な文書のサーバーソフトウェア, このデモンストレーションの場所の特徴すべてを探検する自由の感じ'); INSERT INTO portalbox VALUES (61,'また見なさい','Invenio
    CERN'); INSERT INTO portalbox VALUES (62,'O TEJ STRONIE','Witamy w wersji demo systemu 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','Invenio
    CERN'); INSERT INTO portalbox VALUES (64,'ЗА САЙТА','Добре дошли на демонстрационния сайт на Invenio, свободен софтуер за документни сървъри изработен в ЦЕРН. Чувствайте се свободни да изследвате всяка една от характеристиките на сайта.'); INSERT INTO portalbox VALUES (65,'ВИЖ СЪЩО','Invenio
    CERN'); INSERT INTO portalbox VALUES (66,'O OVOM SITE-u','Dobrodošli na Invenio demo site. Invenio je slobodno dostupan poslužitelj dokumenata razvijen na CERN-u. Slobodno istražite sve mogućnosti ove aplikacije.'); INSERT INTO portalbox VALUES (67,'TAKOĐER POGLEDAJTE','Invenio
    CERN'); INSERT INTO portalbox VALUES (68,'关于这个网站','欢迎来到Invenio 的示范网站!Invenio是一个由CERN开发的免费文件服务器软件。 要了解这网站所提供的各项特点, 请立刻行动,尽情探索。'); INSERT INTO portalbox VALUES (69,'参见','Invenio
    CERN'); INSERT INTO portalbox VALUES (70,'關於這個網站', '歡迎來到Invenio 的示範網站!Invenio是一個由CERN開發的免費文件伺服器軟體。 要瞭解這網站所提供的各項特點, 請立刻行動,盡情探索。'); INSERT INTO portalbox VALUES (71,'參見','Invenio
    CERN'); INSERT INTO portalbox VALUES (72,'IMPRESSZUM', 'Üdvözöljük a Invenio bemutatóoldalain! Ezt a szabad dokumentumkezelő szoftvert a CERN-ben fejlesztették. Fedezze fel bátran a tesztrendszer nyújtotta szolgáltatásokat!'); INSERT INTO portalbox VALUES (73,'LÁSD MÉG','Invenio
    CERN'); INSERT INTO portalbox VALUES (74,'OMTRENT HIERDIE TUISTE', 'Welkom by die demo tuiste van Invenio, gratis dokument bediener sagteware wat deur CERN geskryf is. Voel vry om al die eienskappe van die demo te deursoek.'); INSERT INTO portalbox VALUES (75,'SIEN OOK','Invenio
    CERN'); INSERT INTO portalbox VALUES (76,'ACERCA DESTE SITIO', 'Benvido ó sitio de demostración do Invenio, un software de servidor de documentos do CERN. Por favor síntete libre de explorar todas as características deste sitio de demostración.'); INSERT INTO portalbox VALUES (77,'VEXA TAMÉN','Invenio
    CERN'); INSERT INTO portalbox VALUES (78,'ABOUT ATLANTIS TIMES','The \"Atlantis Times\" collections contain the articles from the \Atlantis Times journal.'); INSERT INTO portalbox VALUES (79,'DESPRE ACEST SITE', 'Bine aţi venit pe site-ul demo al Invenio, un software gratuit pentru servere de documente, creat de CERN. Nu ezitaţi să exploraţi din plin toate caracteristicile acestui site demo.'); INSERT INTO portalbox VALUES (80,'ALTE RESURSE','Invenio
    CERN'); INSERT INTO portalbox VALUES (81,'IBYEREKERANYE N\'IYI WEB', 'Murakzaneza kuri web ya Invenio, iyi ni koranabuhanga y\'ubuntu ya kozwe na CERN. Bitimuntu afite uburenganzira bwo kuyigerageza no kuyikoresha.'); INSERT INTO portalbox VALUES (82,'REBA N\'IBI','Invenio
    CERN'); -- ' INSERT INTO portalbox VALUES (83,'საიტის შესახებ', 'კეთილი იყოს თქვენი მობრძანება Invenio -ის სადემონსტრაციო საიტზე, თავისუფალი დოკუმენტების სერვერი CERN -ისაგან. გთხოვთ სრულად შეისწავლოთ სადემონსტრაციო საიტის შესაძლებლობები.'); INSERT INTO portalbox VALUES (84,'ასევე იხილეთ','Invenio
    CERN'); -- ' INSERT INTO portalbox VALUES (85,'APIE PUSLAPĮ', 'Sveiki atvykę į Invenio bandomąjį tinklapį. Invenio yra nemokama programinė įranga dokumentų serveriams, sukurta CERN. Kviečiame išbandyti visas tinklapio galimybes ir funkcijas.'); INSERT INTO portalbox VALUES (86,'TAIP PAT ŽIŪRĖKITE','Invenio
    CERN'); -- ' INSERT INTO portalbox VALUES (87,'حول هذا الموقع','مرحبا بكم في الموقع التجريبي لإنفينيو، المحطة الخادمة (الحرة) المبرمجة من طرف المنظمة الأوربية للبحوث النووية. الرجاء عدم التردد للإطلاع على جميع صفحات هذا الموقع التجريبي'); INSERT INTO portalbox VALUES (88,'زوروا أيضا','Invenio
    CERN'); INSERT INTO portalbox VALUES (89,'ABOUT Notes','The Notes collection is a temporary collection that is being used for testing.'); INSERT INTO portalbox VALUES (90,'ABOUT ALEPH Papers','The ALEPH Papers collection is a temporary collection that is being used for testing.'); INSERT INTO portalbox VALUES (91,'ABOUT ALEPH Internal Notes','The ALEPH Internal Notes collection is a temporary restricted collection that is being used for testing.'); INSERT INTO portalbox VALUES (92,'ABOUT ALEPH Theses','The ALEPH Theses collection is a temporary restricted collection that is being used for testing.'); INSERT INTO portalbox VALUES (93,'ABOUT ISOLDE Papers','The ISOLDE Papers collection is a temporary collection that is being used for testing.'); INSERT INTO portalbox VALUES (94,'ABOUT ISOLDE Internal Notes','The ISOLDE Internal Notes collection is a temporary restricted and hidden collection that is being used for testing.'); INSERT INTO portalbox VALUES (95,'ABOUT Drafts','The Drafts collection is a temporary restricted collection that is being used for testing.'); INSERT INTO portalbox VALUES (96,'درباره این سایت', 'به سایت نمایشی سی دی اس اینونیو،نرم افزار رایگان سرویس دهنده مدارک ساخته شده در سرن، خوش آمدید.‑لطفا برای کشف تمام ویژگی های این سایت نمایشی به صورت کامل، راحت باشید.'); INSERT INTO portalbox VALUES (97,'نیز نگاه کنید','Invenio
    CERN'); INSERT INTO sbmCOLLECTION VALUES (36,'Document Types'); INSERT INTO sbmCOLLECTION_sbmCOLLECTION VALUES (0,36,1); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOTHE',1); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOPOE',2); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOPIC',3); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOART',4); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOBOO',5); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOJRN',6); INSERT INTO sbmCOLLECTION_sbmDOCTYPE VALUES (36,'DEMOVID',7); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOPIC','LIFE','Life at CERN',3); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOPIC','HIST','Personalities and History of CERN',2); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOPIC','EXP','Experiments',1); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOART','ARTICLE','Article',1); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOART','PREPRINT','Preprint',2); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOART','REPORT','Report',3); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOJRN','NEWS','News',2); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOJRN','ARTS','Arts',1); INSERT INTO sbmCATEGORIES (doctype,sname,lname,score) VALUES ('DEMOJRN','SCIENCE','Science',4); INSERT INTO sbmDOCTYPE VALUES ('Demo Picture Submission','DEMOPIC','2007-09-13','2007-10-17','

    \r\nThe Demo Picture submission demonstrates a slightly more detailed submission type.
    \r\nIt makes use of different categories (which in this case are used in the picture\'s reference number to better describe it) and creates icons for the submitted picture files. Records created with this submission are inserted into the ATLANTIS \"Pictures\" collection.\r\n

    \r\n'); INSERT INTO sbmDOCTYPE VALUES ('Demo Thesis Submission','DEMOTHE','2008-03-02','2008-03-05','
    \r\n
    \r\nThe Demo Thesis submission demonstrates a very simple submission type.
    \r\nIt has no categories, submits directly into the ATLANTIS \"Theses\" collection and also stamps full-text files.\r\n

    \r\n'); INSERT INTO sbmDOCTYPE VALUES ('Demo Article Submission','DEMOART','2008-03-06','2008-03-06','

    The Demo Article submission demonstrates a more complex submission type.

    \r\nThe submission gives a document a category. This category is used in the document\'s reference number and also serves as a means to classify it into a specific ATLANTIS collection. Documents submitted into the \"Article\" category are inserted into the ATLANTIS \"Articles\" collection, documents categorized as \"Preprint\" are inserted into the ATLANTIS \"Preprints\" collection, and a document categorized as a \"Report\" is inserted into the ATLANTIS \"Reports\" collection.

    \r\n'); INSERT INTO sbmDOCTYPE VALUES ('Demo Book Submission (Refereed)','DEMOBOO','2008-03-06','2008-03-06','

    The Demo Book submission demonstrates a refereed submission.

    \r\nWhen the details of a book are submitted by a user, they must be approved by a referee before the record is integrated into the ATLANTIS repository.
    \r\nApproved books are integrated into the ATLANTIS \"Books\" collection.
    \r\n'); INSERT INTO sbmDOCTYPE VALUES ('Demo Poetry Submission','DEMOPOE','2008-03-12','2008-03-12','

    \r\nThe Demo Poetry submission demonstrates a simple submission type with a submission form split over two pages.
    \r\nIt does not use categories. Records created with this submission are inserted into the ATLANTIS \"Poetry\" collection.\r\n

    '); INSERT INTO sbmDOCTYPE VALUES ('Demo Journal Submission','DEMOJRN','2008-09-18','2008-09-18','The Demo Journal submission submits records that will be integrated into the demo "Atlantis Times" journal.
    \r\n Makes use of CKEditor to provide WYSIWYG HTML edition of the articles. Install it with make install-ckeditor-plugin.'); INSERT INTO sbmDOCTYPE VALUES ('Demo Video Submission','DEMOVID','2012-02-16','2012-02-16','This is a prototype implementation of a video submission workflow. It will generate all necessary files and video formats from one file uploaded to the system.'); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,1,'DEMOPIC_TITLE','

    Submit an ATLANTIS picture:

    *Picture Title:
    ','M','Picture Title','','2007-09-13','2007-10-04',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,2,'DEMOPIC_PHOTOG','

    Picture Author(s) or Photographers(s): (one per line)
    ','O','Photographer(s)','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,3,'DEMOPIC_DATE','

    *Picture Date: (dd/mm/yyyy) ','M','Picture Date','DatCheckNew','2007-09-13','2007-10-04',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,4,'DEMOPIC_KW','

    Keywords:
    (one keyword/key-phrase per line)
    ','O','Picture Keywords','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,5,'DEMOPIC_DESCR','

    Picture Description:
    ','O','Picture Description','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,6,'DEMOPIC_ADD_RN','

    Your picture will be given a reference number automatically.
    However, if the picture has other reference numbers, please enter them here:
    (one per line)
    ','O','Additional Reference Numbers','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,7,'DEMOPIC_NOTE','

    Additional Comments or Notes about the Picture:
    ','O','Picture Notes or Comments','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,8,'Upload_Photos','

    Select the photo(s) to upload:
    ','O','Picture File','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPIC',1,9,'DEMOPIC_FINISH','

    ','O','','','2007-09-13','2007-09-13',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOPIC',1,1,'DEMOPIC_RN','

    Modify a picture\'s bibliographic information:

    *Picture Reference Number:  ','M','Reference Number','','2007-10-04','2007-10-04',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOPIC',1,2,'DEMOPIC_CHANGE','

    *Choose the fields to be modified:
    ','M','Fields to Modify','','2007-10-04','2007-10-04',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOPIC',1,3,'DEMOPIC_CONT','

    ','O','','','2007-10-04','2007-10-04',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SRVDEMOPIC',1,1,'DEMOPIC_RN','

    Revise/add pictures:

    *Picture Reference Number:  ','M','Reference Number','','2009-04-09','2009-04-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SRVDEMOPIC',1,2,'DEMOPIC_CONT','

    ','O','','','2009-04-09','2009-04-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,1,'DEMOTHE_REP','

    Submit an ATLANTIS Thesis:

    Your thesis will be given a reference number automatically.
    However, if it has other reference numbers, please enter them here:
    (one per line)
    ','O','Other Report Numbers','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,2,'DEMOTHE_TITLE','

    *Thesis Title:
    ','M','Title','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,3,'DEMOTHE_SUBTTL','

    Thesis Subtitle (if any):
    ','O','Subtitle','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,4,'DEMOTHE_AU','

    *Author of the Thesis: (one per line)
    ','M','Author(s)','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,5,'DEMOTHE_SUPERV','

    Thesis Supervisor(s): (one per line)
    ','O','Thesis Supervisor(s)','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,6,'DEMOTHE_ABS','

    *Abstract:
    ','M','Abstract','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,7,'DEMOTHE_NUMP','

    Number of Pages: ','O','Number of Pages','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,8,'DEMOTHE_LANG','

    *Language: ','M','Thesis Language','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,9,'DEMOTHE_PUBL','

    *Thesis Publisher (or Institute): ','M','Thesis Publisher/University','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,10,'DEMOTHE_PLDEF',' at *Place/Town: ','M','Place of Thesis Defence','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,11,'DEMOTHE_DIPL','

    *Diploma Awarded: ','M','Diploma Awarded','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,12,'DEMOTHE_DATE','

    *Thesis Defence date (dd/mm/yyyy): ','M','Date of Thesis Defence','DatCheckNew','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,13,'DEMOTHE_UNIV','
    *Awarding University: ','M','Awarding University','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,14,'DEMOTHE_PLACE',' at *Place/Town: ','M','Awarding University town','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,15,'DEMOTHE_FILE','

    *Enter the full path to the source file to upload:
    ','M','Source File','','2008-03-02','2008-03-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOTHE',1,16,'DEMOTHE_END','


    ','O','','','2008-03-02','2008-03-02',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOTHE',1,1,'DEMOTHE_RN','

    Modify a thesis\' bibliographic information:

    *Thesis Reference Number:  ','M','Reference Number','','2008-03-05','2008-03-05',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOTHE',1,2,'DEMOTHE_CHANGE','

    *Choose the fields to be modified:
    ','M','Fields to Modify','','2008-03-05','2008-03-05',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOTHE',1,3,'DEMOTHE_CONT','

    ','O','','','2008-03-05','2008-03-05',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,1,'DEMOART_REP','

    Submit an ATLANTIS Article:

    Your document will be given a reference number automatically.
    However, if it has other reference numbers, please enter them here:
    (one per line)
    ','O','Other Report Numbers','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,2,'DEMOART_TITLE','

    *Document Title:
    ','M','Title','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,3,'DEMOART_AU','

    *Author of the Document: (one per line)
    ','M','Author(s)','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,4,'DEMOART_ABS','

    *Abstract:
    ','M','Abstract','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,5,'DEMOART_NUMP','

    Number of Pages: ','O','Number of Pages','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,6,'DEMOART_LANG','

    *Language: ','O','Language','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,7,'DEMOART_DATE','

    *Date of Document: (dd/mm/yyyy) ','M','Date of Document','DatCheckNew','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,8,'DEMOART_KW','

    Keywords/Key-phrases: (one per line)
    ','O','Keywords/Key-phrases','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,9,'DEMOART_NOTE','

    Additional Notes or Comments:
    ','O','Notes/Comments','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,10,'DEMOART_FILE','

    *Enter the full path to the source file to upload:
    ','M','Source File','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOART',1,11,'DEMOART_END','


    ','O','','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOART',1,1,'DEMOART_RN','

    Modify an article\'s bibliographic information:

    *Document Reference Number:  ','M','Reference Number','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOART',1,2,'DEMOART_CHANGE','

    *Choose the fields to be modified:
    ','M','Fields to Modify','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOART',1,3,'DEMOART_CONT','

    ','O','','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,1,'DEMOBOO_REP','

    Submit an ATLANTIS Book:

    Your book will be given a reference number automatically.
    However, if it has other reference numbers, please enter them here:
    (one per line)
    ','O','Other Report Numbers','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,2,'DEMOBOO_TITLE','

    *Book Title:
    ','M','Title','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,3,'DEMOBOO_AU','

    *Author of the Book: (one per line)
    ','M','Author(s)','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,4,'DEMOBOO_ABS','

    *Abstract:
    ','M','Abstract','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,5,'DEMOBOO_NUMP','

    Number of Pages: ','O','Number of Pages','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,6,'DEMOBOO_LANG','

    *Language: ','O','Language','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,7,'DEMOBOO_DATE','

    *Date of the Book: (dd/mm/yyyy) ','M','Date of Document','DatCheckNew','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,8,'DEMOBOO_KW','

    Keywords/Key-phrases: (one per line)
    ','O','Keywords/Key-phrases','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,9,'DEMOBOO_NOTE','

    Additional Notes or Comments:
    ','O','Notes/Comments','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,10,'DEMOBOO_FILE','

    Enter the full path to the source file to upload:
    ','O','Source File','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOBOO',1,11,'DEMOBOO_END','


    ','O','','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOBOO',1,1,'DEMOBOO_RN','

    Modify a book\'s bibliographic information:

    *Book Reference Number:  ','M','Reference Number','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOBOO',1,2,'DEMOBOO_CHANGE','

    *Choose the fields to be modified:
    ','M','Fields to Modify','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOBOO',1,3,'DEMOBOO_CONT','

    ','O','','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('APPDEMOBOO',1,1,'DEMOBOO_RN','

    Approve or reject an ATLANTIS book:

    *Book Reference Number:  ','M','Reference Number','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('APPDEMOBOO',1,2,'DEMOBOO_DECSN','

    *Decision:
    \r\n','M','Decision','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('APPDEMOBOO',1,3,'DEMOBOO_COMNT','

    Comments on Decision:
    \r\n','O','Referee\'s Comments','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('APPDEMOBOO',1,4,'DEMOBOO_REGB','

    ','O','','','2008-03-07','2008-03-07',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',1,1,'DEMOPOE_TITLE','

    Submit an ATLANTIS Poem:

    *Poem Title:
    ','M','>Title','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',1,2,'DEMOPOE_AU','

    *Author(s) of the Poem: (one per line)
    ','M','Author(s)','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',1,3,'DEMOPOE_LANG','

    *Poem Language: ','M','Language','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',1,4,'DEMOPOE_YEAR','*Year of the Poem: ','M','Poem Year','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',1,5,'DEMOPOE_DUMMY','','O','','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',2,1,'DEMOPOE_ABS','


    *Poem Text:
    ','M','Abstract','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOPOE',2,2,'DEMOPOE_END','


    ','O','','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOPOE',1,1,'DEMOPOE_RN','

    Modify a poem\'s bibliographic information:

    *Poem Reference Number:  ','M','Reference Number','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOPOE',1,2,'DEMOPOE_CHANGE','

    *Choose the fields to be modified:
    ','M','Fields to Modify','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOPOE',1,3,'DEMOPOE_CONT','

    ','O','','','2008-03-12','2008-03-12',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,13,'DEMOJRN_ENDING','
    ','O','','','2009-02-20','2009-02-20',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOJRN',1,3,'DEMOJRN_CONT','

    ','O','','','2008-10-06','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOJRN',1,2,'DEMOJRN_CHANGE','','O','','','2009-01-09','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('MBIDEMOJRN',1,1,'DEMOJRN_RN','

    Update a journal article:

    *Document Reference Number:  ','M','','','2008-10-06','2008-10-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,3,'DEMOJRN_ISSUES','
    *Order(s) (digit) and issue(s) (xx/YYYY) of the article:
    ','O','Order and issue numbers','','2009-02-20','2009-02-20',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,2,'DEMOJRN_TYPE','

    Submit an Atlantis Times article:
    *Status:
    ','O','Status:','','2009-02-20','2009-02-20',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,5,'DEMOJRN_EMAIL','


    E-mail(s) of the author(s): (one per line)
    ','O','E-mail of the author(s): (one per line)','','2008-09-26','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,9,'DEMOJRN_ABSF','

    French article:
    ','O','French article:','','2008-09-26','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,7,'DEMOJRN_TITLEF','


    French title:
    ','O','French title:','','2008-09-26','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,4,'DEMOJRN_AU','


    Author(s): (one per line)
    ','O','Author(s)','','2008-09-26','2009-02-20',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,6,'DEMOJRN_TITLEE','


    English title:
    ','O','English title:','','2008-09-26','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,10,'DEMOJRN_IN','','O','Journal Name','','2008-09-26','2009-02-06',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,12,'DEMOJRN_END','
    ','O','','','2008-09-26','2009-02-20',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,8,'DEMOJRN_ABSE','

    English article:
    ','O','English article:','','2008-11-04','2009-01-09',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOJRN',1,14,'DEMOJRN_CATEG','','O','comboDEMOJRN-like for MBI','','2009-10-15','2009-10-15',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOVID',1,1,'DEMOVID_SINGLE','','O','','','2012-02-16','2012-02-16',NULL,NULL); INSERT INTO sbmFIELD VALUES ('SBIDEMOVID',1,2,'DEMOVID_SUBMIT','','O','','','2012-02-16','2012-02-16',NULL,NULL); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_TITLE',NULL,'245__a','T',NULL,5,60,NULL,NULL,NULL,'2007-09-13','2007-09-13',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_PHOTOG',NULL,'100__a','T',NULL,6,30,NULL,NULL,NULL,'2007-09-13','2007-09-19','

    Picture Author(s) or Photographers(s)
    (optional)(one per line):
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_DATE',NULL,'260__c','I',10,NULL,NULL,NULL,NULL,NULL,'2007-09-13','2007-09-19','

    Date of the picture (dd/mm/yyyy): ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_KW',NULL,'6531_a','T',NULL,2,50,NULL,NULL,NULL,'2007-09-13','2007-09-13','

    Keywords
    (Optional, one keyword/key-phrase per line):
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_DESCR',NULL,'520__a','T',NULL,12,80,NULL,NULL,NULL,'2007-09-13','2007-09-13','

    Picture Description:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_ADD_RN',NULL,'088__a','T',NULL,4,30,NULL,NULL,NULL,'2007-09-13','2007-09-13','

    Additional Reference Numbers:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_NOTE',NULL,'500__a','T',NULL,6,60,NULL,NULL,NULL,'2007-09-13','2007-09-13','

    Additional Comments or Notes about the Picture:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_FILE',NULL,'','F',40,NULL,NULL,NULL,NULL,NULL,'2007-09-13','2007-09-13',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_FINISH',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2007-09-13','2007-09-13',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_CHANGE',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'','2007-10-04','2007-10-04',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_RN',NULL,'037__a','I',30,NULL,NULL,NULL,'DEMO-PICTURE---???',NULL,'2007-10-04','2007-10-04',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPIC_CONT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2007-10-04','2007-10-04',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_REP',NULL,'088__a','T',NULL,4,30,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Other Report Numbers (one per line):',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_TITLE',NULL,'245__a','T',NULL,5,60,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Title:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_SUBTTL',NULL,'245__b','T',NULL,3,60,NULL,NULL,NULL,'2008-03-02','2008-03-02','

    Thesis Subtitle (if any):
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_AU',NULL,'100__a','T',NULL,6,60,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Authors:
    (one per line):
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_SUPERV',NULL,'','T',NULL,6,60,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Thesis Supervisor(s)
    (one per line):
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_ABS',NULL,'520__a','T',NULL,12,80,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Abstract:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_NUMP',NULL,'300__a','I',5,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-06','
    Number of Pages: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_LANG',NULL,'041__a','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-02','2008-03-02','

    Select the Language: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_PUBL',NULL,'','I',35,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Thesis Publisher (or University): ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_PLDEF',NULL,'','I',20,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-02','

    Place of Thesis Defence:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_DIPL',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-02','2008-03-02','

    Diploma Awarded:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_DATE',NULL,'269__c','I',10,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Date: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_UNIV',NULL,'502__b','I',30,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-02','
    Awarding University:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_PLACE',NULL,'','I',20,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-02',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_FILE',NULL,'','F',60,NULL,NULL,NULL,NULL,NULL,'2008-03-02','2008-03-02',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_END',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-02','2008-03-02',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_RN',NULL,'037__a','I',30,NULL,NULL,NULL,'DEMO-THESIS--???',NULL,'2008-03-05','2008-03-05',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_CHANGE',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-05','2008-03-06',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOTHE_CONT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-05','2008-03-05',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_ABS',NULL,'520__a','T',NULL,12,80,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Abstract:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_AU',NULL,'100__a','T',NULL,6,60,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Authors: (one per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_CHANGE',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_CONT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_DATE',NULL,'269__c','I',10,NULL,NULL,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Date: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_END',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_FILE',NULL,'','F',60,NULL,NULL,NULL,NULL,NULL,'2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_KW',NULL,'6531_a','T',NULL,4,50,NULL,NULL,NULL,'2008-03-07','2008-03-07','

    Keywords:
    (one keyword/key-phrase per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_LANG',NULL,'041__a','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-07','2008-03-07','

    Select the Language: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_NOTE',NULL,'500__a','T',NULL,6,60,NULL,NULL,NULL,'2008-03-07','2008-03-07','

    Additional Comments or Notes:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_NUMP',NULL,'300__a','I',5,NULL,NULL,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Number of Pages: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_REP',NULL,'088__a','T',NULL,4,30,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Other Report Numbers (one per line):',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_RN',NULL,'037__a','I',35,NULL,NULL,NULL,'DEMO---???',NULL,'2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOART_TITLE',NULL,'245__a','T',NULL,5,60,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Title:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_ABS',NULL,'520__a','T',NULL,12,80,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Abstract:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_AU',NULL,'100__a','T',NULL,6,60,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Authors: (one per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_CHANGE',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_CONT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_DATE',NULL,'269__c','I',10,NULL,NULL,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Date: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_END',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_FILE',NULL,'','F',60,NULL,NULL,NULL,NULL,NULL,'2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_KW',NULL,'6531_a','T',NULL,4,50,NULL,NULL,NULL,'2008-03-07','2008-03-07','

    Keywords:
    (one keyword/key-phrase per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_LANG',NULL,'041__a','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-07','2008-03-07','

    Select the Language: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_NOTE',NULL,'500__a','T',NULL,6,60,NULL,NULL,NULL,'2008-03-07','2008-03-07','

    Additional Comments or Notes:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_NUMP',NULL,'300__a','I',5,NULL,NULL,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Number of Pages: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_REP',NULL,'088__a','T',NULL,4,30,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Other Report Numbers (one per line):',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_RN',NULL,'037__a','I',35,NULL,NULL,NULL,'DEMO-BOOK--???',NULL,'2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_TITLE',NULL,'245__a','T',NULL,5,60,NULL,NULL,NULL,'2008-03-07','2008-03-07','
    Title:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_COMNT',NULL,'','T',NULL,6,60,NULL,NULL,NULL,'2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_DECSN',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'\r\n','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOBOO_REGB',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-07','2008-03-07',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_ABS',NULL,'520__a','T',NULL,20,80,NULL,NULL,NULL,'2008-03-12','2008-03-12','
    Abstract:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_AU',NULL,'100__a','T',NULL,6,60,NULL,NULL,NULL,'2008-03-12','2008-03-12','
    Authors: (one per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_CHANGE',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'\r\n','2008-03-12','2008-03-12',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_CONT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-03-12','2008-03-12',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_DUMMY',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'


    ','2008-03-12','2008-03-12',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_END',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'

    \r\n\r\n
    ','2008-03-12','2008-03-12',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_LANG',NULL,'041__a','S',NULL,NULL,NULL,NULL,NULL,'','2008-03-12','2008-03-12','

    Select the Language: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_RN',NULL,'037__a','I',35,NULL,NULL,NULL,'DEMO-POETRY--???',NULL,'2008-03-12','2008-03-12',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_TITLE',NULL,'245__a','T',NULL,5,60,NULL,NULL,NULL,'2008-03-12','2008-03-12','
    Title:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOPOE_YEAR',NULL,'909C0y','I',4,NULL,NULL,4,NULL,NULL,'2008-03-12','2008-03-12','

    Year: ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_CHANGE',NULL,'','S',NULL,NULL,NULL,NULL,NULL,'','2009-01-09','2009-02-20',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_TYPE',NULL,'691__a','S',NULL,NULL,NULL,NULL,NULL,'[?]','2008-12-04','2009-02-20','

    Update an Atlantis Times article:
    *Status:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_AU',NULL,'100__a','T',NULL,4,60,NULL,NULL,NULL,'2008-09-23','2009-02-20','


    Author(s): (one per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_EMAIL',NULL,'859__a','T',NULL,4,60,NULL,NULL,NULL,'2008-09-23','2009-02-20','


    E-mail(s) of the author(s): (one per line)
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_TITLEE',NULL,'245__a','T',NULL,5,60,NULL,NULL,NULL,'2008-09-23','2009-02-20','


    English title:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_TITLEF',NULL,'246_1a','T',NULL,5,60,NULL,NULL,NULL,'2008-09-23','2009-02-20','


    French title:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_ABSF',NULL,'590__b','R',NULL,100,90,NULL,NULL,'from invenio.htmlutils import get_html_text_editor\r\nfrom invenio.config import CFG_SITE_URL\r\nfrom invenio.search_engine_utils import get_fieldvalues\r\nimport os\r\n\r\nif (\'modify\' in curdir) and not os.path.exists(\"%s/DEMOJRN_ABSF\" % curdir):\r\n try:\r\n content = get_fieldvalues(int(sysno), \'590__b\')[0]\r\n except:\r\n content = \'\'\r\nelif os.path.exists(\"%s/DEMOJRN_ABSE\" % curdir):\r\n content = file(\"%s/DEMOJRN_ABSE\" % curdir).read()\r\nelse:\r\n content = \'\'\r\n\r\ntext = get_html_text_editor(\"DEMOJRN_ABSF\", id=\"BulletinCKEditor1\", content=content, toolbar_set=\"WebJournal\", width=\'522px\', height=\'700px\', file_upload_url=CFG_SITE_URL + \'/submit/attachfile\', custom_configurations_path=\'/ckeditor/journal-editor-config.js\')','2008-09-23','2009-02-23','

    French Article:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_CONT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-10-06','2008-10-06',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_END',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2008-09-23','2009-02-20','
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_ISSUES',NULL,'','R',NULL,NULL,NULL,NULL,NULL,'from invenio.search_engine_utils import get_fieldvalues\r\nfrom invenio.webjournal_utils import get_next_journal_issues, get_current_issue, get_journal_issue_grouping\r\nimport os\r\n\r\norders_and_issues = [(\'\',\'\')]*4\r\n\r\nif (\'modify\' in curdir) and not os.path.exists(\"%s/DEMOJRN_ISSUE1\" % curdir):\r\n try:\r\n orders = get_fieldvalues(int(sysno), \'773__c\')\r\n issues = get_fieldvalues(int(sysno), \'773__n\')\r\n orders_and_issues = zip(orders, issues) + orders_and_issues\r\n except:\r\n pass\r\nelif (\'running\' in curdir) and not os.path.exists(\"%s/DEMOJRN_ISSUE1\" % curdir):\r\n try:\r\n journal_name = \'AtlantisTimes\'\r\n current_issue = get_current_issue(\'en\', journal_name)\r\n nb_issues = get_journal_issue_grouping(journal_name)\r\n next_issue_numbers = get_next_journal_issues(current_issue, journal_name, nb_issues)\r\n orders_and_issues = zip([\'\']*4, next_issue_numbers) + orders_and_issues\r\n except:\r\n pass\r\nissues_fields = []\r\nsingle_issue_and_order_tmpl = \'\'\'\r\n\r\n\'\'\'\r\ni = 1\r\nfor order_and_issue in orders_and_issues[:4]:\r\n order = order_and_issue[0]\r\n issue = order_and_issue[1]\r\n issues_fields.append(single_issue_and_order_tmpl % (i, order, i, issue))\r\n i += 1\r\n\r\ntext = \'
    \'.join(issues_fields)\r\n','2009-02-20','2009-02-23','
    *Order(s) (digit) and issue(s) (xx/YYYY) of the article:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_RN',NULL,'037__a','I',35,NULL,NULL,NULL,'BUL---???',NULL,'2008-10-06','2009-02-20',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_IN',NULL,'595__a','H',NULL,NULL,NULL,NULL,'Atlantis Times',NULL,'2008-09-23','2009-02-20',' ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_ABSE',NULL,'520__b','R',NULL,100,90,NULL,NULL,'from invenio.htmlutils import get_html_text_editor\r\nfrom invenio.config import CFG_SITE_URL\r\nfrom invenio.search_engine_utils import get_fieldvalues\r\nimport os\r\n\r\n\r\nif (\'modify\' in curdir) and not os.path.exists(\"%s/DEMOJRN_ABSE\" % curdir):\r\n try:\r\n content = get_fieldvalues(int(sysno), \'520__b\')[0]\r\n except:\r\n content = \'\'\r\nelif os.path.exists(\"%s/DEMOJRN_ABSE\" % curdir):\r\n content = file(\"%s/DEMOJRN_ABSE\" % curdir).read()\r\nelse:\r\n content = \'\'\r\n\r\ntext = get_html_text_editor(\"DEMOJRN_ABSE\",id=\"BulletinCKEditor2\", content=content, toolbar_set=\"WebJournal\", width=\'522px\', height=\'700px\', file_upload_url=CFG_SITE_URL + \'/submit/attachfile\', custom_configurations_path=\'/ckeditor/journal-editor-config.js\')\r\n\r\n','2008-09-22','2009-02-23','

    English Article:
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_ENDING',NULL,'','H',NULL,NULL,NULL,NULL,NULL,NULL,'2009-02-06','2009-02-20','
    ',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOJRN_CATEG',NULL,'','R',NULL,NULL,NULL,NULL,NULL,'# Solve usual problem with submit/direct?.. links that bypass \r\n# the comboXXX (category selection) of the submission. Retrieve \r\n# the value, and set it (only in the case of MBI)\r\n\r\nfrom invenio.search_engine_utils import get_fieldvalues\r\n\r\nif \"modify\" in curdir:\r\n try:\r\n comboDEMOJRNfile = file(\"%s/%s\" % (curdir,\'comboDEMOJRN\'), \'w\')\r\n report_number = get_fieldvalues(int(sysno), \'037__a\')[0]\r\n category = report_number.split(\'-\')[1]\r\n comboDEMOJRNfile.write(category)\r\n comboDEMOJRNfile.close()\r\n except:\r\n text = \'\'','2009-10-15','2009-10-15',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_ASPECT',NULL,'','R',NULL,NULL,NULL,NULL,NULL,'from invenio.bibencode_websubmit import websumbit_aspect_ratio_form_element\r\n\r\ntext = websumbit_aspect_ratio_form_element(curdir, doctype, uid, access)','2012-02-16','2012-02-16','Aspect Ratio',NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_AU',NULL,'100__a','T',NULL,6,80,NULL,NULL,NULL,'2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_DESCR',NULL,'520__a','T',NULL,12,80,NULL,NULL,NULL,'2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_FILE',NULL,'','F',NULL,NULL,NULL,NULL,NULL,NULL,'2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_SINGLE',NULL,'','R',NULL,NULL,NULL,NULL,NULL,'from invenio.bibencode_websubmit import (get_session_id, websubmit_singlepage)\r\n\r\n# Retrieve session id\r\ntry:\r\n # User info is defined only in MBI/MPI actions...\r\n session_id = get_session_id(None, uid, user_info) \r\nexcept:\r\n session_id = get_session_id(req, uid, {})\r\n\r\ntext = websubmit_singlepage(curdir, doctype, uid, access, session_id)','2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_SUBMIT',NULL,'','D',NULL,NULL,NULL,NULL,NULL,'
    \r\n\r\n
    ','2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_TITLE',NULL,'245__a','I',NULL,NULL,NULL,NULL,NULL,NULL,'2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFIELDDESC VALUES ('DEMOVID_YEAR',NULL,'909C0y','I',4,NULL,NULL,4,NULL,NULL,'2012-02-16','2012-02-16',NULL,NULL,0); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Mail_Submitter',70,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Print_Success',60,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Move_Photos_to_Storage',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Insert_Record',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Make_Record',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Move_to_Done',80,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPIC','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Create_Modify_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Get_Recid',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Is_Original_Submitter',30,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Move_Photos_to_Storage',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Print_Success_MBI',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Send_Modify_Mail',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPIC','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Create_Upload_Files_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Move_to_Done',60,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Print_Success',50,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Mail_Submitter',40,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Move_Uploaded_Files_to_Storage',30,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Is_Original_Submitter',20,2); INSERT INTO sbmFUNCTIONS VALUES ('SRV','DEMOPIC','Get_Recid',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Move_to_Done',90,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Mail_Submitter',80,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Make_Record',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Insert_Record',60,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Print_Success',70,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Move_Files_to_Storage',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Stamp_Uploaded_Files',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOTHE','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Create_Modify_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Move_to_Done',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Send_Modify_Mail',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Print_Success_MBI',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Is_Original_Submitter',30,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Get_Recid',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOTHE','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOART','Print_Success',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOART','Insert_Record',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOART','Make_Record',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOART','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOART','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOART','Mail_Submitter',60,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Create_Modify_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Move_to_Done',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Send_Modify_Mail',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Print_Success_MBI',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Is_Original_Submitter',30,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Get_Recid',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOART','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Create_Modify_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Send_Modify_Mail',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Print_Success_MBI',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Move_Uploaded_Files_to_Storage',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Is_Original_Submitter',30,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Get_Recid',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOBOO','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Test_Status',20,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Is_Referee',30,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','CaseEDS',40,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Send_APP_Mail',90,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Print_Success_APP',80,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Update_Approval_DB',70,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Insert_Record',60,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Print_Success_APP',60,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Send_APP_Mail',70,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Move_From_Pending',20,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Recid',30,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Info',40,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Report_Number',10,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Update_Approval_DB',50,3); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Move_to_Done',80,3); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Move_to_Pending',90,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Print_Success',80,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Send_Approval_Request',70,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Update_Approval_DB',60,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Mail_Submitter',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Move_Files_to_Storage',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Make_Dummy_MARC_XML_Record',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOBOO','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Make_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Info',40,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Recid',30,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Move_From_Pending',20,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('APP','DEMOBOO','Move_to_Done',100,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Make_Record',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Insert_Record',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Print_Success',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Mail_Submitter',60,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOPOE','Move_to_Done',70,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Is_Original_Submitter',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Create_Modify_Interface',40,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Move_to_Done',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Print_Success_MBI',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Is_Original_Submitter',30,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Get_Recid',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOPOE','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Move_to_Done',80,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Mail_Submitter',70,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Print_Success',60,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Insert_Record',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Make_Record',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Move_CKEditor_Files_to_Storage',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOJRN','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Get_Report_Number',10,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Get_Recid',20,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Create_Modify_Interface',30,1); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Move_to_Done',90,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Send_Modify_Mail',80,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Print_Success_MBI',70,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Move_Files_to_Storage',60,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Insert_Modify_Record',50,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Make_Modify_Record',40,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Move_CKEditor_Files_to_Storage',30,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Get_Recid',20,2); INSERT INTO sbmFUNCTIONS VALUES ('MBI','DEMOJRN','Get_Report_Number',10,2); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Create_Recid',10,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Insert_Record',40,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Mail_Submitter',60,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Make_Record',30,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Print_Success',50,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Report_Number_Generation',20,1); INSERT INTO sbmFUNCTIONS VALUES ('SBI','DEMOVID','Video_Processing',70,1); INSERT INTO sbmIMPLEMENT VALUES ('DEMOPIC','SBI','Y','SBIDEMOPIC',1,'2007-09-13','2007-10-04',1,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOPIC','MBI','Y','MBIDEMOPIC',1,'2007-10-04','2007-10-04',2,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOPIC','SRV','Y','SRVDEMOPIC',1,'2009-04-09','2009-04-09',3,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOTHE','SBI','Y','SBIDEMOTHE',1,'2008-03-02','2008-03-05',1,'','1',1,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOTHE','MBI','Y','MBIDEMOTHE',1,'2008-03-05','2008-03-05',2,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOART','SBI','Y','SBIDEMOART',1,'2008-03-06','2008-03-07',1,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOART','MBI','Y','MBIDEMOART',1,'2008-03-07','2008-03-07',2,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOBOO','SBI','Y','SBIDEMOBOO',1,'2008-03-06','2008-03-07',1,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOBOO','MBI','Y','MBIDEMOBOO',1,'2008-03-07','2008-03-07',2,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOBOO','APP','Y','APPDEMOBOO',1,'2002-05-06','2002-05-28',3,'0','0',0,1,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOPOE','SBI','Y','SBIDEMOPOE',2,'2008-03-12','2008-03-12',1,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOPOE','MBI','Y','MBIDEMOPOE',1,'2008-03-12','2008-03-12',2,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOJRN','SBI','Y','SBIDEMOJRN',1,'2008-09-18','2009-02-23',1,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOJRN','MBI','Y','MBIDEMOJRN',1,'2008-09-18','2009-02-23',2,'','',0,0,''); INSERT INTO sbmIMPLEMENT VALUES ('DEMOVID','SBI','Y','SBIDEMOVID',1,'2012-02-16','2012-02-16',1,'','',0,0,''); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','authorfile','DEMOPIC_PHOTOG'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','counterpath','lastid_DEMOPIC_categ_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','createTemplate','DEMOPICcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','documenttype','picture'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','edsrn','DEMOPIC_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','fieldnameMBI','DEMOPIC_CHANGE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','iconsize','180>,700>'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','modifyTemplate','DEMOPICmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','paths_and_suffixes','{\"DEMOPIC_FILE\":\"\"}'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','rename','file:DEMOPIC_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','rnformat','DEMO-PICTURE-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','rnin','comboDEMOPIC'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','sourceDoc','photos'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','sourceTemplate','DEMOPIC.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','titleFile','DEMOPIC_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','doctypes','DEMOPIC_FILE=Picture|Additional=Additional Document'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canReviseDoctypes','*'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','maxFilesDoctypes','Additional=1'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canNameNewFiles','1'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canRenameDoctypes',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canCommentDoctypes','*'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canAddFormatDoctypes','DEMOPIC_FILE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','showLinks','1'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','keepDefault','1'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','restrictions','=Public|restricted_picture=Private'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canRestrictDoctypes','*'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','canDeleteDoctypes','*'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','createIconDoctypes','*'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPIC','forceFileRevision',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','counterpath','lastid_DEMOTHE_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','edsrn','DEMOTHE_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','rnformat','DEMO-THESIS-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','rnin','comboDEMOTHE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','files_to_be_stamped','DEMOTHE_FILE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','latex_template','demo-stamp-left.tex'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','stamp','first'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','latex_template_vars','{\'REPORTNUMBER\':\'FILE:DEMOTHE_RN\',\'DATE\':\'FILE:DEMOTHE_DATE\'}'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','createTemplate','DEMOTHEcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','sourceTemplate','DEMOTHE.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','documenttype','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','iconsize','180>,700>'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','paths_and_suffixes','{\"DEMOTHE_FILE\":\"\"}'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','rename','file:DEMOTHE_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','newrnin',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','authorfile','DEMOTHE_AU'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','titleFile','DEMOTHE_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','fieldnameMBI','DEMOTHE_CHANGE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','modifyTemplate','DEMOTHEmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOTHE','sourceDoc','Thesis'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','authorfile','DEMOART_AU'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','counterpath','lastid_DEMOART_categ_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','createTemplate','DEMOARTcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','documenttype','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','edsrn','DEMOART_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','fieldnameMBI','DEMOART_CHANGE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','iconsize','180'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','modifyTemplate','DEMOARTmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','newrnin',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','paths_and_suffixes','{\"DEMOART_FILE\":\"\"}'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','rename','file:DEMOART_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','rnformat','DEMO-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','rnin','comboDEMOART'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','sourceDoc','Textual Document'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','sourceTemplate','DEMOART.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','titleFile','DEMOART_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOART','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','counterpath','lastid_DEMOBOO_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','edsrn','DEMOBOO_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','rnformat','DEMO-BOOK-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','rnin','comboDEMOBOO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','status','APPROVAL'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','authorfile','DEMOBOO_AU'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','titleFile','DEMOBOO_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','categformatDAM',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','addressesDAM',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','directory','DEMOBOO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','fieldnameMBI','DEMOBOO_CHANGE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','modifyTemplate','DEMOBOOmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','sourceTemplate','DEMOBOO.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','sourceDoc','BOOK'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','casevalues','approve,reject'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','casesteps','2,3'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','casevariable','DEMOBOO_DECSN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','casedefault',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','categformatAPP',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','addressesAPP',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','createTemplate','DEMOBOOcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','documenttype','fulltext'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','iconsize','180>,700>'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','paths_and_suffixes','{\"DEMOBOO_FILE\":\"\"}'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','rename','file:DEMOBOO_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','dummyrec_source_tpl','DEMOBOO.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','dummyrec_create_tpl','DEMOBOOcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','decision_file','DEMOBOO_DECSN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','comments_file','DEMOBOO_COMNT'); INSERT INTO sbmPARAMETERS VALUES ('DEMOBOO','elementNameToDoctype','DEMOBOO_FILE=DEMOBOO_FILE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','authorfile','DEMOPOE_AU'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','counterpath','lastid_DEMOPOE_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','createTemplate','DEMOPOEcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','edsrn','DEMOPOE_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','fieldnameMBI','DEMOPOE_CHANGE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','modifyTemplate','DEMOPOEmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','newrnin',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','rnformat','DEMO-POETRY-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','rnin','comboDEMOPOE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','sourceDoc','Poem'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','sourceTemplate','DEMOPOE.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','titleFile','DEMOPOE_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOPOE','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','record_search_pattern','collection:ATLANTISTIMES*'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','paths_and_suffixes','{\'image\':\"image\", \'file\':\"file\", \'flash\':\"flash\", \'media\':\'media\'}'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','documenttype','picture'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','rename',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','addressesMBI',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','sourceTemplate','DEMOJRN.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','edsrn','DEMOJRN_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','modifyTemplate','DEMOJRNmodify.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','iconsize','300>'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','createTemplate','DEMOJRNcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','newrnin',''); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','titleFile','DEMOJRN_TITLEE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','authorfile','DEMOJRN_AU'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','fieldnameMBI','DEMOJRN_CHANGE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','sourceDoc','Textual Document'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','counterpath','lastid_DEMOJRN_categ_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','rnformat','BUL-categ-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','rnin','comboDEMOJRN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','yeargen','AUTO'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','input_fields','DEMOJRN_ABSE,DEMOJRN_ABSF'); INSERT INTO sbmPARAMETERS VALUES ('DEMOJRN','files','DEMOJRN_ABSE,DEMOJRN_ABSF'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','aspect','DEMOVID_ASPECT'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','authorfile','DEMOVID_AU'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','autorngen','Y'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','counterpath','lastid_DEMOVID_yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','createTemplate','DEMOVIDcreate.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','edsrn','DEMOVID_RN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','emailFile','SuE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','newrnin','NEWRN'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','rnformat','DEMO-VIDEO-yy'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','rnin','comboDEMOVID'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','sourceTemplate','DEMOVID.tpl'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','status','ADDED'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','title','DEMOVID_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','titleFile','DEMOVID_TITLE'); INSERT INTO sbmPARAMETERS VALUES ('DEMOVID','yeargen','AUTO'); 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 rnkMETHOD (id,name,last_updated) VALUES (3,'citation','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (1,3,10); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (15,3,80); INSERT INTO rnkMETHOD (id,name,last_updated) VALUES (4,'citerank_citation_t','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (15,4,70); INSERT INTO rnkMETHOD (id,name,last_updated) VALUES (5,'citerank_pagerank_c','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (15,5,60); INSERT INTO rnkMETHOD (id,name,last_updated) VALUES (6,'citerank_pagerank_t','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (15,6,50); INSERT INTO rnkMETHOD (id,name,last_updated) VALUES (7,'selfcites','0000-00-00 00:00:00'); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (1,7,10); INSERT INTO collection_rnkMETHOD (id_collection,id_rnkMETHOD,score) VALUES (15,7,80); INSERT INTO externalcollection (id, name) VALUES (1, 'Amazon'); INSERT INTO externalcollection (id, name) VALUES (2, 'CERN EDMS'); INSERT INTO externalcollection (id, name) VALUES (3, 'CERN Indico'); INSERT INTO externalcollection (id, name) VALUES (4, 'CERN Intranet'); INSERT INTO externalcollection (id, name) VALUES (5, 'CiteSeer'); INSERT INTO externalcollection (id, name) VALUES (6, 'Google Books'); INSERT INTO externalcollection (id, name) VALUES (7, 'Google Scholar'); INSERT INTO externalcollection (id, name) VALUES (8, 'Google Web'); INSERT INTO externalcollection (id, name) VALUES (9, 'IEC'); INSERT INTO externalcollection (id, name) VALUES (10, 'IHS'); INSERT INTO externalcollection (id, name) VALUES (11, 'INSPEC'); INSERT INTO externalcollection (id, name) VALUES (12, 'ISO'); INSERT INTO externalcollection (id, name) VALUES (13, 'KISS Books/Journals'); INSERT INTO externalcollection (id, name) VALUES (14, 'KISS Preprints'); INSERT INTO externalcollection (id, name) VALUES (15, 'NEBIS'); INSERT INTO externalcollection (id, name) VALUES (16, 'SLAC Library Catalog'); INSERT INTO externalcollection (id, name) VALUES (17, 'INSPIRE'); INSERT INTO externalcollection (id, name) VALUES (18, 'Scirus'); INSERT INTO externalcollection (id, name) VALUES (19, 'Atlantis Institute Books'); INSERT INTO externalcollection (id, name) VALUES (20, 'Atlantis Institute Articles'); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (1,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,3,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,5,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,13,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,14,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,17,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,18,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (2,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (3,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (4,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (5,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,3,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,5,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,13,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,14,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,17,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,18,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (6,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (7,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (8,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (9,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (10,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (11,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (12,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (13,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (14,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,3,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,5,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,13,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,14,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,17,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,18,2); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (15,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (16,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (17,20,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,1,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,2,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,3,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,4,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,5,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,6,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,7,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,8,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,9,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,10,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,11,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,12,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,13,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,14,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,15,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,16,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,17,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,18,1); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,19,0); INSERT INTO collection_externalcollection (id_collection,id_externalcollection,type) VALUES (18,20,0); INSERT INTO knwKB VALUES ('1','DBCOLLID2COLL','DbCollID to Coll name correspondance.', NULL); INSERT INTO knwKB VALUES ('2','EJOURNALS','Knowledge base of all known electronic journals. Useful for reference linking.', NULL); INSERT INTO knwKB VALUES ('3','DBCOLLID2BIBTEX','Mapping between the 980 field and BibTeX entry types.', NULL); INSERT INTO knwKB VALUES ('4','SEARCH-SYNONYM-JOURNAL','Knowledge base of journal title synonyms. Used during search time.', NULL); INSERT INTO knwKB VALUES ('5','INDEX-SYNONYM-TITLE','Knowledge base of title word synonyms. Used during indexing time.', NULL); INSERT INTO knwKB VALUES ('6','DBCOLLID2OPENGRAPHTYPE','Maps collection 980 field to an Open Graph Type', NULL); INSERT INTO knwKB VALUES ('7','LICENSE2URL','Map a license name to its URL', NULL); INSERT INTO knwKB VALUES ('8','DBCOLLID2TWITTERCARDTYPE','Maps collection 980 field to a Twitter Card type', NULL); INSERT INTO knwKB VALUES ('9','FAQ','Map (whitespace-separated) keywords to an answer (label|url), to be used in FAQ search service', NULL); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('ARTICLE','Published Article', '1'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('PREPRINT','Preprint', '1'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('THESIS','Thesis', '1'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('BOOK','Book', '1'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('REPORT','Report', '1'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('PICTURE','Pictures', '1'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('AAS Photo Bull.','AAS Photo Bull.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Accredit. Qual. Assur.','Accredit. Qual. Assur.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Acoust. Phys.','Acoust. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Acoust. Res. Lett.','Acoust. Res. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Acta Astron.','Acta Astron.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Adv. Comput. Math.','Adv. Comput. Math.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Aequ. Math.','Aequ. Math.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Afr. Skies','Afr. Skies', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Algorithmica','Algorithmica', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Am. J. Phys.','Am. J. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Ann. Phys.','Ann. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Annu. Rev. Astron. Astrophys.','Annu. Rev. Astron. Astrophys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Annu. Rev. Earth Planet. Sci.','Annu. Rev. Earth Planet. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Appl. Phys. Lett.','Appl. Phys. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Appl. Phys., A','Appl. Phys., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Appl. Phys., B','Appl. Phys., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Appl. Radiat. Isot.','Appl. Radiat. Isot.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Appl. Surf. Sci.','Appl. Surf. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Arch. Appl. Mech.','Arch. Appl. Mech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Arch. Envir. Contam. Toxicol.','Arch. Envir. Contam. Toxicol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Arch. Rational Mech. Analys.','Arch. Rational Mech. Analys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. Astrophys. Rev.','Astron. Astrophys. Rev.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. Astrophys.','Astron. Astrophys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. Astrophys., Suppl.','Astron. Astrophys., Suppl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. J.','Astron. J.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. Lett.','Astron. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. Nachr.','Astron. Nachr.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astron. Rep.','Astron. Rep.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astropart. Phys.','Astropart. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astrophys. J.','Astrophys. J.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Astrophys. Norvegica','Astrophys. Norvegica', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Balt. Astron.','Balt. Astron.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Bioimaging','Bioimaging', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Biol. Cybern.','Biol. Cybern.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Bull. Astron. Belgrade','Bull. Astron. Belgrade', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Bull. Astron. Inst. Czech.','Bull. Astron. Inst. Czech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Bull. Astron. Soc. India','Bull. Astron. Soc. India', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Bull. Eng. Geol. Environ.','Bull. Eng. Geol. Environ.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Bull. Environ. Contam. Toxicol.','Bull. Environ. Contam. Toxicol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Calc. Var. Partial Differ. Equ.','Calc. Var. Partial Differ. Equ.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Chaos','Chaos', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Chaos Solitons Fractals','Chaos Solitons Fractals', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Chem. Phys.','Chem. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Chem. Phys. Lett.','Chem. Phys. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Chin. Astron. Astrophys.','Chin. Astron. Astrophys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Chin. J. Astron. Astrophys.','Chin. J. Astron. Astrophys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Class. Quantum Gravity','Class. Quantum Gravity', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Clim. Dyn.','Clim. Dyn.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Colloid Polym. Sci.','Colloid Polym. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Combinatorica','Combinatorica', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Combust. Theory Model.','Combust. Theory Model.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Commun. Math. Phys.','Commun. Math. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Comment. Math. Helv.','Comment. Math. Helv.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Comput. Mech.','Comput. Mech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Comput. Phys.','Comput. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Comput. Phys. Commun.','Comput. Phys. Commun.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Comput. Sci. Eng.','Comput. Sci. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Comput. Vis. Sci.','Comput. Vis. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Computing','Computing', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Constr. Approx.','Constr. Approx.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Contin. Mech. Thermodyn.','Contin. Mech. Thermodyn.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Contrib. Astron. Obs. Skaln. Pleso','Contrib. Astron. Obs. Skaln. Pleso', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Contrib. Astron. Obs. Skaln. Pleso Suppl.','Contrib. Astron. Obs. Skaln. Pleso Suppl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Cryogenics','Cryogenics', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Crystallogr. Rep.','Crystallogr. Rep.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Curr. Appl. Phys.','Curr. Appl. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Curr. Opin. Solid State Mater. Sci.','Curr. Opin. Solid State Mater. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Discret. Comput. Geom.','Discret. Comput. Geom.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Displays','Displays', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Distrib. Comput.','Distrib. Comput.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Distrib. Syst. Eng.','Distrib. Syst. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Dokl. Phys.','Dokl. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Electrochem. Solid State Lett.','Electrochem. Solid State Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Electron. Lett.','Electron. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Elem. Math.','Elem. Math.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Environ. Geol.','Environ. Geol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Environ. Manage.','Environ. Manage.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Biophys. J. Biophys. Lett.','Eur. Biophys. J. Biophys. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. J. Phys.','Eur. J. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Phys. J., A','Eur. Phys. J., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Phys. J., Appl. Phys.','Eur. Phys. J., Appl. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Phys. J., B','Eur. Phys. J., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Phys. J., C','Eur. Phys. J., C', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Phys. J., D','Eur. Phys. J., D', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Eur. Phys. J., E','Eur. Phys. J., E', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Europhys. Lett.','Europhys. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Europhys. News','Europhys. News', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Exp. Fluids','Exp. Fluids', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Few-Body Syst.','Few-Body Syst.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Finan. Stoch.','Finan. Stoch.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Fluid Dyn. Res.','Fluid Dyn. Res.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Geom. Funct. Anal.','Geom. Funct. Anal.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Heat Mass Transf.','Heat Mass Transf.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('High Energy Phys. Libr. Webzine','High Energy Phys. Libr. Webzine', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('High Perform. Polym.','High Perform. Polym.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Circ. Devices Syst.','IEE Proc., Circ. Devices Syst.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Commun.','IEE Proc., Commun.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Comput. Digit. Tech.','IEE Proc., Comput. Digit. Tech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Control Theory Appl.','IEE Proc., Control Theory Appl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Electr. Power Appl.','IEE Proc., Electr. Power Appl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Gener. Transm. Distrib.','IEE Proc., Gener. Transm. Distrib.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Microw. Antennas Propag.','IEE Proc., Microw. Antennas Propag.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Optoelectron.','IEE Proc., Optoelectron.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Radar, Sonar Navig.','IEE Proc., Radar, Sonar Navig.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Sci. Meas. Technol.','IEE Proc., Sci. Meas. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Softw. Eng.','IEE Proc., Softw. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('IEE Proc., Vis. Image Signal Process.','IEE Proc., Vis. Image Signal Process.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Image Vis. Comput.','Image Vis. Comput.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Inform. Forsch. Entwickl.','Inform. Forsch. Entwickl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Inform. Spektr.','Inform. Spektr.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Infrared Phys. Technol.','Infrared Phys. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Int. J. Digit. Libr.','Int. J. Digit. Libr.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Int. J. Doc. Anal. Recogn.','Int. J. Doc. Anal. Recogn.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Int. J. Nonlinear Mech.','Int. J. Nonlinear Mech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Int. J. Softw. Tools Technol. Transf.','Int. J. Softw. Tools Technol. Transf.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Invent. Math.','Invent. Math.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Inverse Probl.','Inverse Probl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Acoust. Soc. Am.','J. Acoust. Soc. Am.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Aerosp. Eng.','J. Aerosp. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Alloys. Compounds','J. Alloys. Compounds', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Am. Assoc. Var. Star Obs.','J. Am. Assoc. Var. Star Obs.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Appl. Mech.','J. Appl. Mech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Appl. Phys.','J. Appl. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Atmos. Solar Terrest. Phys.','J. Atmos. Solar Terrest. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Br. Astron. Assoc.','J. Br. Astron. Assoc.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Chem. Phys.','J. Chem. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Classif.','J. Classif.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Comput. Inf. Sci. Eng.','J. Comput. Inf. Sci. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Constr. Eng. Manage.','J. Constr. Eng. Manage.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Cryptol.','J. Cryptol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Cryst. Growth','J. Cryst. Growth', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Dyn. Syst. Meas. Control','J. Dyn. Syst. Meas. Control', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Electrochem. Soc.','J. Electrochem. Soc.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Electron Spectrosc. Relat. Phen.','J. Electron Spectrosc. Relat. Phen.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Electron. Imaging','J. Electron. Imaging', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Electron. Packag.','J. Electron. Packag.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Energy Eng.','J. Energy Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Energy Resour. Technol.','J. Energy Resour. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Eng. Mater. Technol.','J. Eng. Mater. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Eng. Mech.','J. Eng. Mech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Environ. Eng.','J. Environ. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Exp. Theor. Phys., JETP','J. Exp. Theor. Phys., JETP', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Fluids Eng.','J. Fluids Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Geom. Phys.','J. Geom. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Heat Transf.','J. Heat Transf.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. High Energy Phys.','J. High Energy Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Korean Astron. Soc.','J. Korean Astron. Soc.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Lumin.','J. Lumin.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Magn. Magn. Mater.','J. Magn. Magn. Mater.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Manage. Eng.','J. Manage. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Manuf. Sci. Eng.','J. Manuf. Sci. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Mater. Civ. Eng.','J. Mater. Civ. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Math. Biol.','J. Math. Biol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Math. Phys.','J. Math. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Mech. Des.','J. Mech. Des.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Micromech. Microeng.','J. Micromech. Microeng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Opt.','J. Opt.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys., A','J. Phys., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys., B','J. Phys., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys., Condens. Matter','J. Phys., Condens. Matter', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys., D','J. Phys., D', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys., G','J. Phys., G', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys. I','J. Phys. I', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys. II','J. Phys. II', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys. III','J. Phys. III', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys. Chem. Ref. Data','J. Phys. Chem. Ref. Data', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Phys. Chem. Solids','J. Phys. Chem. Solids', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Quant. Spectrosc. Radiat. Transf.','J. Quant. Spectrosc. Radiat. Transf.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. R. Astron. Soc. Can.','J. R. Astron. Soc. Can.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Radio. Prot.','J. Radio. Prot.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Rheol.','J. Rheol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Solar Energy Eng.','J. Solar Energy Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Solid State Electrochem.','J. Solid State Electrochem.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Struct. Eng.','J. Struct. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Surv. Eng.','J. Surv. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Tribol.','J. Tribol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Turbomach.','J. Turbomach.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Vac. Sci. Technol.','J. Vac. Sci. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Vac. Sci. Technol., A','J. Vac. Sci. Technol., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Vac. Sci. Technol., B','J. Vac. Sci. Technol., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('J. Vib. Acoust.','J. Vib. Acoust.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('JETP','JETP', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('JETP Lett.','JETP Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Low Temp. Phys.','Low Temp. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Mach. Vis. Appl.','Mach. Vis. Appl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Mater. Res. Innov.','Mater. Res. Innov.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Mater. Sci. Eng., B','Mater. Sci. Eng., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Math. Ann.','Math. Ann.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Math. Model. Numer. Anal.','Math. Model. Numer. Anal.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Math. Program.','Math. Program.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Math. Z.','Math. Z.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Meas. Sci. Technol.','Meas. Sci. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Med. Phys.','Med. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Meteorit. Planet. Sci.','Meteorit. Planet. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Microelectron. Eng.','Microelectron. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Micron','Micron', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Microsc. Microanal.','Microsc. Microanal.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Microsyst. Technol.','Microsyst. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Mon. Not. R. Astron. Soc.','Mon. Not. R. Astron. Soc.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Multim. Syst.','Multim. Syst.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nanotech.','Nanotech.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Naturwiss.','Naturwiss.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Network','Network', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('New Astron.','New Astron.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('New Astron. Rev.','New Astron. Rev.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nonlinearity','Nonlinearity', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nucl. Instrum. Methods Phys. Res., A','Nucl. Instrum. Methods Phys. Res., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nucl. Instrum. Methods Phys. Res., B','Nucl. Instrum. Methods Phys. Res., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nucl. Phys. B, Proc. Suppl.','Nucl. Phys. B, Proc. Suppl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nucl. Phys., A','Nucl. Phys., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nucl. Phys., B','Nucl. Phys., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Num. Math.','Num. Math.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nuovo Cimento, A','Nuovo Cimento, A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nuovo Cimento, B','Nuovo Cimento, B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nuovo Cimento, C','Nuovo Cimento, C', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Nuovo Cimento, D','Nuovo Cimento, D', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Obs.','Obs.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Opt. Commun.','Opt. Commun.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Opt. Eng.','Opt. Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Opt. Lasers Eng.','Opt. Lasers Eng.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Opt. Mater.','Opt. Mater.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Opt. Spectrosc.','Opt. Spectrosc.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. At. Nucl.','Phys. At. Nucl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Chem. Miner.','Phys. Chem. Miner.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Educ.','Phys. Educ.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Fluids','Phys. Fluids', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Fluids, A','Phys. Fluids, A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Fluids, B','Phys. Fluids, B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Lett., A','Phys. Lett., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Lett., B','Phys. Lett., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Med. Biol.','Phys. Med. Biol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Part. Nucl.','Phys. Part. Nucl.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Plasmas','Phys. Plasmas', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rep.','Phys. Rep.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev., A','Phys. Rev., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev., B','Phys. Rev., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev., C','Phys. Rev., C', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev., D','Phys. Rev., D', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev., E','Phys. Rev., E', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev., ser. 1','Phys. Rev., ser. 1', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev. Lett.','Phys. Rev. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev. Spec. Top. Accel. Beams','Phys. Rev. Spec. Top. Accel. Beams', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Rev.','Phys. Rev.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys. Solid State','Phys. Solid State', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Physica, A','Physica, A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Physica, B','Physica, B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Physica, C','Physica, C', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Physica, D','Physica, D', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Physica, E','Physica, E', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Physiol. Meas.','Physiol. Meas.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Planet. Space Sci.','Planet. Space Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Plasma Phys. Control. Fusion','Plasma Phys. Control. Fusion', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Plasma Phys. Rep.','Plasma Phys. Rep.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Plasma Sources Sci. Technol.','Plasma Sources Sci. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Polym. Bull.','Polym. Bull.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Powder Diffraction','Powder Diffraction', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Probab. Theory Relat. Fields','Probab. Theory Relat. Fields', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Proc. Astron. Soc. Aust.','Proc. Astron. Soc. Aust.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Proc. Nat. Acad. Sci.','Proc. Nat. Acad. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Prog. Cryst. Growth Charact. Mat.','Prog. Cryst. Growth Charact. Mat.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Prog. Part. Nucl. Phys.','Prog. Part. Nucl. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Prog. Quantum Electron.','Prog. Quantum Electron.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Prog. Surf. Sci.','Prog. Surf. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Program','Program', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Publ. Astron. Soc. Aust.','Publ. Astron. Soc. Aust.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Publ. Astron. Soc. Jpn.','Publ. Astron. Soc. Jpn.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Publ. Astron. Soc. Pac.','Publ. Astron. Soc. Pac.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Publ. Underst. Sci.','Publ. Underst. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Pure Appl. Opt.: J. Eur. Opt. Soc. P. A','Pure Appl. Opt.: J. Eur. Opt. Soc. P. A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Quantum Semiclass. Opt.: J. Eur. Opt. Soc. P. B','Quantum Semiclass. Opt.: J. Eur. Opt. Soc. P. B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Radiat. Environ. Biophys.','Radiat. Environ. Biophys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Radiat. Meas.','Radiat. Meas.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Radiat. Phys. Chem.','Radiat. Phys. Chem.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Radiologe','Radiologe', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Radioprotection','Radioprotection', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Rep. Math. Phys.','Rep. Math. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Rep. Prog. Phys.','Rep. Prog. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Res. Exp. Med.','Res. Exp. Med.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Rev. Mex. Astron. Astrofis.','Rev. Mex. Astron. Astrofis.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Rev. Mod. Phys.','Rev. Mod. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Rev. Sci. Instrum.','Rev. Sci. Instrum.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Sel. Math., New Ser.','Sel. Math., New Ser.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Semicond.','Semicond.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Semicond. Sci. Technol.','Semicond. Sci. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Shock Waves','Shock Waves', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('SIAM J. Appl. Math.','SIAM J. Appl. Math.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('SIAM J. Comput.','SIAM J. Comput.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('SIAM J. Math. Anal.','SIAM J. Math. Anal.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('SIAM J. Numer. Anal.','SIAM J. Numer. Anal.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('SIAM J. Optim.','SIAM J. Optim.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('SIAM Rev.','SIAM Rev.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Smart Mat. Struct.','Smart Mat. Struct.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Soft Comput.','Soft Comput.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Softw. Concepts Tools','Softw. Concepts Tools', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Solar Phys.','Solar Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Solid State Commun.','Solid State Commun.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Solid State Electron.','Solid State Electron.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Solid State Ion.','Solid State Ion.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Sov. Astron. Lett.','Sov. Astron. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Superconductor Science and Technology','Superconductor Science and Technology', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Surf. Coatings Techn.','Surf. Coatings Techn.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Surf. Sci.','Surf. Sci.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Surf. Sci. Rep.','Surf. Sci. Rep.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Surf. Sci. Spectra','Surf. Sci. Spectra', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Synth. Metals','Synth. Metals', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Syst. Fam.','Syst. Fam.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Tech. Phys.','Tech. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Tech. Phys. Lett.','Tech. Phys. Lett.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Theor. Comput. Fluid Dyn.','Theor. Comput. Fluid Dyn.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Theory Comput. Syst.','Theory Comput. Syst.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Thin Solid Films','Thin Solid Films', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Tribol. Int.','Tribol. Int.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Ultramicroscopy','Ultramicroscopy', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Vacuum','Vacuum', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('VLDB J.','VLDB J.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Virtual J. Nanoscale Sci. Technol.','Virtual J. Nanoscale Sci. Technol.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Virtual J. Biol. Phys. Res.','Virtual J. Biol. Phys. Res.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Vis. Comput.','Vis. Comput.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Wave Motion','Wave Motion', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Waves Random Media','Waves Random Media', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Wear','Wear', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Z. Angew. Math. Phys.','Z. Angew. Math. Phys.', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Z. Phys., A','Z. Phys., A', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Z. Phys., B','Z. Phys., B', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Z. Phys., C','Z. Phys., C', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Zphys-e.C','Zphys-e.C', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('ATLAS eNews','ATLAS eNews', '2'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('PICTURE','unpublished', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('PREPRINT','techreport', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('ARTICLE','article', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('REPORT','techreport', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('BOOK','book', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('THESIS','phdthesis', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('POETRY','unpublished', '3'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('PHRVD','Phys. Rev., D', '4'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('Phys.Rev.D','Phys. Rev., D', '4'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('beta','β', '5'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('β','beta', '5'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('ARTICLE','article', '6'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('BOOK','book', '6'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('VIDEO','video.other', '6'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CERN','http://copyright.cern.ch/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CC-BY-3.0','http://creativecommons.org/licenses/by/3.0/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CC-BY-SA-3.0','http://creativecommons.org/licenses/by-sa/3.0/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CC-BY-NC-3.0','http://creativecommons.org/licenses/by-nc/3.0/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CC-BY-ND-3.0','http://creativecommons.org/licenses/by-nd/3.0/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CC-BY-NC-SA-3.0','http://creativecommons.org/licenses/by-nc-sa/3.0/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('CC-BY-NC-ND-3.0','http://creativecommons.org/licenses/by-nc-nd/3.0/', '7'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('VIDEO','player', '8'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('PICTURE','photo', '8'); INSERT INTO knwKBRVAL (m_key,m_value,id_knwKB) VALUES ('search syntax find looking help','Search tips|/help/search-tips', '9'); -- crcLIBRARY demo data: INSERT INTO crcLIBRARY (name, address, email, phone, type, notes) VALUES ('Atlantis Main Library', 'CH-1211 Geneva 23', 'atlantis@cds.cern.ch', '1234567', 'main', ''); INSERT INTO crcLIBRARY (name, address, email, phone, type, notes) VALUES ('Atlantis HEP Library', 'CH-1211 Geneva 21', 'atlantis.hep@cds.cern.ch', '1234567', 'external', ''); -- crcITEM demo data: INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-34001', '34', '1', '', 'ABC-123', 'Book', '4 weeks', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-34002', '34', '2', '', 'HEP-12A', 'Book', '4 weeks', 'requested', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-33001', '33', '1', '', 'AZ.12-AK', 'Book', '4 weeks', 'on loan', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-32001', '32', '1', 'Reference', 'WDFG-54', 'Book', 'Not for loan', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-32002', '32', '2', '', 'RZ.612-MK', 'Book', '4 weeks', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-32003', '32', '1', '', 'RT-4654-E', 'Book', '4 weeks', 'missing', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-31001', '31', '2', '', '123LSKD', 'Book', '1 week', 'on loan', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-31002', '31', '1', '', 'QSQ452-S', 'Book', '1 week', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-30001', '30', '1', 'Reference', 'QSQS-52-S', 'Book', 'Not for loan', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-29001', '29', '1', '', 'AZD456-465', 'Book', '4 weeks', 'requested', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-28001', '28', '1', '', 'AZD5-456', 'Book', '4 weeks', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-27001', '27', '2', '', 'JLMQ-45-SQ', 'Book', '4 weeks', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-26001', '26', '1', '', 'AZD456-465', 'Book', '1 week', 'missing', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-25001', '25', '2', '', 'AGT-MLL5', 'Book', '4 weeks', 'on loan', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-24001', '24', '2', '', 'J56-475', 'Book', '4 weeks', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-23001', '23', '1', '', 'JHL-465.DS', 'Book', '4 weeks', 'requested', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-22001', '22', '1', '', 'AZD4E-865', 'Book', '1 week', 'requested', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); INSERT INTO crcITEM (barcode, id_bibrec, id_crcLIBRARY, collection, location, description, loan_period, status, creation_date, modification_date, number_of_requests) VALUES ('bc-21001', '21', '2', '', 'MLL-DS.63', 'Book', '4 weeks', 'available', '2008-07-21 00:00:00', '2008-07-21 00:00:00', '0'); -- crcLOAN demo data: INSERT INTO crcLOAN (id_crcBORROWER, id_bibrec, barcode, loaned_on, due_date, status, type, notes) VALUES ('4', '33', 'bc-33001', NOW(), NOW() + INTERVAL 30 DAY, 'on loan' ,'normal', ''); INSERT INTO crcLOAN (id_crcBORROWER, id_bibrec, barcode, loaned_on, due_date, status, type, notes) VALUES ('5', '31', 'bc-31001', NOW(), NOW() + INTERVAL 7 DAY, 'on loan' ,'normal', ''); INSERT INTO crcLOAN (id_crcBORROWER, id_bibrec, barcode, loaned_on, due_date, status, type, notes) VALUES ('5', '31', 'bc-25001', NOW(), NOW() + INTERVAL 30 DAY, 'on loan' ,'normal', ''); -- crcLOANREQUEST demo data: INSERT INTO crcLOANREQUEST (id_crcBORROWER, id_bibrec, barcode, period_of_interest_from, period_of_interest_to, status, notes, request_date) VALUES ('5', '34', 'bc-34002', NOW(), NOW() + INTERVAL 60 DAY, 'pending' , '', NOW()); INSERT INTO crcLOANREQUEST (id_crcBORROWER, id_bibrec, barcode, period_of_interest_from, period_of_interest_to, status, notes, request_date) VALUES ('6', '29', 'bc-29001', NOW(), NOW() + INTERVAL 45 DAY, 'pending' , '', NOW()); INSERT INTO crcLOANREQUEST (id_crcBORROWER, id_bibrec, barcode, period_of_interest_from, period_of_interest_to, status, notes, request_date) VALUES ('5', '33', 'bc-33001', NOW(), NOW() + INTERVAL 45 DAY, 'waiting' , '', NOW()); INSERT INTO crcLOANREQUEST (id_crcBORROWER, id_bibrec, barcode, period_of_interest_from, period_of_interest_to, status, notes, request_date) VALUES ('7', '22', 'bc-22001', NOW(), NOW() + INTERVAL 90 DAY, 'pending' , '', NOW()); -- crcBORROWER demo data: INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Admin', 'admin@cds.cern.ch', '20003', '99-Z-019', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Jekyll', 'jekyll@cds.cern.ch', '01234', '21-Z-019', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Hyde', 'Hyde@cds.cern.ch', '01574', '22-Z-119', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Dorian Gray', 'dorian.gray@cds.cern.ch', '33234', '38-Y-819', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Romeo Montague', 'romeo.montague@cds.cern.ch', '93844', '98-W-859', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Juliet Capulet', 'juliet.capulet@cds.cern.ch', '99874', '91-X-098', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Benvolio Montague', 'benvolio.montague@cds.cern.ch', '32354', '93-P-019', '2008-07-21 00:00:00', ''); INSERT INTO crcBORROWER (name, email, phone, address, borrower_since, notes) VALUES ('Balthasar Montague', 'balthasar.montague@cds.cern.ch', '78644', '20-M-349', '2008-07-21 00:00:00', ''); -- switch on stemming for some indexes: UPDATE idxINDEX SET stemming_language='en' WHERE name IN ('global','abstract','keyword','title','fulltext', 'miscellaneous'); -- exporting demo: INSERT INTO expJOB (jobname) VALUES ('sitemap'); INSERT INTO expJOB (jobname) VALUES ('googlescholar'); INSERT INTO expJOB (jobname) VALUES ('marcxml'); -- WebJournal demo: INSERT INTO jrnJOURNAL (id,name) VALUES(1,'AtlantisTimes'); INSERT INTO jrnISSUE (id_jrnJOURNAL,issue_number,issue_display,date_released,date_announced) VALUES (1,'02/2009','02-03/2009','2009-01-09','2009-01-09'); INSERT INTO jrnISSUE (id_jrnJOURNAL,issue_number,issue_display,date_released) VALUES (1,'03/2009','02-03/2009','2009-01-16'); -- BibAuthorID demo person assignment: INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (1,'uid','2'); INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (2,'uid','1'); INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (3,'uid','4'); INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (4,'uid','5'); INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (5,'uid','6'); INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (6,'uid','7'); INSERT INTO aidPERSONIDDATA (personid, tag, data) VALUES (7,'uid','8'); -- end of file diff --git a/modules/miscutil/lib/upgrades/invenio_2013_08_20_bibauthority_updates.py b/modules/miscutil/lib/upgrades/invenio_2013_08_20_bibauthority_updates.py index 9fe3db735..43df20c92 100644 --- a/modules/miscutil/lib/upgrades/invenio_2013_08_20_bibauthority_updates.py +++ b/modules/miscutil/lib/upgrades/invenio_2013_08_20_bibauthority_updates.py @@ -1,276 +1,276 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. ## Copyright (C) 2012, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. from invenio.dbquery import run_sql depends_on = ['invenio_2013_03_29_idxINDEX_stopwords_update'] def info(): return """Introduces bibauthority module. Adds: -> new indexes: authorityauthor authoritysubject authorityjournal - authorityinstitution + authorityinstitute -> new fields: authorityauthor authoritysubject authorityjournal - authorityinstitution + authorityinstitute -> new tags: authority: main personal name authority: alternative personal name authority: personal name from other record authority: organization main name' organization alternative name organization main from other record authority: uniform title authority: uniform title alternatives authority: uniform title from other record authority: subject from other record authority: subject alternative name authority: subject main name """ def do_upgrade(): pass def do_upgrade_atlantis(): #first step: create tables run_sql("""CREATE TABLE IF NOT EXISTS idxWORD20F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(50) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM; """) run_sql("""CREATE TABLE IF NOT EXISTS idxWORD20R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxWORD21F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(50) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxWORD21R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxWORD22F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(50) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxWORD22R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxWORD23F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(50) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxWORD23R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR20F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(100) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR20R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR21F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(100) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR21R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR22F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(100) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR22R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR23F ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(100) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR23R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE20F ( id mediumint(9) unsigned NOT NULL auto_increment, term text default NULL, hitlist longblob, PRIMARY KEY (id), KEY term (term(50)) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE20R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE21F ( id mediumint(9) unsigned NOT NULL auto_increment, term text default NULL, hitlist longblob, PRIMARY KEY (id), KEY term (term(50)) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE21R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE22F ( id mediumint(9) unsigned NOT NULL auto_increment, term text default NULL, hitlist longblob, PRIMARY KEY (id), KEY term (term(50)) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE22R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE23F ( id mediumint(9) unsigned NOT NULL auto_increment, term text default NULL, hitlist longblob, PRIMARY KEY (id), KEY term (term(50)) ) ENGINE=MyISAM;""") run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE23R ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM;""") #second step: fill tables with data run_sql("""INSERT INTO field VALUES (33,'authority author','authorityauthor')""") - run_sql("""INSERT INTO field VALUES (34,'authority institution','authorityinstitution')""") + run_sql("""INSERT INTO field VALUES (34,'authority institute','authorityinstitute')""") run_sql("""INSERT INTO field VALUES (35,'authority journal','authorityjournal')""") run_sql("""INSERT INTO field VALUES (36,'authority subject','authoritysubject')""") run_sql("""INSERT INTO field_tag VALUES (33,1,100)""") run_sql("""INSERT INTO field_tag VALUES (33,146,100)""") run_sql("""INSERT INTO field_tag VALUES (33,140,100)""") run_sql("""INSERT INTO field_tag VALUES (34,148,100)""") run_sql("""INSERT INTO field_tag VALUES (34,149,100)""") run_sql("""INSERT INTO field_tag VALUES (34,150,100)""") run_sql("""INSERT INTO field_tag VALUES (35,151,100)""") run_sql("""INSERT INTO field_tag VALUES (35,152,100)""") run_sql("""INSERT INTO field_tag VALUES (35,153,100)""") run_sql("""INSERT INTO field_tag VALUES (36,154,100)""") run_sql("""INSERT INTO field_tag VALUES (36,155,100)""") run_sql("""INSERT INTO field_tag VALUES (36,156,100)""") run_sql("""INSERT INTO tag VALUES (145,'authority: main personal name','100__a')""") run_sql("""INSERT INTO tag VALUES (146,'authority: alternative personal name','400__a')""") run_sql("""INSERT INTO tag VALUES (147,'authority: personal name from other record','500__a')""") run_sql("""INSERT INTO tag VALUES (148,'authority: organization main name','110__a')""") run_sql("""INSERT INTO tag VALUES (149,'organization alternative name','410__a')""") run_sql("""INSERT INTO tag VALUES (150,'organization main from other record','510__a')""") run_sql("""INSERT INTO tag VALUES (151,'authority: uniform title','130__a')""") run_sql("""INSERT INTO tag VALUES (152,'authority: uniform title alternatives','430__a')""") run_sql("""INSERT INTO tag VALUES (153,'authority: uniform title from other record','530__a')""") run_sql("""INSERT INTO tag VALUES (154,'authority: subject from other record','150__a')""") run_sql("""INSERT INTO tag VALUES (155,'authority: subject alternative name','450__a')""") run_sql("""INSERT INTO tag VALUES (156,'authority: subject main name','550__a')""") run_sql("""INSERT INTO idxINDEX VALUES (20,'authorityauthor','This index contains words/phrases from author authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexAuthorTokenizer')""") - run_sql("""INSERT INTO idxINDEX VALUES (21,'authorityinstitution','This index contains words/phrases from institution authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer')""") + run_sql("""INSERT INTO idxINDEX VALUES (21,'authorityinstitute','This index contains words/phrases from institute authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer')""") run_sql("""INSERT INTO idxINDEX VALUES (22,'authorityjournal','This index contains words/phrases from journal authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer')""") run_sql("""INSERT INTO idxINDEX VALUES (23,'authoritysubject','This index contains words/phrases from subject authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer')""") run_sql("""INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (20,33)""") run_sql("""INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (21,34)""") run_sql("""INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (22,35)""") run_sql("""INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (23,36)""") def estimate(): return 1 def pre_upgrade(): pass def post_upgrade(): pass diff --git a/modules/miscutil/lib/upgrades/invenio_2013_09_25_virtual_indexes.py b/modules/miscutil/lib/upgrades/invenio_2013_09_25_virtual_indexes.py index b1ac184f3..9f711e7f4 100644 --- a/modules/miscutil/lib/upgrades/invenio_2013_09_25_virtual_indexes.py +++ b/modules/miscutil/lib/upgrades/invenio_2013_09_25_virtual_indexes.py @@ -1,347 +1,347 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. ## Copyright (C) 2012, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. from invenio.dbquery import run_sql depends_on = ['invenio_2013_08_22_new_index_itemcount', 'invenio_2013_08_22_hstRECORD_affected_fields'] def info(): return "BibIndex virtual indexes" def do_upgrade(): run_sql("""CREATE TABLE IF NOT EXISTS idxINDEX_idxINDEX ( id_virtual mediumint(9) unsigned NOT NULL, id_normal mediumint(9) unsigned NOT NULL, PRIMARY KEY (id_virtual,id_normal) ) ENGINE=MyISAM""") def do_upgrade_atlantis(): #0 step: parametrize script for quick change misc_field = 39 misc_index = 26 #1st step: create tables for miscellaneous index run_sql("""CREATE TABLE IF NOT EXISTS idxWORD%02dF ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(50) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM""" % misc_index) run_sql("""CREATE TABLE IF NOT EXISTS idxWORD%02dR ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM""" % misc_index) run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR%02dF ( id mediumint(9) unsigned NOT NULL auto_increment, term varchar(100) default NULL, hitlist longblob, PRIMARY KEY (id), UNIQUE KEY term (term) ) ENGINE=MyISAM""" % misc_index) run_sql("""CREATE TABLE IF NOT EXISTS idxPAIR%02dR ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM""" % misc_index) run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE%02dF ( id mediumint(9) unsigned NOT NULL auto_increment, term text default NULL, hitlist longblob, PRIMARY KEY (id), KEY term (term(50)) ) ENGINE=MyISAM""" % misc_index) run_sql("""CREATE TABLE IF NOT EXISTS idxPHRASE%02dR ( id_bibrec mediumint(9) unsigned NOT NULL, termlist longblob, type enum('CURRENT','FUTURE','TEMPORARY') NOT NULL default 'CURRENT', PRIMARY KEY (id_bibrec,type) ) ENGINE=MyISAM""" % misc_index) #2nd step: add 'miscellaneous' index to idxINDEX table run_sql("""INSERT INTO idxINDEX VALUES (%s,'miscellaneous','This index contains words/phrases from miscellaneous fields','0000-00-00 00:00:00', '', 'native','','No','No','No', 'BibIndexDefaultTokenizer')""" % misc_index) #3rd step: add 'miscellaneous' field run_sql("""INSERT INTO field VALUES (%s,'miscellaneous', 'miscellaneous')""" % misc_field) #4th step: add idxINDEX_field map run_sql("""INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (%s,%s)""" % (misc_index, misc_field)) #5th step: add tags run_sql("""INSERT INTO tag VALUES (157,'031x','031%')""") run_sql("""INSERT INTO tag VALUES (158,'032x','032%')""") run_sql("""INSERT INTO tag VALUES (159,'033x','033%')""") run_sql("""INSERT INTO tag VALUES (160,'034x','034%')""") run_sql("""INSERT INTO tag VALUES (161,'035x','035%')""") run_sql("""INSERT INTO tag VALUES (162,'036x','036%')""") run_sql("""INSERT INTO tag VALUES (163,'037x','037%')""") run_sql("""INSERT INTO tag VALUES (164,'038x','038%')""") run_sql("""INSERT INTO tag VALUES (165,'080x','080%')""") run_sql("""INSERT INTO tag VALUES (166,'082x','082%')""") run_sql("""INSERT INTO tag VALUES (167,'083x','083%')""") run_sql("""INSERT INTO tag VALUES (168,'084x','084%')""") run_sql("""INSERT INTO tag VALUES (169,'085x','085%')""") run_sql("""INSERT INTO tag VALUES (170,'086x','086%')""") run_sql("""INSERT INTO tag VALUES (171,'240x','240%')""") run_sql("""INSERT INTO tag VALUES (172,'242x','242%')""") run_sql("""INSERT INTO tag VALUES (173,'243x','243%')""") run_sql("""INSERT INTO tag VALUES (174,'244x','244%')""") run_sql("""INSERT INTO tag VALUES (175,'247x','247%')""") run_sql("""INSERT INTO tag VALUES (176,'521x','521%')""") run_sql("""INSERT INTO tag VALUES (177,'522x','522%')""") run_sql("""INSERT INTO tag VALUES (178,'524x','524%')""") run_sql("""INSERT INTO tag VALUES (179,'525x','525%')""") run_sql("""INSERT INTO tag VALUES (180,'526x','526%')""") run_sql("""INSERT INTO tag VALUES (181,'650x','650%')""") run_sql("""INSERT INTO tag VALUES (182,'651x','651%')""") run_sql("""INSERT INTO tag VALUES (183,'6531_v','6531_v')""") run_sql("""INSERT INTO tag VALUES (184,'6531_y','6531_y')""") run_sql("""INSERT INTO tag VALUES (185,'6531_9','6531_9')""") run_sql("""INSERT INTO tag VALUES (186,'654x','654%')""") run_sql("""INSERT INTO tag VALUES (187,'655x','655%')""") run_sql("""INSERT INTO tag VALUES (188,'656x','656%')""") run_sql("""INSERT INTO tag VALUES (189,'657x','657%')""") run_sql("""INSERT INTO tag VALUES (190,'658x','658%')""") run_sql("""INSERT INTO tag VALUES (191,'711x','711%')""") run_sql("""INSERT INTO tag VALUES (192,'900x','900%')""") run_sql("""INSERT INTO tag VALUES (193,'901x','901%')""") run_sql("""INSERT INTO tag VALUES (194,'902x','902%')""") run_sql("""INSERT INTO tag VALUES (195,'903x','903%')""") run_sql("""INSERT INTO tag VALUES (196,'904x','904%')""") run_sql("""INSERT INTO tag VALUES (197,'905x','905%')""") run_sql("""INSERT INTO tag VALUES (198,'906x','906%')""") run_sql("""INSERT INTO tag VALUES (199,'907x','907%')""") run_sql("""INSERT INTO tag VALUES (200,'908x','908%')""") run_sql("""INSERT INTO tag VALUES (201,'909C1x','909C1%')""") run_sql("""INSERT INTO tag VALUES (202,'909C5x','909C5%')""") run_sql("""INSERT INTO tag VALUES (203,'909CSx','909CS%')""") run_sql("""INSERT INTO tag VALUES (204,'909COx','909CO%')""") run_sql("""INSERT INTO tag VALUES (205,'909CKx','909CK%')""") run_sql("""INSERT INTO tag VALUES (206,'909CPx','909CP%')""") run_sql("""INSERT INTO tag VALUES (207,'981x','981%')""") run_sql("""INSERT INTO tag VALUES (208,'982x','982%')""") run_sql("""INSERT INTO tag VALUES (209,'983x','983%')""") run_sql("""INSERT INTO tag VALUES (210,'984x','984%')""") run_sql("""INSERT INTO tag VALUES (211,'985x','985%')""") run_sql("""INSERT INTO tag VALUES (212,'986x','986%')""") run_sql("""INSERT INTO tag VALUES (213,'987x','987%')""") run_sql("""INSERT INTO tag VALUES (214,'988x','988%')""") run_sql("""INSERT INTO tag VALUES (215,'989x','989%')""") run_sql("""INSERT INTO tag VALUES (216,'author control','100__0')""") - run_sql("""INSERT INTO tag VALUES (217,'institution control','110__0')""") + run_sql("""INSERT INTO tag VALUES (217,'institute control','110__0')""") run_sql("""INSERT INTO tag VALUES (218,'journal control','130__0')""") run_sql("""INSERT INTO tag VALUES (219,'subject control','150__0')""") - run_sql("""INSERT INTO tag VALUES (220,'additional institution control', '260__0')""") + run_sql("""INSERT INTO tag VALUES (220,'additional institute control', '260__0')""") run_sql("""INSERT INTO tag VALUES (221,'additional author control', '700__0')""") #6th step: add field tag mapping run_sql("""INSERT INTO field_tag VALUES (%s,17,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,18,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,157,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,158,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,159,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,160,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,161,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,162,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,163,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,164,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,20,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,21,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,22,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,23,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,165,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,166,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,167,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,168,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,169,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,170,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,25,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,27,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,28,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,29,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,30,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,31,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,32,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,33,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,34,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,35,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,36,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,37,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,38,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,39,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,171,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,172,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,173,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,174,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,175,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,41,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,42,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,43,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,44,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,45,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,46,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,47,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,48,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,49,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,50,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,51,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,52,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,53,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,54,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,55,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,56,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,57,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,58,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,59,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,60,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,61,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,62,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,63,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,64,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,65,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,66,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,67,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,176,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,177,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,178,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,179,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,180,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,69,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,70,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,71,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,72,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,73,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,74,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,75,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,76,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,77,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,78,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,79,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,80,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,181,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,182,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,183,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,184,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,185,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,186,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,82,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,83,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,84,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,85,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,187,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,88,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,89,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,90,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,91,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,92,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,93,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,94,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,95,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,96,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,97,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,98,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,99,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,100,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,102,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,103,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,104,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,105,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,188,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,189,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,190,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,191,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,192,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,193,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,194,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,195,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,196,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,107,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,108,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,109,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,110,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,111,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,112,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,113,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,197,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,198,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,199,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,200,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,201,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,202,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,203,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,204,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,205,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,206,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,207,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,208,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,209,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,210,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,211,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,212,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,213,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,214,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,215,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,122,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,123,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,124,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,125,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,126,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,127,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,128,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,129,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,130,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,1,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,2,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,216,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,217,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,218,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,219,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,220,10)""" % misc_field) run_sql("""INSERT INTO field_tag VALUES (%s,221,10)""" % misc_field) #7th step: remove old unneeded field tag mapping run_sql("""DELETE FROM field_tag WHERE id_field=1""") #8th step: add mapping between indexes for global index query = """SELECT name, id FROM idxINDEX""" ids = dict(run_sql(query)) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['collection'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['abstract'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['collection'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['reportnumber'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['title'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['year'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['journal'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['collaboration'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['affiliation'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['exacttitle'])) run_sql("""INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (%s, %s)""" % (ids['global'], ids['miscellaneous'])) def estimate(): return 1 def pre_upgrade(): pass def post_upgrade(): print 'NOTE: please double check your index settings in BibIndex Admin Interface; you can make your global index virtual.' diff --git a/modules/miscutil/sql/tabfill.sql b/modules/miscutil/sql/tabfill.sql index cbebcff60..ec484884e 100644 --- a/modules/miscutil/sql/tabfill.sql +++ b/modules/miscutil/sql/tabfill.sql @@ -1,863 +1,863 @@ -- This file is part of Invenio. -- Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013 CERN. -- -- 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. -- -- 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 Invenio; if not, write to the Free Software Foundation, Inc., -- 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -- Fill Invenio configuration tables with defaults suitable for any site. 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 rnkCITATIONDATA VALUES (1,'citationdict',NULL,'0000-00-00'); INSERT INTO rnkCITATIONDATA VALUES (2,'reversedict',NULL,'0000-00-00'); INSERT INTO rnkCITATIONDATA VALUES (3,'selfcitdict',NULL,'0000-00-00'); INSERT INTO rnkCITATIONDATA VALUES (4,'selfcitedbydict',NULL,'0000-00-00'); 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 field VALUES (15,'isbn','isbn'); INSERT INTO field VALUES (16,'issn','issn'); INSERT INTO field VALUES (17,'coden','coden'); -- INSERT INTO field VALUES (18,'doi','doi'); INSERT INTO field VALUES (19,'journal','journal'); INSERT INTO field VALUES (20,'collaboration','collaboration'); INSERT INTO field VALUES (21,'affiliation','affiliation'); INSERT INTO field VALUES (22,'exact author','exactauthor'); INSERT INTO field VALUES (23,'date created','datecreated'); INSERT INTO field VALUES (24,'date modified','datemodified'); INSERT INTO field VALUES (25,'refers to','refersto'); INSERT INTO field VALUES (26,'cited by','citedby'); INSERT INTO field VALUES (27,'caption','caption'); INSERT INTO field VALUES (28,'first author','firstauthor'); INSERT INTO field VALUES (29,'exact first author','exactfirstauthor'); INSERT INTO field VALUES (30,'author count','authorcount'); INSERT INTO field VALUES (31,'reference to','rawref'); INSERT INTO field VALUES (32,'exact title','exacttitle'); INSERT INTO field VALUES (33,'authority author','authorityauthor'); -INSERT INTO field VALUES (34,'authority institution','authorityinstitution'); +INSERT INTO field VALUES (34,'authority institute','authorityinstitute'); INSERT INTO field VALUES (35,'authority journal','authorityjournal'); INSERT INTO field VALUES (36,'authority subject','authoritysubject'); INSERT INTO field VALUES (37,'item count','itemcount'); INSERT INTO field VALUES (38,'file type','filetype'); INSERT INTO field VALUES (39,'miscellaneous', 'miscellaneous'); 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 field_tag VALUES (15,118,100); INSERT INTO field_tag VALUES (16,119,100); INSERT INTO field_tag VALUES (17,120,100); -- INSERT INTO field_tag VALUES (18,121,100); INSERT INTO field_tag VALUES (19,131,100); INSERT INTO field_tag VALUES (20,132,100); INSERT INTO field_tag VALUES (21,133,100); INSERT INTO field_tag VALUES (21,134,90); INSERT INTO field_tag VALUES (22,1,100); INSERT INTO field_tag VALUES (22,2,90); INSERT INTO field_tag VALUES (27,135,100); INSERT INTO field_tag VALUES (28,1,100); INSERT INTO field_tag VALUES (29,1,100); INSERT INTO field_tag VALUES (30,1,100); INSERT INTO field_tag VALUES (30,2,90); INSERT INTO field_tag VALUES (32,3,100); INSERT INTO field_tag VALUES (32,4,90); -- authority fields INSERT INTO field_tag VALUES (33,1,100); INSERT INTO field_tag VALUES (33,146,100); INSERT INTO field_tag VALUES (33,140,100); INSERT INTO field_tag VALUES (34,148,100); INSERT INTO field_tag VALUES (34,149,100); INSERT INTO field_tag VALUES (34,150,100); INSERT INTO field_tag VALUES (35,151,100); INSERT INTO field_tag VALUES (35,152,100); INSERT INTO field_tag VALUES (35,153,100); INSERT INTO field_tag VALUES (36,154,100); INSERT INTO field_tag VALUES (36,155,100); INSERT INTO field_tag VALUES (36,156,100); -- misc fields INSERT INTO field_tag VALUES (39,17,10); INSERT INTO field_tag VALUES (39,18,10); INSERT INTO field_tag VALUES (39,157,10); INSERT INTO field_tag VALUES (39,158,10); INSERT INTO field_tag VALUES (39,159,10); INSERT INTO field_tag VALUES (39,160,10); INSERT INTO field_tag VALUES (39,161,10); INSERT INTO field_tag VALUES (39,162,10); INSERT INTO field_tag VALUES (39,163,10); INSERT INTO field_tag VALUES (39,164,10); INSERT INTO field_tag VALUES (39,20,10); INSERT INTO field_tag VALUES (39,21,10); INSERT INTO field_tag VALUES (39,22,10); INSERT INTO field_tag VALUES (39,23,10); INSERT INTO field_tag VALUES (39,165,10); INSERT INTO field_tag VALUES (39,166,10); INSERT INTO field_tag VALUES (39,167,10); INSERT INTO field_tag VALUES (39,168,10); INSERT INTO field_tag VALUES (39,169,10); INSERT INTO field_tag VALUES (39,170,10); INSERT INTO field_tag VALUES (39,25,10); INSERT INTO field_tag VALUES (39,27,10); INSERT INTO field_tag VALUES (39,28,10); INSERT INTO field_tag VALUES (39,29,10); INSERT INTO field_tag VALUES (39,30,10); INSERT INTO field_tag VALUES (39,31,10); INSERT INTO field_tag VALUES (39,32,10); INSERT INTO field_tag VALUES (39,33,10); INSERT INTO field_tag VALUES (39,34,10); INSERT INTO field_tag VALUES (39,35,10); INSERT INTO field_tag VALUES (39,36,10); INSERT INTO field_tag VALUES (39,37,10); INSERT INTO field_tag VALUES (39,38,10); INSERT INTO field_tag VALUES (39,39,10); INSERT INTO field_tag VALUES (39,171,10); INSERT INTO field_tag VALUES (39,172,10); INSERT INTO field_tag VALUES (39,173,10); INSERT INTO field_tag VALUES (39,174,10); INSERT INTO field_tag VALUES (39,175,10); INSERT INTO field_tag VALUES (39,41,10); INSERT INTO field_tag VALUES (39,42,10); INSERT INTO field_tag VALUES (39,43,10); INSERT INTO field_tag VALUES (39,44,10); INSERT INTO field_tag VALUES (39,45,10); INSERT INTO field_tag VALUES (39,46,10); INSERT INTO field_tag VALUES (39,47,10); INSERT INTO field_tag VALUES (39,48,10); INSERT INTO field_tag VALUES (39,49,10); INSERT INTO field_tag VALUES (39,50,10); INSERT INTO field_tag VALUES (39,51,10); INSERT INTO field_tag VALUES (39,52,10); INSERT INTO field_tag VALUES (39,53,10); INSERT INTO field_tag VALUES (39,54,10); INSERT INTO field_tag VALUES (39,55,10); INSERT INTO field_tag VALUES (39,56,10); INSERT INTO field_tag VALUES (39,57,10); INSERT INTO field_tag VALUES (39,58,10); INSERT INTO field_tag VALUES (39,59,10); INSERT INTO field_tag VALUES (39,60,10); INSERT INTO field_tag VALUES (39,61,10); INSERT INTO field_tag VALUES (39,62,10); INSERT INTO field_tag VALUES (39,63,10); INSERT INTO field_tag VALUES (39,64,10); INSERT INTO field_tag VALUES (39,65,10); INSERT INTO field_tag VALUES (39,66,10); INSERT INTO field_tag VALUES (39,67,10); INSERT INTO field_tag VALUES (39,176,10); INSERT INTO field_tag VALUES (39,177,10); INSERT INTO field_tag VALUES (39,178,10); INSERT INTO field_tag VALUES (39,179,10); INSERT INTO field_tag VALUES (39,180,10); INSERT INTO field_tag VALUES (39,69,10); INSERT INTO field_tag VALUES (39,70,10); INSERT INTO field_tag VALUES (39,71,10); INSERT INTO field_tag VALUES (39,72,10); INSERT INTO field_tag VALUES (39,73,10); INSERT INTO field_tag VALUES (39,74,10); INSERT INTO field_tag VALUES (39,75,10); INSERT INTO field_tag VALUES (39,76,10); INSERT INTO field_tag VALUES (39,77,10); INSERT INTO field_tag VALUES (39,78,10); INSERT INTO field_tag VALUES (39,79,10); INSERT INTO field_tag VALUES (39,80,10); INSERT INTO field_tag VALUES (39,181,10); INSERT INTO field_tag VALUES (39,182,10); INSERT INTO field_tag VALUES (39,183,10); INSERT INTO field_tag VALUES (39,184,10); INSERT INTO field_tag VALUES (39,185,10); INSERT INTO field_tag VALUES (39,186,10); INSERT INTO field_tag VALUES (39,82,10); INSERT INTO field_tag VALUES (39,83,10); INSERT INTO field_tag VALUES (39,84,10); INSERT INTO field_tag VALUES (39,85,10); INSERT INTO field_tag VALUES (39,187,10); INSERT INTO field_tag VALUES (39,88,10); INSERT INTO field_tag VALUES (39,89,10); INSERT INTO field_tag VALUES (39,90,10); INSERT INTO field_tag VALUES (39,91,10); INSERT INTO field_tag VALUES (39,92,10); INSERT INTO field_tag VALUES (39,93,10); INSERT INTO field_tag VALUES (39,94,10); INSERT INTO field_tag VALUES (39,95,10); INSERT INTO field_tag VALUES (39,96,10); INSERT INTO field_tag VALUES (39,97,10); INSERT INTO field_tag VALUES (39,98,10); INSERT INTO field_tag VALUES (39,99,10); INSERT INTO field_tag VALUES (39,100,10); INSERT INTO field_tag VALUES (39,102,10); INSERT INTO field_tag VALUES (39,103,10); INSERT INTO field_tag VALUES (39,104,10); INSERT INTO field_tag VALUES (39,105,10); INSERT INTO field_tag VALUES (39,188,10); INSERT INTO field_tag VALUES (39,189,10); INSERT INTO field_tag VALUES (39,190,10); INSERT INTO field_tag VALUES (39,191,10); INSERT INTO field_tag VALUES (39,192,10); INSERT INTO field_tag VALUES (39,193,10); INSERT INTO field_tag VALUES (39,194,10); INSERT INTO field_tag VALUES (39,195,10); INSERT INTO field_tag VALUES (39,196,10); INSERT INTO field_tag VALUES (39,107,10); INSERT INTO field_tag VALUES (39,108,10); INSERT INTO field_tag VALUES (39,109,10); INSERT INTO field_tag VALUES (39,110,10); INSERT INTO field_tag VALUES (39,111,10); INSERT INTO field_tag VALUES (39,112,10); INSERT INTO field_tag VALUES (39,113,10); INSERT INTO field_tag VALUES (39,197,10); INSERT INTO field_tag VALUES (39,198,10); INSERT INTO field_tag VALUES (39,199,10); INSERT INTO field_tag VALUES (39,200,10); INSERT INTO field_tag VALUES (39,201,10); INSERT INTO field_tag VALUES (39,202,10); INSERT INTO field_tag VALUES (39,203,10); INSERT INTO field_tag VALUES (39,204,10); INSERT INTO field_tag VALUES (39,205,10); INSERT INTO field_tag VALUES (39,206,10); INSERT INTO field_tag VALUES (39,207,10); INSERT INTO field_tag VALUES (39,208,10); INSERT INTO field_tag VALUES (39,209,10); INSERT INTO field_tag VALUES (39,210,10); INSERT INTO field_tag VALUES (39,211,10); INSERT INTO field_tag VALUES (39,212,10); INSERT INTO field_tag VALUES (39,213,10); INSERT INTO field_tag VALUES (39,214,10); INSERT INTO field_tag VALUES (39,215,10); INSERT INTO field_tag VALUES (39,122,10); INSERT INTO field_tag VALUES (39,123,10); INSERT INTO field_tag VALUES (39,124,10); INSERT INTO field_tag VALUES (39,125,10); INSERT INTO field_tag VALUES (39,126,10); INSERT INTO field_tag VALUES (39,127,10); INSERT INTO field_tag VALUES (39,128,10); INSERT INTO field_tag VALUES (39,129,10); INSERT INTO field_tag VALUES (39,130,10); INSERT INTO field_tag VALUES (39,1,10); INSERT INTO field_tag VALUES (39,2,10); -- misc authority fields INSERT INTO field_tag VALUES (39,216,10); INSERT INTO field_tag VALUES (39,217,10); INSERT INTO field_tag VALUES (39,218,10); INSERT INTO field_tag VALUES (39,219,10); INSERT INTO field_tag VALUES (39,220,10); INSERT INTO field_tag VALUES (39,221,10); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (1,'HTML brief','hb', 'HTML brief output format, used for search results pages.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (2,'HTML detailed','hd', 'HTML detailed output format, used for Detailed record pages.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (3,'MARC','hm', 'HTML MARC.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (4,'Dublin Core','xd', 'XML Dublin Core.', 'text/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (5,'MARCXML','xm', 'XML MARC.', 'text/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (6,'portfolio','hp', 'HTML portfolio-style output format for photos.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (7,'photo captions only','hc', 'HTML caption-only output format for photos.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (8,'BibTeX','hx', 'BibTeX.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (9,'EndNote','xe', 'XML EndNote.', 'text/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (10,'NLM','xn', 'XML NLM.', 'text/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (11,'Excel','excel', 'Excel csv output', 'application/ms-excel', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (12,'HTML similarity','hs', 'Very short HTML output for similarity box (people also viewed..).', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (13,'RSS','xr', 'RSS.', 'text/xml', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (14,'OAI DC','xoaidc', 'OAI DC.', 'text/xml', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (15,'File mini-panel', 'hdfile', 'Used to show fulltext files in mini-panel of detailed record pages.', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (16,'Actions mini-panel', 'hdact', 'Used to display actions in mini-panel of detailed record pages.', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (17,'References tab', 'hdref', 'Display record references in References tab.', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (18,'HTML citesummary','hcs', 'HTML cite summary format, used for search results pages.', 'text/html', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (19,'RefWorks','xw', 'RefWorks.', 'text/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (20,'MODS', 'xo', 'Metadata Object Description Schema', 'application/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (21,'HTML author claiming', 'ha', 'Very brief HTML output format for author/paper claiming facility.', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (22,'Podcast', 'xp', 'Sample format suitable for multimedia feeds, such as podcasts', 'application/rss+xml', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (23,'WebAuthorProfile affiliations helper','wapaff', 'cPickled dicts', 'text', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (24,'EndNote (8-X)','xe8x', 'XML EndNote (8-X).', 'text/xml', 1); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (25,'HTML citesummary extended','hcs2', 'HTML cite summary format, including self-citations counts.', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (26,'DataCite','dcite', 'DataCite XML format.', 'text/xml', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (27,'Mobile brief','mobb', 'Mobile brief format.', 'text/html', 0); INSERT INTO format (id,name,code,description,content_type,visibility) VALUES (28,'Mobile detailed','mobd', 'Mobile detailed format.', 'text/html', 0); INSERT INTO tag VALUES (1,'first author name','100__a'); INSERT INTO tag VALUES (2,'additional author name','700__a'); 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,'lang','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,'internal','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,'pages','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,'series','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,'summary','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,'subject','69%'); INSERT INTO tag VALUES (86,'70x','70%'); INSERT INTO tag VALUES (87,'71x','71%'); INSERT INTO tag VALUES (88,'author-ad','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,'electr','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,'publication','90%'); INSERT INTO tag VALUES (107,'pub-conf-cit','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,'catinfo','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 tag VALUES (118,'isbn','020__a'); INSERT INTO tag VALUES (119,'issn','022__a'); INSERT INTO tag VALUES (120,'coden','030__a'); INSERT INTO tag VALUES (121,'doi','909C4a'); INSERT INTO tag VALUES (122,'850x','850%'); INSERT INTO tag VALUES (123,'851x','851%'); INSERT INTO tag VALUES (124,'852x','852%'); INSERT INTO tag VALUES (125,'853x','853%'); INSERT INTO tag VALUES (126,'854x','854%'); INSERT INTO tag VALUES (127,'855x','855%'); INSERT INTO tag VALUES (128,'857x','857%'); INSERT INTO tag VALUES (129,'858x','858%'); INSERT INTO tag VALUES (130,'859x','859%'); INSERT INTO tag VALUES (131,'journal','909C4%'); INSERT INTO tag VALUES (132,'collaboration','710__g'); INSERT INTO tag VALUES (133,'first author affiliation','100__u'); INSERT INTO tag VALUES (134,'additional author affiliation','700__u'); INSERT INTO tag VALUES (135,'caption','8564_y'); INSERT INTO tag VALUES (136,'journal page','909C4c'); INSERT INTO tag VALUES (137,'journal title','909C4p'); INSERT INTO tag VALUES (138,'journal volume','909C4v'); INSERT INTO tag VALUES (139,'journal year','909C4y'); INSERT INTO tag VALUES (140,'comment','500__a'); INSERT INTO tag VALUES (141,'title','245__a'); INSERT INTO tag VALUES (142,'main abstract','245__a'); INSERT INTO tag VALUES (143,'internal notes','595__a'); INSERT INTO tag VALUES (144,'other relationship entry', '787%'); -- INSERT INTO tag VALUES (145,'authority: main personal name','100__a'); -- already exists under a different name ('first author name') INSERT INTO tag VALUES (146,'authority: alternative personal name','400__a'); -- INSERT INTO tag VALUES (147,'authority: personal name from other record','500__a'); -- already exists under a different name ('comment') INSERT INTO tag VALUES (148,'authority: organization main name','110__a'); INSERT INTO tag VALUES (149,'organization alternative name','410__a'); INSERT INTO tag VALUES (150,'organization main from other record','510__a'); INSERT INTO tag VALUES (151,'authority: uniform title','130__a'); INSERT INTO tag VALUES (152,'authority: uniform title alternatives','430__a'); INSERT INTO tag VALUES (153,'authority: uniform title from other record','530__a'); INSERT INTO tag VALUES (154,'authority: subject from other record','150__a'); INSERT INTO tag VALUES (155,'authority: subject alternative name','450__a'); INSERT INTO tag VALUES (156,'authority: subject main name','550__a'); -- tags for misc index INSERT INTO tag VALUES (157,'031x','031%'); INSERT INTO tag VALUES (158,'032x','032%'); INSERT INTO tag VALUES (159,'033x','033%'); INSERT INTO tag VALUES (160,'034x','034%'); INSERT INTO tag VALUES (161,'035x','035%'); INSERT INTO tag VALUES (162,'036x','036%'); INSERT INTO tag VALUES (163,'037x','037%'); INSERT INTO tag VALUES (164,'038x','038%'); INSERT INTO tag VALUES (165,'080x','080%'); INSERT INTO tag VALUES (166,'082x','082%'); INSERT INTO tag VALUES (167,'083x','083%'); INSERT INTO tag VALUES (168,'084x','084%'); INSERT INTO tag VALUES (169,'085x','085%'); INSERT INTO tag VALUES (170,'086x','086%'); INSERT INTO tag VALUES (171,'240x','240%'); INSERT INTO tag VALUES (172,'242x','242%'); INSERT INTO tag VALUES (173,'243x','243%'); INSERT INTO tag VALUES (174,'244x','244%'); INSERT INTO tag VALUES (175,'247x','247%'); INSERT INTO tag VALUES (176,'521x','521%'); INSERT INTO tag VALUES (177,'522x','522%'); INSERT INTO tag VALUES (178,'524x','524%'); INSERT INTO tag VALUES (179,'525x','525%'); INSERT INTO tag VALUES (180,'526x','526%'); INSERT INTO tag VALUES (181,'650x','650%'); INSERT INTO tag VALUES (182,'651x','651%'); INSERT INTO tag VALUES (183,'6531_v','6531_v'); INSERT INTO tag VALUES (184,'6531_y','6531_y'); INSERT INTO tag VALUES (185,'6531_9','6531_9'); INSERT INTO tag VALUES (186,'654x','654%'); INSERT INTO tag VALUES (187,'655x','655%'); INSERT INTO tag VALUES (188,'656x','656%'); INSERT INTO tag VALUES (189,'657x','657%'); INSERT INTO tag VALUES (190,'658x','658%'); INSERT INTO tag VALUES (191,'711x','711%'); INSERT INTO tag VALUES (192,'900x','900%'); INSERT INTO tag VALUES (193,'901x','901%'); INSERT INTO tag VALUES (194,'902x','902%'); INSERT INTO tag VALUES (195,'903x','903%'); INSERT INTO tag VALUES (196,'904x','904%'); INSERT INTO tag VALUES (197,'905x','905%'); INSERT INTO tag VALUES (198,'906x','906%'); INSERT INTO tag VALUES (199,'907x','907%'); INSERT INTO tag VALUES (200,'908x','908%'); INSERT INTO tag VALUES (201,'909C1x','909C1%'); INSERT INTO tag VALUES (202,'909C5x','909C5%'); INSERT INTO tag VALUES (203,'909CSx','909CS%'); INSERT INTO tag VALUES (204,'909COx','909CO%'); INSERT INTO tag VALUES (205,'909CKx','909CK%'); INSERT INTO tag VALUES (206,'909CPx','909CP%'); INSERT INTO tag VALUES (207,'981x','981%'); INSERT INTO tag VALUES (208,'982x','982%'); INSERT INTO tag VALUES (209,'983x','983%'); INSERT INTO tag VALUES (210,'984x','984%'); INSERT INTO tag VALUES (211,'985x','985%'); INSERT INTO tag VALUES (212,'986x','986%'); INSERT INTO tag VALUES (213,'987x','987%'); INSERT INTO tag VALUES (214,'988x','988%'); INSERT INTO tag VALUES (215,'989x','989%'); -- authority controled tags INSERT INTO tag VALUES (216,'author control','100__0'); -INSERT INTO tag VALUES (217,'institution control','110__0'); +INSERT INTO tag VALUES (217,'institute control','110__0'); INSERT INTO tag VALUES (218,'journal control','130__0'); INSERT INTO tag VALUES (219,'subject control','150__0'); -INSERT INTO tag VALUES (220,'additional institution control', '260__0'); +INSERT INTO tag VALUES (220,'additional institute control', '260__0'); INSERT INTO tag VALUES (221,'additional author control', '700__0'); INSERT INTO idxINDEX VALUES (1,'global','This index contains words/phrases from global fields.','0000-00-00 00:00:00', '', 'native', 'INDEX-SYNONYM-TITLE,exact','No','No','No','BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (2,'collection','This index contains words/phrases from collection identifiers fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (3,'abstract','This index contains words/phrases from abstract fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (4,'author','This index contains fuzzy words/phrases from author fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexAuthorTokenizer'); INSERT INTO idxINDEX VALUES (5,'keyword','This index contains words/phrases from keyword fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (6,'reference','This index contains words/phrases from references fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (7,'reportnumber','This index contains words/phrases from report numbers fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (8,'title','This index contains words/phrases from title fields.','0000-00-00 00:00:00', '', 'native','INDEX-SYNONYM-TITLE,exact','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (9,'fulltext','This index contains words/phrases from fulltext fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexFulltextTokenizer'); INSERT INTO idxINDEX VALUES (10,'year','This index contains words/phrases from year fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexYearTokenizer'); INSERT INTO idxINDEX VALUES (11,'journal','This index contains words/phrases from journal publication information fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexJournalTokenizer'); INSERT INTO idxINDEX VALUES (12,'collaboration','This index contains words/phrases from collaboration name fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); -INSERT INTO idxINDEX VALUES (13,'affiliation','This index contains words/phrases from institutional affiliation fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); +INSERT INTO idxINDEX VALUES (13,'affiliation','This index contains words/phrases from affiliation fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (14,'exactauthor','This index contains exact words/phrases from author fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexExactAuthorTokenizer'); INSERT INTO idxINDEX VALUES (15,'caption','This index contains exact words/phrases from figure captions.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (16,'firstauthor','This index contains fuzzy words/phrases from first author field.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexAuthorTokenizer'); INSERT INTO idxINDEX VALUES (17,'exactfirstauthor','This index contains exact words/phrases from first author field.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexExactAuthorTokenizer'); INSERT INTO idxINDEX VALUES (18,'authorcount','This index contains number of authors of the record.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexAuthorCountTokenizer'); INSERT INTO idxINDEX VALUES (19,'exacttitle','This index contains exact words/phrases from title fields.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (20,'authorityauthor','This index contains words/phrases from author authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexAuthorTokenizer'); -INSERT INTO idxINDEX VALUES (21,'authorityinstitution','This index contains words/phrases from institution authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); +INSERT INTO idxINDEX VALUES (21,'authorityinstitute','This index contains words/phrases from institute authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (22,'authorityjournal','This index contains words/phrases from journal authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (23,'authoritysubject','This index contains words/phrases from subject authority records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexDefaultTokenizer'); INSERT INTO idxINDEX VALUES (24,'itemcount','This index contains number of copies of items in the library.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexItemCountTokenizer'); INSERT INTO idxINDEX VALUES (25,'filetype','This index contains extensions of files connected to records.','0000-00-00 00:00:00', '', 'native', '','No','No','No', 'BibIndexFiletypeTokenizer'); INSERT INTO idxINDEX VALUES (26,'miscellaneous','This index contains words/phrases from miscellaneous fields','0000-00-00 00:00:00', '', 'native','','No','No','No', 'BibIndexDefaultTokenizer'); 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 idxINDEX_field (id_idxINDEX, id_field) VALUES (11,19); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (12,20); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (13,21); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (14,22); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (15,27); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (16,28); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (17,29); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (18,30); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (19,32); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (20,33); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (21,34); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (22,35); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (23,36); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (24,37); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (25,38); INSERT INTO idxINDEX_field (id_idxINDEX, id_field) VALUES (26,39); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 2); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 3); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 5); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 7); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 8); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 10); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 11); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 12); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 13); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 19); INSERT INTO idxINDEX_idxINDEX (id_virtual, id_normal) VALUES (1, 26); 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 ('Ask_For_Record_Details_Confirmation',''); 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_Recid', 'This function gets the recid for a document with a given report-number (as stored in the global variable rn).'); 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_Approval_Request_to_Referee',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Mail_Approval_Withdrawn_to_Referee',NULL); 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_Approval_Request',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_APP',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_DEL','Prepare a message for the user informing them that their record was successfully deleted.'); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_MBI',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Print_Success_SRV',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Register_Approval_Request',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Register_Referee_Decision',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Withdraw_Approval_Request',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Report_Number_Generation',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Second_Report_Number_Generation','Generate a secondary report number for a document.'); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_Approval_Request',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_APP_Mail',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_Delete_Mail',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_Modify_Mail',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Send_SRV_Mail',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Set_Embargo','Set an embargo on all the documents of a given record.'); INSERT INTO sbmALLFUNCDESCR VALUES ('Stamp_Replace_Single_File_Approval','Stamp a single file when a document is approved.'); INSERT INTO sbmALLFUNCDESCR VALUES ('Stamp_Uploaded_Files','Stamp some of the files that were uploaded during a submission.'); INSERT INTO sbmALLFUNCDESCR VALUES ('Test_Status',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Update_Approval_DB',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('User_is_Record_Owner_or_Curator','Check if user is owner or special editor of a record'); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_Files_to_Storage','Attach files received from chosen file input element(s)'); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_Revised_Files_to_Storage','Revise files initially uploaded with "Move_Files_to_Storage"'); INSERT INTO sbmALLFUNCDESCR VALUES ('Make_Dummy_MARC_XML_Record',''); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_CKEditor_Files_to_Storage','Transfer files attached to the record with the CKEditor'); INSERT INTO sbmALLFUNCDESCR VALUES ('Create_Upload_Files_Interface','Display generic interface to add/revise/delete files. To be used before function "Move_Uploaded_Files_to_Storage"'); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_Uploaded_Files_to_Storage','Attach files uploaded with "Create_Upload_Files_Interface"'); INSERT INTO sbmALLFUNCDESCR VALUES ('Move_Photos_to_Storage','Attach/edit the pictures uploaded with the "create_photos_manager_interface()" function'); INSERT INTO sbmALLFUNCDESCR VALUES ('Link_Records','Link two records toghether via MARC'); INSERT INTO sbmALLFUNCDESCR VALUES ('Video_Processing',NULL); INSERT INTO sbmALLFUNCDESCR VALUES ('Set_RN_From_Sysno', 'Set the value of global rn variable to the report number identified by sysno (recid)'); INSERT INTO sbmALLFUNCDESCR VALUES ('Notify_URL','Access URL, possibly to post content'); INSERT INTO sbmALLFUNCDESCR VALUES ('Run_PlotExtractor','Run PlotExtractor on the current record'); INSERT INTO sbmFIELDDESC VALUES ('Upload_Photos',NULL,'','R',NULL,NULL,NULL,NULL,NULL,'\"\"\"\r\nThis is an example of element that creates a photos upload interface.\r\nClone it, customize it and integrate it into your submission. Then add function \r\n\'Move_Photos_to_Storage\' to your submission functions list, in order for files \r\nuploaded with this interface to be attached to the record. More information in \r\nthe WebSubmit admin guide.\r\n\"\"\"\r\n\r\nfrom invenio.websubmit_functions.Shared_Functions import ParamFromFile\r\nfrom invenio.websubmit_functions.Move_Photos_to_Storage import \\\r\n read_param_file, \\\r\n create_photos_manager_interface, \\\r\n get_session_id\r\n\r\n# Retrieve session id\r\ntry:\r\n # User info is defined only in MBI/MPI actions...\r\n session_id = get_session_id(None, uid, user_info) \r\nexcept:\r\n session_id = get_session_id(req, uid, {})\r\n\r\n# Retrieve context\r\nindir = curdir.split(\'/\')[-3]\r\ndoctype = curdir.split(\'/\')[-2]\r\naccess = curdir.split(\'/\')[-1]\r\n\r\n# Get the record ID, if any\r\nsysno = ParamFromFile(\"%s/%s\" % (curdir,\'SN\')).strip()\r\n\r\n\"\"\"\r\nModify below the configuration of the photos manager interface.\r\nNote: `can_reorder_photos\' parameter is not yet fully taken into consideration\r\n\r\nDocumentation of the function is available at \r\n\"\"\"\r\ntext += create_photos_manager_interface(sysno, session_id, uid,\r\n doctype, indir, curdir, access,\r\n can_delete_photos=True,\r\n can_reorder_photos=True,\r\n can_upload_photos=True,\r\n editor_width=700,\r\n editor_height=400,\r\n initial_slider_value=100,\r\n max_slider_value=200,\r\n min_slider_value=80)','0000-00-00','0000-00-00',NULL,NULL,0); 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.\\012Do not 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 sbmFIELDDESC VALUES ('Upload_Files',NULL,'','R',NULL,NULL,NULL,NULL,NULL,'\"\"\"\r\nThis is an example of element that creates a file upload interface.\r\nClone it, customize it and integrate it into your submission. Then add function \r\n\'Move_Uploaded_Files_to_Storage\' to your submission functions list, in order for files \r\nuploaded with this interface to be attached to the record. More information in \r\nthe WebSubmit admin guide.\r\n\"\"\"\r\nimport os\r\nfrom invenio.bibdocfile_managedocfiles import create_file_upload_interface\r\nfrom invenio.websubmit_functions.Shared_Functions import ParamFromFile\r\n\r\nindir = ParamFromFile(os.path.join(curdir, \'indir\'))\r\ndoctype = ParamFromFile(os.path.join(curdir, \'doctype\'))\r\naccess = ParamFromFile(os.path.join(curdir, \'access\'))\r\ntry:\r\n sysno = int(ParamFromFile(os.path.join(curdir, \'SN\')).strip())\r\nexcept:\r\n sysno = -1\r\nln = ParamFromFile(os.path.join(curdir, \'ln\'))\r\n\r\n\"\"\"\r\nRun the following to get the list of parameters of function \'create_file_upload_interface\':\r\necho -e \'from invenio.bibdocfile_managedocfiles import create_file_upload_interface as f\\nprint f.__doc__\' | python\r\n\"\"\"\r\ntext = create_file_upload_interface(recid=sysno,\r\n print_outside_form_tag=False,\r\n include_headers=True,\r\n ln=ln,\r\n doctypes_and_desc=[(\'main\',\'Main document\'),\r\n (\'additional\',\'Figure, schema, etc.\')],\r\n can_revise_doctypes=[\'*\'],\r\n can_describe_doctypes=[\'main\'],\r\n can_delete_doctypes=[\'additional\'],\r\n can_rename_doctypes=[\'main\'],\r\n sbm_indir=indir, sbm_doctype=doctype, sbm_access=access)[1]\r\n','0000-00-00','0000-00-00',NULL,NULL,0); 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_Recid','record_search_pattern'); 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 ('Register_Approval_Request','categ_file_appreq'); INSERT INTO sbmFUNDESC VALUES ('Register_Approval_Request','categ_rnseek_appreq'); INSERT INTO sbmFUNDESC VALUES ('Register_Approval_Request','note_file_appreq'); INSERT INTO sbmFUNDESC VALUES ('Register_Referee_Decision','decision_file'); INSERT INTO sbmFUNDESC VALUES ('Withdraw_Approval_Request','categ_file_withd'); INSERT INTO sbmFUNDESC VALUES ('Withdraw_Approval_Request','categ_rnseek_withd'); 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 ('Report_Number_Generation','nblength'); INSERT INTO sbmFUNDESC VALUES ('Report_Number_Generation','initialvalue'); INSERT INTO sbmFUNDESC VALUES ('Mail_Approval_Request_to_Referee','categ_file_appreq'); INSERT INTO sbmFUNDESC VALUES ('Mail_Approval_Request_to_Referee','categ_rnseek_appreq'); INSERT INTO sbmFUNDESC VALUES ('Mail_Approval_Request_to_Referee','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Mail_Approval_Withdrawn_to_Referee','categ_file_withd'); INSERT INTO sbmFUNDESC VALUES ('Mail_Approval_Withdrawn_to_Referee','categ_rnseek_withd'); 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 ('Update_Approval_DB','decision_file'); 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 ('Send_APP_Mail','decision_file'); INSERT INTO sbmFUNDESC VALUES ('Send_APP_Mail','comments_file'); 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 ('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 sbmFUNDESC VALUES ('Move_Files_to_Storage','documenttype'); INSERT INTO sbmFUNDESC VALUES ('Move_Files_to_Storage','iconsize'); INSERT INTO sbmFUNDESC VALUES ('Move_Files_to_Storage','paths_and_suffixes'); INSERT INTO sbmFUNDESC VALUES ('Move_Files_to_Storage','rename'); INSERT INTO sbmFUNDESC VALUES ('Move_Files_to_Storage','paths_and_restrictions'); INSERT INTO sbmFUNDESC VALUES ('Move_Files_to_Storage','paths_and_doctypes'); INSERT INTO sbmFUNDESC VALUES ('Move_Revised_Files_to_Storage','elementNameToDoctype'); INSERT INTO sbmFUNDESC VALUES ('Move_Revised_Files_to_Storage','createIconDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Move_Revised_Files_to_Storage','createRelatedFormats'); INSERT INTO sbmFUNDESC VALUES ('Move_Revised_Files_to_Storage','iconsize'); INSERT INTO sbmFUNDESC VALUES ('Move_Revised_Files_to_Storage','keepPreviousVersionDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Set_Embargo','date_file'); INSERT INTO sbmFUNDESC VALUES ('Set_Embargo','date_format'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Uploaded_Files','files_to_be_stamped'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Uploaded_Files','latex_template'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Uploaded_Files','latex_template_vars'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Uploaded_Files','stamp'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Uploaded_Files','layer'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Uploaded_Files','switch_file'); INSERT INTO sbmFUNDESC VALUES ('Make_Dummy_MARC_XML_Record','dummyrec_source_tpl'); INSERT INTO sbmFUNDESC VALUES ('Make_Dummy_MARC_XML_Record','dummyrec_create_tpl'); INSERT INTO sbmFUNDESC VALUES ('Print_Success_APP','decision_file'); INSERT INTO sbmFUNDESC VALUES ('Print_Success_APP','newrnin'); INSERT INTO sbmFUNDESC VALUES ('Send_Delete_Mail','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Send_Delete_Mail','record_managers'); INSERT INTO sbmFUNDESC VALUES ('Second_Report_Number_Generation','2nd_rn_file'); INSERT INTO sbmFUNDESC VALUES ('Second_Report_Number_Generation','2nd_rn_format'); INSERT INTO sbmFUNDESC VALUES ('Second_Report_Number_Generation','2nd_rn_yeargen'); INSERT INTO sbmFUNDESC VALUES ('Second_Report_Number_Generation','2nd_rncateg_file'); INSERT INTO sbmFUNDESC VALUES ('Second_Report_Number_Generation','2nd_counterpath'); INSERT INTO sbmFUNDESC VALUES ('Second_Report_Number_Generation','2nd_nb_length'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','file_to_be_stamped'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','latex_template'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','latex_template_vars'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','new_file_name'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','stamp'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','layer'); INSERT INTO sbmFUNDESC VALUES ('Stamp_Replace_Single_File_Approval','switch_file'); INSERT INTO sbmFUNDESC VALUES ('Move_CKEditor_Files_to_Storage','input_fields'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','maxsize'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','minsize'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','doctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','restrictions'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canDeleteDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canReviseDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canDescribeDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canCommentDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canKeepDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canAddFormatDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canRestrictDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canRenameDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','canNameNewFiles'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','createRelatedFormats'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','keepDefault'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','showLinks'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','fileLabel'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','filenameLabel'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','descriptionLabel'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','commentLabel'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','restrictionLabel'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','startDoc'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','endDoc'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','defaultFilenameDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Create_Upload_Files_Interface','maxFilesDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Move_Uploaded_Files_to_Storage','iconsize'); INSERT INTO sbmFUNDESC VALUES ('Move_Uploaded_Files_to_Storage','createIconDoctypes'); INSERT INTO sbmFUNDESC VALUES ('Move_Uploaded_Files_to_Storage','forceFileRevision'); INSERT INTO sbmFUNDESC VALUES ('Move_Photos_to_Storage','iconsize'); INSERT INTO sbmFUNDESC VALUES ('Move_Photos_to_Storage','iconformat'); INSERT INTO sbmFUNDESC VALUES ('User_is_Record_Owner_or_Curator','curator_role'); INSERT INTO sbmFUNDESC VALUES ('User_is_Record_Owner_or_Curator','curator_flag'); INSERT INTO sbmFUNDESC VALUES ('Link_Records','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Link_Records','edsrn2'); INSERT INTO sbmFUNDESC VALUES ('Link_Records','directRelationship'); INSERT INTO sbmFUNDESC VALUES ('Link_Records','reverseRelationship'); INSERT INTO sbmFUNDESC VALUES ('Link_Records','keep_original_edsrn2'); INSERT INTO sbmFUNDESC VALUES ('Video_Processing','aspect'); INSERT INTO sbmFUNDESC VALUES ('Video_Processing','batch_template'); INSERT INTO sbmFUNDESC VALUES ('Video_Processing','title'); INSERT INTO sbmFUNDESC VALUES ('Set_RN_From_Sysno','edsrn'); INSERT INTO sbmFUNDESC VALUES ('Set_RN_From_Sysno','rep_tags'); INSERT INTO sbmFUNDESC VALUES ('Set_RN_From_Sysno','record_search_pattern'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','url'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','data'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','admin_emails'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','content_type'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','attempt_times'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','attempt_sleeptime'); INSERT INTO sbmFUNDESC VALUES ('Notify_URL','user'); INSERT INTO sbmFUNDESC VALUES ('Run_PlotExtractor','with_docname'); INSERT INTO sbmFUNDESC VALUES ('Run_PlotExtractor','with_doctype'); INSERT INTO sbmFUNDESC VALUES ('Run_PlotExtractor','with_docformat'); INSERT INTO sbmFUNDESC VALUES ('Run_PlotExtractor','extract_plots_switch_file'); 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 swrREMOTESERVER VALUES (1, 'arXiv', 'arxiv.org', 'CDS_Invenio', 'sword_invenio', 'admin', 'SWORD at arXiv', 'http://arxiv.org/abs', 'https://arxiv.org/sword-app/servicedocument', '', 0); -- end of file diff --git a/modules/webhelp/web/admin/howto/howto-authority.webdoc b/modules/webhelp/web/admin/howto/howto-authority.webdoc index 78a2b1491..9314de0ea 100644 --- a/modules/webhelp/web/admin/howto/howto-authority.webdoc +++ b/modules/webhelp/web/admin/howto/howto-authority.webdoc @@ -1,99 +1,99 @@ ## -*- mode: html; coding: utf-8; -*- ## This file is part of Invenio. -## Copyright (C) 2007, 2008, 2009, 2010, 2011 CERN. +## Copyright (C) 2007, 2008, 2009, 2010, 2011, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

    Introduction

    This page describes how to use Authority Control in Invenio from a user's perspective

    For an explanation of how to configure Authority Control in Invenio, cf. _(BibAuthority Admin Guide)_.

    How to MARC authority records

    1. The 980 field

    -

    When adding an authority record to INVENIO, whether by uploading a MARC record manually or by adding a new record in BibEdit, it is important to add two separate '980' fields to the record. -The first field will contain the value “AUTHORITY” in the $a subfield. -This is to tell INVENIO that this is an authority record. -The second '980' field will likewise contain a value in its $a subfield, only this time you must specify what kind of authority record it is. -Typically an author authority record would contain the term “AUTHOR”, an institution would contain “INSTITUTION” etc. +

    When adding an authority record to INVENIO, whether by uploading a MARC record manually or by adding a new record in BibEdit, it is important to add two separate '980' fields to the record. +The first field will contain the value “AUTHORITY” in the $a subfield. +This is to tell INVENIO that this is an authority record. +The second '980' field will likewise contain a value in its $a subfield, only this time you must specify what kind of authority record it is. +Typically an author authority record would contain the term “AUTHOR”, an institute would contain “INSTITUTE” etc. It is important to communicate these exact terms to the INVENIO admin who will configure how INVENIO handles each of these authority record types for the individual INVENIO modules.

    2. The 035 field

    Further, you must add a unique control number to each authority record. In Invenio, this number must be contained in the 035__ $a field of the authority record and contains the MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number, e.g. "(SzGeCERN)abc123"). Cf. 035 - System Control Number from the MARC 21 reference page.

    3. Links between MARC records

    When creating links between MARC records, we must distinguish two cases: 1) references from bibliographic records towards authority records, and 2) references between authority records

    3.1 Creating a reference from a bibliographic record

    Example: You have an article (bibliographic record) with Author "Ellis" in the 100__ $a field and you want to create a reference to the authority record for this author.

    -

    This can be done by inserting the control number of this authority record (as contained in the 035__ $a subfield of the authority record) into the $0 subfield of the same 100__ field of the bibliographic record, prefixed by the type of authority record being referenced and a (configurable) separator. +

    This can be done by inserting the control number of this authority record (as contained in the 035__ $a subfield of the authority record) into the $0 subfield of the same 100__ field of the bibliographic record, prefixed by the type of authority record being referenced and a (configurable) separator.

    A 100 field might look like this:

     100__ $a Ellis, J.
           $0 AUTHOR:(CERN)abc123
           $u CERN
    -      $0 INSTITUTION:(CERN)xyz789
    +      $0 INSTITUTE:(CERN)xyz789
     
    -

    In this case, since we are referencing an AUTHOR authority record, the 100__ $0 subfield would read, e.g. "AUTHOR:(CERN)abc123". If you want to reference an institution, e.g. SLAC, as affiliation for an author, you would prefix the control number with "INSTITUTION". You would add another 100__ $0 subfield to the same 100 field and add the value "INSTITUTION:(CERN)xyz789".

    +

    In this case, since we are referencing an AUTHOR authority record, the 100__ $0 subfield would read, e.g. "AUTHOR:(CERN)abc123". If you want to reference an institute, e.g. SLAC, as affiliation for an author, you would prefix the control number with "INSTITUTE". You would add another 100__ $0 subfield to the same 100 field and add the value "INSTITUTE:(CERN)xyz789".

    3.2 Creating links between authority records

    -

    Links between authority records use the 5xx fields. AUTHOR records use the 500 fields, INSTITUTION records the 510 fields and so on, according to the MARC 21 standard. -

    +

    Links between authority records use the 5xx fields. AUTHOR records use the 500 fields, INSTITUTE records the 510 fields and so on, according to the MARC 21 standard. +

    Subfield codes:
     $a - Corporate name or jurisdiction name as entry element (NR)
          e.g. "SLAC National Accelerator Laboratory" or "European Organization for Nuclear Research"
     
     $w - Control subfield (NR)
          'a' - for predecessor
          'b' - for successor
          't' - for top / parent
     
     $4 - Relationship code (R)
    -     The control number of the referenced authority record, 
    +     The control number of the referenced authority record,
          e.g. "(CERN)iii000"
     
    -

    Example: You want to add a predecessor to an INSTITUTION authority record. Let's say "Institution A" has control number "(CERN)iii000" and its successor "Institution B" has control number "(CERN)iii001". In order to designate Institution A as predecessor of Institution B, we would add a 510 field to Institution B with a $w value of 'a', a $a value of 'Institution A', and a $4 value of '(CERN)iii000' like this: +

    Example: You want to add a predecessor to an INSTITUTE authority record. Let's say "Institute A" has control number "(CERN)iii000" and its successor "Institute B" has control number "(CERN)iii001". In order to designate Institute A as predecessor of Institute B, we would add a 510 field to Institute B with a $w value of 'a', a $a value of 'Institute A', and a $4 value of '(CERN)iii000' like this:

    -510__ $a Institution A
    +510__ $a Institute A
           $w a
    -      $4 INSTITUTION:(CERN)iii000
    +      $4 INSTITUTE:(CERN)iii000
     

    4. Other MARC for authority records

    All other MARC fields should follow the MARC 21 Format for Authority Data

    Creating collections of authority records

    -

    Once the authority records have been given the appropriate '980__a' values (cf. above), creating a collection of authority records is no different from creating any other collection in INVENIO. You can simply define a new collection defined by the usual collection query 'collection:AUTHOR' for author authority records, or 'collection:INSTITUTION' for institutions, etc.

    +

    Once the authority records have been given the appropriate '980__a' values (cf. above), creating a collection of authority records is no different from creating any other collection in INVENIO. You can simply define a new collection defined by the usual collection query 'collection:AUTHOR' for author authority records, or 'collection:INSTITUTE' for institutes, etc.

    The recommended way of creating collections for authority records is to create a “virtual collection” for the main 'collection:AUTHORITY' collection and then add the individual authority record collections as regular children of this collection. This will allow you to browse and search within authority records without making this the default for all INVENIO searches.

    How to use authority control in BibEdit

    When using BibEdit to modify MARC meta-data of bibliographic records, certain fields may be configured (by the admin of your INVENIO installation) to offer you auto-complete functionality based upon the data contained in authority records for that field. For example, if MARC subfield 100__ $a was configured to be under authority control, then typing the beginning of a word into this subfield will trigger a drop-down list, offering you a choice of values to choose from. When you click on one of the entries in the drop-down list, this will not only populate the immediate subfield you are editing, but it will also insert a reference into a new $0 subfield of the same MARC field you are editing. This reference tells the system that the author you are referring to is the author as contained in the 'author' authority record with the given authority record control number.

    The illustration below demonstrates how this works:

    autosuggest dropdown

    Typing “Elli” into the 100__ $a subfield will present you with a list of authors that contain a word starting with “Elli” somewhere in their name. In case there are multiple authors with similar or identical names (as is the case in the example shown here), you will receive additional information about these authors to help you disambiguate. The fields to be used for disambiguation can be configured by your INVENIO administrator. If such fields have not been configured, or if they are not sufficient for disambiguation, the authority record control number will be used to assure a unique value for each entry in the drop-down list. In the example above, the first author can be uniquely identified by his email address, whereas for the latter we have only the authority record control number as uniquely identifying characteristic.

    inserted $0 subfield for authority record -

    If in the shown example you click on the first author from the list, this author's name will automatically be inserted into the 100__ $a subfield you were editing, while the authority type and the authority record control number “author:(SzGeCERN)abc123” , is inserted into a new $0 subfield (cf. Illustration 2). This new subfield tells INVENIO that “Ellis, John” is associated with the 'author' authority record containing the authority record control number “(SzGeCERN)abc123”. In this example you can also see that the author's affiliation has been entered in the same way as well, using the auto-complete option for the 100__ $u subfield. In this case the author's affiliation is the “University of Oxford”, which is associated in this INVENIO installation with the 'institution' authority record containing the authority record control number “(SzGeCERN)inst0001”.

    -

    If INVENIO has no authority record data to match what you type into the authority-controlled subfield, you still have the possibility to enter a value manually.

    \ No newline at end of file +

    If in the shown example you click on the first author from the list, this author's name will automatically be inserted into the 100__ $a subfield you were editing, while the authority type and the authority record control number “author:(SzGeCERN)abc123” , is inserted into a new $0 subfield (cf. Illustration 2). This new subfield tells INVENIO that “Ellis, John” is associated with the 'author' authority record containing the authority record control number “(SzGeCERN)abc123”. In this example you can also see that the author's affiliation has been entered in the same way as well, using the auto-complete option for the 100__ $u subfield. In this case the author's affiliation is the “University of Oxford”, which is associated in this INVENIO installation with the 'institute' authority record containing the authority record control number “(SzGeCERN)inst0001”.

    +

    If INVENIO has no authority record data to match what you type into the authority-controlled subfield, you still have the possibility to enter a value manually.

    diff --git a/po/POTFILES.in b/po/POTFILES.in index 167f3f5d2..8eec58537 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,296 +1,296 @@ ## This file is part of Invenio. ## Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 CERN. ## ## 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. ## ## 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 Invenio; if not, write to the Free Software Foundation, Inc., ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. # # List of source files which contain translatable strings. # modules/bibauthorid/lib/bibauthorid_templates.py modules/bibauthorid/lib/bibauthorid_webinterface.py modules/bibcatalog/lib/bibcatalog_templates.py modules/bibcheck/web/admin/bibcheckadmin.py modules/bibcirculation/lib/bibcirculation.py modules/bibcirculation/lib/bibcirculation_templates.py modules/bibcirculation/lib/bibcirculation_utils.py modules/bibcirculation/lib/bibcirculation_webinterface.py modules/bibcirculation/lib/bibcirculationadminlib.py modules/bibclassify/doc/admin/bibclassify-admin-guide.webdoc modules/bibclassify/lib/bibclassify_templates.py modules/bibclassify/lib/bibclassify_webinterface.py modules/bibconvert/bin/bibconvert.in modules/bibconvert/doc/admin/bibconvert-admin-guide.webdoc modules/bibconvert/lib/bibconvert.py modules/bibconvert/lib/bibconvert_unit_tests.py modules/bibdocfile/lib/bibdocfile_managedocfiles.py modules/bibdocfile/lib/bibdocfile_templates.py modules/bibdocfile/lib/bibdocfile_webinterface.py modules/bibdocfile/lib/file.py modules/bibedit/doc/admin/bibedit-admin-guide.webdoc modules/bibedit/lib/bibedit_engine.py modules/bibedit/lib/bibedit_templates.py modules/bibedit/lib/bibedit_utils.py modules/bibedit/lib/bibedit_webinterface.py modules/bibedit/lib/bibeditmulti_templates.py modules/bibedit/lib/bibeditmulti_webinterface.py modules/bibencode/lib/bibencode_batch_engine.py modules/bibexport/lib/bibexport_method_fieldexporter.py modules/bibexport/lib/bibexport_method_fieldexporter_templates.py modules/bibexport/lib/bibexport_method_fieldexporter_webinterface.py modules/bibformat/bin/bibreformat.in modules/bibformat/doc/admin/bibformat-admin-guide.webdoc modules/bibformat/etc/format_templates/Default_HTML_actions.bft modules/bibformat/etc/format_templates/Default_HTML_files.bft modules/bibformat/lib/bibformat_bfx_engine.py modules/bibformat/lib/bibformat_engine.py modules/bibformat/lib/bibformat_engine_unit_tests.py modules/bibformat/lib/bibformat_templates.py modules/bibformat/lib/bibformatadminlib.py modules/bibformat/lib/elements/bfe_aid_authors.py modules/bibformat/lib/elements/bfe_authority_author.py modules/bibformat/lib/elements/bfe_authority_control_no.py -modules/bibformat/lib/elements/bfe_authority_institution.py +modules/bibformat/lib/elements/bfe_authority_institute.py modules/bibformat/lib/elements/bfe_authority_journal.py modules/bibformat/lib/elements/bfe_authority_subject.py modules/bibformat/lib/elements/bfe_authors.py modules/bibformat/lib/elements/bfe_edit_files.py modules/bibformat/lib/elements/bfe_edit_record.py modules/bibformat/lib/elements/bfe_fulltext.py modules/bibformat/lib/elements/bfe_fulltext_mini.py modules/bibformat/lib/elements/bfe_sciencewise.py modules/bibformat/web/admin/bibformatadmin.py modules/bibindex/bin/bibindex.in modules/bibindex/bin/bibstat.in modules/bibindex/doc/admin/bibindex-admin-guide.webdoc modules/bibindex/lib/bibindex_engine.py modules/bibindex/lib/bibindex_engine_config.py modules/bibindex/lib/bibindex_engine_stemmer.py modules/bibindex/lib/bibindex_engine_stemmer_unit_tests.py modules/bibindex/lib/bibindex_engine_stopwords.py modules/bibindex/lib/bibindex_engine_unit_tests.py modules/bibindex/lib/bibindexadminlib.py modules/bibindex/web/admin/bibindexadmin.py modules/bibknowledge/lib/bibknowledge_templates.py modules/bibknowledge/lib/bibknowledgeadmin.py modules/bibmatch/doc/admin/bibmatch-admin-guide.webdoc modules/bibrank/bin/bibrank.in modules/bibrank/bin/bibrankgkb.in modules/bibrank/doc/admin/bibrank-admin-guide.webdoc modules/bibrank/lib/bibrank_citation_grapher.py modules/bibrank/lib/bibrank_citation_indexer.py modules/bibrank/lib/bibrank_citation_indexer_regression_tests.py modules/bibrank/lib/bibrank_citation_searcher.py modules/bibrank/lib/bibrank_citation_searcher_unit_tests.py modules/bibrank/lib/bibrank_downloads_grapher.py modules/bibrank/lib/bibrank_downloads_indexer.py modules/bibrank/lib/bibrank_downloads_indexer_unit_tests.py modules/bibrank/lib/bibrank_downloads_similarity.py modules/bibrank/lib/bibrank_grapher.py modules/bibrank/lib/bibrank_record_sorter.py modules/bibrank/lib/bibrank_record_sorter_unit_tests.py modules/bibrank/lib/bibrank_tag_based_indexer.py modules/bibrank/lib/bibrank_tag_based_indexer_unit_tests.py modules/bibrank/lib/bibrank_word_indexer.py modules/bibrank/lib/bibrankadminlib.py modules/bibrank/web/admin/bibrankadmin.py modules/bibrecord/bin/xmlmarclint.in modules/bibrecord/lib/bibrecord.py modules/bibrecord/lib/bibrecord_config.py modules/bibrecord/lib/bibrecord_unit_tests.py modules/bibsched/bin/bibsched.in modules/bibsched/bin/bibtaskex.in modules/bibsched/doc/admin/bibsched-admin-guide.webdoc modules/bibsort/lib/bibsortadminlib.py modules/bibsword/lib/bibsword_webinterface.py modules/bibupload/doc/admin/bibupload-admin-guide.webdoc modules/bibupload/lib/batchuploader_engine.py modules/bibupload/lib/batchuploader_templates.py modules/bibupload/lib/batchuploader_webinterface.py modules/docextract/bin/refextract.in modules/docextract/lib/refextract.py modules/docextract/lib/refextract_config.py modules/elmsubmit/bin/elmsubmit.in modules/elmsubmit/doc/admin/elmsubmit-admin-guide.webdoc modules/elmsubmit/lib/elmsubmit.py modules/elmsubmit/lib/elmsubmit_EZArchive.py modules/elmsubmit/lib/elmsubmit_EZEmail.py modules/elmsubmit/lib/elmsubmit_enriched2txt.py modules/elmsubmit/lib/elmsubmit_field_validation.py modules/elmsubmit/lib/elmsubmit_filename_generator.py modules/elmsubmit/lib/elmsubmit_html2txt.py modules/elmsubmit/lib/elmsubmit_misc.py modules/elmsubmit/lib/elmsubmit_richtext2txt.py modules/elmsubmit/lib/elmsubmit_submission_parser.py modules/elmsubmit/lib/myhtmlentitydefs.py modules/miscutil/bin/dbexec.in modules/miscutil/lib/__init__.py modules/miscutil/lib/dateutils.py modules/miscutil/lib/errorlib.py modules/miscutil/lib/errorlib_unit_tests.py modules/miscutil/lib/errorlib_webinterface.py modules/miscutil/lib/inveniocfg.py modules/miscutil/lib/mailutils.py modules/miscutil/lib/messages.py modules/miscutil/lib/miscutil_config.py modules/miscutil/lib/textutils.py modules/oaiharvest/bin/oaiharvest.in modules/oaiharvest/doc/admin/oaiharvest-admin-guide.webdoc modules/oaiharvest/lib/oai_harvest_admin.py modules/oaiharvest/lib/oai_harvest_templates.py modules/oairepository/lib/oai_repository_admin.py modules/webaccess/bin/authaction.in modules/webaccess/bin/webaccessadmin.in modules/webaccess/lib/access_control_admin.py modules/webaccess/lib/access_control_config.py modules/webaccess/lib/access_control_engine.py modules/webaccess/lib/external_authentication.py modules/webaccess/lib/webaccessadmin_lib.py modules/webaccess/web/admin/webaccessadmin.py modules/webalert/bin/alertengine.in modules/webalert/doc/admin/webalert-admin-guide.webdoc modules/webalert/lib/alert_engine.py modules/webalert/lib/htmlparser.py modules/webalert/lib/webalert.py modules/webalert/lib/webalert_templates.py modules/webalert/lib/webalert_webinterface.py modules/webauthorprofile/lib/webauthorprofile_templates.py modules/webbasket/doc/admin/webbasket-admin-guide.webdoc modules/webbasket/lib/webbasket.py modules/webbasket/lib/webbasket_config.py modules/webbasket/lib/webbasket_templates.py modules/webbasket/lib/webbasket_webinterface.py modules/webcomment/doc/admin/webcomment-admin-guide.webdoc modules/webcomment/lib/webcomment.py modules/webcomment/lib/webcomment_config.py modules/webcomment/lib/webcomment_templates.py modules/webcomment/lib/webcomment_unit_tests.py modules/webcomment/lib/webcomment_webinterface.py modules/webcomment/lib/webcommentadminlib.py modules/webcomment/web/admin/webcommentadmin.py modules/webhelp/web/admin/admin.webdoc modules/webhelp/web/help-central.webdoc modules/webjournal/lib/elements/bfe_webjournal_archive.py modules/webjournal/lib/elements/bfe_webjournal_article_author.py modules/webjournal/lib/elements/bfe_webjournal_article_body.py modules/webjournal/lib/elements/bfe_webjournal_imprint.py modules/webjournal/lib/elements/bfe_webjournal_main_navigation.py modules/webjournal/lib/elements/bfe_webjournal_rss.py modules/webjournal/lib/webjournal_config.py modules/webjournal/lib/webjournal_templates.py modules/webjournal/lib/webjournal_utils.py modules/webjournal/lib/webjournaladminlib.py modules/webjournal/lib/widgets/bfe_webjournal_widget_seminars.py modules/webjournal/lib/widgets/bfe_webjournal_widget_weather.py modules/webjournal/lib/widgets/bfe_webjournal_widget_whatsNew.py modules/webjournal/web/admin/webjournaladmin.py modules/weblinkback/lib/weblinkback_templates.py modules/weblinkback/lib/weblinkbackadminlib.py modules/weblinkback/web/admin/weblinkbackadmin.py modules/webmessage/bin/webmessageadmin.in modules/webmessage/doc/admin/webmessage-admin-guide.webdoc modules/webmessage/lib/webmessage.py modules/webmessage/lib/webmessage_config.py modules/webmessage/lib/webmessage_dblayer.py modules/webmessage/lib/webmessage_mailutils.py modules/webmessage/lib/webmessage_templates.py modules/webmessage/lib/webmessage_webinterface.py modules/websearch/bin/webcoll.in modules/websearch/doc/admin/websearch-admin-guide.webdoc modules/websearch/doc/hacking/search-services.webdoc modules/websearch/doc/search-guide.webdoc modules/websearch/doc/search-tips.webdoc modules/websearch/lib/search_engine.py modules/websearch/lib/search_engine_config.py modules/websearch/lib/search_engine_unit_tests.py modules/websearch/lib/services/CollectionNameSearchService.py modules/websearch/lib/services/FAQKBService.py modules/websearch/lib/services/SubmissionNameSearchService.py modules/websearch/lib/services/WeatherService.py modules/websearch/lib/websearch_external_collections.py modules/websearch/lib/websearch_external_collections_templates.py modules/websearch/lib/websearch_templates.py modules/websearch/lib/websearch_webcoll.py modules/websearch/lib/websearch_webinterface.py modules/websearch/lib/websearchadminlib.py modules/websearch/web/admin/websearchadmin.py modules/websession/bin/inveniogc.in modules/websession/doc/admin/websession-admin-guide.webdoc modules/websession/lib/session.py modules/websession/lib/webaccount.py modules/websession/lib/webgroup.py modules/websession/lib/webgroup_dblayer.py modules/websession/lib/websession_config.py modules/websession/lib/websession_templates.py modules/websession/lib/websession_webinterface.py modules/websession/lib/webuser.py modules/webstat/bin/webstat.in modules/webstat/doc/admin/webstat-admin-guide.webdoc modules/webstyle/doc/admin/webstyle-admin-guide.webdoc modules/webstyle/doc/hacking/webstyle-webdoc-syntax.webdoc modules/webstyle/lib/template.py modules/webstyle/lib/webdoc.py modules/webstyle/lib/webdoc_unit_tests.py modules/webstyle/lib/webdoc_webinterface.py modules/webstyle/lib/webpage.py modules/webstyle/lib/webstyle_templates.py modules/websubmit/doc/admin/websubmit-admin-guide.webdoc modules/websubmit/doc/submit-guide.webdoc modules/websubmit/lib/functions/Add_Files.py modules/websubmit/lib/functions/CaseEDS.py modules/websubmit/lib/functions/Create_Modify_Interface.py modules/websubmit/lib/functions/Create_Recid.py modules/websubmit/lib/functions/Create_Upload_Files_Interface.py modules/websubmit/lib/functions/Finish_Submission.py modules/websubmit/lib/functions/Format_Record.py modules/websubmit/lib/functions/Get_Info.py modules/websubmit/lib/functions/Get_Report_Number.py modules/websubmit/lib/functions/Get_Sysno.py modules/websubmit/lib/functions/Insert_Modify_Record.py modules/websubmit/lib/functions/Insert_Record.py modules/websubmit/lib/functions/Is_Original_Submitter.py modules/websubmit/lib/functions/Is_Referee.py modules/websubmit/lib/functions/Mail_Submitter.py modules/websubmit/lib/functions/Make_Modify_Record.py modules/websubmit/lib/functions/Make_Record.py modules/websubmit/lib/functions/Move_Files_Archive.py modules/websubmit/lib/functions/Move_From_Pending.py modules/websubmit/lib/functions/Move_to_Done.py modules/websubmit/lib/functions/Move_to_Pending.py modules/websubmit/lib/functions/Print_Success.py modules/websubmit/lib/functions/Print_Success_APP.py modules/websubmit/lib/functions/Print_Success_DEL.py modules/websubmit/lib/functions/Print_Success_MBI.py modules/websubmit/lib/functions/Print_Success_SRV.py modules/websubmit/lib/functions/Report_Number_Generation.py modules/websubmit/lib/functions/Retrieve_Data.py modules/websubmit/lib/functions/Send_APP_Mail.py modules/websubmit/lib/functions/Send_Approval_Request.py modules/websubmit/lib/functions/Send_Modify_Mail.py modules/websubmit/lib/functions/Send_SRV_Mail.py modules/websubmit/lib/functions/Shared_Functions.py modules/websubmit/lib/functions/Test_Status.py modules/websubmit/lib/functions/Update_Approval_DB.py modules/websubmit/lib/websubmit_config.py modules/websubmit/lib/websubmit_engine.py modules/websubmit/lib/websubmit_regression_tests.py modules/websubmit/lib/websubmit_templates.py modules/websubmit/lib/websubmit_webinterface.py modules/websubmit/lib/websubmitadmin_config.py modules/websubmit/lib/websubmitadmin_engine.py modules/websubmit/web/admin/referees.py modules/websubmit/web/admin/websubmitadmin.py modules/websubmit/web/approve.py modules/websubmit/web/publiline.py modules/websubmit/web/yourapprovals.py modules/websubmit/web/yoursubmissions.py