<librarianOptions>
	<!-- Librarian Configuration file for Analysis Server
	      This file is used to configure a customized virtual directory structure for Analysis Server.
	      To use this file, configure the "librarianFile" option in the aserver.conf file or using the
	      Web Administrator.  Note that use of this file overrides the analysesPath, userPath, and
	     smartUserScan options.  
	-->
	<!-- This file is designed to repeat the basic functionality of a traditional Analysis Server
	      configuration.  Commented out sections have been included to demonstrate how
	      to setup various librarians.
	-->
	<!-- This file consists of a bunch of <librarian> tags that describe available
	       librarians.  Each libriarian section should include a mount point in the virtual
	       directory structure, a class file which points to a class that implements IPHXLibrarian,
	       and an options section, whose format is specific to the particular librarian used.
	-->
	<librarian>
	       <!-- First we mount a traditional setup at the root of the virtual directory structure.
	             This consists of a "combiner" librarian which lets several sub-librarians all
	             appear at the same level.
	        -->
		<mountPoint>/</mountPoint>
		<librarianClass>com.phoenix_int.aserver.library.PHXLibrarianCombiner</librarianClass>
		<librarianOptions>
		      <!-- For now, there is only one analyses path, and only one library here in this combiner -->
			<librarian>
				<librarianClass>com.phoenix_int.aserver.library.PHXDirectoryLibrarian</librarianClass>
				<librarianOptions>
					<analysesPath>./analyses</analysesPath>
				</librarianOptions>
			</librarian>
			<!--  To include other analyses directories, add more librarians:
			<librarian>
				<librarianClass>com.phoenix_int.aserver.library.PHXDirectoryLibrarian</librarianClass>
				<librarianOptions>
					<analysesPath>c:\users\nsharp\vers\analyses</analysesPath>
				</librarianOptions>
			</librarian>
			-->
			<!-- To include user directories, add this section
			<librarian>
				<librarianClass>com.phoenix_int.aserver.library.PHXUserDirLibrarian</librarianClass>
				<librarianOptions>
					<userPath>\\pathfinder\users1</userPath>
				</librarianOptions>
			</librarian>
			-->
			<!-- To include user directories using the smart user scan functionality, include this section:
			<librarian>
				<librarianClass>com.phoenix_int.aserver.library.PHXUserDirLibrarian</librarianClass>
				<librarianOptions>
					<smartUserScan />
				</librarianOptions>
			</librarian>
			-->
		</librarianOptions>
	</librarian>
	<!-- To include a mounted CVS directory for archiving and versioning, use this section
	       The CVS repository can be any type (local dir, rsh, pserver, etc) assuming that no 
	       login or password is required.  For pserver, you may need to pre-log in the user
              who is running the Analysis Server.
       -->
	<!--
	<librarian>
		<mountPoint>/versioned</mountPoint>
		<librarianClass>com.phoenix_int.aserver.library.PHXCVSLibrarian</librarianClass>
		<librarianOptions>
			<CVSROOT>pathfinder:/central/sde/cvs</CVSROOT>
			<startModule>analyses</startModule>
		</librarianOptions>
	</librarian>
	-->
	<!-- To include a database backend for the Naming Service, include a section like this.
	       The driver is the JDBC driver to use for your database.  The URL is the connect URL for your
	       database.  If %u or %p is encountered in the URL, it will be replaced with the username and
	       password, respectively, of the end user as they provided to Analysis Server when the connected
	       (assuming that the Authentication feature is enabled)
	-->
	<!--
	<librarian>
		<mountPoint>/database</mountPoint>
		<librarianClass>com.phoenix_int.aserver.library.PHXNamingServiceDB</librarianClass>
		<librarianOptions>
			<JDBCDriver>org.gjt.mm.mysql.Driver</JDBCDriver>
			<JDBCURL>jdbc:mysql://pathfinder/NamingService?user=%u&amp;password=%p</JDBCURL>
		</librarianOptions>
	</librarian> 
	-->
</librarianOptions>

