Sorry, we found 0 results. Please try another query.
Showing max 10 of results

SPC12: Registrierung

Da heute die Registrierung schon geöffnet hatte, bin ich doch gleich mal vorbei gegangen.WP_000260

Links: Die noch ziemlich leere Registrierung mit viel Platz für die erwarteten 10.000 Leute.

WP_000261

 

 

 

 

 

Wie man hier sieht, ist auch noch nicht alles fertig.

Und hier noch ein Eindruck über das ganze Papier was in dem Konferenz Rucksack zu finden war. Und gefühlt kann man an jedem der 200 Ausstellungsstände ein Surface gewinnen. Ich habe also Hoffnung.CIMG0074

SPC12: Auf nach Vegas!

Heute ist es soweit. Um 9 geht der Flieger. Zuerst nach New York und von da aus weiter nach Las Vegas zur SharePoint Conference.

Der Samstag ist dann zum entspannen vom Jetlag. Sonntag geht’s direkt los. Mittags mit dem Beta Exam "Core Solutions of Microsoft SharePoint Server 2013" welches dort kostenfrei angeboten wird, aber dafür auch rund 4 Stunden dauern wird. Abends dann die "Welcome Reception", also zuerst die Registrierung und dann schon mal schauen was es in der Ausstellungshalle für Goodies gibt.

Bilder der Konferenz (und von den Partys) gibt’s dann fortlaufend in diesem Album: http://sdrv.ms/WyXLou

Mehr von mir dann weiterhin hier an dieser Stelle.

Show thumbnail image of JPGs within SharePoint search results

In SharePoint 2010 it is really easy to enable the search center to include a thumbnail of JPG images. The required XSLT is already there and you only have to add the file type "jpg" within the search administration (and a full crawl of course):

 

 

 

 

 

However, it works for images within a picture library only. To enable it also for JPGs in "normal" document libraries (e.g. "PublishingImages" which is is, other than the name would indicate, not a picture library), go to your search center results.aspx, edit the page and then edit the "search core result" web part. Make sure you uncheck "Use Location Visualization" (obviously, isn’t it? ;-).

Now click "XSL Editor…" and copy/paste that XSLT to modify it within your favorite editor. Look for <xsl:template match="Result">.

There you can see at the first "xsl:when" that it tests on contentclass "STS_ListItem_PictureLibrary". I’ve just copied the entire "xsl:when" block and modify it.

The first modification is to test if the result is a jpg. Sadly enough there is no "indexOf" in XSLT, so this one is a little bit dirty:

<xsl:when test="contains(url, ‘.jpg’) and not(contains(url, ‘.jpg.’))">

The second change is where the thumbnail will be shown. I don’t want to load the full big JPG so I decided to go with the really nice built-in feature of SharePoint to get a thumbnail of any image just by modifying the URL.

To get a thumbnail from a JPG stored in any SharePoint library just add "/_t/" between the library and the filename and replace the filename extension with "_jpg.jpg":

http://sp2010/DocLib/**_t/**Test**_jpg**.jpg

 

So here is the interesting part before the modification:

<div class="srch-picture2">
<img class="srch-picture" src="{picturethumbnailurl}" alt="" />
</div>

And after the modification:

<div class="srch-picture2">
    <img class="srch-picture" alt="">
        <xsl:attribute name="src">
            <xsl:value-of select="concat(substring-before(url,title),'_t/',
                                  translate(title,'.jpg','_jpg'),'.jpg')" />
        </xsl:attribute>
    </img>
</div>

At the end your XSL should contain the new "xsl:when" between the existing one and the "xsl:otherwise":

 

 

 

 

 

After saving this and the entire page, you should get a nice looking result: