<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://purl.org/atom/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="0.3">
  <title>EnterMedia Tutorials</title>
  <link rel="alternate" href="http://entermediasoftware.com" />
  <tagline>EnterMedia Tutorials</tagline>
  <entry>
    <title>Cleaning out old versions</title>
    <link rel="alternate" href="http://entermediasoftware.com/tutorials/permalink/2011/7/29/111314.html" />
    <author>
      <name />
    </author>
    <modified>2011-07-29T15:13:14Z</modified>
    <issued>2011-07-29T15:13:14Z</issued>
    <summary type="text/html" mode="escaped">&lt;p&gt;So if you enable version control you may want to clean out old .versions files. At one time we had a way to do this with an online tool but sometimes it is easier just to run a UNIX script and clean out the file system directly. &lt;/p&gt;&#xD;
&lt;p&gt;Here is a general purpose script that cleans out files depending on the parameter you pass in. Be careful with it.&lt;/p&gt;&#xD;
&lt;p&gt;Save this file as clean.sh&lt;/p&gt;&#xD;
&lt;p&gt;Then to call it use sh clean.sh .versions&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;&#xD;
#!/bin/bash&#xD;
&#xD;
echo "Deleting files in current directory" &#xD;
pwd&#xD;
&#xD;
if [ "$1" = "" ]&#xD;
then&#xD;
  echo "Usage: Pass in the file names to delete"&#xD;
  exit&#xD;
fi&#xD;
&#xD;
&#xD;
string=$(echo $@ | awk '{gsub(" ", "|")}1')&#xD;
eval find . -regextype posix-extended -regex "\"./.*(${string})$\""   | while read NAME&#xD;
do&#xD;
 echo "FILENAME : "$NAME&#xD;
 PATH=${NAME%/*}&#xD;
 NAME=${NAME##.*/}&#xD;
 echo "FILENAME PATH : " $PATH  &#xD;
# echo "You do the rest"  &#xD;
/bin/rm -rf "$PATH/$NAME"&#xD;
done&#xD;
&#xD;
&lt;/pre&gt;</summary>
    <dc:creator />
    <dc:date>2011-07-29T15:13:14Z</dc:date>
  </entry>
  <entry>
    <title>Active Directory Single Sign-on</title>
    <link rel="alternate" href="http://entermediasoftware.com/tutorials/permalink/2010/4/23/133351.html" />
    <author>
      <name />
    </author>
    <modified>2010-10-05T19:50:21Z</modified>
    <issued>2010-10-05T19:50:21Z</issued>
    <summary type="text/html" mode="escaped">&lt;p&gt;1. Use the FileManager to edit this file:&lt;/p&gt;&#xD;
&lt;p&gt;/media/authentication/logon.xconf&lt;/p&gt;&#xD;
&lt;p&gt;It should contain this setting:&lt;/p&gt;&#xD;
&lt;p&gt;&amp;nbsp; &amp;lt;property name=&amp;quot;authenticationserver&amp;quot;&amp;gt;localhost&amp;lt;/property&amp;gt;&lt;/p&gt;&#xD;
&lt;p&gt;This is the server that is the primary Active Directory server.&lt;/p&gt;&#xD;
&lt;p&gt;2. You can either let the user enter a domain or you can add a specific domain:&lt;/p&gt;&#xD;
&lt;p&gt;&amp;nbsp; &amp;lt;property name=&amp;quot;domain&amp;quot;&amp;gt;Workgroup&amp;lt;/property&amp;gt;&lt;/p&gt;&#xD;
&lt;p&gt;&amp;nbsp;&amp;nbsp; If no domain is used the authentication will do a local authentication onto the Windows machine that the web server is running on.&lt;/p&gt;&#xD;
&lt;p&gt;3. Once authenticated a user can be automatically created in the system then added to a default group. This property can be edited or added to the login.xconf file:&lt;/p&gt;&#xD;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;property name=&amp;quot;autologingroup&amp;quot;&amp;gt;users&amp;lt;/property&amp;gt;&lt;br /&gt;&#xD;
&amp;nbsp;&lt;/p&gt;</summary>
    <dc:creator />
    <dc:date>2010-10-05T19:50:21Z</dc:date>
  </entry>
  <entry>
    <title>How To: Use the sample Rest API client</title>
    <link rel="alternate" href="http://entermediasoftware.com/tutorials/permalink/2010/4/7/150427.html" />
    <author>
      <name />
    </author>
    <modified>2010-10-05T19:50:23Z</modified>
    <issued>2010-10-05T19:50:23Z</issued>
    <summary type="text/html" mode="escaped">&lt;p&gt;EnterMedia provides a simple Rest API for external systems to interact with it. This API also allows developers to create their own User Interface (UI). To demonstrate how to use EnterMedia's REST API, we've developed a sample terminal client in Java. This way developers can easily start a new EnterMedia client project.&lt;/p&gt;&#xD;
