Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference

Total Page:16

File Type:pdf, Size:1020Kb

Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference USENIX Association Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference San Antonio, Texas, USA June 9-14, 2003 THE ADVANCED COMPUTING SYSTEMS ASSOCIATION © 2003 by The USENIX Association All Rights Reserved For more information about the USENIX Association: Phone: 1 510 528 8649 FAX: 1 510 548 5738 Email: [email protected] WWW: http://www.usenix.org Rights to individual papers remain with the author or the author's employer. Permission is granted for noncommercial reproduction of the work for educational or research purposes. This copyright notice must be included in the reproduced paper. USENIX acknowledges all trademarks herein. GNU Mailman, Internationalized Barry A. Warsaw Zope Corporation [email protected] [email protected] http://www.zope.com http://barry.warsaw.us Abstract When Mailman was first released, python.org quickly adopted it and has been using it ever since. Mailman 2.0 GNU Mailman is a mailing list manage- marked a milestone in its development, as ment system that has been in production use version 2.0.13 is quite stable, and deployed since 1998. In December 2002, a version 2.1 at thousands of sites. It runs everything was released containing many new features. from small special interest group lists to This paper will describe one of the most im- huge announcement lists, at sites ranging portant – Mailman 2.1’s internationalization from the commercial (RedHat, SourceForge, support. Presented here are the tools that Apple, Dell, SAP, and Zope Corporation), were built and the approaches Mailman took to the hacker community (XEmacs, Samba, to marking and translating text, as well a re- Gnome, KDE, Exim, and of course Python), view of some of the benefits and pitfalls of to numerous educational organizations Mailman’s solution. Also presented will be and non-profits. There are lots of host- some future directions for internationalized ing facilities providing Mailman services, Mailman, as well as other complex Python and increasingly, quite a few international applications such as Zope. organizations. One of the reasons for the increased interest from the non-English speaking world is that 1 Introduction Mailman 2.1, which had been in development for about two years, is fully internationalized. Internationalization is the process of prepar- ing an application for use in multiple locales. GNU Mailman was invented by John Viega Localization is the process of specializing the sometime before 1997, or so is indicated by application for a specific locale. For example, the earliest known archived message on the during internationalization, all end-user dis- subject. The earliest hit for “viega mail- playable text in the Mailman 2.1 source code man” in Google groups is about the Dave was specially marked as requiring translation. Matthews band mailing list that John was Mailman 2.1.1 (the latest available patch re- running [Viega97]. lease at the time of writing), has been local- ized to almost 20 natural languages. At the time, python.org [Python.Org] was running a hacked version of Majordomo for While Mailman 2.1 may appear to be only a all its special interest group (SIG) mailing minor revision over 2.0.13, it really represents lists, but this had two problems: first, the site quite an extensive rewrite. It could easily was becoming unmaintainable as the admin- have been argued that this version should be istrators tried to customize new features into called Mailman 3.0. Before describing the de- Majordomo, and second, it just wouldn’t do tails of the internationalization work, a brief to run Python’s mailing lists on a Perl-based overview of Mailman is provided, including list server. USENIX Association FREENIX Track: 2003 USENIX Annual Technical Conference 39 a quick tour of some of the other important the message. This means that various as- features in the 2.1 release. pects of the message, i.e. the header or footer, or the To field, can contain infor- mation specific to the member receiving the message. 2 What is GNU Mailman? • Extensive privacy options which allow a list administrator to select policies for subscribing and unsubscribing (open, “GNU Mailman” (informally referred to as confirmation required, or approval re- just “Mailman”), is a system for managing quired), policies for posting to the list electronic mailing lists. It is implemented pri- (open, moderated, members only, ap- marily in Python, an object-oriented, very proved posters only), and some limited high-level, open source programming lan- spam defenses. guage. Mailing lists are administered by a list owner, and users can interact with the list • Automatic bounce processing. Bouncing – including subscribing and unsubscribing – addresses are the bane of any mailing through the web and through email. Site ad- list, and Mailman provides two mech- ministrators can also interact with Mailman anisms for automatic bounce detection, via a suite of command line scripts, or even regular expression based bounce match- via the interactive Python prompt. Mailman ing and Variable Envelope Return Paths is the official mailing list manager of the GNU [VERP]. project and is available under terms of the RFC 3464 [RFC3464] and the older RFC GNU General Public License [GPL]. it replaces [RFC1894] describe a stan- dard format for bounce notifications. Mailman strives for standards compliance, However, many mail systems ignore or and as such is interoperable with a wide range incorrectly implement this standard. For of web servers and browsers, and mail servers recognizing bounce messages, Mailman and clients. Of the web servers, it requires the has an extensive set of regular expression ability to execute CGI scripts, and of mail based matches used to dig the bouncing servers it requires the ability to filter mes- address out of the notice. For fool-proof sages through programs. Apache is probably bounce detection, Mailman also supports the most widely used web server for Mail- VERP, a technique where the intended man, and any of the Big 4 mail servers (Send- recipient’s address as it appears on the mail, Postfix, Qmail, and Exim) will work mailing list is encoded into the envelope just fine. The HTML that Mailman out- sender of the message. Because remote puts is extremely pedestrian so just about mail servers are required to send bounces any web browser should work with it, as long to the envelope sender, Mailman can un- as it supports cookies. Mailman should work ambiguously decode the intended recip- with any MIME-compliant mail reader. Mail- ient’s address and register an accurate man works on any Unix-like operating sys- bounce. Note that technically, VERP tem, such as GNU/Linux. must be implemented in the mail server, but Mailman’s use of the technique is Mailman supports a wide range of features, close enough to warrant the label. such as: • Archiving. Mailman comes bundled with an archiver called Pipermail. Pipermail’s • User selectable delivery modes. Mem- chief advantages are that it comes bun- bers can elect to receive messages im- dled, that it is implemented in Python, mediately, or in batches called digests. and that in Mailman 2.1 it is interna- Two forms of digests are supported, RFC tionalized, allowing the display of mes- 1153 style plain text digests [RFC1153], sages in alternative languages and char- and MIME multipart/digest style di- acter encodings. Its primary disadvan- gests. Non-digest deliveries can be per- tages are that it doesn’t support search- sonalized specifically for the recipient of ing and isn’t very customizable. Mail- 40 FREENIX Track: 2003 USENIX Annual Technical Conference USENIX Association man is easily integrated with external 3 Internationalization Issues archivers. The new features in Mailman 2.1 are ex- • A mail to news gateway. Mailman can tensive, but the most visible addition is the be configured to gateway lists to and support for multiple natural languages. This from Usenet newsgroups. For example, means that all the administrative and pub- the comp.lang.python newsgroup is gate- licly visible web pages, all the email notifica- wayed to the [email protected] tions, and even the built-in archiver can be mailing list. Even moderated lists, such configured to produce text in any of nearly as comp.lang.python.announce can be 20 natural languages out of the box. A large gatewayed, with Mailman serving as the part of the re-architecting of Mailman for 2.1 moderation tool. has been to provide a framework for easily adding new natural languages as they become available from volunteer translation teams. • Auto-responder, content filtering, and topics. The auto-responder can be set up to send a canned message when- 3.1 Message IDs ever someone posts to the list, or emails the list owner or -request robot. Con- tent filtering allows the list owner to explicitly filter or pass specific MIME Not every string in an application needs to (Multipurpose Internet Mail Extensions be translated. For example, some strings are [RFC2045]) content types. Topics allow used as keys in dictionaries, or represent mail the list owner to assign incoming mes- headers, or contain HTML tags. To make sages to any of a configurable number of the proper distinction we refer to strings that groups, and members can “subscribe” to are intended for human readability as “text” a specific topic, receiving only the sub- or “messages”. One of the most labor in- set of list traffic that matches the desired tensive parts of internationalizing an exist- topics. ing code base such as Mailman’s is to go through every string in the software and dis- tinguish messages from ordinary strings. In • Virtual domains. Mailman can be used addition to the non-translatable strings de- on a mail server that supports multi- scribed above, the decision was made to not ple virtual domains.
Recommended publications
  • Engineering at Johns Hopkins University! We Look Forward to Meeting You When You Arrive on Campus for Orientation
    Eng in eering 1 01 2019-2020 p rogr am p lanni ng gui de for fi rst-y ear e ngi neering s tudents Welcome to the Whiting School of Engineering at Johns Hopkins University! We look forward to meeting you when you arrive on campus for orientation. In the meantime, we have prepared the First-Year Academic Guide and Engineering 101 to get you started. The Academic Guide includes information for all first-year students at Hopkins, while Engineering 101 is directed specifically to engineering students. Engineering 101 contains information about all of the majors in the School of Engineering, including recommended first semester class schedules. You’ll also find out about some opportunities to join student groups. We hope that these materials help you learn about the Hopkins community and the options available to you. Again, welcome to Hopkins and we’ll see you in August! Linda Moulton, Denise Shipley, Lashell Silver, Eric Simmons, Janet Weise, and Betty Zee Johns Hopkins University Whiting School of Engineering Office of Academic Affairs—Engineering Advising Wyman Park Building Suite N125 3400 N. Charles Street Baltimore, MD 21218-2681 410-516-7395 [email protected] https://engineering.jhu.edu/advising/ Nondiscrimination Statement The Johns Hopkins University is committed to equal opportunity and providing a safe and non- discriminatory educational and working environment for its students, trainees, faculty, staff, post-doctoral fellows, residents, and other members of the University community. To that end, the university seeks to provide community members with an environment that is free from discrimination and harassment on the basis of sex, gender, marital status, pregnancy, race, color, ethnicity, national origin, age, disability, religion, sexual orientation, gender identity or expression, veteran status or other legally protected characteristic.
    [Show full text]
  • Mailman CLI Documentation Release 1
    Mailman CLI Documentation Release 1 Rajeev S September 26, 2014 Contents 1 mailman.client 3 1.1 Requirements...............................................3 1.2 Project details..............................................3 1.3 Documentation..............................................3 1.4 Acknowledgements...........................................3 1.5 Table of Contents.............................................4 i ii Mailman CLI Documentation, Release 1 This package is called mailman.client. Contents 1 Mailman CLI Documentation, Release 1 2 Contents CHAPTER 1 mailman.client The mailman.client library provides official Python bindings for the GNU Mailman 3 REST API. Note that the test suite current requires that a Mailman 3 server be running. It should be running using a dummy or throw-away database, as this will make changes to the running system. TBD: mock the real Mailman engine so that it is not necessary in order to run these tests. 1.1 Requirements mailman.client requires Python 2.6 or newer. 1.2 Project details You may download the latest version of the package from the Python Cheese Shop or from Launchpad. You can also install it via easy_install or pip.: % sudo easy_install mailman.client % sudo pip install mailman.client See the Launchpad project page for access to the Bazaar branch, bug report, etc. 1.3 Documentation A simple guide to using the library is available within this package, in the form of doctests. The manual is also available online in the Cheeseshop at: http://package.python.org/mailman.client 1.4 Acknowledgements Many thanks to Florian Fuchs for his contribution of an initial REST client. 3 Mailman CLI Documentation, Release 1 1.5 Table of Contents 1.5.1 Mailman REST client >>> import os >>> import time >>> import smtplib >>> import subprocess >>> from mock import patch This is the official Python bindings for the GNU Mailman REST API.
    [Show full text]
  • Usenet News HOWTO
    Usenet News HOWTO Shuvam Misra (usenet at starcomsoftware dot com) Revision History Revision 2.1 2002−08−20 Revised by: sm New sections on Security and Software History, lots of other small additions and cleanup Revision 2.0 2002−07−30 Revised by: sm Rewritten by new authors at Starcom Software Revision 1.4 1995−11−29 Revised by: vs Original document; authored by Vince Skahan. Usenet News HOWTO Table of Contents 1. What is the Usenet?........................................................................................................................................1 1.1. Discussion groups.............................................................................................................................1 1.2. How it works, loosely speaking........................................................................................................1 1.3. About sizes, volumes, and so on.......................................................................................................2 2. Principles of Operation...................................................................................................................................4 2.1. Newsgroups and articles...................................................................................................................4 2.2. Of readers and servers.......................................................................................................................6 2.3. Newsfeeds.........................................................................................................................................6
    [Show full text]
  • Ubuntu Server Guide Ubuntu Server Guide Copyright © 2010 Canonical Ltd
    Ubuntu Server Guide Ubuntu Server Guide Copyright © 2010 Canonical Ltd. and members of the Ubuntu Documentation Project3 Abstract Welcome to the Ubuntu Server Guide! It contains information on how to install and configure various server applications on your Ubuntu system to fit your needs. It is a step-by-step, task-oriented guide for configuring and customizing your system. Credits and License This document is maintained by the Ubuntu documentation team (https://wiki.ubuntu.com/DocumentationTeam). For a list of contributors, see the contributors page1 This document is made available under the Creative Commons ShareAlike 2.5 License (CC-BY-SA). You are free to modify, extend, and improve the Ubuntu documentation source code under the terms of this license. All derivative works must be released under this license. This documentation 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 AS DESCRIBED IN THE DISCLAIMER. A copy of the license is available here: Creative Commons ShareAlike License2. 3 https://launchpad.net/~ubuntu-core-doc 1 ../../libs/C/contributors.xml 2 /usr/share/ubuntu-docs/libs/C/ccbysa.xml Table of Contents 1. Introduction ........................................................................................................................... 1 1. Support .......................................................................................................................... 2 2. Installation ............................................................................................................................
    [Show full text]
  • (GNU Mailman) Mailing Lists
    Usability and efficiency improvements of the (GNU Mailman) mailing lists Rudy Borgstede ([email protected]) System and Network Engineering University of Amsterdam July 5, 2008 Versions Version Date Changes 0.0.1 18 May 2008 First setup of the report 0.0.2 9 June 2008 Release Candidate 1 of the project proposal 0.1.1 17 June 2008 A rewrite of the document because of the change of project result. The project will deliver an advice rather then a product like a patch or add-on for GNU Mailman. This means that the report becomes an consultancy report instead of a project proposal. 1.0.0 30 June 2008 Final version 1 of the report. 1.0.1 1 July 2008 A spelling check of the report. 1.0.2 5 July 2008 Extending the conclusion en future work chapters. Participants Name Contact Information University of Amsterdam Rudy Borgstede (Student) [email protected] Cees de Laat (Supervisor) [email protected] NLnet Michiel Leenaars (Supervisor) [email protected] Abstract This report is the result of a research project of four weeks at the NLnet Foundation1 in Amster- dam. The NLnet Foundation is a foundation who financially supports the open-source community and their projects. The purpose of the project is to improve the usability and the administration of the mailing lists (of the foundation) and giving a more clear view on mailing list server software to anyone who is interested in using mailing list server software or developing new mail or mail- ing list server software. The report describes the research of the usability of several open-source mailing list server software for scalable environments with several well known mail servers.
    [Show full text]
  • Werkstatt Open Source / Freie Software, Jahrestagung Der LEAH 20.08.2019 - Kurzscript
    Werkstatt Open Source / Freie Software, Jahrestagung der LEAH 20.08.2019 - Kurzscript Ablauf Werkstatt - Begrüßung, Vorstellung der Referenten, Kurz-Vorstellung der Teilnehmern, Erwartungen - Einstieg mit Kurzvideo “Die neugierige Bäckerin”: https://www.youtube.com/watch?v=wHo755bxByI - Impulsvortrag “Philosophische Sicht auf Software - Die Freie Software-Bewegung”. Was hat das mit Demokratie zu tun? / Richard Stallman / GNU/Linux - Zwei Übungen: 1) Softwareprogramme aussuchen, Lizenz ermitteln, Frei oder proprietär? 2) Teilnehmer mit Android-Smartphone: freien App-Katalog F-Droid finden, herunterladen, installieren. Dann damit weitere freie Apps installieren, z. B.: Zapp - für das öffentlich-rechtliche Fernsehen und Mediatheken Transportr - Zugriff auf Fahrpläne von öffentlichen Verkehrsmitteln weltweit - Konkrete Freie/OpenSource-Programme als Ersatz von proprietären Programmen (s. S. 3 / Flipchart) Ergänzungen zum Blatt zum Mitnehmen (nächste Seite), die sich durch Fragen oder Anregungen ergeben haben: - Bäckerei-Video: Privatsphären-Paradox: Psychologie: weil die Nachteile nicht sofort greifbar sind (und auch durch geschicktes Design nicht ins Bewusstsein gerückt werden) und sich außerdem in der Zukunft befinden, werden diese Nachteile viel weniger stark gewichtet als der sofortige Nutzen. Also wird die App installiert, obwohl man im realen Leben mit dem mangelnden Datenschutz nicht einverstanden wäre. - Warum wird proprietäre Software in sensiblen behördlichen Bereichen einsetzt, obwohl das offensichtliche Nachteile hat? -> ARD-Doku “Das Microsoft-Dilemma”, 2018, 45 min (gibt es online) - Sicherheit: “Wenn bei freier Software jeder mitmischen kann, wie kann das dann sicher sein?” -> Es gibt einen gemeinschaftlichen und öffentlichen Review-Prozess, wenn Code-Änderungen in den Hauptzweig der Software übernommen werden sollen. Alle Änderugen sind lückenlos nachvollziehbar. Durch diesen Entwicklungsprozess werden Sicherheitslücken schnell erkannt und behoben; Hintertüren werden erst gar nicht eingebaut.
    [Show full text]
  • Set up Mail Server Documentation 1.0
    Set Up Mail Server Documentation 1.0 Nosy 2014 01 23 Contents 1 1 1.1......................................................1 1.2......................................................2 2 11 3 13 3.1...................................................... 13 3.2...................................................... 13 3.3...................................................... 13 4 15 5 17 5.1...................................................... 17 5.2...................................................... 17 5.3...................................................... 17 5.4...................................................... 18 6 19 6.1...................................................... 19 6.2...................................................... 28 6.3...................................................... 32 6.4 Webmail................................................. 36 6.5...................................................... 37 6.6...................................................... 38 7 39 7.1...................................................... 39 7.2 SQL.................................................... 41 8 43 8.1...................................................... 43 8.2 strategy.................................................. 43 8.3...................................................... 44 8.4...................................................... 45 8.5...................................................... 45 8.6 Telnet................................................... 46 8.7 Can postfix receive?..........................................
    [Show full text]
  • Indicators for Missing Maintainership in Collaborative Open Source Projects
    TECHNISCHE UNIVERSITÄT CAROLO-WILHELMINA ZU BRAUNSCHWEIG Studienarbeit Indicators for Missing Maintainership in Collaborative Open Source Projects Andre Klapper February 04, 2013 Institute of Software Engineering and Automotive Informatics Prof. Dr.-Ing. Ina Schaefer Supervisor: Michael Dukaczewski Affidavit Hereby I, Andre Klapper, declare that I wrote the present thesis without any assis- tance from third parties and without any sources than those indicated in the thesis itself. Braunschweig / Prague, February 04, 2013 Abstract The thesis provides an attempt to use freely accessible metadata in order to identify missing maintainership in free and open source software projects by querying various data sources and rating the gathered information. GNOME and Apache are used as case studies. License This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license. Keywords Maintenance, Activity, Open Source, Free Software, Metrics, Metadata, DOAP Contents List of Tablesx 1 Introduction1 1.1 Problem and Motivation.........................1 1.2 Objective.................................2 1.3 Outline...................................3 2 Theoretical Background4 2.1 Reasons for Inactivity..........................4 2.2 Problems Caused by Inactivity......................4 2.3 Ways to Pass Maintainership.......................5 3 Data Sources in Projects7 3.1 Identification and Accessibility......................7 3.2 Potential Sources and their Exploitability................7 3.2.1 Code Repositories.........................8 3.2.2 Mailing Lists...........................9 3.2.3 IRC Chat.............................9 3.2.4 Wikis............................... 10 3.2.5 Issue Tracking Systems...................... 11 3.2.6 Forums............................... 12 3.2.7 Releases.............................. 12 3.2.8 Patch Review........................... 13 3.2.9 Social Media............................ 13 3.2.10 Other Sources..........................
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • OSS Alphabetical List and Software Identification
    Annex: OSS Alphabetical list and Software identification Software Short description Page A2ps a2ps formats files for printing on a PostScript printer. 149 AbiWord Open source word processor. 122 AIDE Advanced Intrusion Detection Environment. Free replacement for Tripwire(tm). It does the same 53 things are Tripwire(tm) and more. Alliance Complete set of CAD tools for the specification, design and validation of digital VLSI circuits. 114 Amanda Backup utility. 134 Apache Free HTTP (Web) server which is used by over 50% of all web servers worldwide. 106 Balsa Balsa is the official GNOME mail client. 96 Bash The Bourne Again Shell. It's compatible with the Unix `sh' and offers many extensions found in 147 `csh' and `ksh'. Bayonne Multi-line voice telephony server. 58 Bind BIND "Berkeley Internet Name Daemon", and is the Internet de-facto standard program for 95 turning host names into IP addresses. Bison General-purpose parser generator. 77 BSD operating FreeBSD is an advanced BSD UNIX operating system. 144 systems C Library The GNU C library is used as the C library in the GNU system and most newer systems with the 68 Linux kernel. CAPA Computer Aided Personal Approach. Network system for learning, teaching, assessment and 131 administration. CVS A version control system keeps a history of the changes made to a set of files. 78 DDD DDD is a graphical front-end for GDB and other command-line debuggers. 79 Diald Diald is an intelligent link management tool originally named for its ability to control dial-on- 50 demand network connections. Dosemu DOSEMU stands for DOS Emulation, and is a linux application that enables the Linux OS to run 138 many DOS programs - including some Electric Sophisticated electrical CAD system that can handle many forms of circuit design.
    [Show full text]
  • An Overview of the Trilinos Project
    An Overview of the Trilinos Project MICHAEL A. HEROUX, ANDREW G. SALINGER, ROSCOE A. BARTLETT, HEIDI K. THORNQUIST, VICKI E. HOWLE, RAY S. TUMINARO, ROBERT J. HOEKSTRA, JAMES M. WILLENBRING, JONATHAN J. HU, and ALAN WILLIAMS TAMARA G. KOLDA, Sandia National Laboratories RICHARD B. LEHOUCQ, and KEVIN R. LONG, KENDALL S. STANLEY ROGER P. PAWLOWSKI, Oberlin College ERIC T. PHIPPS, The Trilinos Project is an effort to facilitate the design, development, integration, and ongoing support of mathematical software libraries within an object-oriented framework for the solution of large-scale, complex multiphysics engineering and scientific problems. Trilinos addresses two fun- damental issues of developing software for these problems: (i) providing a streamlined process and set of tools for development of new algorithmic implementations and (ii) promoting interoperability of independently developed software. Trilinos uses a two-level software structure designed around collections of packages.ATrilinos package is an integral unit usually developed by a small team of experts in a particular algorithms area such as algebraic preconditioners, nonlinear solvers, etc. Packages exist underneath the Trili- nos top level, which provides a common look-and-feel, including configuration, documentation, licensing, and bug-tracking. Here we present the overall Trilinos design, describing our use of abstract interfaces and default concrete implementations. We discuss the services that Trilinos provides to a prospective package Sandia is a multiprogram laboratory operated by Sandia Corporation, a Lockheed Martin Company, for the United States Department of Energy under Contract DE-AC04-94AL85000. Authors’ addresses: M. A. Heroux, R. A. Bartlett, R. J. Hoekstra, R. B. Lehoucq, R. P.
    [Show full text]
  • IP Addresses: Ipv4 and Ipv6
    Parallels® Plesk Panel Copyright Notice Parallels Holdings, Ltd. c/o Parallels International GmbH Vordergasse 59 CH-Schaffhausen Switzerland Phone: +41-526320-411 Fax: +41-52672-2010 Copyright © 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This product is protected by United States and international copyright laws. The product’s underlying technology, patents, and trademarks are listed at http://www.parallels.com/trademarks. Microsoft, Windows, Windows Server, Windows NT, Windows Vista, and MS-DOS are registered trademarks of Microsoft Corporation. Linux is a registered trademark of Linus Torvalds. Mac is a registered trademark of Apple, Inc. All other marks and names mentioned herein may be trademarks of their respective owners. Contents Preface 8 Typographical Conventions ........................................................................................................... 8 Feedback ....................................................................................................................................... 9 Operating Inside Parallels Containers 10 What's New in Parallels Panel 12 Panel 10.4 ................................................................................................................................... 12 Panel 10.3 ................................................................................................................................... 15 Panel 10.2 ..................................................................................................................................
    [Show full text]