diff --git a/controllers/catalog.py b/controllers/catalog.py index a96c11f6..9151f166 100755 --- a/controllers/catalog.py +++ b/controllers/catalog.py @@ -245,7 +245,10 @@ def index(): ignored_submission_id = myconf.take('omp.ignore_submissions') if myconf.take( 'omp.ignore_submissions') else -1 - + try: + current_page = int(request.vars.get('page_nr', 1)) - 1 + except ValueError as e: + raise HTTP(400, "Error with value of page_nr: " + str(e)) from e submissions = [] session.filters = request.vars.get('filter_by').strip('[').strip(']') if request.vars.get( 'filter_by') else session.get('filters', '') @@ -259,7 +262,6 @@ def index(): else: session.sort_by = 'datePublished-2' ''' - current_page = int(request.vars.get('page_nr', 1)) - 1 page_begin = current_page * session.per_page page_end = (current_page+1) * session.per_page diff --git a/controllers/publishing.py b/controllers/publishing.py index ce753de7..11ec51db 100755 --- a/controllers/publishing.py +++ b/controllers/publishing.py @@ -23,3 +23,8 @@ def peer_review(): def conflict_interest(): return dict() +def export(): + return dict() + +def vgwort(): + return dict() diff --git a/controllers/reader.py b/controllers/reader.py index d6215719..2178c306 100755 --- a/controllers/reader.py +++ b/controllers/reader.py @@ -12,6 +12,7 @@ import ompformat from os.path import exists import gluon +import heiviewer locale = 'en_US' if session.forced_language == 'en' else 'de_DE' @@ -34,9 +35,9 @@ def index(): raise HTTP(404) submission_id = request.args[0] file_id = request.args[1] - + press_id = myconf.take('omp.press_id') if str(file_id).endswith('.xml'): - path = os.path.join(request.folder, 'static/files/presses', myconf.take('omp.press_id'), 'monographs', + path = os.path.join(request.folder, 'static/files/presses', press_id, 'monographs', submission_id, 'submission/proof', file_id) if os.path.exists(path) is False: raise HTTP(404) @@ -60,11 +61,22 @@ def index(): return dict(json_list=XML(gluon.serializers.json(json_list)), authors=authors_string, font_family=font_family) else: - path = os.path.join(request.folder, 'static/files/presses', myconf.take('omp.press_id'), 'monographs', + path = os.path.join(request.folder, 'static/files/presses', press_id, 'monographs', submission_id, 'submission/', file_id) - return response.stream(path, chunk_size=1048576) - - + if os.path.exists(path): + return response.stream(path, chunk_size=1048576) + else: + if len(request.args) < 3 : + raise HTTP(404) + + publication_format_id = file_id + file_id = request.args[2] + response.view = '../static/omp-resources/views/reader/heiviewer.html' + heiviewer_chapter_id = None + if len(request.args) > 3: + heiviewer_chapter_id = request.args[3] + return heiviewer.prepare_heiviewer(press_id, submission_id, publication_format_id, file_id, ompdal, locale, + settings, chapter_id=heiviewer_chapter_id) def get_setting_value(settings, name): val = [] diff --git a/controllers/search.py b/controllers/search.py index 966ae9b5..ec0b8ab1 100644 --- a/controllers/search.py +++ b/controllers/search.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- from ompdal import OMPDAL, OMPSettings, OMPItem +import ompindex ompdal = OMPDAL(db, myconf) press = ompdal.getPress(myconf.take('omp.press_id')) @@ -14,31 +15,6 @@ def index(): def authors(): - searchInitial = request.vars.searchInitial.upper() if request.vars.searchInitial else None - authors = [] - initials = set() - author_index = [] - prev_author, prev_index = '','' - prev = 1 - - for a in ompdal.getAuthorsByPress(press.press_id): - last_name = a['last_name'] - first_name = a['first_name'] - initial = last_name[:1].upper() - if initial != prev_index: - a['initial'] = initial - this_author = '{}{}'.format(last_name, first_name) - prev = prev + 1 if prev_author == this_author else 1 - a['index'] = prev - if searchInitial and last_name.upper().startswith(searchInitial): - authors.append(a) - elif not searchInitial: - authors.append(a) - if initial not in initials: - author_index.append(initial) - initials.add(initial) - - prev_author = this_author - prev_index = initial - - return locals() + search_initial = request.vars.searchInitial.upper() if request.vars.searchInitial else None + rows = ompdal.getAuthorsByPress(press.press_id) + return ompindex.author_names(search_initial, rows) diff --git a/languages/de.py b/languages/de.py index b701bd64..63d1ca60 100755 --- a/languages/de.py +++ b/languages/de.py @@ -197,6 +197,7 @@ 'Errors': 'Fehlermeldungen', 'Erstverkaufstag': 'Erstverkaufstag', 'export as csv file': 'als csv Datei exportieren', +'Export control of publications': 'Exportkontrolle bei Publikationen', 'FAQ': 'FAQ', 'Farbraum': 'Farbraum', 'February': 'Februar', diff --git a/models/z_menu.py b/models/z_menu.py index 306eb89c..c4bab9b5 100755 --- a/models/z_menu.py +++ b/models/z_menu.py @@ -45,7 +45,9 @@ def title(t): ['peer_review', T('Peer Review')], ['rights_and_licences', T('Rights and Licences')], ['plagiarism', T('Plagiarism')], - ['data_privacy', T('Data Privacy')] + ['data_privacy', T('Data Privacy')], + ['export', T('Export control of publications')], + ['vgwort', T('VG Wort')] ] publishing_dict_list = [LI(A(i[1], _href=URL('publishing', i[0]))) diff --git a/modules b/modules index 10c4142d..5a8a9574 160000 --- a/modules +++ b/modules @@ -1 +1 @@ -Subproject commit 10c4142d5e8a3f41b38f405d53b69b2293c43716 +Subproject commit 5a8a9574e85de2e5e1a4e6e82b672999aeb3bc32 diff --git a/static/css/lens.css b/static/css/lens.css index 5c2efdfd..aa7f2ba6 100644 --- a/static/css/lens.css +++ b/static/css/lens.css @@ -1819,3 +1819,10 @@ body[data-submission-id="862"] { body[data-submission-id="900"] { font-family: Junicode; } + +/** Hinzugefügt am 5.12.2022 von nw für die Veröffentlichung mit ID 545: + * Siehe https://gitlab.ub.uni-heidelberg.de/wit/verlag-portale/-/issues/423#note_37390 + */ +body[data-submission-id="545"] { + font-family: Junicode; +} diff --git a/static/images/about_us/profile/cover_programm.png b/static/images/about_us/profile/cover_programm.png index a3003e45..b0a990c1 100644 Binary files a/static/images/about_us/profile/cover_programm.png and b/static/images/about_us/profile/cover_programm.png differ diff --git a/static/images/about_us/profile/cover_programm_flyer.png b/static/images/about_us/profile/cover_programm_flyer.png index daca6caa..6a569646 100644 Binary files a/static/images/about_us/profile/cover_programm_flyer.png and b/static/images/about_us/profile/cover_programm_flyer.png differ diff --git a/static/images/campusmedia/cover_01_2023.jpg b/static/images/campusmedia/cover_01_2023.jpg new file mode 100644 index 00000000..a8ab5574 Binary files /dev/null and b/static/images/campusmedia/cover_01_2023.jpg differ diff --git a/static/images/campusmedia/cover_02_2023.jpg b/static/images/campusmedia/cover_02_2023.jpg new file mode 100644 index 00000000..c3deac9b Binary files /dev/null and b/static/images/campusmedia/cover_02_2023.jpg differ diff --git a/static/images/campusmedia/cover_07_2022.jpg b/static/images/campusmedia/cover_07_2022.jpg new file mode 100644 index 00000000..961e8753 Binary files /dev/null and b/static/images/campusmedia/cover_07_2022.jpg differ diff --git a/static/images/catalog/cover_cremer.jpg b/static/images/catalog/cover_cremer.jpg deleted file mode 100644 index b42744d2..00000000 Binary files a/static/images/catalog/cover_cremer.jpg and /dev/null differ diff --git a/static/images/catalog/cover_menzel.jpg b/static/images/catalog/cover_menzel.jpg new file mode 100644 index 00000000..e08e08a9 Binary files /dev/null and b/static/images/catalog/cover_menzel.jpg differ diff --git a/static/images/catalog/cover_mittelalter.jpg b/static/images/catalog/cover_mittelalter.jpg new file mode 100644 index 00000000..995ae66f Binary files /dev/null and b/static/images/catalog/cover_mittelalter.jpg differ diff --git a/static/images/journals/cover_apocalyptica.jpg b/static/images/journals/cover_apocalyptica.jpg index 60bfe557..caa146c4 100644 Binary files a/static/images/journals/cover_apocalyptica.jpg and b/static/images/journals/cover_apocalyptica.jpg differ diff --git a/static/images/journals/cover_heieducation.jpg b/static/images/journals/cover_heieducation.jpg index 1623b6ff..55e8d8f2 100644 Binary files a/static/images/journals/cover_heieducation.jpg and b/static/images/journals/cover_heieducation.jpg differ diff --git a/static/images/journals/cover_mial.jpg b/static/images/journals/cover_mial.jpg index 560a5668..995ae66f 100644 Binary files a/static/images/journals/cover_mial.jpg and b/static/images/journals/cover_mial.jpg differ diff --git a/static/images/journals/cover_tcs.jpg b/static/images/journals/cover_tcs.jpg index bdb25155..9b6201df 100644 Binary files a/static/images/journals/cover_tcs.jpg and b/static/images/journals/cover_tcs.jpg differ diff --git a/static/images/press/slideshow/02_cremer.jpg b/static/images/press/slideshow/02_cremer.jpg deleted file mode 100644 index f39229a2..00000000 Binary files a/static/images/press/slideshow/02_cremer.jpg and /dev/null differ diff --git a/static/images/press/slideshow/02_ruperto_carola.jpg b/static/images/press/slideshow/02_ruperto_carola.jpg new file mode 100644 index 00000000..629dae88 Binary files /dev/null and b/static/images/press/slideshow/02_ruperto_carola.jpg differ diff --git a/static/images/press/slideshow/02_weissen.jpg b/static/images/press/slideshow/02_weissen.jpg deleted file mode 100644 index 42a81d64..00000000 Binary files a/static/images/press/slideshow/02_weissen.jpg and /dev/null differ diff --git a/static/images/press/slideshow/03_PHS_127.jpg b/static/images/press/slideshow/03_PHS_127.jpg new file mode 100644 index 00000000..d81e6a1c Binary files /dev/null and b/static/images/press/slideshow/03_PHS_127.jpg differ diff --git a/static/images/press/slideshow/03_kouamenan.jpg b/static/images/press/slideshow/03_kouamenan.jpg deleted file mode 100644 index 2d046ede..00000000 Binary files a/static/images/press/slideshow/03_kouamenan.jpg and /dev/null differ diff --git a/static/images/press/slideshow/04_reuter.jpg b/static/images/press/slideshow/04_reuter.jpg deleted file mode 100644 index e706223c..00000000 Binary files a/static/images/press/slideshow/04_reuter.jpg and /dev/null differ diff --git a/static/images/press/slideshow/04_russias_north_pacific.jpg b/static/images/press/slideshow/04_russias_north_pacific.jpg new file mode 100644 index 00000000..b722f2ad Binary files /dev/null and b/static/images/press/slideshow/04_russias_north_pacific.jpg differ diff --git a/static/images/press/slideshow/04_weihnachten.png b/static/images/press/slideshow/04_weihnachten.png new file mode 100644 index 00000000..6ace8b60 Binary files /dev/null and b/static/images/press/slideshow/04_weihnachten.png differ diff --git a/static/images/press/slideshow/05_leopold.jpg b/static/images/press/slideshow/05_leopold.jpg deleted file mode 100644 index d580334c..00000000 Binary files a/static/images/press/slideshow/05_leopold.jpg and /dev/null differ diff --git a/static/images/press/slideshow/07_neujahr.png b/static/images/press/slideshow/07_neujahr.png new file mode 100644 index 00000000..05b7870d Binary files /dev/null and b/static/images/press/slideshow/07_neujahr.png differ diff --git a/static/images/press/slideshow/08_weihnachten.png b/static/images/press/slideshow/08_weihnachten.png deleted file mode 100644 index 6ce4447f..00000000 Binary files a/static/images/press/slideshow/08_weihnachten.png and /dev/null differ diff --git a/static/images/press/social-media-icons.png b/static/images/press/social-media-icons.png index 5e7c9b74..b0f70c9c 100755 Binary files a/static/images/press/social-media-icons.png and b/static/images/press/social-media-icons.png differ diff --git a/static/images/series/gaps.jpg b/static/images/series/gaps.jpg new file mode 100644 index 00000000..331090f6 Binary files /dev/null and b/static/images/series/gaps.jpg differ diff --git a/static/medien/Programm_heiUP_2022-23.pdf b/static/medien/Programm_heiUP_2022-23.pdf new file mode 100644 index 00000000..5d82c339 Binary files /dev/null and b/static/medien/Programm_heiUP_2022-23.pdf differ diff --git a/static/medien/journals/apocalyptica_styleguide.pdf b/static/medien/journals/apocalyptica_styleguide.pdf new file mode 100644 index 00000000..abbb4058 Binary files /dev/null and b/static/medien/journals/apocalyptica_styleguide.pdf differ diff --git a/static/medien/journals/cfp_apocalyptica_capas.pdf b/static/medien/journals/cfp_apocalyptica_capas.pdf index e257a3b9..eb758398 100644 Binary files a/static/medien/journals/cfp_apocalyptica_capas.pdf and b/static/medien/journals/cfp_apocalyptica_capas.pdf differ diff --git a/static/medien/journals/mial_richtlinien-autoren.pdf b/static/medien/journals/mial_richtlinien-autoren.pdf index c4db0c45..6c720472 100644 Binary files a/static/medien/journals/mial_richtlinien-autoren.pdf and b/static/medien/journals/mial_richtlinien-autoren.pdf differ diff --git a/static/omp-resources b/static/omp-resources index 153dffb9..34c15539 160000 --- a/static/omp-resources +++ b/static/omp-resources @@ -1 +1 @@ -Subproject commit 153dffb99409d8bbf37c5babe8782bead086d643 +Subproject commit 34c15539a653a1d27ee16771f939d12d76a538f0 diff --git a/static/utils/imagesJATSXMLBySubmission.py b/static/utils/imagesJATSXMLBySubmission.py index b2858ff6..cfd11f2d 100644 --- a/static/utils/imagesJATSXMLBySubmission.py +++ b/static/utils/imagesJATSXMLBySubmission.py @@ -1,16 +1,12 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -''' -@author: wit +""" +@author: Dulip Withanage python /home/wit/software/web2py/web2py.py -R /home/wit/software/web2py/applications/UBHD_OMPPortal/static/utils/imagesJATSXMLBySubmission.py --shell UBHD_OMPPortal -M -''' -import sys +""" + import os -import pwd -import grp -from xlrd import open_workbook -from gluon import DAL from ompdal import OMPDAL @@ -43,7 +39,7 @@ def main(): ] file_name = '-'.join([str(i) for i in file_name_items]) + '.' + file_type if os.path.isfile(file_path+file_name): - xml_file.write('\n'.format(f.submission_id, f.file_id,f.original_file_name, file_name)) + xml_file.write('

CAPTION

\n'.format(f.submission_id, f.file_id,f.original_file_name, file_name)) xml_file.write('\n') xml_file.close() diff --git a/static/utils/vgwortInsertBySubmission.py b/static/utils/vgwortInsertBySubmission.py index 101c27a3..6c4fa793 100755 --- a/static/utils/vgwortInsertBySubmission.py +++ b/static/utils/vgwortInsertBySubmission.py @@ -28,6 +28,8 @@ def insert_sfs(name, file_id, value): setting_type='', locale='') db.commit() + else: + print(name, "already inserted", value, "for file_id", file_id) return diff --git a/views/about_us/advisory_board.html b/views/about_us/advisory_board.html index 7b3aabfa..dc5d060c 100755 --- a/views/about_us/advisory_board.html +++ b/views/about_us/advisory_board.html @@ -42,18 +42,6 @@

{{if session.forced_language =='de': }} -
-
- -
-
-

Adelheid Cerwenka

-

- Professorin am Centrum für Biomedizin und Medizintechnik Mannheim -   -

-
-
@@ -200,19 +188,6 @@

{{if session.forced_language =='de': }}

-
-
- -
-
-

Adelheid Cerwenka

-

- Professor at the Centre for Biomedicine and Medical Technology Mannheim (CBMT) -   -

-
-
-
diff --git a/views/about_us/partners.html b/views/about_us/partners.html index 7ebeaba7..444b8622 100755 --- a/views/about_us/partners.html +++ b/views/about_us/partners.html @@ -37,10 +37,10 @@

{{ if session.forced_language =='de': }}

AG Universitätsverlage 

{{ if session.forced_language =='de': }} -

Die Arbeitsgemeinschaft der Universitätsverlage verbindet seit 2004 zahlreiche Verlage aus Deutschland, Österreich und Italien. Ziel der Arbeitsgemeinschaft ist es, die Verlage bei der Vertretung ihrer Interessen nach außen zu unterstützen und den Erfahrungsaustausch zu fördern. +

Heidelberg University Publishing (heiUP) ist Mitglied der Arbeitsgemeinschaft der Universitätsverlage (AG Universitätsverlage). Die Arbeitsgemeinschaft ist ein Zusammenschluss aus Verlagen, Publikationsdiensten und -plattformen aus dem deutschsprachigen Raum, die verlegerische Dienstleistungen anbieten und eine ausgewiesene Anbindung an eine Forschungseinrichtung haben. Die Kriterien für eine Mitgliedschaft in der Arbeitsgemeinschaft umfassen insbesondere die Unterstützung von Open Access und die Qualitätssicherung gemäß wissenschaftlichen Standards.

{{elif session.forced_language =='en': }} -

Since 2004 the Arbeitsgemeinschaft der Universitätsverlage (University Publisher Working Group) has been bringing together many university publishing houses based in Germany, Austria and Italy. Their aim is to support publishers' interests and to promote exchange of experience. +

Heidelberg University Publishing (heiUP) is a member of Arbeitsgemeinschaft Universitätsverlage (AG Universitätsverlage). The working group is an association of university presses, publishing services and platforms, which are connected to an academic institution and offer professional publishing services, in German speaking countries. The membership criteria include especially quality assurance according to scientific standards and the support of Open Access.

diff --git a/views/about_us/profile.html b/views/about_us/profile.html index a6b8af0e..7d33dbe8 100755 --- a/views/about_us/profile.html +++ b/views/about_us/profile.html @@ -33,9 +33,9 @@

{{if session.forced_language =='de': }}
-
{{=T('Programme')}} 2021-22 / {{=T('Flyer')}}
+
{{=T('Programme')}} 2022-23 / {{=T('Flyer')}}
{{=IMG(_src=URL(myconf.take('web.application'),'static','/images/about_us/profile/cover_programm_flyer.png'),_alt='',_style='width:250px')}}

- Download {{=T('Programme')}}
+ Download {{=T('Programme')}}
Download Flyer
@@ -44,4 +44,4 @@
{{=T('Programme')}} 2021-22 / {{=T('Flyer')}}

- \ No newline at end of file + diff --git a/views/campusmedia/index.html b/views/campusmedia/index.html index 21954b6f..320f2f1a 100755 --- a/views/campusmedia/index.html +++ b/views/campusmedia/index.html @@ -100,7 +100,7 @@

- +
diff --git a/views/campusmedia/ruperto_carola.html b/views/campusmedia/ruperto_carola.html index 15b8b2b3..b3df2804 100755 --- a/views/campusmedia/ruperto_carola.html +++ b/views/campusmedia/ruperto_carola.html @@ -65,103 +65,23 @@

Principal Contact

-
+
- +
- - -
- - -
- - - - - -
-

Ruperto Carola

-
- - {{if session.forced_language =='de': }} - - -

Das Forschungsmagazin „Ruperto Carola“ berichtet über wissenschaftliche Erkenntnisse und laufende Forschungsvorhaben der Universität Heidelberg. Jede seiner Ausgaben ist einem gesellschaftlich relevanten Schwerpunktthema gewidmet, zu dem Heidelberger Forscherinnen und Forscher über Disziplinen und Fächer hinweg ihre wissenschaftliche Arbeit vorstellen. In allgemein verständlicher Sprache zeigen die Autoren, auf wie vielfältige Weise an der Universität geforscht wird.

-

Mit dem Format des Themenmagazins will die Universität Heidelberg ihr besonderes Potential und ihren Anspruch erfahrbar machen, als Volluniversität einen wesentlichen Beitrag zum Verständnis der komplexen Herausforderungen und großen Fragestellungen unserer Zeit zu leisten.

-

Die „Ruperto Carola“ erscheint zweimal jährlich in deutscher Sprache mit englischsprachigen Abstracts und wendet sich an die Mitglieder der Universität, an ihre Partner in Wissenschaft, Politik, Wirtschaft und Gesellschaft sowie insbesondere auch an Alumni, Freunde und eine interessierte Öffentlichkeit im In- und Ausland.

-

Herausgeber des Magazins ist der Rektor der Universität Heidelberg, die redaktionelle Verantwortung liegt bei der Stabsstelle „Kommunikation und Marketing“. Die jeweils aktuelle Ausgabe ist in der Abteilung Kommunikation und Marketing der Universität Heidelberg (Alte Universität, Grabengasse 1) erhältlich.

- - {{elif session.forced_language =='en': }} - -

The “Ruperto Carola” research journal reports on scientific findings and current research activities at Heidelberg University. Every issue is dedicated to a central theme of high social relevance, to which Heidelberg scholars contribute by presenting related research projects across the entire range of disciplines and subjects. In this way, the authors demonstrate the breadth of research at the University in terms that are easy to understand for academics and laypersons alike.

-

The format of a theme-centred journal was chosen to show Heidelberg University's special potential and aspiration of contributing to a better understanding of the complex challenges and questions of our time.

-

Published twice a year in German with English-language abstracts, “Ruperto Carola” is addressed to members of the University, its partners in science, politics, business and society and, of course, its alumni, friends and the wider public in Germany and abroad.

-

The journal is published by the President of Heidelberg University and edited by the “Communications and Marketing” team. The latest issue is available at the Communications and Marketing department of Heidelberg University (Alte Universität, Grabengasse 1).

- - - {{pass}} - - -
-
- {{if session.forced_language =='de': }} - - {{elif session.forced_language =='en': }} - - {{pass}} -
- -
- -
-
-
- {{if session.forced_language =='de': }} -

RSS für die aktuelle Ausgabe

- {{elif session.forced_language =='en': }} -

RSS for current issue

- {{pass}} - - Logo Atom - - - Logo RSS 2.0 - - - Logo RSS 2.0 - -
-
-
-
-

{{=A(T('Contact'),_href=URL('campusmedia','ruperto_carola/contact'))}}

-
-
-
-
- -
- {{if session.forced_language =='de': }} -
-
+ + {{if session.forced_language =='de': }} +
Bibliographische Angaben

Ruperto Carola

-

Herausgeber
- Universität Heidelberg
- Der Rektor
- Kommunikation und Marketing -

+

Herausgeber

+
    +
  • Universität Heidelberg
  • +
  • Der Rektor
  • +
  • Kommunikation und Marketing
  • +

Wissenschaftlicher Beirat

  • Prof. Dr. Peter Comba (Vorsitz)
  • @@ -178,23 +98,25 @@
    Bibliographische Angaben
  • Marietta Fuhrmann-Koch (verantwortlich)
  • Mirjam Mohr (Leitung)
-

Heidelberg University Publishing, Heidelberg

-

ISSN: 0035-998-X

+

Heidelberg University Publishing, Heidelberg

Copyright: Universität Heidelberg

-
+ +
ISSN
+

0035-998-X

{{elif session.forced_language =='en': }} -
+
Bibliographic details

Ruperto Carola

-

Editors
- Universität Heidelberg
- Der Rektor
- Communications and Marketing -

+

Editors

+
    +
  • Universität Heidelberg
  • +
  • Der Rektor
  • +
  • Communications and Marketing
  • +

Advisory Board

  • Prof. Dr. Peter Comba (Chair)
  • @@ -211,16 +133,82 @@
    Bibliographic details
  • Marietta Fuhrmann-Koch (responsible)
  • Mirjam Mohr (managing)
-

Heidelberg University Publishing, Heidelberg

-

ISSN: 0035-998-X

+

Heidelberg University Publishing, Heidelberg

Copyright: University of Heidelberg

- + +
ISSN
+

0035-998-X

-
-{{pass}} -
+ {{pass}} + + +
+ + +
+
+
+ + +
+

Ruperto Carola

+
+ + {{if session.forced_language =='de': }} +

Das Forschungsmagazin „Ruperto Carola“ berichtet über wissenschaftliche Erkenntnisse und laufende Forschungsvorhaben der Universität Heidelberg. Jede seiner Ausgaben ist einem gesellschaftlich relevanten Schwerpunktthema gewidmet, zu dem Heidelberger Forscherinnen und Forscher über Disziplinen und Fächer hinweg ihre wissenschaftliche Arbeit vorstellen. In allgemein verständlicher Sprache zeigen die Autoren, auf wie vielfältige Weise an der Universität geforscht wird.

+

Mit dem Format des Themenmagazins will die Universität Heidelberg ihr besonderes Potential und ihren Anspruch erfahrbar machen, als Volluniversität einen wesentlichen Beitrag zum Verständnis der komplexen Herausforderungen und großen Fragestellungen unserer Zeit zu leisten.

+

Die „Ruperto Carola“ erscheint zweimal jährlich in deutscher Sprache mit englischsprachigen Abstracts und wendet sich an die Mitglieder der Universität, an ihre Partner in Wissenschaft, Politik, Wirtschaft und Gesellschaft sowie insbesondere auch an Alumni, Freunde und eine interessierte Öffentlichkeit im In- und Ausland.

+

Herausgeber des Magazins ist der Rektor der Universität Heidelberg, die redaktionelle Verantwortung liegt bei der Stabsstelle „Kommunikation und Marketing“. Die jeweils aktuelle Ausgabe ist in der Abteilung Kommunikation und Marketing der Universität Heidelberg (Alte Universität, Grabengasse 1) erhältlich.

+ {{elif session.forced_language =='en': }} +

The “Ruperto Carola” research journal reports on scientific findings and current research activities at Heidelberg University. Every issue is dedicated to a central theme of high social relevance, to which Heidelberg scholars contribute by presenting related research projects across the entire range of disciplines and subjects. In this way, the authors demonstrate the breadth of research at the University in terms that are easy to understand for academics and laypersons alike.

+

The format of a theme-centred journal was chosen to show Heidelberg University's special potential and aspiration of contributing to a better understanding of the complex challenges and questions of our time.

+

Published twice a year in German with English-language abstracts, “Ruperto Carola” is addressed to members of the University, its partners in science, politics, business and society and, of course, its alumni, friends and the wider public in Germany and abroad.

+

The journal is published by the President of Heidelberg University and edited by the “Communications and Marketing” team. The latest issue is available at the Communications and Marketing department of Heidelberg University (Alte Universität, Grabengasse 1).

+ {{pass}} -
    +
    + +
    +
+ +
+
+
+ {{if session.forced_language =='de': }} +

RSS für die aktuelle Ausgabe

+ {{elif session.forced_language =='en': }} +

RSS for current issue

+ {{pass}} +

+ + Logo Atom + + + Logo RSS 2.0 + + + Logo RSS 2.0 + +

+

{{=A(T('Contact'),_href=URL('campusmedia','ruperto_carola/contact'))}}

+
+
+
+
+ -
-
+ + +
+ +
diff --git a/views/catalog/book/chapter/html_galley.html b/views/catalog/book/chapter/html_galley.html index 745cd590..9902469d 100644 --- a/views/catalog/book/chapter/html_galley.html +++ b/views/catalog/book/chapter/html_galley.html @@ -4,7 +4,14 @@ for pf in digital_publication_formats: c_file = c_files.get(pf.attributes.publication_format_id) - if c_file and ("xml" in c_file.attributes.file_type or "html" in c_file.attributes.file_type): + full_file = pf.associated_items.get('full_file') + heiviewer = pf.settings.getLocalizedValue('useHeiViewer','') + c_heiviewer_id = c.settings.getLocalizedValue('heiViewerChapterId', '') + if heiviewer and c_heiviewer_id: + path_args = [submission_id, pf.attributes.publication_format_id, full_file.attributes.file_id, c_heiviewer_id] + href = URL(c='reader', f='index', args=path_args, vars={'chapter_landing': True}) + = DIV(LI(A(T('Read'), _href=href, _target="_blank"), _type="button", _class="btn btn-default"), _class="btn-group", _role="group") + elif c_file and ("xml" in c_file.attributes.file_type or "html" in c_file.attributes.file_type): = DIV(LI(A(T('Read'), _href=downloadLink(c_file.attributes), _target="_blank"), _type="button", _class="btn btn-default"), _class="btn-group", _role="group") pass pass diff --git a/views/catalog/book/submission/chapter_list.html b/views/catalog/book/submission/chapter_list.html index 68739786..4d6c582e 100644 --- a/views/catalog/book/submission/chapter_list.html +++ b/views/catalog/book/submission/chapter_list.html @@ -1,66 +1,6 @@ -
{{if len(chapters) > 0:}} -
-
-
{{=T('Contents')}}
- {{for pf in digital_publication_formats:}} - {{format_name=pf.settings.getLocalizedValue('name', locale)}} - {{if format_name != 'EPUB':}} -
{{=TD(format_name)}}
- {{pass}} - {{pass}} -
- {{display_authors=haveMultipleAuthors(chapters)}} - {{for c in chapters:}} - {{c_title = c.settings.getLocalizedValue('title', locale)}} - {{c_subtitle = c.settings.getLocalizedValue('subtitle', locale)}} - {{c_pub_id_doi = c.settings._settings.get('pub-id::doi')}} - {{c_authors = c.associated_items.get('authors', [])}} - {{c_files = c.associated_items.get('files', [])}} - {{c_id = c.attributes.chapter_id}} -
-
- {{if c_authors and display_authors:}} -
{{=", ".join([formatName(a.settings) for a in c_authors])}}
- {{pass}} -
- {{if c_pub_id_doi:}} - {{=A(c_title,_href=URL('catalog','book',args=(submission_id, 'c'+str(c_id))))}} - {{else:}} - {{=c_title}} - {{pass}} -
- {{if c_subtitle:}} -
{{=c_subtitle}}
- - {{pass}} -
- {{for pf in digital_publication_formats:}} - {{format_name=pf.settings.getLocalizedValue('name', locale)}} - {{if format_name != 'EPUB':}} -
- {{if c_files:}} - {{c_file = c_files.get(pf.attributes.publication_format_id)}} - {{if c_file:}} - {{if "xml" in c_file.attributes.file_type or "html" in c_file.attributes.file_type:}} - {{css_class="fa fa-html5"}} - {{else:}} - {{css_class="fa fa-file-text-o"}} - {{pass}} -
- {{ - vgwPixelPublic = c_file.settings.getLocalizedValue("vgWortPublic", "") - onclick = "vgwPixelCall('" + vgwPixelPublic+ "')" if vgwPixelPublic else "" - }} - {{=A(I(_class=css_class),_target="_target",_onclick=onclick, _href=downloadLink(c_file.attributes))}} -
- {{pass}} - {{pass}} -
- {{pass}} - {{pass}} -
- {{pass}} -
+
{{ + from ompcatalog import table_of_contents + =table_of_contents(submission_id, chapters, digital_publication_formats, locale)}}
{{pass}} diff --git a/views/catalog/book/submission/html_galley.html b/views/catalog/book/submission/html_galley.html index d256c551..723f3cc3 100644 --- a/views/catalog/book/submission/html_galley.html +++ b/views/catalog/book/submission/html_galley.html @@ -4,9 +4,16 @@ for pf in digital_publication_formats: full_file = pf.associated_items.get('full_file') + heiviewer = pf.settings.getLocalizedValue('useHeiViewer','') if full_file and ("xml" in full_file.attributes.file_type or "html" in full_file.attributes.file_type): - = DIV(LI(A(T('Read (HTML)'), _href=downloadLink(full_file.attributes), _target="_blank"), _type="button", _class="btn btn-default"), _class="btn-group", _role="group") + if heiviewer: + href=URL(c='reader',f='index',args=[full_file.attributes.submission_id,pf.attributes.publication_format_id, full_file.attributes.file_id]) + else: + href=downloadLink(full_file.attributes) + pass + = DIV(LI(A(T('Read (HTML)'), _href=href, _target="_blank"), _type="button", _class="btn btn-default"), _class="btn-group", _role="group") pass + pass }} diff --git a/views/catalog/category.html b/views/catalog/category.html index b988d913..3c214e14 100644 --- a/views/catalog/category.html +++ b/views/catalog/category.html @@ -94,7 +94,7 @@
- +
diff --git a/views/catalog/preview.html b/views/catalog/preview.html index 711e365d..f8a010e5 100644 --- a/views/catalog/preview.html +++ b/views/catalog/preview.html @@ -17,23 +17,23 @@

{{if session.forced_language =='de': }}
- {{=A(IMG(_src=URL(myconf.take('web.application'),'static','images/about_us/profile/cover_programm.png'),_alt='', _class='bildrahmen'),_href=URL('static','/medien/heiUP_Programmheft2021-22.pdf'))}} + {{=A(IMG(_src=URL(myconf.take('web.application'),'static','images/about_us/profile/cover_programm.png'),_alt='', _class='bildrahmen'),_href=URL('static','/medien/Programm_heiUP_2022-23.pdf'))}}
{{if session.forced_language =='de': }} -
Vorschau und lieferbare Titel 2021/2022 +
Vorschau und lieferbare Titel 2022/2023
-

Alle zurzeit lieferbaren und bis Herbst 2022 geplanten Titel finden Sie in unserer aktuellen Verlagsvorschau.

+

Alle bisher erschienenen sowie einen Ausblick auf die bis Herbst 2023 geplanten Titel finden Sie in unserem aktuellen Verlagsprogramm. heiUP-Titel sind online zum kostenlosen Download und über den Buchhandel als Printprodukt verfügbar.

-

+

{{elif session.forced_language =='en': }} -
Publishing Programme 2021/2022 +
Publishing Programme 2022/2023
-

All presently available and upcoming titles are listed in our current publisher's preview.