&lt;h2&gt;Downloading&lt;/h2&gt;&#xD;
&lt;p&gt;The sample java client is distributed as a zip file. You can get this file directly &lt;a href="http://entermediasoftware.com/download.html"&gt;from our website&lt;/a&gt;. The file includes:&lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
	&lt;li&gt;Source code&lt;/li&gt;&#xD;
	&lt;li&gt;Eclipse project and classpath files, so you can import it directly into your workspace&lt;/li&gt;&#xD;
	&lt;li&gt;Apache Ant build file, ot make it easier to build the client&lt;/li&gt;&#xD;
	&lt;li&gt;All required libraries, including the client itself as a jar file&lt;/li&gt;&#xD;
	&lt;li&gt;A readme file, in HTML, with usage instructions and examples&lt;/li&gt;&#xD;
	&lt;li&gt;Javadoc files&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;h2&gt;Building&lt;/h2&gt;&#xD;
&lt;p&gt;The bundle comes with an Ant build file so you can just run it to build the client. If you are not using ant, you can just use plain &lt;span style="font-family: Courier New;"&gt;javac&lt;/span&gt; to compile the classes in the &lt;span style="font-family: Courier New;"&gt;src&lt;/span&gt; folder, passing in all the jar files in the &lt;span style="font-family: Courier New;"&gt;lib&lt;/span&gt; directory into the classpath.&lt;/p&gt;&#xD;
&lt;h2&gt;Running&lt;/h2&gt;&#xD;
&lt;p&gt;The most basic way of running the sample client is by just invoking the Java virtual machine, passing along the right arguments. That is, telling it that the classpath contains all the jar files in the &lt;span style="font-family: Courier New;"&gt;lib&lt;/span&gt; directory and that the main method is in the &lt;span style="font-family: Courier New;"&gt;com.entermedia.ui.ConsoleClient&lt;/span&gt; class. This should look like:&lt;br /&gt;&#xD;
&lt;span style="font-size: smaller;"&gt;&lt;span style="font-family: Courier New;"&gt;java -cp lib/commons-codec-1.3.jar:lib/commons-httpclient-3.1.jar:lib/commons-logging-1.1.jar:lib/dom4j-1.6.1.jar:build/compile com.entermedia.ui.ConsoleClient &amp;lt;args&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;A better way of running it is using ant:&lt;br /&gt;&#xD;
&lt;span style="font-size: smaller;"&gt;&lt;span style="font-family: Courier New;"&gt;ant -Dcommandline=&amp;quot;&amp;lt;args&amp;gt;&amp;quot; run&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&#xD;
this will take care of building the client and setting the right classpath for it.&lt;/p&gt;&#xD;
&lt;p&gt;Finally, an even easier way of running the client in linux is using the included &lt;span style="font-family: Courier New;"&gt;javaclient.sh&lt;/span&gt; script:&lt;br /&gt;&#xD;
&lt;span style="font-size: smaller;"&gt;&lt;span style="font-family: Courier New;"&gt;sh javaclient.sh &amp;lt;args&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&#xD;
this script requires a &lt;span style="font-family: Courier New;"&gt;JAVA_HOME&lt;/span&gt; environment variable to be set.&lt;/p&gt;&#xD;
&lt;p&gt;For more information about the arguments for the client please look at the &lt;span style="font-family: Courier New;"&gt;readme.html&lt;/span&gt; file inside the &lt;span style="font-family: Courier New;"&gt;docs&lt;/span&gt; folder, in the zip file.&lt;/p&gt;</summary>
    <dc:creator />
    <dc:date>2010-10-05T19:50:23Z</dc:date>
  </entry>
  <entry>
    <title>EnterMedia Release's Version 6.706, Includes Online Video Platform Support</title>
    <link rel="alternate" href="http://entermediasoftware.com/tutorials/permalink/2010/3/30/134512.html" />
    <author>
      <name />
    </author>
    <modified>2010-10-05T19:50:24Z</modified>
    <issued>2010-10-05T19:50:24Z</issued>
    <summary type="text/html" mode="escaped">&lt;div style="text-align: center;"&gt;&lt;b&gt;EnterMedia Release's Version 6.706,  Includes Online Video Platform Support&lt;/b&gt;&lt;/div&gt;&#xD;
