Murratore’s Weblog

Juni 19, 2009

links for 2009-06-18

Gespeichert unter: del.icio.us — by murratore @ 12:31
  • brand eins Epub Konverter

    Habe ein kleines Programm geschrieben, das aus einer Ausgabe aus dem Online-Archiv der brand eins ein Epub-Ebook erstellt.
    Download

    brandeins.jar
    Systemvoraussetzungen

    * Java, Version 1.5 oder höher
    * Betriebssystem sollte egal sein

    Benutzung

    java -jar brandeins.jar <jahr> <nummer>
    also z.B.
    java -jar brandeins.jar 2009 5
    für die Ausgabe 5 2009.

    Das Programm erstellt dann eine Datei im selben Verzeichnis mit dem Dateiname brandeins_2009_5.epub.

    Welche Ausgaben zur Verfügung stehen, sieht man, wenn man unter brandeins.de auf "Archiv" klickt.

    Viel Spaß damit!

Juni 18, 2009

Daily Blog Post 06/18/2009

Gespeichert unter: Uncategorized — by murratore @ 10:27
  • tags: wiki, moss, sharepoint, portal, overview

  • brand eins Epub Konverter

    Habe ein kleines Programm geschrieben, das aus einer Ausgabe aus dem Online-Archiv der brand eins ein Epub-Ebook erstellt.
    Download

    brandeins.jar
    Systemvoraussetzungen

    * Java, Version 1.5 oder höher
    * Betriebssystem sollte egal sein

    Benutzung

    java -jar brandeins.jar
    also z.B.
    java -jar brandeins.jar 2009 5
    für die Ausgabe 5 2009.

    Das Programm erstellt dann eine Datei im selben Verzeichnis mit dem Dateiname brandeins_2009_5.epub.

    Welche Ausgaben zur Verfügung stehen, sieht man, wenn man unter brandeins.de auf „Archiv“ klickt.

    Viel Spaß damit!

    tags: epub, converter, software, brandeins, ebook

Posted from Diigo. The rest of my favorite links are here.

links for 2009-06-17

Gespeichert unter: del.icio.us — by murratore @ 12:01
  • Improved SharePoint Manageability
    Smaller content databases translate into less operational challenges and compromises. No more long backup times…you can quickly backup and restore content databases and with site collection and web application -scoped storage profiles it's easy to sync those backups with backups and snapshots of the file store. No more need for complicated item level backup/restore solutions… extend Recycle Bin retention times and remove version retention restrictions…and with compression you're still storing less than before.
    Increased SharePoint Performance and Scalability
    StoragePoint moves the content BLOB I/O (read/write) from the SQL tier to the SharePoint Web Front-ends, which is more easily and economically scaled-out. …And if SQL is not being burdened with managing large content BLOBs it has more resources to process queries and manage transactions.
  • From a Lotus Notes sidebar, Mainsoft’s easy-to-deploy, client-side software enables users to easily:

    Drag an attachment from SharePoint into a Lotus Notes email.

    * Access and publish emails and documents on SharePoint, without having to switch applications.
    * Collaborate on documents using Lotus Sametime.
    * Send document links rather than attachments, reducing email storage.
    * Update document fields to comply with SharePoint taxonomy and governance requirements.
    * Manage SharePoint team events from an integrated Lotus Notes calendar view, simplifying time management considerably.

  • Here is the new qDiscussionView from the 5.0 release of WebParts. This is a free unrestricted use of this WebPart. This is for 64-bit systems, for the 32-bit version go here.

    After download run setup and install this on the required SharePoint Front End Servers for which you are an administrator of. After Install this WebPart will be available to any site owner on the server.

    This WebPart is forum supported at this forum

  • Silverlight Spy provides detailed inspection of any Silverlight application. Use the built-in browser to navigate to a web page. Silverlight Spy will automatically pick up any Silverlight application embedded in the page and display the structure of the application in the Explorer. The Explorer presents XAP Package, Isolated Storage, Application Styles, the UI Automation tree and the UI element structure of a Silverlight application. Explore the structure and view and edit the details of the selected UI element in the Details pane. Silverlight Spy works with any web page hosting Silverlight 2 and 3 content, just point the browser to the page and let the Spy figure it out.

Juni 17, 2009

Daily Blog Post 06/17/2009

Gespeichert unter: Uncategorized — by murratore @ 10:27

Posted from Diigo. The rest of my favorite links are here.

Kostenlose Bücher zum OCS von MS Press

Gespeichert unter: Ebooks — by murratore @ 2:34

MS Press hat dieses Jahr 25 Jähriges Jubiläum und so werden laufend Bücher verschenkt.

Aktuell werden zwei Bücher zum Thema Office Communication Server verschenkt (in digitaler Form natürlich).

http://blogs.msdn.com/microsoft_press/archive/2009/06/16/free-e-books-all-ocs-all-the-time.aspx

Das OCS Resource Kit Buch haben wir schon in gedruckter Form.

Overview of SharePoint Search Related Productgs

Gespeichert unter: Sharepoint — by murratore @ 12:31
Tags:

An extensive List of SharePoint Related Search Products (most commercial) can be found here

http://sharepointsearch.com/pages/products.aspx

There are several Connectors; for example Lotus Notes, Documentum, FileNet etc.

Juni 16, 2009

Daily Blog Post 06/16/2009

Gespeichert unter: Uncategorized — by murratore @ 10:28

Pig Flu – But that’s not fair….

Gespeichert unter: Fun — by murratore @ 10:26

image

;-)

Juni 15, 2009

Daily Blog Post 06/15/2009

Gespeichert unter: Uncategorized — by murratore @ 10:28

Posted from Diigo. The rest of my favorite links are here.

SPGridView – > RowDataBound Event

Gespeichert unter: Sharepoint, Tips, Tricks, Hacks — by murratore @ 2:47

In MOSS you can use some of the included Controls for your own purpose. As example the GridView –> SPGridView.

For a good explanation look here –> http://www.sharepointblogs.com/wirkus/archive/2008/08/21/how-to-professionelle-datenanzeige-mit-dem-control-spgridview.aspx [GERMAN]

However some features from the big brother – the ASP.Net Gridview – are not implemented on the SPGridview. For example the DataFormat Property.

So you have to rebuild this on your own. This is done with the RowDataBound Event.

But there is a ugly bug (or is it even a feature…?). If you want to get the current Text of a row with “e.Rows.Cells[index[.text” it gives you nothing back. But you can write in this property and is used……

For a workaround convert the row into DataRowView Object. See example (you have to adopt it for your use….)

void spg_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {

                    DateTime date;
                    DataRowView rowView = ((DataRowView)(e.Row.DataItem));
                    if (DateTime.TryParse(rowView.Row.ItemArray[index].ToString(), out date))
                    {
                        e.Row.Cells[index].Text = rowView.Row.ItemArray[index].ToString() + " / " + date.ToString("dd.MM.yyyy");

                    }                  
                }
            }

        }

Found the solution here:http://social.msdn.microsoft.com/forums/en-US/sharepointdevelopment/thread/0ab222fa-e26f-49f0-b3ef-ed6afeadfaa5

Nächste Seite »

Powered by WordPress.com