Lines Matching refs:to

2 A collection of PHP classes to manage bibliographic formatting for OS bibliography software 
8 so that your improvements can be added to the release package.
15to store formatting data for in-text citations/footnotes and bibliographic lists. Released through…
19 The naming of the style files to be downloaded is (for example):
25 The OSBib package does not yet have classes to handle the creation and editing of XML style files. …
32 … the loop that parses each bibliographic entry one by one. You are likely to need a similar proce…
49 Use this to provide your users with a HTML FORM selectbox to choose their preferred style where the…
54 …lar resource type (book, web article etc.) from a style XML file into an array to be used by OSBib.
59 …u should use STYLEMAPBIBTEX.php instead as this has been specially devised to offer an out-of-the-…
62 …or5'. For resource types in $this->types that you set to FALSE, you do not need to do anything to
64 A SQL query in WIKINDX to display each resource in a format suitable for OSBib processing returns t…
67to a format that OSBib understands and this is why you MUST the edit the key names of the resource…
74to be in UTF-8 format and will return its formatted data in UTF-8 format. If you need to encode or…
87 Convert a UTF-8 string to lowercase. Where PHP has been compiled with mb_string, mb_strtolower() wi…
91 Convert a UTF-8 string to uppercase. Where PHP has been compiled with mb_string, mb_strtoupper() wi…
115to be in UTF-8 format and will return its formatted data in UTF-8 format. If you need to encode or…
118 PROPERTIES to be set after instantiating the BIBFORMAT class:
119 …tml' but you can change it to 'rtf' for exporting to RTF files, 'sxw' for OpenOffice or 'plain' fo…
120 …rnHighlight is used to highlight words or phrases when displaying the results to a browser. This …
122to use STYLEMAPBIBTEX.php because your database stores or accesses its data in a form similar to B…
128 Parses the XML style file into raw arrays (to be further processed in BIBFORMAT::getStyle() (see be…
143 The following should be called for each database row you wish to process.
164 …source type array in STYLEMAP.php to determine what type of creator we're looking at. 'creator1' …
172to be lowercased. If your bibliographic system allows users to specify a groups of letters in the…
176to be a cardinal or an ordinal number. If your edition number is stored in the database as a cardi…
190to the internal $item array in BIBFORMAT.php. Use this to add elements of your resource to the $i…
194 Add all remaining items to the internal $item array in BIBFORMAT.php. Use this to add elements of …
198 After you have added resource elements to the $item array using the methods above, calling map() wi…
205 The formatting in BIBFORMAT works on one resource at a time so you will want to call it via a loop …
207 If you do _not_ intend to use STYLEMAPBIBTEX.php, the following is a rough order of events within t…
214 // Add various resource elements to BIBFORMAT::item array that require special processing and forma…
223 // Add all the other elements of the resource to BIBFORMAT::item array
225 // Finally, get the formatted resource string ready for printing to the web browser or exporting to
246 // In this case, BIBFORMAT::preProcess() adds all the resource elements automatically to the BIBFOR…
248 // Finally, get the formatted resource string ready for printing to the web browser or exporting to