&lt;div style="text-align: center;"&gt;&lt;i&gt;Centralize your Enterprise Media Library  with EnterMedia&lt;/i&gt;&lt;/div&gt;&#xD;
&lt;p&gt;OpenEdit Inc., released open source  EnterMedia media asset management, version 6.706. This newest release  includes online video platform, capability to build and email  collections, a new user interface, security improvements, improved  uploader and more.&lt;/p&gt;&#xD;
&lt;p&gt;Two new features are featured below, Online Video Platform and Collections.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b style="color: rgb(56, 118, 29);"&gt;ENTERMEDIA ONLINE VIDEO PLATFORM&lt;/b&gt;&lt;/p&gt;&#xD;
&lt;p style="text-align: center;"&gt;&lt;img width="425" height="332" alt="" src="/tutorials/screenshots/ec2/video.png" /&gt;&lt;/p&gt;&#xD;
&lt;p style="text-align: left;"&gt;&lt;i&gt;Entermedia Online Video Platform allows you to securely play videos  on your website without using 3rd party streaming companies.&lt;/i&gt;&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
&lt;b style="color: rgb(56, 118, 29);"&gt;EMAIL COLLECTIONS TO OTHERS&lt;/b&gt;&lt;/p&gt;&#xD;
&lt;p style="text-align: center;"&gt;&lt;b style="color: rgb(56, 118, 29);"&gt;&lt;img width="425" height="367" alt="" src="/tutorials/screenshots/ec2/collections.png" /&gt;&lt;/b&gt;&lt;/p&gt;&#xD;
&lt;p style="text-align: left;"&gt;&lt;i&gt;Collaborate with others by emailing a link to your Collection.  Granular permission based controls allow email recipients to access only  what you want them to. Email recipients do not need to be EnterMedia  users.&lt;/i&gt;&lt;/p&gt;&#xD;
&lt;div id="m1pg" style="text-align: left;"&gt;&#xD;
&lt;div id="voxm" style="text-align: left;"&gt;&lt;b&gt;&lt;font color="#38761d"&gt;EnterMedia version  6.706 Release Notes&lt;/font&gt;&lt;/b&gt;&lt;/div&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;User  Interface&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&#xD;
&lt;p&gt;The application has a new nicer looking header  and easier navigation. In an effort to simplify our results page, we  have removed all of the icons displayed under thumbnails. This gives a  cleaner appearance and allows us to fit more thumbnails on a single  results page. All of the actions that were previously available via  icons below thumbnails are not available on the Media Viewer page, which  is accessed by clicking on any thumbnail.&lt;/p&gt;&#xD;
&lt;p&gt;We also changed our  image hover functionality. Previously the enlarged hover image would  follow your mouse around until your pointer left the thumbnail.  Apparently people found this irritating, so we changed it! The hover  will now stay centered above the thumbnail and shows the item name and  selection groups. For anyone who is still annoyed by the image hover  functionality, you can set your preferred view to &amp;quot;Gallery-No Hover&amp;quot;.  See &amp;quot;View Settings&amp;quot; below for information on setting your view  preferences.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Security Improvements&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
Catalogs now has asset and folder level security enabled by default.  Also improved the security editor on the catalog settings page.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Collections&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
Assets can now be added to groups of collections. A collection gives  you a way to show off your best or most recent assets.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;i&gt;&lt;b&gt;View  Settings&lt;/b&gt;&lt;br /&gt;&#xD;
&lt;/i&gt;&lt;/p&gt;&#xD;
&lt;p&gt;We also removed the hits-per-page, view, and sorting dropdowns from the  results header. These settings are now accessible from the &amp;quot;view&amp;quot; button  in the results header. This button will give you a pop-up which allows  you to set your results view preferences based on the type of results  you are seeing: Category (browsing), Search, Album, or Selection.&lt;i&gt;&lt;b&gt;&lt;br /&gt;&#xD;
&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;New Video Player&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
EnterMedia is now using FlowPlayer (&lt;a id="d2-i" title="http://www.flowplayer.org" href="http://www.flowplayer.org/"&gt;http://www.flowplayer.org&lt;/a&gt;)  to better support previewing of video assets. If you upload a video,  EnterMedia will now generate:&lt;br /&gt;&#xD;
1. A series of still thumbnails to be  displayed on results pages. If you hover your mouse over the thumbnail  of a video, it will begin to cycle through this series of still images.&lt;br /&gt;&#xD;
2. A flash version of the video for previewing. By clicking on the  thumbnail you will be taken to the Media Viewer page where you will be  able to watch the entire flash version of the video!&lt;br /&gt;&#xD;
3. Ability to  import from YouTube or external URL to an asset or video file&lt;/p&gt;&#xD;
&lt;p&gt;Note:  Generating thumbs and flash versions of videos requires ffmpeg (&lt;a href="http://www.ffmpeg.org"&gt;http://www.ffmpeg.org&lt;/a&gt;)  to be installed and configured correctly to work with EnterMedia. For  more information on this, see our installation instructions here:&lt;br /&gt;&#xD;
&lt;a href="http://entermediasoftware.com/docs/AppendixA/index.html"&gt;http://entermediasoftware.com/docs/AppendixA/index.html&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Selecting  Improvements&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
The new clipboard groups are designed to help  users sort their media. Once you have added a group of similar items  into a clipboard group, you can then categorize or keyword all of those  items at once using multi-edit, or you can add the items to a posting to  share it with your friends. We have tried to make these clipboards a  little easier to use so that everyone can take full advantage of their  capabilities. To that end, we have added Drag and Drop functionality!  From a results page, you can now drag and drop a thumbnail into a  clipboard group box to add that item. You can also add a single item to a  selection group using the check boxes that appear in the hover image,  or you can add an entire page of results to a selection group by  clicking the &amp;quot;Clipboards&amp;quot; button in the results header.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Share  with Facebook&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
We have added a button on the Media Viewer  page that will share an item with Facebook!&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Voting&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
From the MediaViewer page, you can now click the star button to  indicate that you like that photo/video/whatever. You can even see a  list of other users who like a given item.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;&lt;i&gt;New  Uploader&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&#xD;
We have a new, fancier-than-ever upload applet. You  can now upload multiple items, or even an entire folder, all at once.  EnterMedia will immediately create assets for each item being uploaded,  allowing you to begin sorting or editing the meta-data associated with  your uploads. You will see an indicator in the top-right corner showing  your current uploads. You can click on this indicator to see the  progress of your current uploads. Thumbnails will be created for your  new assets as the uploads complete. (You will need to navigate around  the site, or at least refresh your page before you will actually see the  images.)&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b style="color: rgb(56, 118, 29);"&gt;ABOUT &lt;/b&gt;&lt;b style="color: rgb(56, 118, 29);"&gt;ENTERMEDIA&lt;br /&gt;&#xD;
&lt;/b&gt;&lt;/p&gt;&#xD;
&lt;p&gt;EnterMedia  is the only JAVA, open source media asset management solution with a  video online platform. Upload your Enterprise Media Library's videos,  photos and documents into a secure centralized server. Your media server  running EnterMedia can be branded to meet your company's design and  functionality goals.&lt;/p&gt;&#xD;
&lt;p&gt;EnterMedia is free to  download. &lt;a id="z971" title="http://entermediasoftware.com/download.html" href="http://entermediasoftware.com/download.html"&gt;http://entermediasoftware.com/download.html&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;p&gt;For  more information go to &lt;a id="ji-q" title="http://entermediasoftware.com" href="http://entermediasoftware.com"&gt;http://entermediasoftware.com&lt;/a&gt;  or email &lt;a id="frdg" title="julie@openedit.org" href="mailto:julie@openedit.org"&gt;julie@openedit.org&lt;/a&gt;&lt;/p&gt;</summary>
    <dc:creator />
    <dc:date>2010-10-05T19:50:24Z</dc:date>
  </entry>
  <entry>
    <title>Enabling Watermarking</title>
    <link rel="alternate" href="http://entermediasoftware.com/tutorials/permalink/2010/3/25/140951.html" />
    <author>
      <name />
    </author>
    <modified>2010-10-05T19:50:27Z</modified>
    <issued>2010-10-05T19:50:27Z</issued>
    <summary type="text/html" mode="escaped">&lt;p&gt;With EnterMedia, you can watermark all images in all catalogs or pick and choose what catalogs should have watermarked images.  You can also configure where the watermarks are placed on the image.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img alt="" src="/docs/watermarking/images/watermarked.png" /&gt;&lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
	&lt;li&gt;&#xD;
	&lt;h4&gt;Enabling Watermarks&lt;/h4&gt;&#xD;
	&lt;p&gt;In EnterMedia you can have very fine-grained control over what gets watermarked.  I will give examples 		on how to watermark specific images all they way up to watermarking the entire site.&lt;/p&gt;&#xD;
	&lt;h5&gt;Single Catalog&lt;/h5&gt;&#xD;
	You can enable watermarking for a single catalog through the Security UI.  To do this, follow these steps:&#xD;
	&lt;ul&gt;&#xD;
		&lt;li&gt;Go to the settings area of your EnterMedia site.&lt;/li&gt;&#xD;
		&lt;li&gt;Choose the catalog you want to watermark from the &amp;quot;Edit Catalogs&amp;quot; list.&lt;/li&gt;&#xD;
		&lt;li&gt;Go to the &amp;quot;Security&amp;quot; tab&lt;/li&gt;&#xD;
		&lt;li&gt;Find the &amp;quot;forcewatermark&amp;quot; permission&lt;/li&gt;&#xD;
		&lt;li&gt;If there is an &amp;quot;edit&amp;quot; link next to &amp;quot;forcewatermark&amp;quot;, click it.  Otherwise, click &amp;quot;override&amp;quot;, then find the override version of &amp;quot;forcewatermark&amp;quot; at the top of the list, and click &amp;quot;edit&amp;quot; there.&lt;/li&gt;&#xD;
		&lt;li&gt;Change the value to &amp;quot;True&amp;quot; and click the &amp;quot;Save&amp;quot; button.&lt;/li&gt;&#xD;
	&lt;/ul&gt;&#xD;
	&lt;br /&gt;&#xD;
	Other watermarking options require editing some XML manually. More information is listed below:&#xD;
	&lt;h5&gt;Site-Wide Watermarking&lt;/h5&gt;&#xD;
	&lt;ul&gt;&#xD;
		&lt;li&gt;File to Add Property to: &amp;quot;/webapp/entermedia/catalog/_site.xconf&amp;quot;&lt;/li&gt;&#xD;
		&lt;li&gt;Property to Add: &amp;quot;&amp;lt;property name=&amp;quot;forcewatermark&amp;quot;&amp;gt;true&amp;lt;/property&amp;gt;&amp;quot;&lt;/li&gt;&#xD;
	&lt;/ul&gt;&#xD;
	&lt;h5&gt;Specific Sized Images&lt;/h5&gt;&#xD;
	&lt;ul&gt;&#xD;
		&lt;li&gt;File to Add Property to: &amp;quot;/webapp/WEB-INF/base/entermedia/catalog/downloads/preview/{size}/_site.xconf&amp;quot;&lt;/li&gt;&#xD;
		&lt;li&gt;Property to Add: &amp;quot;&amp;lt;property name=&amp;quot;forcewatermark&amp;quot;&amp;gt;true&amp;lt;/property&amp;gt;&amp;quot;&lt;/li&gt;&#xD;
	&lt;/ul&gt;&#xD;
	&lt;p&gt;Sizes:&lt;/p&gt;&#xD;
	&lt;ul&gt;&#xD;
		&lt;li&gt;thumb - 150x150 - thumbnail used on results page.&lt;/li&gt;&#xD;
		&lt;li&gt;medium - 300x300 - image used as the hover image.&lt;/li&gt;&#xD;
		&lt;li&gt;large - 600x600 - download size option.&lt;/li&gt;&#xD;
		&lt;li&gt;cache - 800x600 - image used on media viewer page.&lt;/li&gt;&#xD;
	&lt;/ul&gt;&#xD;
	&lt;br /&gt;&#xD;
	&amp;nbsp;&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;ul&gt;&#xD;
	&lt;li&gt;&#xD;
	&lt;h4&gt;Watermark Placement&lt;/h4&gt;&#xD;
	&lt;p&gt;Just as you have fine-grained control over what gets watermarked you also have fine-grained control 		over where the watermark is placed.  Setting watermark placement is very easy all that is involved 		is modifying properties in XML files.  See the chapter titled Online HTML/Text Editing , for more information on editing files in 		EnterMedia.&lt;/p&gt;&#xD;
	&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
	&lt;h5&gt;Watermark Position Options&lt;/h5&gt;&#xD;
	&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
	&lt;ul&gt;&#xD;
		&lt;li&gt;north&lt;/li&gt;&#xD;
		&lt;li&gt;northeast&lt;/li&gt;&#xD;
		&lt;li&gt;east&lt;/li&gt;&#xD;
		&lt;li&gt;southeast&lt;/li&gt;&#xD;
		&lt;li&gt;south&lt;/li&gt;&#xD;
		&lt;li&gt;southwest&lt;/li&gt;&#xD;
		&lt;li&gt;west&lt;/li&gt;&#xD;
		&lt;li&gt;northwest&lt;/li&gt;&#xD;
		&lt;li&gt;center&lt;/li&gt;&#xD;
		&lt;li&gt;tile&lt;/li&gt;&#xD;
	&lt;/ul&gt;&#xD;
	&lt;br /&gt;&#xD;
	&lt;ul&gt;&#xD;
		&lt;li&gt;&#xD;
		&lt;h5&gt;Site-Wide Watermark Position&lt;/h5&gt;&#xD;
		&lt;dl&gt; 				&lt;dt&gt;File to Add Property to:&lt;/dt&gt; 				&lt;dd&gt;/webapp/WEB-INF/base/entermedia/catalog/_site.xconf&lt;/dd&gt; 				&lt;dt&gt;Property to Add:&lt;/dt&gt; 				&lt;dd&gt;&amp;lt;property name=&amp;quot;watermarkplacement&amp;quot;&amp;gt;{position}&amp;lt;/property&amp;gt;&lt;/dd&gt; 			&lt;/dl&gt;&lt;/li&gt;&#xD;
		&lt;li&gt;&#xD;
		&lt;h5&gt;Specific Catalog Position&lt;/h5&gt;&#xD;
		&lt;dl&gt; 				&lt;dt&gt;File to Add Property to:&lt;/dt&gt; 				&lt;dd&gt;/webapp/media/browse/{catalog name}/_site.xconf&lt;/dd&gt; 				&lt;dt&gt;Property to Add:&lt;/dt&gt; 				&lt;dd&gt;&amp;lt;property name=&amp;quot;watermarkplacement&amp;quot;&amp;gt;{position}&amp;lt;/property&amp;gt;&lt;/dd&gt; 			&lt;/dl&gt;&lt;/li&gt;&#xD;
		&lt;li&gt;&#xD;
		&lt;h5&gt;Specific Sized Image Position&lt;/h5&gt;&#xD;
		&lt;dl&gt; 				&lt;dt&gt;File to Add Property to:&lt;/dt&gt; 				&lt;dd&gt; 				/webapp/WEB-INF/base/entermedia/catalog/downloads/preview/{size}/_site.xconf 				&lt;/dd&gt; 				&lt;dt&gt;Property to Add:&lt;/dt&gt; 				&lt;dd&gt;&amp;lt;property name=&amp;quot;watermarkplacement&amp;quot;&amp;gt;{position}&amp;lt;/property&amp;gt;&lt;/dd&gt; 			&lt;/dl&gt;&lt;/li&gt;&#xD;
	&lt;/ul&gt;&#xD;
	&lt;/li&gt;&#xD;
	&lt;li&gt;&#xD;
	&lt;p&gt;NOTE: If the forcewatermark or the watermarkplacement properties are set in multiple files the  		most specific file will determine how the watermark is applied.  For example, the properties set 		on a specific sized image will override properties set for all catalogs.&lt;/p&gt;&#xD;
	&lt;/li&gt;&#xD;
	&lt;li&gt;&#xD;
	&lt;h4&gt;Location of Watermark Image&lt;/h4&gt;&#xD;
	&lt;p&gt;The image used for watermarking is  		/webapp/WEB-INF/base/themes/darktabs/entermedia/images/watermark.png.  If you would like to use 		a different image for watermarking you can either replace the previously mentioned image, or if 		you created your own theme, create an image called watermark in 		/webapp/WEB-INF/base/themes/{your theme}/entermedia/images.  For more information on creating your 		own theme see the chapter on theme creation.&lt;/p&gt;&#xD;
	&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
	&lt;/li&gt;&#xD;
&lt;/ul&gt;</summary>
    <dc:creator />
    <dc:date>2010-10-05T19:50:27Z</dc:date>
  </entry>
</feed>



