Return-Path: X-Original-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DFCED97EF for ; Sun, 25 Sep 2011 19:40:01 +0000 (UTC) Received: (qmail 29698 invoked by uid 500); 25 Sep 2011 19:40:01 -0000 Delivered-To: apmail-incubator-ooo-commits-archive@incubator.apache.org Received: (qmail 29675 invoked by uid 500); 25 Sep 2011 19:40:01 -0000 Mailing-List: contact ooo-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ooo-dev@incubator.apache.org Delivered-To: mailing list ooo-commits@incubator.apache.org Received: (qmail 29667 invoked by uid 99); 25 Sep 2011 19:40:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Sep 2011 19:40:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Sep 2011 19:39:47 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 671762388BA2; Sun, 25 Sep 2011 19:39:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1175536 [9/11] - /incubator/ooo/ooo-site/trunk/content/bibliographic/ Date: Sun, 25 Sep 2011 19:39:01 -0000 To: ooo-commits@incubator.apache.org From: kschenk@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20110925193903.671762388BA2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.html URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.html?rev=1175536&view=auto ============================================================================== --- incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.html (added) +++ incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.html Sun Sep 25 19:38:58 2011 @@ -0,0 +1,502 @@ + + + + + + + + + + + +

OpenOffice Bibliographic implementation

+ + + + + + + + +
Last Modified 2006-October-14A printer friendly PDF version of + this page is available implementation.pdf (134Kb)
+ +

Contents

+ + +

Objective

+ +

This page provides some basic information about how Openoffice implements +its bibliographic functions. It provides links to the detailed documentation +provided by Openoffice. For related information see the Developer +page. For details of our proposals for enhanceing the bibliographic API's +see the wiki +page.

+ +

File Save format

+ + + + + + + + +
A simple example of how OpenOffice stores bibliographic information + in its XML save file format xml-contents.html + +

The OpenOffice XML file format document is available. The + bibliographic references are on pages 450-451 & 467-471 at http://xml.openoffice.org/general.

+
+ +

OpenOffice XML schemas

+ + + + + + + + +
See the XML project site http://xml.openoffice.org + +

The OpenOffice file format DTD files are at http://xml.openoffice.org/source/browse/xml/xmloff/dtd/ + , it is a large document so we have extracted the bibliographic bits + in bib-dtd-bits.html .

+ +

A proposal to improved Openoffice XML support for citations in the + OOo document format has been accepted by the OASIS OpenOffice + XML Format Technical Committee (meeting + minutes). See our XML + Citation Proposal.pdf .

+
+ +

OpenOffice Bibliographic API code functions

+ + + + + + + + +
This section contains a brief description of the OpenOffice Writer + code functions that implement bibliographic services. Use the link to + the full documentation to see more detailed explanations.
+ +

TextField

+ +

http://api.openoffice.org/docs/common/ref/com/sun/star/text/TextField.html

+ +

Description

+A TextField is a +TextContent which fades its textual +representation into the text range to which it is anchored. + +

See the Developers Guide 7.3.5 +Text Documents - Working with Text Documents - Text Fields

+ +

"Text fields are text contents that add a second level of +information to text ranges. Usually their appearance fuses together with the +surrounding text, but actually the presented text comes from elsewhere. Field +commands can insert the current date, page number, total page numbers, a +cross-reference to another area of text, the content of certain database +fields, and many variables, such as fields with changing values, into the +document. There are some fields that contain their own data, where others get +the data from an attached field master."

+ +

+ + + + + + + + +

Text Fields +

+
+ +

Included Services

+ +

TextContent is an object which can be anchored in a text, like +instances of TextFrame or TextFields .

+ +

Exported Interfaces

+ +

XTextField

+ +

Description

+ +

This interface is used to access the textual representation of this +field.

+ +

[ OPTIONAL ]

+ +

Description

+ +

makes it possible to access the properties of the field, if any.

+ +
Comment by David +Wilson
+ +

The data fields in the +bibliography need to support complex formatted text and objects and this is +not possible with the current text field. For example some scientific +document titles need to be able to display words in Italics.

+ +

In discussing how to +achieve this, Oliver Specht, has advised that the best approach was to +enhance the bookmark object.

+ +