-

+

You can find all the titles published to date, as well as an outlook on the titles planned until autumn 2023, in our current publishing programme. heiUP titles are available online for free download and in print via bookshops.

+

{{pass}}
@@ -47,300 +47,192 @@

{{if session.forced_language =='de': }} {{pass}}

+ - - - -
-
+
+
- {{=IMG(_src=URL('static','files/presses/6/monographs/859/simple/cover.jpg'),_alt='',_class='bildrahmen')}} + {{=IMG(_src=URL('static','files/presses/6/monographs/1171/simple/cover.jpg'),_alt='',_class='bildrahmen')}}
- Maciej Klimiuk {{=T('(Ed.)')}}
- Semitic Dialects and Dialectology.
- Fieldwork—Community—Change -
+ Benjamin Auberer
+ ‚From the Australian Bush to the International Jungle‘. Internationale Karrieren und der Völkerbund +

- {{if session.forced_language =='de': }} -

Die europäische Tradition der semitischen Linguistik, die sich durch Vielfalt der Forschungsmethoden auszeichnet, hat dialektologische Feldforschung immer hoch geschätzt, da die gewonnenen Sprachaufnahmen im Kontext der älteren Sprachformen gesetzt werden und somit eine hochgradig interessante Dynamik in der Sprachwissenschaft ermöglichen. Im Geiste dieser Tradition und um sie aufrechtzuerhalten, ist das vorliegende Buch eine Sammlung von Artikeln, deren Daten vor allem während der Feldforschung gesammelt wurden. Der Band gliedert sich in zwei Teile - Studien zu verschiedenen spezifischen linguistischen Fragestellungen und Texte mit bisher unveröffentlichten Transkriptionen von Audioaufnahmen in arabischen Dialekten, Maltesisch und Jibbali/Shehret.

