<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Aspect filter in Advanced Search in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237600#M190730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Alex,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Lucene API supports this through the ASPECT field (e.g., ASPECT:"cm:versionable") so this could be added by customizing the advanced search page. If you want it to be a dropdown based on all of the aspects defined, the backing bean would ask the Dictionary Service for that list to populate the entries in the dropdown.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once you got that working, you'd probably have to tweak the query builder logic that's already in there to add the "+ASPECT…" clause to the query before it gets executed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My initial thought as to why that's not in there already is that "typical" users don't know what an aspect is but the argument against that is that the "Add Aspect" action is public and seen/used by normal users. Probably the real reason is just no one's asked for it and/or taken the time to do it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think it'd be a pretty minor customization.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jun 2009 20:09:11 GMT</pubDate>
    <dc:creator>jpotts</dc:creator>
    <dc:date>2009-06-18T20:09:11Z</dc:date>
    <item>
      <title>Aspect filter in Advanced Search</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237599#M190729</link>
      <description>Is it possible to add a drop down list in advanced search page, with a filter on aspects, like the folder type or the content type?It shuld show nodes having that aspect, but without knowing anything about its metadata…I really can't find any reason about not implementing such an useful query criter</description>
      <pubDate>Tue, 16 Jun 2009 17:30:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237599#M190729</guid>
      <dc:creator>ale_carraro</dc:creator>
      <dc:date>2009-06-16T17:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Aspect filter in Advanced Search</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237600#M190730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Alex,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Lucene API supports this through the ASPECT field (e.g., ASPECT:"cm:versionable") so this could be added by customizing the advanced search page. If you want it to be a dropdown based on all of the aspects defined, the backing bean would ask the Dictionary Service for that list to populate the entries in the dropdown.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once you got that working, you'd probably have to tweak the query builder logic that's already in there to add the "+ASPECT…" clause to the query before it gets executed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My initial thought as to why that's not in there already is that "typical" users don't know what an aspect is but the argument against that is that the "Add Aspect" action is public and seen/used by normal users. Probably the real reason is just no one's asked for it and/or taken the time to do it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think it'd be a pretty minor customization.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2009 20:09:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237600#M190730</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2009-06-18T20:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Aspect filter in Advanced Search</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237601#M190731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A reply from the mighty Jeff Pots! Wow, I've read all yours (GREAT) tutorials! (and going to buy your latest book …)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When looking for this feature, I asked myself if the feature is actually useful, too.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the search could be negated, it could be very powerful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, someone could search for documents NOT translated (yet)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like to know if any of my scripts/web scripts in the "data dictionary" space are NOT versioned.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking for common keywords, I may want to restrict results that I know are bound to a specific aspect (Example: Assuming that in the repository I've got all Alfresco resources I found, and I was looking for your "Alfresco Developer Guide" . Searching for Alfresco, Developer, Guide will return almost the entire repository. But not if I search for Alfresco, Developer, Guide, ASPECT:dublinCore&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The real reason for my surprise is that indeed this is a minor thing to implement, but I'm a bit worried about overwriting code from Alfresco, because I'm not sure if I'm able to contribute in a so important feature of this beautiful platform at this moment&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 07:46:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237601#M190731</guid>
      <dc:creator>ale_carraro</dc:creator>
      <dc:date>2009-06-19T07:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Aspect filter in Advanced Search</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237602#M190732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should be able to extend the advanced search page doing what you've described without touching any of the Alfresco core code. In addition to the NOT logic, it'd also be cool if you could choose whether to AND or OR search terms. We've done some similar customizations for clients but nothing we can make available, unfortunately.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 21:58:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/aspect-filter-in-advanced-search/m-p/237602#M190732</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2009-06-19T21:58:30Z</dc:date>
    </item>
  </channel>
</rss>