A possible solution is "to +add a new object that is similar to bookmarks(com.sun.star.text.Bookmark). +This extended bookmark would also carry a DOM tree property. This 'bookmark' +can span over formatted text longer than a paragraph. The user can modify the +text inside of this bookmark easily. An interface to access the new elements +needs to be implemented (sorted by document position).

+ +

The DOM interfaces are in +com.sun.star.xml.dom. (e.g. XDocument.idl,XNode.idl,XElement.idl)

+ +

There's also a service +com.sun.star.xml.dom.DocumentBuilder available that supports the creation of +DOM trees.

+ +

The bibliography component works on the DOM tree and can manipulate +it independently. In case of using a field the component has to set the +resulting string representation of the reference at this field." See issue +66979

+ +

XTextField.html#getPresentation

+ + + + + + + +

http://api.openoffice.org/docs/common/ref/

+ +

com/sun/star/text/XTextField.html#getPresentation

+ +

Description

+ +

is the base interface for all text fields.

+ +

A text field is embedded in text and expands to a sequence of + characters.

+ +

See also

+ +

TextField

+ +

Methods' Summary

+ +

getPresentation

+ +

Methods' Details

+ +

getPresentation string

+ +

getPresentation( [in] boolean bShowCommand );

+ +

Returns

+ +

the display string of the text field either as the command of the + field or as the output string.

+ +

Parameter bShowCommand

+ +

if true the command of the field will be returned

+
+ +

Bibliography

+ + + + + + + + +

http://api.openoffice.org/docs/common/ref/com/sun/star/text/Bibliography.html#

+ +
Description
+ +

specifies service of bibliography table within a text document. + See also BaseIndex.

+ +
Included Services
+ +

BaseIndex : specifies the basic service of different + indexes within a document.

+ +

Properties' Summary

+ +

Locale : contains the locale of the index.

+ +

SortAlgorithm : contains the name of the sort algorithm + that is used to sort the entries.

+
+ +

textfield/Bibliography

+ +
+ + + + + + + + +
http://api.openoffice.org/docs/common/ref/com/sun/star/text/textfield/Bibliography.html# + +
Description
+ +

specifies service of a bibliography text field.

+ +

Bibliographic entry created by Insert – Indexes + and Tables – Bibliography Entry. The content is + the source of the creation of bibliographic indexes. The sequence + <PropertyValue> in the property "Fields" contains pairs of the + name of the field and its content, such as:

+ +

The names of the fields are defined in BibliographyDataField. + A bibliographic entry depends on FieldMaster.Bibliography

+
+
+ +

FieldMaster/Bibliography

+ +
+ + + + + + + + +
http://api.openoffice.org/docs/common/ref/com/sun/star/text/FieldMaster/Bibliography.html + +
Description
+ +

specifies service of a Bibliography [table] field master.

+ +
Included Services
+ +

A TextFieldMaster field specifies important data for its + DependentTextFields.

+ +
Properties' Summary
+ +

IsNumberEntries : determines whether the bibliography + text fields are numbered. If the short name of the bibliography entry + is displayed instead.

+ +

IsSortByPosition : determines whether the bibliography + entries in a bibliography index are sorted by the document position. + If the SortKey property determines the sorting of the entries.

+ +

BracketBefore : determines the opening bracket used to + display the bibliography text fields.

+ +

BracketAfter : determines the closing bracket used to + display the bibliography text fields.

+ +

SortKeys : determines the sorting of the bibliography + entries in a bibliography index. This property is used if the + property IsSortByPosition is not set. Each contained element of the + sequence is a sequence of the following two properties:

+ +

Locale : contains the locale of the field master.

+ +

SortAlgorithm : contains the name of the sort algorithm + that is used to sort the text fields.

+ +
Comment + by David Wilson
+ +

The range of + options will need to be enhanced.

+
+
+ +

BibliographyDataField

+ +
+ + + + + + + + +
http://api.openoffice.org/docs/common/ref/com/sun/star/text/BibliographyDataField.html# + +
Description
+ +

These values define parts of bibliographic data. They are used to + create a bibliography in a text document. Depending on the type of + the data some of the fields will usually be left empty.

+ +
Constants
+
    +
  • IDENTIFIER : This field contains a unique identifier for the + bibliographic data.
  • +
  • BIBILIOGRAPHIC_TYPE : This field contains the type of the + bibliographic reference. It is of the type + bibliographydatafield.
  • +
  • ADDRESS : This field contains the address of the publisher.
  • +
  • ANNOTE : This field contains an annotation.
  • +
  • AUTHOR : This field contains the name(s) of the author(s)
  • +
  • BOOKTITLE : This field contains the title of the book.
  • +
  • CHAPTER : This field contains the name or number of the + chapter.
  • +
  • EDITION : This field contains the number or name of the + edition.
  • +
  • EDITOR : This field contains the name(s) of the editor(s)
  • +
  • HOWPUBLISHED : This field contains a description of the type of + the publishing.
  • +
  • INSTITUTION : This field contains the name of the institution + where the publishing was created.
  • +
  • JOURNAL : This field contains the name of the journal.
  • +
  • MONTH : This field contains number or name of the month of the + publishing.
  • +
  • NOTE : This field contains a note.
  • +
  • NUMBER : This field contains the number of the publishing.
  • +
  • ORGANIZATIONS : This field contains the name of the + organizations where the publishing was created.
  • +
  • PAGES : This field contains the number(s) of the page(s) of the + reference into a publishing.
  • +
  • PUBLISHER : This field contains the name of the publisher.
  • +
  • SCHOOL : This field contains the name of the university or + school where the publishing was created.
  • +
  • SERIES : This field contains the series of the publishing.
  • +
  • TITLE : This field contains the title of the publishing.
  • +
  • REPORT_TYPE : This field contains a description of the type of + the report.
  • +
  • VOLUME : This field contains the volume of the publishing.
  • +
  • YEAR : This field contains the year when the publishing was + created.
  • +
  • URL : This field contains URL of the publishing.
  • +
  • CUSTOM1 : This field contains user defined data.
  • +
  • CUSTOM2 : This field contains user defined data.
  • +
  • CUSTOM3 : This field contains user defined data.
  • +
  • CUSTOM4 : This field contains user defined data.
  • +
  • CUSTOM5 : This field contains user defined data.
  • +
  • +
    + ISBN : This field contains the ISBN data of the publishing.
    +
  • +
+ +
Comment + by David Wilson
+ +

This field is currently inserted with every + bibliographic citation instance. No link is maintained with the + original data source in the bibliographic database. If a mistake is + made each separate instance of the field must be re-inserted or + corrected manually.

+ +

It + is proposed that a new field be created a + 'MasterBibliographyDataField' which would be inserted the first time + a citation was used and all BibliographyDataFields would contain a + link to their MasterBibliographyDataField. The + MasterBibliographyDataField would be linked to its datasource + (initially the bibliographic database, but others are possible) and + would be updated by the Writer link update function. When the + MasterBibliographyDataField was updated all the linked + BibliographyDataField instances, and the Bibliographic Table would be + updated as well.

+
+
+ +

TextSection

+ + + + + + + + +
http://api.openoffice.org/docs/common/ref/com/sun/star/text/TextSection.html + +

A TextSection is a range of + complete paragraphs within a text.

+ +

The content of the section may be the content of a link into + another document, a link from the same document, or the result of a + DDE operation.

+ +

TextSection instances can be linked + from and to other texts

+
+
See Developers Guide 7.4.4 + Text Documents - Overall Document Features - Text Sections
+
+ +
Comment + by David Wilson
+ +

It + is proposed that the new bibliographic table mechanism Citproc be used to insert the + bibliographic table into a TextSection.

+
+ + Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.pdf URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.pdf?rev=1175536&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/implementation.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/ooo/ooo-site/trunk/content/bibliographic/index.html URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/index.html?rev=1175536&view=auto ============================================================================== --- incubator/ooo/ooo-site/trunk/content/bibliographic/index.html (added) +++ incubator/ooo/ooo-site/trunk/content/bibliographic/index.html Sun Sep 25 19:38:58 2011 @@ -0,0 +1,312 @@ + + + + + Bibliographic Project Homepage + + + + +
+ +

Bibliographic

+ + + + + + + + +
Last updated 2008 November 4
+ +

Contents

+
+
Vision
+
Background
+
Project Tasks
+
More Details
+
Developers Welcome
+
Participation
+
+
+ +

Vision

+ +

The OpenOffice Bibliographic project (OOoBib) will make it easier for people +to store and manage their reference data, to format their documents, and to +collaborate with other users.

+ +

It will be simple to use for the casual user, but will meet all the +requirements of the professional and academic writer.

+ +

The features we will build include -

+
    +
  • A greatly improved Graphic User Interface for entering, editing and + searching for bibliographic records.
  • +
  • An improved bibliographic database (and internal data model) compatible + with the emerging the industry standards, such as the "Metadata Object Description + Schema" (MODS), and the "Resource + Description Framework" (RDF), a framework for describing and + interchanging metadata. These standards will support new collection types + in different media, not just limited to books and journals but also + supporting video, audio, maps, pictures etc.
  • +
  • Improved metadata support in + OpenOffice. Co-project leader Bruce D'Arcus has worked with OpenDocument + - Metadata subcommittee to improve metadata support on OpenOffice. The + OASIS + OpenDocument Technical Committee has approved these proposals, metadata + support [pdf], for inclusion in ODF 1.2. What do we mean by enhanced + metadata support? We mean that you can: +
      +
    • describe your document the way you want to describe it; no longer are + you limited to a pre-selected list of properties
    • +
    • describe different parts within your document: images, tables, + paragraphs, and so forth
    • +
    • tag pieces of document content as metadata; you can say this heading + is a title, this fragment is the name of some person, and so forth
    • +
    • create dynamic content fields based on this flexible metadata + system
    • +
    +
  • +
  • For the first time, the opportunity for the creation and distribution of + opensource bibliographic style definitions that are not specific to a + particular word-processor or bibliographic package. We propose to implement + Bibliographic table and citation formatting using a process called CiteProc. See BiblioX for + technical discussion of this approach. This methodology is used in Zotero, + the Firefox bibliographic + plugin.
  • +
  • The ability to support all the common styles and conventions for + citations and reference tables. This will include support for footnote / + endnote citation styles and for differing first and subsequent citation + formats. Also enhancements + to Openoffice Writer Footnote/ Endnote location selection and headings.
  • +
  • The ability to change a document from one style + to another with no or minimal further editing.
  • +
  • Import and export filters for the common formats for bibliographic data, + such as BibTeX, RIS, EndNote, MARC.
  • +
  • The ability to connect to, and to exchange data with bibliographic + databases, using RDF and Z39.50 and SRU/W.
  • +
  • The ability to query internet reference sources (e.g. reference databases + and library catalogues) directly and to add the responses received to the + bibliographic database.
  • +
  • A note taking facility, with the ability to link notes to references, + notes to other notes, notes to keywords; and a notes search ability.
  • +
+ +

When the project's objectives are achieved, it will be possible to convert a +scientific, technical or academic paper from one bibliographic style to an +other bibliographic style, such as one required by a journal, simply by +selecting the required style convention and automaticity reformat the document +to the new style. So far as we know, the only WYSIWYG word processor that +provides these features is Nota +Bene, it is a good example of the type of Bibliographic and word processing +integration we would like to achieve with OpenOffice.

+ +

1st Stage, Bibliographic Facility Redevelopment

+ +

As our first step, we will implement the internal metadata and API +enhancements to enable Bibliographic extensions to OpenOffice such as Zotero, to better interact with OpenOffice. +Currently when you insert citation into Writer with Zotero, only the text of +the formatted citation is stored in the Writer Document, all the citation +metadata resides in the database. If you wish to share your document with the +full bibliographic data you would need to package it with a copy of the Zotero +database. The aim is to store both formatted citation its metadata in the +Writer document. Zotero would be able to retrieve the bibliographic data from +the document and when necessary reformat the citations and references tables +from the original metadata.

+ +

To achieve this we will implement the most simple changes to the OOo Writer +core code (the API basic code, and UNO mappings, but not yet the user interface +code) necessary.

+ +

When these basic functions are built into OOo Writer and are made assessable +via UNO, we can then use rapid prototyping development methods to design and +build prototype GUI interfaces and bibliographic formatting engines using the +Extension Development Toolkit and Smart Tags. We will be able to use any of the +programming languages which have OpenOffice bindings and are supported by the +toolkit: C++, Java, Python and, of course, OpenOffice Basic. We believe that we +will find more developers who can work in these languages than by insisting on +C++ code from the start. Also it is much easier to build prototypes using Java, +Python and OpenOffice Basic than in C++.