-

Erscheint im Frühjahr 2022

- - {{elif session.forced_language =='en': }} -

Characterised by the multiplicity and diversity of research and methodology, the European tradition of Semitic linguistics has always supported fieldwork and highly valued the data obtained in this way as it allows to create an interesting dynamic for linguistic studies itself. In the spirit of this tradition and to uphold it, the present book is a collection of articles based on data gathered primarily during field research expeditions. The volume is divided into two parts—Studies on various specific linguistic issues and Texts containing previously unpublished transcriptions of audio recordings in Arabic dialects, Maltese and Jibbali/Shehret.

-

Coming in Spring 2022

- {{pass}} + {{if session.forced_language =='de': }} +

Nach dem Ersten Weltkrieg stellte die Mitgliedschaft im Völkerbund für die britischen Dominions einen wichtigen Schritt auf dem Weg in die außenpolitische Unabhängigkeit dar. Dabei war der Internationalismus des Völkerbunds kein rein politisches Phänomen, sondern besaß auch eine soziale Dimension. Insbesondere das in Genf angesiedelte Völkerbundsekretariat entwickelte sich schnell zu einem Knotenpunkt des liberalen Internationalismus. Benjamin Auberer untersucht dieses Beziehungsgeflecht am Beispiel der Karriereverläufe von fünf australischen und neuseeländischen Mitarbeiterinnen und Mitarbeitern des Völkerbundsekretariats und trägt so zu einer Globalgeschichte des Völkerbunds und seiner Bürokratie bei.

+

Erscheint im Sommer 2023

+ + {{elif session.forced_language =='en': }} +

After World War I, membership in the League of Nations represented an important step for the British Dominions on the road to foreign policy independence. The internationalism of the League of Nations was not a purely political phenomenon, but also had a social dimension. In particular, the Geneva based Secretariat of the League of Nations evolved into a hub of liberal internationalism. Benjamin Auberer examines these networks by investigating the careers of five employees of the League of Nations from Australian and New Zealand and thus contributes to a global history of the League of Nations and its bureaucracy.

+

Coming in Summer 2023

+ {{pass}}
-
- +
+ +
+
+
+
+
+ {{=IMG(_src=URL('static','files/presses/6/monographs/1221/simple/cover.jpg'),_alt='',_class='bildrahmen')}} +
+
+
+
+
+
+ Cornelia Logemann
+ Prinzip Personifikation. Frankreichs Bilderwelt im europäischen Kontext von 1300 bis 1600
+
+ {{if session.forced_language =='de': }} +

Die Bedeutung von allegorischen Verkörperungen als Kulturtechnik kann für das ausgehende Mittelalter und den Beginn der Frühen Neuzeit kaum überschätzt werden. Insbesondere im französischen Sprachraum zeigt sich in diesem Zeitraum eine besondere Verdichtung.

+

In einem konsequent medienübergreifenden Ansatz soll an der Personifikation das Spannungsfeld von Bildern, Texten und theatralen Inszenierungen mit seinen entscheidenden Umbrüchen dargelegt werden. Der allegorisch-personifizierende Bildmodus zeigt sich dabei als dominierendes Verfahren eines Bilddenkens, das erst mit Verbreitung von Cesare Ripas Iconologia ab 1593 einer grundlegenden Normierung unterworfen wurde. Personifikationen stellen eine weitgehend übersehene ‚Quellengattung’ dar, um eine bis dahin nur bruchstückhaft erschlossene Bild-Theorie und -Praxis aufzuzeigen. Es zeigt sich, dass auch das neuzeitliche Bildverständnis ganz wesentlich auf Entwicklungen seit dem späten 13. Jahrhundert basiert. +

+

Erscheint im Sommer 2023

+ + {{elif session.forced_language =='en': }} +

The significance of allegorical personification as a cultural technique can hardly be overestimated for the end of the Middle Ages and the beginning of the early modern era. Particularly in the French-speaking world, this period shows a distinctive intensification.

+

In a consistently cross-media approach, the interweaving of images, texts, and theatrical stagings with its decisive changes is demonstrated by means of allegorical personification. The allegorical mode emerges as the dominant practice of an imagery that was subjected to a fundamental standardization only with the dissemination of Cesare Ripa's Iconologia from 1593 on. Personifications represent a largely overlooked source for explaining an image theory and practice that until then had only been developed in fragments. +

+

Coming in Summer 2023

+ {{pass}} +
+
+
+
+ -
-
-
-
-
- {{=IMG(_src=URL(myconf.take('web.application'),'static','/images/catalog/cover_mladenova2.jpg'),_alt='', _class='bildrahmen')}} -
-
-
-
-
-
- Radmila Mladenova
- The ‘White’ Mask and the ‘Gypsy’ Mask in Film -

- Antiziganismusforschung interdisziplinär, Band 3 -
- {{if session.forced_language =='de': }} -

Die Studie widmet sich einem in der Filmwissenschaft bislang vernachlässigten Thema: dem ‚Zigeuner‘-Phantasma auf der Kinoleinwand. Sie verbindet die Rekonstruktion der Geschichte der ‚Zigeuner‘-Darstellungen im Film seit den Anfängen des Mediums mit einer systematischen filmtheoretischen Verortung ihrer ästhetischen und gesellschaftlichen Funktion. Auf der Grundlage von über 150 Werken aus dem europäischen und US-amerikanischen Kino wird aufgezeigt, dass den ,Zigeuner‘-Spielfilmproduktionen unabhängig von Ort und Zeit ihrer Entstehung das Grundgerüst einer ,ethno-rassischen‘ Maskerade gemeinsam ist. Damit erweitert die Autorin die bisherigen, auf das Gebiet der Literatur konzentrierten Forschungen um ein weiteres Medium, den Film, und erschließt neue Dimensionen des (populär-)kulturellen Antiziganismus.

-

Erscheint im Frühjahr 2022

- - {{elif session.forced_language =='en': }} -

The study ventures into a topic that has been so far largely neglected in film studies: the ‘gypsy’ phantasm on the big screen. It reconstructs the history of ‘gypsy’ representations in film since the birth of the medium providing a systematic film-theoretical analysis of their aesthetic and social functions. Based on a corpus of over 150 works from European and US cinema, it is shown that ‘gypsy’-themed feature films share the pattern of an ‘ethno-racial’ masquerade, irrespective of the place and time of their origin. The author thus expands the research, concentrated until now in the field of literature, with another art form, film, opening up new dimensions of (popular) cultural antigypsyism.

-

Coming in Spring 2022

- {{pass}} -
-
-
-
- -
-
-
-
-
- {{=IMG(_src=URL('static','files/presses/6/monographs/921/simple/cover.jpg'),_alt='',_class='bildrahmen')}} -
-
-
-
-
-
- Mateusz Fafinski, Jakob Riemenschneider {{=T('(Eds.)')}}
- The Past through Narratology.
- New Approaches to Late Antiquity and the Early Middle Ages -

- Mittelalter. Perspektiven mediävistischer Forschung. Beihefte, {{=T('(Volume)')}} 18 -
- {{if session.forced_language =='de': }} -

„The Past through Narratology“ bietet neue Ansätze zur Interpretation spätantiker und frühmittelalterlicher Texte. Ausgehend von einer weit gefassten Definition dessen, was ein Text sein kann – von hagiographischen Erzählungen über Karten bis hin zu archäologischen Überresten –, schlägt dieses Buch Narrativität und Narratologie als Deutungsrahmen für die Erforschung von Quellen und den wissenschaftlichen Austausch neuer Ideen vor. In den hier versammelten Beiträgen wird untersucht, wie Autoren und literarische Bewegungen Sinnzusammenhänge in Erzählform brachten und sie in literarisierten Räumen positionierten. Gleichzeitig stellen sie die Frage, wie wir als Forscher Narrative über unsere Vergangenheit konstruieren.

-

Erscheint im Frühjahr 2022

- - {{elif session.forced_language =='en': }} -

“The Past through Narratology” proposes a fresh approach to various types of texts from Late Antiquity and the Early Middle Ages. Starting from a broad definition of what a text can be – ranging from hagiographic narratives and maps to archaeological remains – this book proposes narrativity and narratology as frameworks for exploring sources and exchanging opinions. The various contributions in this volume investigate how late antique and early medieval authors and movements used narrative as a vehicle for their ideas and how they operated in literarised spaces. At the same time, this book also examines how we as researchers construct narratives about our periods of study.

-

Coming in Spring 2022

- {{pass}} -
-
-
-
- -
-
-
-
-
- {{=IMG(_src=URL('static','files/presses/6/monographs/854/simple/cover.jpg'),_alt='',_class='bildrahmen')}} -
-
-
-
-
-
- Thomas Schwitter
- Erinnerung im Umbruch
-Die Fortsetzung, Drucklegung und Ablösung der »Grandes chroniques de France« im 15. und frühen 16. Jahrhundert -

- Pariser Historische Studien, {{=T('(Volume)')}} 124 -
- {{if session.forced_language =='de': }} -

Die Studie zeichnet die Entwicklung der herrschaftsnahen Historiografie Frankreichs im 15. und frühen 16. Jahrhundert nach. Im Fokus steht dabei in den zwei ersten Teilen die Fortsetzung und Drucklegungen der »Grandes Chroniques« im 15. Jahrhundert bis hin zur Ablösung dieses Leittextes durch die neuen, humanistisch geprägten Werke von Robert Gaguin und Paulus Aemilius. Dazwischen werden zahlreiche Entwicklungsstufen rekonstruiert und auch bislang kaum untersuchte Werke thematisiert. Das Hauptthema der französischen Historiografie war in jener Zeit lange die damals jüngere Vergangenheit, das heißt der französische Bürgerkrieg (1407–1435) und der damit verbundene Konflikt mit den englischen Königen. Das Ringen verschiedener Parteien um die Deutungshoheit über jene Jahrzehnte prägte deshalb die Entwicklung der französischen Historiografie im 15. und frühen 16. Jahrhundert maßgeblich, was im dritten Teil der Arbeit untersucht wird.

-

Erscheint im Frühjahr 2022

- - {{elif session.forced_language =='en': }} -

The study traces the development of historiography surrounding the rulers in France in the 15th and early 16th centuries. In the first two parts, the focus is on the continuation and printing of the “Grandes Chroniques” in the 15th century up to the replacement of this leading text by the new, humanistically influenced works of Robert Gaguin and Paulus Aemilius. Along the way, numerous stages of development are reconstructed. Moreover, many historiographical works that have hardly been studied so far but were influenced heavily by the “Grandes Chroniques” are also discussed. For a long time during that period, the main topic of French historiography was the French Civil War (1407–1435) and the associated conflict with the English kings. The struggle of various parties for interpretative sovereignty over those decades therefore had a decisive influence on the development of French historiography in the 15th and early 16th centuries, which will be examined in the third part.

-

À partir du xiiie siècle, les »Grandes chroniques de France«, pièce maîtresse de l’historiographie française, furent régulièrement augmentées et mises à jour. Au xve et au début du xvie siècle, le thème central de cette historiographie proche du pouvoir était la guerre civile entre Armagnacs et Bourguignons (1407–1435), et la guerre de Cent Ans, qui y était associée. Le développement historiographique était étroitement lié à la lutte de différentes parties pour la souveraineté de l’interprétation de ces conflits. Cette revendication est analysée ici pour la première fois dans un contexte où les »Grandes chroniques« ont, certes, été continuées en tant que récit historiographique, mais dans lequel, en même temps, de nouvelles œuvres d’inspiration humaniste les ont progressivement remplacées. L’étude reconstruit de nombreuses étapes de l’évolution des »Grandes chroniques« et traite également de textes créés dans leur environnement et qui n’ont guère été étudiés jusqu’à présent. Pour ce faire, manuscrits et ouvrages imprimés sont pris en compte de la même manière.

-

Coming in Spring 2022

- {{pass}} -
-
-
-
- -
-
-
-
-
- {{=IMG(_src=URL('static','files/presses/6/monographs/944/simple/cover.jpg'),_alt='',_class='bildrahmen')}} -
-
-
-
-
-
- Bernd Alt-Epping
- Palliativmedizin
-Das Heidelberger Skript für Studierende der Medizin + -

- Lecture Notes -
- {{if session.forced_language =='de': }} -

Was verstehen wir unter Palliativmedizin/Palliative Care/Palliativversorgung? Welchen Belastungen sind Patienten und deren Angehörige in unheilbaren und fortgeschrittenen Erkrankungssituationen ausgesetzt? Wie kann eine entsprechende umfassende Behandlung und Unterstützung bewerkstelligt werden? Wie kann eine Entscheidung zur Begrenzung oder zur Fortführung therapeutischer Maßnahmen am Lebensende begründet werden?

-

Das vorliegende Skript soll Medizinstudierenden und allen Interessierten einen Einblick in die Notwendigkeiten und Möglichkeiten umfassender palliativmedizinischer Unterstützung ermöglichen und zum Nachlesen sowie für die Vorbereitung für die palliativmedizinischen Prüfungen im QB 13 und im Staatsexamen eine Hilfe sein.

-

Erscheint im Frühjahr 2022

- - {{elif session.forced_language =='en': }} -

What is Palliative Medicine / Palliative Care? What stresses are patients and their relatives exposed to in incurable and advanced disease situations? How can appropriate comprehensive treatment and support be managed? How can a decision to limit or continue therapeutic measures at the end of life be justified?

-

This script is intended to provide medical students and all interested parties with an insight into the necessities and possibilities of comprehensive palliative medical support and to be of assistance for reference and preparation for the palliative medicine examinations in QB 13 and the state examination.

-

Coming in Spring 2022

- {{pass}} -
-
-
-
- -
-
-
-
-
- {{=IMG(_src=URL('static','files/presses/6/monographs/440/simple/cover.jpg'),_alt='',_class='bildrahmen')}} -
-
-
-
-
-
- Kaiser, Friedrich Carl
- Carl Stamitz (1745–1801).
- Biographische Beiträge – Das symphonische Werk – Thematischer Katalog der Orchesterwerke. Herausgegeben von Johannes Knüchel -

- Schriften zur Südwestdeutschen Hofmusik, Band 2 -
- {{if session.forced_language =='de': }} -

Musikinteressierten ist Carl Stamitz (1745–1801), der älteste Sohn von Johann Stamitz, durchaus ein Begriff, finden sich seine Kompositionen doch auf zahlreichen Tonträgern und Konzertprogrammen im heutigen Musikbetrieb. Die Musikwissenschaft hingegen schenkt diesem Komponisten aus den Reihen der kurpfälzischen Hofmusiker nicht in gleicher Weise Aufmerksamkeit. Nach wie vor ist die 1962 eingereichte Dissertation von Friedrich Carl Kaiser (1931–2008) die einzige Monographie, die sich mit Stamitz’ Leben und einem gewichtigen Teil seines schöpferischen Werkes, der Orchestermusik, systematisch beschäftigt. Sie ist ein Standardwerk, die zu Recht in jeder Bibliographie zum Thema erscheint. Bislang konnte die Dissertation nur in den auf wenige Bibliotheken verteilten Pflichtexemplaren in Typoskriptform eingesehen werden, welche noch dazu voneinander abweichen, da Kaiser über einen langen Zeitraum hinweg immer wieder Änderungen und Zusätze an seiner Stamitz-Monographie vorgenommen hat. Die vorliegende Ausgabe, die auch Kaisers Handexemplar aus dem Nachlass berücksichtigt, stellt nun der musikwissenschaftlichen Forschung eine verlässliche Leseausgabe dieses grundlegenden Textes zur Verfügung.

-

Erscheint im Sommer 2022

- - {{elif session.forced_language =='en': }} -

Carl Stamitz (1745-1801), Johann Stamitz's eldest son, is well known for his works, as his compositions can be found on numerous recordings and concert programmes in today's music scene. Musicologists though do not pay the same attention to this composer, who came from the ranks of the court musicians of the Electoral Palatinate. The dissertation by Friedrich Carl Kaiser (1931-2008), submitted in 1962, is still the only monograph that systematically deals with his life and his orchestral music, which was a major part of his creative work. It is a standard work that rightly appears in every bibliography on the subject. Up to now it has only been possible to view the compulsory typescript copies of the dissertation, which are distributed among a few libraries and which differ in detail from one another. The reason for this is the somewhat unusual genesis of the text, as Kaiser repeatedly made changes and additions to his Stamitz monograph over a long period of time. The present edition, which also includes Kaiser's personal copy from his estate, now provides musicology researchers with a reliable edition of this fundamental text.

-

Coming in Summer 2022

- {{pass}} -
-
-
-
+
+
+
+
+
+ {{=IMG(_src=URL('static','images/catalog/cover_menzel.jpg'),_alt='',_class='bildrahmen')}} +
+
+
+
+
+
+ Stefan Menzel
+ Pforta, St. Afra, St. Augustin und die Transformation der mitteldeutschen Musiklandschaft (1543–1620)

+ Heidelberger Schriften zur Musikwissenschaft, {{=T('Volume')}} 1 +
+ {{if session.forced_language =='de': }} +

Die albertinischen Fürstenschulen Pforta (bei Naumburg), St. Afra (Meißen) und St. Augustin (Grimma) waren von großer Bedeutung für die Konsolidierung der lutherischen Kirchenmusik. Die Schulen, ihre Lehrer und Absolventen trieben die Transformation Mitteldeutschlands in eine blühende Musiklandschaft voran. Diesen Prozess zeichnet das Buch detailliert nach und entwirft dabei ein musikhistorisches Panorama der Reformation, das vom 13. Jahrhundert bis zum Beginn des Dreißigjährigen Krieges reicht. Die Studie füllt damit nicht nur musikhistoriographische Lücken, sondern beschreibt auch eine der bedeutendsten musikalischen Kulturlandschaften des alten deutschen Sprachraums.

+

Erscheint im Sommer 2023

+ + {{elif session.forced_language =='en': }} +

The Albertine Prince’s Schools Pforta, St. Afra, and St. Augustin considerably contributed to the consolidation of Lutheran church music. The three schools, their teachers, and their alumni transformed Central Germany into a flourishing musical landscape. This study traces this process in detail, thus filling the musico-historical gap between the Wittenberg Reformation and the Thirty Years’ War and describing one of the most significant musical landscapes of the German-speaking lands.

+

Coming in Summer 2023

+ {{pass}} +
+
+
+
+ + +
+
+
+
+
+ {{=IMG(_src=URL('static','files/presses/6/monographs/1131/simple/cover.jpg'),_alt='',_class='bildrahmen')}} +
+
+
+
+
+
+ Max Binder
+ Ernst Kurth und Sergej Taneev – Philosophie linearer Satztechniken zu Beginn des 20. Jahrhunderts und deren Auswirkungen auf zeitgenössische Kompositionen
+
+ {{if session.forced_language =='de': }} +

Das Aufkommen linearer Strömungen zu Beginn des 20. Jahrhunderts stellt ein bemerkenswertes und bislang wenig beschriebenes Phänomen der Musikgeschichte dar. Zwei Hauptprotagonisten waren Ernst Kurth (Bern) und Sergej Taneev (Moskau), deren Kontrapunkttheorien Grundlagenwerke für das Wirken zahlreicher Musikschaffender der Zeit bildeten. Obwohl denselben Gegenstand betreffend, weisen beide Theorien fundamentale Unterschiede auf, in musiktheoretischer wie in musikästhetischer Hinsicht. Es stellt sich heraus, dass diese unterschiedlichen Philosophien sich in zahlreichen Werken von Komponisten wie Ernst Křenek, Artur Schnabel, Alexander Skrjabin, Nikolaj Metner widerspiegeln.

+

Erscheint im Herbst 2023

+ + {{elif session.forced_language =='en': }} +

The emergence of Linearity at the beginning of the 20th century represents a remarkable but yet rarely dealt with phenomenon in music history. Two main protagonists of the time were Ernst Kurth (Bern) and Sergei Taneev (Moscow), whose counterpoint theories formed the basis for the work of numerous musicians of the time. Although concerning the same subject, both theories show fundamental differences, in music-theoretical as well as in music-aesthetic respect. It turns out that these different philosophies are reflected in numerous works by composers such as Ernst Křenek, Artur Schnabel, Alexander Scriabin, Nikolaj Metner and many others.

+

Coming in Autumn 2023

+ {{pass}} +
+
+
+
+ +
+
+
+
+
+ {{=IMG(_src=URL('static','files/presses/6/monographs/1046/simple/cover.jpg'),_alt='',_class='bildrahmen')}} +
+
+
+
+
+
+ Sukla Chatterjee, Joanna Chojnicka, Anna-Katharina Hornidge, Kerstin Knopf {{=T('(Eds.)')}}
+ Postcolonial Oceans. Contradictions and Heterogeneities in the Epistemes of Salt Water

+Anglophone Postcolonial Studies, {{=T('Volume')}} 1 +
+ {{if session.forced_language =='de': }} +

Dieses Buch leistet einen Beitrag zur Untersuchung von Ozeanen, Meeren, Küstengewässern und Flüssen im Kontext der Blue Humanities, indem es sich dem Thema Salzwasser aus verschiedenen epistemologischen, narratologischen, geografischen, kulturellen und disziplinären Perspektiven nähert und diese miteinander vernetzt.

+

Die Beiträger:innen aus Afrika, Asien, der Karibik, Europa, Nordamerika und dem Pazifik beschäftigen sich mit den Verflechtungen zwischen Ozeanen, Küstengebieten, Flüssen, Menschen, Tieren, Pflanzen, Organismen und Landschaften in den Bereichen Kulturgeschichte und Kulturwissenschaften, critical race theory und postkoloniale Studien, Meeres- und Umweltstudien, Linguistik, Literatur-, Film- und Medienwissenschaften. +

+

Erscheint im Herbst 2023

+ + {{elif session.forced_language =='en': }} +

This book contributes to the study of oceans, seas, coastal waters, and rivers within blue humanities by broadening, circulating, and interweaving knowledge about salt water, salt water epistemologies, and salt water narratives from pluriversal epistemological, geographical, cultural, and disciplinary perspectives. The contributors from Africa, Asia, the Caribbean, Europe, North America and the Pacific explore the interconnections between oceans, coastal areas, rivers, humans, animals, plants, organisms, and landscapes in the fields of cultural history and cultural studies, critical race and postcolonial studies, marine and environmental studies, linguistics, literature, film and media studies.

+

Coming in Autumn 2023

+ {{pass}} +
+
+
+
+ +
+
+
+
+
+ {{=IMG(_src=URL('static','files/presses/6/monographs/1021/simple/cover.jpg'),_alt='',_class='bildrahmen')}} +
+
+
+
+
+
+ Christa Syrer
+ Die Räume der Witwe. Architektur und Funktion fürstlicher Witwensitze in der Frühen Neuzeit, 1450–1650

+ Höfische Kultur interdisziplinär, {{=T('Volume')}} 7 +
+ {{if session.forced_language =='de': }} +

Fürstliche Witwen traten an den Höfen des Heiligen Römischen Reichs als Mütter, Beraterinnen und Mäzeninnen in Erscheinung. Ihnen stand eine angemessene finanzielle Versorgung zu. Als repräsentatives Zentrum wurde der fürstlichen Witwe und ihrem Hof ein Schloss als Witwensitz zugewiesen. Das Buch wirft erstmals einen kunsthistorischen Blick auf den Ausbau und die zeremonielle Nutzung fürstlicher Witwensitze vom 15. bis zum 17. Jahrhundert. Im Fokus stehen dabei Funktionswandel und Umnutzung der Schlösser. Die Analyse ausgewählter Beispiele zeigt, wie die Witwen ihrer neuen Rolle als unabhängige Verwalterinnen ihrer Ämter auch baulich und räumlich Ausdruck verliehen.

+

Erscheint im Herbst 2023

+ + {{elif session.forced_language =='en': }} +

Dowagers played an active role in politics and culture at the courts of the Holy Roman Empire. They were mothers, advisers and patrons of the arts. The rulers had to provide them with an appropriate dowry and a residence. For the first time, the book describes the architecture and the ceremonial use of dower residences from the 15th to the 17th century from an art historical point of view. Focusing on functional changes and conversion of the castles, the author shows how the dowagers expressed their new independence in an architectural and spatial way.

+

Coming in Autumn 2023

+ {{pass}} +
+
+
+
-
-
-
-
-
- {{=IMG(_src=URL('static','files/presses/6/monographs/545/simple/cover.jpg'),_alt='',_class='bildrahmen')}} -
-
-
-
-
-
- Christian Schneider, Peter Schmidt, Jakub Šimek, Lisa Horstmann {{=T('(Eds.)')}}
- Der Welsche Gast des Thomasin von Zerklaere.
- Neue Perspektiven auf eine alte Verhaltenslehre in Text und Bild -

- {{if session.forced_language =='de': }} - Kulturelles Erbe: Materialität – Text – Edition, Band 2 - {{elif session.forced_language =='en': }} - Cultural Heritage: Materiality – Text – Edition, Vol. 2 - {{pass}} -
- {{if session.forced_language =='de': }} -

In den Jahren 1215/1216 verfasste Thomasin von Zerklaere mit dem Welschen Gast die erste umfassende Verhaltenslehre in deutscher Sprache. Bis in die Frühe Neuzeit hinein wurde das Werk vielfach abgeschrieben und weiterverbreitet. Eine Besonderheit stellt es auch deshalb dar, weil es schon früh in der Überlieferung mit einem umfangreichen Bilderzyklus versehen ist. Der vorliegende Band versammelt Studien aus Kunst-, Literatur- und Musikwissenschaft zu den Quellen, der didaktischen Konzeption, der Bildüberlieferung und der Rezeption von Thomasins Werk sowie zu den Möglichkeiten seines Einsatzes im Deutschunterricht der Gegenwart. Er schlägt vor, an die Stelle eines autorfixierten Blicks auf den Text-Bild-Verbund des Welschen Gastes einen konsequent überlieferungsgeschichtlichen treten zu lassen.

-

Erscheint im Sommer 2022

- - {{elif session.forced_language =='en': }} -

In 1215/1216, Thomasin von Zerklaere wrote the first comprehensive book of etiquette in the German language, the Welsche Gast. Until the early modern period, the work was copied and distributed many times. It is also special because it was supplemented early in the tradition by an extensive cycle of images. This volume brings together studies from the fields of art, literature and musicology on the sources, the didactic conception, the pictorial tradition and the reception of Thomasin's work. It also explores the possibilities of its use in contemporary German lessons. It proposes to replace an author-focused view of the text-image combination of the Welsche Gast with a consistently historical view of its tradition.

-

Coming in Summer 2022

- {{pass}} -
-
-
-
-
-
-
-
-
- {{=IMG(_src=URL(myconf.take('web.application'),'static','/images/catalog/cover_pagel.jpg'),_alt='', _class='bildrahmen')}} -
-
-
-
-
-
- Steve Pagel
- {{if session.forced_language =='de': }} - Die Wurzeln der Kontaktlinguistik. - Zur Entstehung des Sprachkontaktparadigmas in der Sprachwissenschaft - {{elif session.forced_language =='en': }} - The roots of contact linguistics. - On the emergence of the language contact paradigm in the science of language - {{pass}} -
-
- {{if session.forced_language =='de': }} -

Das Nachdenken über Sprachkontakt und Sprachmischung ist von Anfang an Teil der europäisch-abendländischen Beschäftigung mit Sprache. Angefangen bei Platon, ist es lange ein recht unaufgeregtes Nachdenken, bis sich im 19. Jhd. der Blickwinkel radikal ändert: die Normalität ist weg, Kontakt und Mischung werden erst zu einem Forschungstabu und nur wenig später zum Forschungsfokus, aus dem eine eigene Disziplin, die Kontaktlinguistik hervorgeht. Dieses Buch erzählt erstmals die ganze Geschichte der Erforschung von Sprachkontakt bis an die Schwelle zum 20. Jhd. und zeigt, wie kritisch-historiografische Studien helfen können, aktuelle Debatten (z.B. in der Kreolistik) einzuordnen und voranzubringen.

-

Erscheint im Herbst 2022

- - {{elif session.forced_language =='en': }} -

Reflecting on language contact and language mixing is part of the European-Western occupation with language from the beginning. Starting with Plato, it is for a long time a rather unexcited reflection, until in the 19th century, the perspective changes radically: the normality of cases of contact and mixing is gone, they become a research taboo first and only a little later a research focus, from which a separate discipline, contact linguistics, emerges. This book, for the first time, tells the whole story of the study of language contact up to the 20th century, and shows how critical-historiographic studies can help to understand and advance current debates (for example, in creolistics).

-

Coming in Autumn 2022

- {{pass}} -
-
-
-
- -
-
-
-
-
- {{=IMG(_src=URL('static','files/presses/6/monographs/629/simple/cover.jpg'),_alt='',_class='bildrahmen')}} -
-
-
-
-
-
- Jihan Jennifer Radjai-Bründl
- Repräsentationen der israelischen Soldatin im Netz der Bildkulturen -
-
- {{if session.forced_language =='de': }} -

Bilder von israelischen Soldatinnen sind ein populäres Motiv in der Fotografie. Auffallend ist dabei die kontroverse Vermittlung von Geschlecht und Identität: Darstellungen der israelischen Soldatin als Heldin, wie sie das israelische Militär in ihren offiziellen Bildern zeigt, stehen Fotografien gegenüber, die entweder sexualisiert oder als visualisierte Kritik am Militärdienst und der Verantwortung der jungen Soldatinnen gegenüber Staat und Volk erscheinen. Aspekte der Bildsprache und -ästhetik im kulturhistorischen Diskurs des Zionismus sowie Stereotype wie das der ›schönen Jüdin‹ in der europäischen Malerei seit dem 18. Jahrhundert stehen im Vordergrund dieser Analyse. In interdisziplinärer Arbeitsmethode wird ein Beitrag der Jüdischen Studien geleistet, der Ansätze der Geschlechterforschung mit denen der Kunst- und Bildwissenschaften vereint.

-

Erscheint im Winter 2022

- - {{elif session.forced_language =='en': }} -

Representations of female Israeli soldiers are a popular subject in photography. However, a notable controversial imparting exists concerning gender and identity: heroic depictions of female Israeli soldiers as shown by the Israeli military in their official representations are in contrast to portraits which are either sexualized or appear as a form of criticism on military service as such and the responsibility of young women soldiers towards the state and the people. -This analysis focusses on aspects of the visual language and aesthetics in the context of the cultural history discourse of Zionism, as well as on stereotypes such as the ›beautiful Jewess‹ in European painting since the 18th century. The results offer a unique contribution to Jewish studies by combining methods of gender studies and art history, as well as visual studies -

-

Coming in Winter 2022