+ +

See our development plans on the Developers' +Wiki and the list of project +tasks below.

+ +

We urgently need volunteers to do these +tasks. For further details on development tasks go to the Developer +Pages

+ +

When will this wonderful facility be available ? +new We have planned to get meta data support for text objects in +Writer in OOo version 3.1 (due April 2009). See feature +timeline. Also see a blog on +plans for Writer.

+ +

But what can I do now ? In the meantime, if you are not +happy with OOo's basic bibliographic support, you may like to use some of the +third-party bibliographic applications that can work with OpenOffice. See the +bibliographic +software page for more details. We recommend you use Zotero, +which has a OOo plugin to assist with citation management. Other applications +are: Jabref, +which can inset citations and bibliographies into an Writer document, B3 +which can write bibliographic records to a Openoffice Bibliographic text +database or Bibus +which has good integration with OpenOffice.

+ +

Background

+ +

The terminology used by bibliographic applications can be confusing, so we +have fixed upon the following three definitions:

+
+
citation
a short description that points to a fuller + description of an information source, or reference item elsewhere, either + in a note or a reference list.
+ +
reference item
a fuller description of an information + source; also called a bibliographic entry or item.
+ +
reference list
a collection of references; also + called a bibliography.
+ +
+ +

Bibliographic applications help people manage their reference items and to +create formatted citations and reference lists. Publishers, academic and other +institutions generally specify detailed requirements of how their documents are +to look, including the reference lists and the citations. Citation and +reference list formatting is an often tedious and error-prone task, +particularly if one has to later change styles. An ideal bibliographic +application, then, allows a user to forget about these arcane details and focus +on writing.

+ +

The collection of bibliographic data (which includes author and publication +details) for works cited in a document can also be a tedious and time consuming +task and often involves the manual entry of these details into a database. An +ideal bibliographic application would simplify or automate this process.

+ +

Microsoft has only recently +added bibliographic support to Word (version 2007) and the users of this +product have had to make use of third-party, and usually commercial +bibliographic applications, such as Endnotes and Reference Manager. Workers in +many academic and scientific fields have used Latex, and its variants for +technical word processing, and this software has its own bibliographic +component called 'Bibtext'. OpenOffice does provide basic bibliographic +functions, these include; a simple bibliographic database, a process to insert +in-text or endnote citations into a document and a bibliographic table +generator to produce a reference table of citations formatted as specified by +the user. However, considerable improvement is needed for OpenOffice to +approach or improve on the facilities provided by the commercial bibliographic +products.

+ +

More Details, links to -

+ +

General information

+
+
A detailed list of OpenOffice bibliographic + deficiencies.
+
Bibliographic + Software and Standards list
+
Bibliographic + Styles Information on a wiki - please contribute
+
OpenDocument + Fellowship Metadata project
+
The Importance of Style Manuals. A poetic + view
+
An + interview with David Wilson about the Bibliographic Project
+
+ +

Technical information

+
+
Overview of Bibliographic project + components
+
Technical Information about the + Openoffice Bibliographic Implementation
+
An analysis of Bibliographic + components and their relationships
+
Writer + enhancements needed for OOoBib on a wiki - please contribute
+
OpenDocument + Metadata Use Cases and Requirements document
+
+ +

Developers Needed

+The bibliographic project urgently needs developers to help us implement our +vision. The bibliographic project team will offer them every assistance. If +needed they will also receive support from the Sun Microsystems' OpenOffice +developers. See our Developers' +Wiki for more details. + +

Participation

+First, subscribe to the bibliographic +mailing lists that interest you. You could join the users@bibliographic.openoffice.org +or the more technical dev@bibliographic.openoffice.org +list. You can become a project member or 'observer' by registering on the members' +page. After you have registered up you might consider voting +for the Bibliographic enhancement proposals, this may increase its development +priority. Go to the voting +page and allocate one or two votes to issue number 4260. + +

Then, scan the archive of the lists you have joined to catch up with what +has been discussed so far. Also check our 'Documents +and Files' page.

+ +

Then you might consider introducing yourself. You could let us know how you +found out about the project, what your interests are, and anything else you +care to share with us.

+ +

The originator of this project is David +Wilson. Bruce D'Arcus of the +Geography Department of Miami University is the co-project leader. He has a blog. We would be +please to hear from you, also please feel free to tell the community about what +interests you and what you would like to find in this project.

+ + Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/index.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/ooo/ooo-site/trunk/content/bibliographic/index.pdf URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/index.pdf?rev=1175536&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/index.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/ooo/ooo-site/trunk/content/bibliographic/irclient-setup.png URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/irclient-setup.png?rev=1175536&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/irclient-setup.png ------------------------------------------------------------------------------ svn:mime-type = image/png Added: incubator/ooo/ooo-site/trunk/content/bibliographic/irclient.jpeg URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/irclient.jpeg?rev=1175536&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/irclient.jpeg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/ooo/ooo-site/trunk/content/bibliographic/kaspaliste.html URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/kaspaliste.html?rev=1175536&view=auto ============================================================================== --- incubator/ooo/ooo-site/trunk/content/bibliographic/kaspaliste.html (added) +++ incubator/ooo/ooo-site/trunk/content/bibliographic/kaspaliste.html Sun Sep 25 19:38:58 2011 @@ -0,0 +1,1688 @@ + + + + + + Index for kaspaliste + + + + + + + + + +



Dumped on 2003-07-01

+