- {{pass}} -
-
-
-
diff --git a/views/home/index.html b/views/home/index.html index f12d6fcd..9cd2a909 100755 --- a/views/home/index.html +++ b/views/home/index.html @@ -27,42 +27,30 @@ {{pass}}
  • - +
  • - +
  • - - + +
  • - {{if session.forced_language =='de': }} + {{if session.forced_language =='de': }} {{elif session.forced_language =='en': }} @@ -82,8 +70,8 @@

    Reuter, Gress, Mladenova (Eds.)
    Visuelle Dimens
  • - - - - - +
    {{=A(T('More Information'),_href=URL('catalog','book/1114'))}} +
    + + + + + + - + + + +
    +
    -
    +
    -

    {{=T('New Titles')}}

    - {{=A(IMG(_src=URL(myconf.take('web.application'),'static','files/presses/6/monographs/834/simple/cover.jpg'),_alt='',_style='width:145px', _class='bildrahmen'),_href=URL('catalog','book/834'))}} -
    -
    {{=A(T('More Information'),_href=URL('catalog','book/834'))}} +

    {{=T('Forthcoming')}}

    + {{=A(IMG(_src=URL(myconf.take('web.application'),'static','files/presses/6/monographs/1171/simple/cover.jpg'),_alt='',_style='width:145px', _class='bildrahmen'),_href=URL('catalog','preview#bauer'))}} +
    +
    {{=A(T('More Information'),_href=URL('catalog','preview#auberer'))}}
    -
    - +
    +

    {{=T('Forthcoming')}}

    - {{=A(IMG(_src=URL(myconf.take('web.application'),'static','files/presses/6/monographs/859/simple/cover.jpg'),_alt='',_style='width:145px', _class='bildrahmen'))}} + {{=A(IMG(_src=URL(myconf.take('web.application'),'static','files/presses/6/monographs/1221/simple/cover.jpg'),_alt='',_style='width:145px', _class='bildrahmen'),_href=URL('catalog','preview#bauer'))}}
    -
    {{=A(T('More Information'),_href=URL('catalog','preview#klimiuk'))}} +
    {{=A(T('More Information'),_href=URL('catalog','preview#logemann'))}}
    @@ -271,9 +251,12 @@

    Heidelberg Academy of Sciences and Humanities – the state academy of Baden

    -
    + +
    + + diff --git a/views/journals/apoc.html b/views/journals/apoc.html index e965e8e7..bd5344dc 100644 --- a/views/journals/apoc.html +++ b/views/journals/apoc.html @@ -8,7 +8,7 @@
    - +
    @@ -25,23 +25,27 @@
    Bibliographische Angaben
  • Jenny Stümer
  • Felicitas Loest
  • +

    Lektor

    +
      +
    • Michael Dunn
    • +

    Wissenschaftlicher Beirat

    • Stefan Bargheer, Aarhus University
    • -
    • André Butz, Heidelberg University
    • -
    • Lorenzo DiTommaso, Concordia University Montreal
    • -
    • Jack Halberstam, Columbia University
    • -
    • Jessica Hurley, George Mason University
    • -
    • Maria Manuel Lisboa, Cambridge University
    • -
    • Collin McAllister, University of Colorado Springs
    • -
    • Audra Mitchell, Wilfrid Laurier University
    • -
    • Luna Nájera, Yale University
    • -
    • Joanna Page, Cambridge University
    • -
    • Oxana Timofeeva, European University of St Petersburg
    • -
    +
  • André Butz, Heidelberg University
  • +
  • Lorenzo DiTommaso, Concordia University Montreal
  • +
  • Jack Halberstam, Columbia University
  • +
  • Jessica Hurley, George Mason University
  • +
  • Maria Manuel Lisboa, Cambridge University
  • +
  • Collin McAllister, University of Colorado Springs
  • +
  • Audra Mitchell, Wilfrid Laurier University
  • +
  • Luna Nájera, Yale University
  • +
  • Joanna Page, Cambridge University
  • +
  • Oxana Timofeeva, European University of St Petersburg
  • + - +

    ISSN: 2751-7721 (Online)

    @@ -61,21 +65,26 @@
    Bibliographic details
  • Felicitas Loest
  • +

    Copy Editor

    +
      +
    • Michael Dunn
    • +
    +

    Editorial Board

      -
    • Stefan Bargheer, Aarhus University
    • -
    • André Butz, Heidelberg University
    • -
    • Lorenzo DiTommaso, Concordia University Montreal
    • -
    • Jack Halberstam, Columbia University
    • -
    • Jessica Hurley, George Mason University
    • -
    • Maria Manuel Lisboa, Cambridge University
    • -
    • Collin McAllister, University of Colorado Springs
    • -
    • Audra Mitchell, Wilfrid Laurier University
    • -
    • Luna Nájera, Yale University
    • -
    • Joanna Page, Cambridge University
    • -
    • Oxana Timofeeva, European University of St Petersburg
    • -
    - +
  • Stefan Bargheer, Aarhus University
  • +
  • André Butz, Heidelberg University
  • +
  • Lorenzo DiTommaso, Concordia University Montreal
  • +
  • Jack Halberstam, Columbia University
  • +
  • Jessica Hurley, George Mason University
  • +
  • Maria Manuel Lisboa, Cambridge University
  • +
  • Collin McAllister, University of Colorado Springs
  • +
  • Audra Mitchell, Wilfrid Laurier University
  • +
  • Luna Nájera, Yale University
  • +
  • Joanna Page, Cambridge University
  • +
  • Oxana Timofeeva, European University of St Petersburg
  • + +

    ISSN: 2751-7721 (Online)

    @@ -97,26 +106,27 @@
    Bibliographic details
    - - +
    @@ -155,19 +165,19 @@

    Apocalyptica

    {{pass}} - +
    diff --git a/views/journals/heied.html b/views/journals/heied.html index 9ea8dda7..1883e2eb 100644 --- a/views/journals/heied.html +++ b/views/journals/heied.html @@ -22,29 +22,25 @@

    Bibliographische Angaben

    Herausgeber

    Redaktion

    Beratende Herausgeber

    Heidelberg School of Education

    ISSN 2569-8524 (Print)
    - ISSN 2626-983X (online)

    + ISSN 2626-983X (online)

    -
  • Dr. Corinna Assmann
  • +
  • PD Dr. Bernd Hirsch
  • Consulting Editors

    Heidelberg School of Education

    ISSN 2569-8524 (Print)
    - ISSN 2626-983X (online)

    + ISSN 2626-983X (online)

    +
  • + {{=T('View Journal')}} +
  • @@ -274,7 +274,7 @@
    - +
    @@ -343,7 +343,7 @@
    - +
    diff --git a/views/journals/mial.html b/views/journals/mial.html index 84db916e..eefa8300 100644 --- a/views/journals/mial.html +++ b/views/journals/mial.html @@ -8,7 +8,7 @@
    - +
    @@ -19,7 +19,7 @@
    Bibliographische Angaben

    Das Mittelalter

    -

    Herausgegeben im Auftrag des Präsidiums des Mediävistenverbandes von Prof. Dr. Regina Toepfer (bis Heft 1/2021); ab Heft 2/2021 von Prof. Dr. Isabelle Mandrella.

    +

    Herausgegeben im Auftrag des Präsidiums des Mediävistenverbandes von Prof. Dr. Isabelle Mandrella.

    Heidelberg University Publishing, Heidelberg

    ISSN: 2196-6869 (Online)
    ISSN 0949-0345 (Print)

    @@ -33,7 +33,7 @@
    Bibliographische Angaben
    Bibliographic details

    Das Mittelalter (The Middle Ages)

    -

    Including Issue 1/2021 published by Prof. Dr. Regina Toepfer, as of Issue 2/2021 published by Prof. Dr. Isabelle Mandrella on behalf of the Presidium of the Mediävistenverband.

    +

    Edited by Prof. Dr. Isabelle Mandrella on behalf of the Presidium of the Mediävistenverband.

    Heidelberg University Publishing, Heidelberg

    ISSN: 2196-6869 (Online)
    @@ -80,6 +80,7 @@

    Das Mittelalter (The Middle Ages)

    Die Zeitschrift ‚Das Mittelalter. Perspektiven mediävistischer Forschung‘ wurde 1996 vom Mediävistenverband als Forum für die interdisziplinäre Mediävistik gegründet und gehört zu den wichtigsten mediävistischen Periodika weltweit. Die Hefte sind thematisch ausgerichtet, enthalten Beiträge aus mindestens drei verschiedenen Disziplinen und behandeln aktuelle Fragestellungen aus allen Bereichen der Mediävistik. Die Aufsätze unterliegen einem Peer Review-Verfahren und sind in deutscher oder englischer Sprache verfasst. Der Thementeil wird ergänzt durch einen umfangreichen Rezensionsteil, in dem wichtige Neuerscheinungen vorgestellt werden; seit 2021 wird die Zeitschrift ‚Das Mittelalter‘ auch open access publiziert.

    Der Mediävistenverband lädt in regelmäßigen Abständen in einem ‚Call for Issues‘ dazu ein, Vorschläge für die Gestaltung von Themenheften bei der Schriftführung einzureichen. Präsidium und wissenschaftlicher Beirat prüfen die eingegangenen Vorschläge und treffen eine thematische Auswahl. Die Herausgeber*innen eines Themenhefts veröffentlichen einen ‚Call for Papers‘, wählen in Abstimmung mit dem wissenschaftlichen Beirat potentielle Beiträge aus und organisieren eine Autor*innenkonferenz, auf der die begutachteten Aufsätze diskutiert werden.

    +

    Die Zeitschrift wird durch die Reihe Das Mittelalter. Beihefte ergänzt.

    + +
    + +
    +
    +
    +
    + {{if session.forced_language =='de': }} +
    Bibliographische Angaben
    +

    Anglophone Postcolonial Studies ist eine Reihe der Gesellschaft für Anglophone Postkoloniale Studien e.V. (GAPS)
    + Association for Anglophone Postcolonial Studies

    +

    Herausgeber:innen

    +

    Christian Mair
    + Annika McPherson
    + Cecile Sandten
    + Katja Sarkowsky
    + Frank Schulze-Engler +

    + + +
    ISSN
    +

    ISSN 2941-4911 (Print)
    + ISSN 2941-4962 (eISSN)

    + + + {{elif session.forced_language =='en': }} + +
    Bibliographic details
    +

    Anglophone Postcolonial Studies is edited by the Gesellschaft für Anglophone Postkoloniale Studien e.V. (GAPS)
    + Association for Anglophone Postcolonial Studies

    +

    Editors

    +

    Christian Mair
    + Annika McPherson
    + Cecile Sandten
    + Katja Sarkowsky
    + Frank Schulze-Engler +

    + + +
    ISSN
    +

    ISSN 2941-4911 (Print)
    + ISSN 2941-4962 (eISSN)

    + + + {{pass}} +
    +
    +
    +
    + + + + + + \ No newline at end of file diff --git a/views/series/hsmuwi_info.html b/views/series/hsmuwi_info.html new file mode 100644 index 00000000..00b029a1 --- /dev/null +++ b/views/series/hsmuwi_info.html @@ -0,0 +1,91 @@ +{{extend 'layout.html'}} + +
    +
    +
    + +
    + +
    +
    + {{=IMG(_src=URL('static','files/presses/6/series/92-series.jpg'))}} +
    + +
    + +
    + +
    +
    + + +
    + {{if session.forced_language =='de': }} +

    Heidelberger Schriften zur Musikwissenschaft

    + + {{elif session.forced_language =='en': }} +

    Heidelberger Schriften zur Musikwissenschaft

    + {{pass}} +
    + {{if session.forced_language =='de': }} +

    Die Heidelberger Schriften zur Musikwissenschaft sind eine Peer-Review-geprüfte Open-Access-Schriftenreihe, in der ausschließlich herausragende Monografien aus dem gesamten Fachgebiet der Musikwissenschaft von der Antike bis zur Moderne erscheinen.

    + +

    Die 2023 begonnene Buchreihe wird von Christiane Wiesenfeldt und Christoph Flamm gemeinsam herausgegeben und ist am Musikwissenschaftlichem Seminar der Universität Heidelberg angesiedelt. Sie ist auch offen für externe Autorinnen und Autoren, die in einer Reihe mit hoher Qualitätssicherung publizieren möchten. Ein internationaler wissenschaftlicher Beirat, bestehend aus Friedrich Geiger (München), Inga Mai Groote (Zürich), Christian Leitmeir (Oxford) und Panja Mücke (Mannheim) steht den Herausgebern beratend zur Seite.

    + +

    Die Reihe ermöglicht neben deutsch- auch englischsprachigen Monographien eine qualitätsgesicherte Publikation und macht das Heidelberger Seminar als Ort internationaler Forschung sichtbar.

    + + + {{elif session.forced_language =='en': }} +

    The Heidelberger Schriften zur Musikwissenschaft is a peer-reviewed open-access series in which only outstanding monographs from the entire field of musicology from antiquity to modern times are published.

    +

    The new book series is co-edited by Christiane Wiesenfeldt and Christoph Flamm and is based at the Department of Musicology at Heidelberg University. It is open to external authors who wish to publish in a series with high quality assurance. An international scientific advisory board consisting of Friedrich Geiger (Munich), Inga Mai Groote (Zurich), Christian Leitmeir (Oxford) and Panja Mücke (Mannheim) supports the editors in ensuring scientific quality.

    +

    In addition to the German- and English-language monographs, the series enables quality-assured publication and makes the Heidelberg Seminar visible as a place of international research.

    + {{pass}} + + + +
    + +
    +
    +
    +
    + +
    + {{if session.forced_language =='de': }} +
    Bibliographische Angaben
    +

    Heidelberger Schriften zur Musikwissenschaft

    +

    Herausgeber

    +
      +
    • Christiane Wiesenfeldt, Heidelberg
    • +
    • Christoph Flamm, Heidelberg
    • +
    +
    ISSN
    +

    ISSN (online): 2941-5683
    + ISSN (Print): 2941-5675

    + + {{elif session.forced_language =='en': }} +
    Bibliographic details
    +

    Heidelberger Schriften zur Musikwissenschaft

    +

    Editors

    +
      +
    • Christiane Wiesenfeldt, Heidelberg
    • +
    • Christoph Flamm, Heidelberg
    • +
    +
    ISSN
    +

    ISSN (online): 2941-5683
    + ISSN (Print): 2941-5675

    + + {{pass}} +
    +
    +
    +
    +
    + + +
    diff --git a/views/series/rap_info.html b/views/series/rap_info.html index c045b313..f50f2d0f 100644 --- a/views/series/rap_info.html +++ b/views/series/rap_info.html @@ -5,14 +5,14 @@
    - +
    @@ -33,14 +33,14 @@

    Russia and the Asia-Pacific

    Both the project “Russia’s North Pacific” and the associated book series have a historical focal point but are structured along interdisciplinary lines. The time frame extends from the 18th century to the present. Correspondingly, the series is not only suitable for historical studies but also for investigations drawn from the political and social sciences, environmental and regional studies. Along with selected findings of relevant workshops and conferences, the series is also open to contributions from monographic studies by German and international researchers, not least from outstanding master’s and doctoral theses. Publication is possible in English and German. A scientific advisory board accompanies the work of the series, ensuring adherence to high standards of quality.

    {{pass}} - +
    @@ -54,18 +54,17 @@
    Bibliographisch

    Russia and the Asia-Pacific

    Herausgeber

    - + +
    ISSN
    +

    ISSN 2940-5858 (Hardcover)
    + eISSN 2940-584X (PDF)

    + {{elif session.forced_language =='en': }} @@ -73,17 +72,17 @@
    Bibliographic d

    Russia and the Asia-Pacific

    Series editors

    - +
    ISSN
    +

    ISSN 2940-5858 (Hardcover)
    + eISSN 2940-584X (PDF)

    + {{pass}}
    @@ -93,4 +92,4 @@
    ISSN
    - \ No newline at end of file +