Index of database - kaspaliste

    + + + + + + +
    +

    Table: + author +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    author Structure
    F-KeyNameTypeDescription
    + + nointeger + + DEFAULT nextval('kaspa_seq'::text) + + +
    + + lastnametext + + DEFAULT '' + + +
    + + firstnametext + + DEFAULT '' + + +
    + + pseudonymtext + + DEFAULT '' + + +
    + + borntext + + DEFAULT '' + + +
    + + diedtext + + DEFAULT '' + + +
    + + countrytext + + DEFAULT '' + + +
    + + memotext + + DEFAULT '' + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + link +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    link Structure
    F-KeyNameTypeDescription
    + + obj_1integer + + + + +
    + + obj_2integer + + + + +
    + + tbltext + + DEFAULT '' + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + note +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    note Structure
    F-KeyNameTypeDescription
    + + nointeger + + DEFAULT nextval('kaspa_seq'::text) + + +
    + + titletext + + DEFAULT '' + + +
    + + memotext + + + + +
    + + typesmallint + + + + +
    + + publication_nointeger + + + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + parentinteger + + + + +
    + + siblinginteger + + + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + part +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    part Structure
    F-KeyNameTypeDescription
    + + nointeger + + DEFAULT nextval('kaspa_seq'::text) + + +
    + + publication_nointeger + + + + +
    + + partnosmallint + + DEFAULT 1 + + +
    + + titletext + + DEFAULT '' + + +
    + + pagestext + + DEFAULT '' + + +
    + + memotext + + DEFAULT '' + + +
    + + keytext + + DEFAULT '' + + +
    + + languagetext + + DEFAULT '' + + +
    + + bibtextext + + DEFAULT '' + + +
    + + intro_nointeger + + + + +
    + + createbibtexboolean + + DEFAULT false + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + part_author +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    part_author Structure
    F-KeyNameTypeDescription
    + + part_nointeger + + + + +
    + + author_nointeger + + + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + author_orderinteger + + + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + partdata +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    partdata Structure
    F-KeyNameTypeDescription
    + + nointeger + + DEFAULT nextval('kaspa_seq'::text) + + +
    + + part_nointeger + + + + +
    + + filetext + + DEFAULT '' + + +
    + + astexttext + + DEFAULT '' + + +
    + + filenametext + + DEFAULT '' + + +
    + + typetext + + DEFAULT '' + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + publication +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    publication Structure
    F-KeyNameTypeDescription
    + + nointeger + + DEFAULT nextval('kaspa_seq'::text) + + +
    + + titletext + + DEFAULT '' + + +
    + + subtitletext + + DEFAULT '' + + +
    + + editionsmallint + + + + +
    + + editortext + + DEFAULT '' + + +
    + + howpublishedtext + + DEFAULT '' + + +
    + + organizationtext + + DEFAULT '' + + +
    + + publisher_nointeger + + + + +
    + + yeartext + + DEFAULT '' + + +
    + + pagestext + + DEFAULT '' + + +
    + + translatortext + + DEFAULT '' + + +
    + + volumetext + + DEFAULT '' + + +
    + + numbertext + + DEFAULT '' + + +
    + + monthtext + + DEFAULT '' + + +
    + + seriestext + + DEFAULT '' + + +
    + + typetext + + DEFAULT '' + + +
    + + keytext + + DEFAULT '' + + +
    + + orgtitletext + + DEFAULT '' + + +
    + + orgpublisher_nointeger + + + + +
    + + orgyeartext + + DEFAULT '' + + +
    + + isbn_issntext + + DEFAULT '' + + +
    + + hidingplacetext + + DEFAULT '' + + +
    + + bibtextext + + DEFAULT '' + + +
    + + entrytypesmallint + + + + +
    + + memotext + + + + +
    + + createbibtexboolean + + DEFAULT false + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + publication_author +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    publication_author Structure
    F-KeyNameTypeDescription
    + + publication_nointeger + + + + +
    + + author_nointeger + + + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + author_orderinteger + + + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + +
    +

    Table: + publisher +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    publisher Structure
    F-KeyNameTypeDescription
    + + nointeger + + DEFAULT nextval('kaspa_seq'::text) + + +
    + + nametext + + DEFAULT '' + + +
    + + citytext + + DEFAULT '' + + +
    + + serietext + + DEFAULT '' + + +
    + + createdtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + modifiedtimestamp with time zone + + DEFAULT "timestamp"('now'::text) + + +
    + + + + + + + + + + + + + +

    + Index - + Schema public +

    + + + + + + +

    +W3C HTML 4.01 Strict

    + Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/kaspaliste.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/ooo/ooo-site/trunk/content/bibliographic/new.gif URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/new.gif?rev=1175536&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/new.gif ------------------------------------------------------------------------------ svn:mime-type = image/gif Added: incubator/ooo/ooo-site/trunk/content/bibliographic/poetry.html URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/poetry.html?rev=1175536&view=auto ============================================================================== --- incubator/ooo/ooo-site/trunk/content/bibliographic/poetry.html (added) +++ incubator/ooo/ooo-site/trunk/content/bibliographic/poetry.html Sun Sep 25 19:38:58 2011 @@ -0,0 +1,94 @@ + + + + + + The Chicago ‘Manual of Style’ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    The Chicago ‘Manual of Style

    +

    +
    The Chicago Manual of Style is really neat + +

    when your composure cracks and ghosts

    + +

    of silly girls come whispering to bother you –

    + +

    this happens late at night – just kids

    + +

    out for a bit of fun with a convertible

    + +

    and a bottle of vodka like in a movie,

    + +

    and ‘Hell,’ you think, ‘did I do that? Was + I

    + +

    involved with that mad young bitch

    +

    +
    the cops were after down at Sunny Point? + +

    Was that me in Dad’s truck with the throttle

    + +

    stuck open, cracking ninety down the beachfront?

    + +

    With that... brunette... uh?’ Just about then,

    + +

    on the edge of love and terror, the Chicago

    + +

    Manual of Style appears and takes you home.

    + +

    +
    + +

    +Reproduced with the +kind permission of the author, John Tranter. The poem is published in John +Tranter,"Crying +in Early Infancy -- 100 Sonnets", Makar Press, St.Lucia, 1977, ISBN 0 909 354 +19 7. + +

    John Tranter is the +Editor of Jacket magazine: +http://jacketmagazine.com and Project Manager of the Australian Literature Resources: +http://www.austlit.com/a/index.html

    + +

    + +

    We have some more information about Style +Manuals.

    + + Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/poetry.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/ooo/ooo-site/trunk/content/bibliographic/project_tools.html URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/bibliographic/project_tools.html?rev=1175536&view=auto ============================================================================== --- incubator/ooo/ooo-site/trunk/content/bibliographic/project_tools.html (added) +++ incubator/ooo/ooo-site/trunk/content/bibliographic/project_tools.html Sun Sep 25 19:38:58 2011 @@ -0,0 +1,78 @@ + + + + project tools + + + + + + + + + + + + + + + + +
    + + + +
    +FAQ
    + + + + + +
    +Other...
    + +
    + + +
    +
    + + Propchange: incubator/ooo/ooo-site/trunk/content/bibliographic/project_tools.html ------------------------------------------------------------------------------ svn:eol-style = native