Sunday, November 11, 2012

Sharepoint 2010 - 11/11/2012


_SPBODYONLOADFUNCTIONNAMES IN SHAREPOINT VS. JQUERY’S DOCUMENT READY

http://www.stephanrocks.com/2011/10/05/_spbodyonloadfunctionnames-in-sharepoint-vs-jquerys-document-ready/

SharePoint and Chrome

http://withinsharepoint.com/archives/256

URL path length restrictions (SharePoint Server 2010)

http://technet.microsoft.com/en-us/library/ff919564.aspx

http://www.sharepoint2010.ru/post/connectable-webparts.aspx

Создание пользовательского фильтра для списка в SharePoint 2010

http://habrahabr.ru/post/139963/

Developing a Web Part for Moss 2007

(event order)
http://www.c-sharpcorner.com/uploadfile/sarav82/developing-a-web-part-for-moss-2007/




Saturday, November 10, 2012

Customizing SharePoint 2010 Web Part User Interfaces


Customizing SharePoint 2010 Web Part User Interfaces (Wrox)

http://msdn.microsoft.com/en-us/library/hh537935.aspx

http://techtrainingnotes.blogspot.com/2011/06/sharepoint-2010-add-colors-borders-and.html


Monday, November 05, 2012

Sharepoint 2010 - 05/10/2012


Customizing search results in SharePoint 2013

CollapseSpecification 
using (var context = new ClientContext("http://localhost"))
{
    var query = new KeywordQuery(context)
        {
            QueryText = "Title:Computer",
            CollapseSpecification = "Category:3 Product:1",
        };

    var executor = new SearchExecutor(context);
    var results = executor.ExecuteQuery(query);

    context.ExecuteQuery();

    foreach (var result in results.Value[0].ResultRows)
    {
        Console.WriteLine(result["Title"]);
    }
}


Doing blended search results in SharePoint–Part 2: The Custom CoreResultsWebPart Way

http://techmikael.blogspot.co.uk/2010/12/doing-blended-search-results-in.html

Duplicate Removal (FAST Search Server 2010 for SharePoint)

How “Remove Duplicate Results” works in FAST Search for SharePoint

What you have to do is create a new managed property with exactly the namedocumentsignaturecontribution and then map to this managed property any values that you also want to use for the checksum computation (as with other managed properties, to assign a value to this property you must map a crawled property to it).
fcoid334483385708934799

Searching External Data in SharePoint 2010 Using Business Connectivity Services

Using Associations for Master/Detail Relationships

Business Connectivity Services also allows you to define a master/detail (aka parent-child) relationship between two ECTs. The resulting profile page for the master ECT will automatically be generated with a list of the detail records for that particular master record. Our interest here is how the search service handles this type of association.
To try this out, you will create an association from the detail ECT (Product) to the master ECT (ProductModel). 

Producing a two-column, side-by-side view with XSL

External List with BCS & Search Filters

Displaying more properties in search results

SharePoint Search Results: Adding a link to the view properties page of a document

Viewing Search Results in raw XML Format

as new tab after people

Designing and Developing Microsoft SharePoint 2010 Applications

Chapter 6: Search (Professional SharePoint 2010 Development)

Scot Hillier, Brad Stevenson - Professional Business Connectivity Services in SharePoint 2010 - 2011.pdf
Crawling Associations
If you have created associations between ECTs, search can crawl these associations. The crawling of
associations is supported in two different ways: for child ECTs and for attached ECTs. A child ECT
has its own separate URL displayed in the search results, whereas an attached ECT always uses the
URL of the parent ECT. This means that when a search is executed that returns an associated ECT,
the child ECT will appear as a separate result, but the attached ECT will show the parent ECT as a
result instead
In order for the indexing engine to crawl an associated ECT as a child, the DirectoryLink property
should be added to the Association element in the Metadata Model. In order for the indexing
engine to crawl the associated ECT as an attachment, the AttachmentAccessor property should be
added to the Association

Step 4 (Optional): Define Associations

Business Data Search in SharePoint 2010: Crawling associated external content types

Chapter 11: Business Connectivity Services (Professional SharePoint 2010 Development)

Configuring SharePoint Server 2010 Search for External Content Types (Part 1 of 2)

Defining Associations in Business Connectivity Services Using SharePoint Designer 2010

Searching External Data in SharePoint 2010 Using Business Connectivity Services

Searching External Data in SharePoint 2010 Using Business Connectivity Services

Business Data Search in SharePoint 2010: Crawling associated external content types

Thursday, November 01, 2012

Monday, October 29, 2012

javascript


Delay AJAX Searches with JavaScript’s setTimeout




Mastering Javascript Arrays


http://www.hunlock.com/blogs/Mastering_Javascript_Arrays


Adding JavaScript to a Content Editor Web Part to Run onLoad

_spBodyOnLoadFunctionNames.push("HideNewIcons");

Saturday, October 27, 2012

кулинария

Кленовый сироп
http://www.maple-syrup.com.ua/recipes.html


Джейми Оливер обед за полчаса

http://cookbooks.ru/books/jamies-30-minute-meals/

Кленовый сахар дизайн продуктов
Покупать нужно только тот сироп, на котором стоитзнак качества – золотой кленовый листок
 Кленовый сироп не должен содержать искусственных добавок: консервантов, ароматизаторов, красителей.

Friday, October 26, 2012

Sharepoint Advanced Search

Adding query suggestions to your own search applications
http://sharepointfieldnotes.blogspot.com/2011/09/sharepoint-2010-search-query.html

Using SharePoint 2010 Search webservice in Javascript for FAST search for sharepoint 2010
http://blogs.msdn.com/b/pasen/archive/2012/04/01/using-sharepoint-2010-search-webservice-in-javascript-for-fast-search-for-sharepoint-2010.aspx

 SHAREPOINT SEARCH-AS-YOU-TYPE WITH JQUERY
http://weblogs.asp.net/jan/archive/2009/07/02/sharepoint-search-as-you-type-with-jquery.aspx
http://searchasyoutype2010.codeplex.com/SourceControl/changeset/view/18611#18827

How to get similar results from search.asmx service and SharePoint Search Center
https://www.google.by/#hl=ru&sclient=psy-ab&q=sharepoint+search.asmx+javascript+count&oq=sharepoint+search.asmx+javascript+count&gs_l=hp.3...6998.8542.1.9435.6.6.0.0.0.0.151.871.0j6.6.0...0.0...1c.1.-77aJWTUwJw&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&fp=16f4b83a7c1b70e2&bpcl=35466521&biw=1280&bih=896

 Display the amount of items the search engine has indexed
http://sharepoint.stackexchange.com/questions/37606/display-the-amount-of-items-the-search-engine-has-indexed

Handling Paging and Total Results count in SharePoint custom results page
http://blogs.msdn.com/b/sanjaynarang/archive/2009/02/20/handling-paging-and-total-results-count-in-sharepoint-custom-results-page.aspx

 Longitude Search for SharePoint/FAST with Document Preview by BA Insight 

тут же образцы другие 


sharepoint search.asmx pre count
sharepoint searchboxex onkeypress

http://facetedsearch.codeplex.com/

http://searchco.de/codesearch/view/8747267



Microsoft.Office.Server.Search.Query.FullTextSqlQuery



webpart to use the SharePoint's FullTextSQLQuery search capability.

Creating a Site Context Search Box that Uses SharePoint Portal Server Search Results



Pass event data from a Silverlight control to a SharePoint page




Working with SharePoint Foundation Search API


Chapter 14: Silverlight and SharePoint Integration (Professional SharePoint Branding and User Interface Design)



Silverlight and Sharepoint working together: event receivers in Silverlight


Change the number of characters of the URL in search results
By default, 90 characters are displayed before the URL is truncated. In Display Properties, when you check the box to Limit Characters in URL, and enter a value other than 90 in the Characters in URL box, there is no change to the user interface.



Удаление повторений

Эта тема еще не получила оценку Оценить эту тему
Удаление повторов можно применять к результатам запроса на основе значения определенного управляемого свойства.
Эту возможность также можно использовать для сворачивания совпадений в наборе результатов по идентификатору группы (includedid).
Применимо к: Microsoft FAST Search Server 2010 for SharePoint 2010


Sharepoint 2013






SharePoint 2013 будет включать в себя SkyDrive Pro




Материалы для изучения SharePoint 2013 Preview
http://habrahabr.ru/post/147936/

Changes from SharePoint 2010 to SharePoint 2013
http://technet.microsoft.com/en-us/library/ff607742(v=office.15)

Keyword Query Language (KQL) syntax reference
http://msdn.microsoft.com/en-us/library/ee558911(v=office.15).aspx


Programming using the SharePoint 2013 REST service
http://msdn.microsoft.com/en-us/library/fp142385(v=office.15).aspx

Microsoft SharePoint 2013 Preview discontinued and modified functionality


умный дом - ссылки

Китайская IP-камера / Хабрахабр

Mini 7" TFT Digital Colour LCD TV Monitor w/Remote Control for TV/DC/DV/DVD/VCR/VCD - Free Shipping - DealExtreme

SmartLiving.ru Main/Screenshots

Умные Z-Wave розетки

Умный дом своими руками, строительство, ремонт, коммуникации / ab-log.ru

Открытая система управления “умным домом” MajorDoMo / Хабрахабр

Android + Arduino = ♥ / Хабрахабр

Android + Arduino = ♥ / Хабрахабр

CES 2012 Round-up: Samsung brings the internet to your ‘dumb’ TV | Android At Home

Home automation with Arduino and Android | DomoticHome

Mele A1000 — интересный конкурент Raspberry Pi / Хабрахабр

Zyxel Keenetic 4G, arduino и датчики температуры ds18b20 / Хабрахабр

Поиск / Хабрахабр

Все Arduino-проекты и программы в одном месте

Автоматическая подсветка лестницы с помощью Arduino / Хабрахабр

Умный дом класса De Luxe – умный дом на iPad, создание и проектирование систем умный дом, интеллектуальный дом и офис. Автоматизация дома, здания

Новости проекта MajorDoMo (платформа домашней автоматизации) / Хабрахабр

Распознавание речи на STM32F4-Discovery / Хабрахабр

Управляем чайником из браузера или как я интернет-розетку делал / Хабрахабр

MiniX — Одноплатный компьютер, или как китайцы готовили малиновый пирог / Другие магазины / mySKU.ru - Обзор товаров из интернет-магазинов

https://www.miniand.com/products/Mini%C2%A0Xplus%20TV%20Box%20H24#specifications

Автоматизация офисного освещения / Хабрахабр


Часы из винчестера за пару часов


http://habrahabr.ru/post/156009/

http://habrahabr.ru/company/microsoft/blog/156303/

http://habrahabr.ru/post/156339/


Как просто подключить любой датчик OPC сервера к проекту narodmon.ru





строительство дома - ссылки

планкен - Поиск в Google

Планкен из лиственницы

Студия Срубов Сергея Озёрного

Планкен лиственница кат."Экстра" ― Русский Мастер

Фасад для деревянного дома | Форум: дом и дача

Компания "Мастер Фасад"

Деревянные дома. Проекты домов.5 деревянных домов стоимостью до 20.000 у.е. по проектам «Экохоум» :: Блог :: Ecohome


Новый фасадный материал – фиброцемент


http://www.fibrofasad.by/gallery/category/26-kmew


Домстрой

http://www.intaliospb.ru/?page=pr_kmew

Фотографии домашних офисов-3 / Хабрахабр

Цветочки

Проекты беседок | Проекты беседок барбекю | Проекты беседок гриль | ЗАБОРЫ ТЕРРАСЫ НАВЕСЫ

TUT.BY | НОВОСТИ - 10 идей для дизайна кухни - Общество - 14.02.2012, 09:00

TUT.BY | НОВОСТИ - Сколько стоит дом построить? - Новость дня - 4.04.2012, 07:45

Март | Arsenal.by

Деревянные дома, проекты деревянных домов, строительство деревянного дома, бани, срубы, черепица, сланец


сборник ссылок по дизайну

Free Business Card PSD Templates
http://designerves.com/article/free-business-card-psd-templates/

40+ Best FREE Business Card Templates in PSD File Format
http://www.andysowards.com/blog/2012/40-best-free-business-card-templates-in-psd-file-format/

Шрифт Scada
http://www.scada.lv/company/scada-font/

UICloud is a project created by Double-J Design. It collects the best UI element designs from the internet all over the world and provides a search engine
http://ui-cloud.com/

David Rumsey Map Collection Database and Blog











Подборка инструментов для эффективной frontend разработки

Sharepoint - People Search


Staff Directory Search in SharePoint 2010

Sharepoint 2010 - сборник ссылок - InputFormControl

SharePoint 2010 General Lab for developers (Part 3/5)
http://sergeluca.wordpress.com/2012/07/11/sharepoint-2010-general-lab-for-developers-part-35/

Which Controls can i use inside an InputFormControl Section and how to add Buttons like in CentralAdmin to this Page?
http://social.msdn.microsoft.com/Forums/eu/sharepointdevelopmentlegacy/thread/88e1eb3c-3efd-4fbd-9849-98ff199746cd

InputFormSection.ascx and InputFormControl.ascx Controls
http://karinebosch.wordpress.com/sharepoint-controls/inputformsectionascx-control/


Sharepoint 2010 - сборник ссылок - Silverlight

How to Create a Silverlight Web Part in ASP.NET for Use in SharePoint Server 2007
http://msdn.microsoft.com/en-us/library/cc627341(v=office.12).aspx

Динамический размер Silverlight 4 содержимого
http://social.msdn.microsoft.com/Forums/ru/aspnetru/thread/6a12bbd9-220a-4702-8adb-7350971ce2a0

Silverlight control not stretching to its full width when hosted in a SharePoint Web Part (continued)
http://karinebosch.wordpress.com/2010/07/25/silverlight-control-not-stretching-to-its-full-width-when-hosted-in-a-sharepoint-web-part-continued/

Tip: Resizing the Silverlight object from the Silverlight application
http://www.silverlightshow.net/items/Tip-Resizing-the-Silverlight-object-from-the-Silverlight-application.aspx

Walkthrough 2 – Hosting Silverlight 3 in a Content Editor Web Part
http://karinebosch.wordpress.com/silverlight-meets-sharepoint/walkthrough-2-hosting-silverlight-3-in-a-content-query-web-part/

Silverlight and Sharepoint 2010: Getting Started
http://www.silverlightshow.net/items/Silverlight-and-Sharepoint-2010-getting-started.aspx

Silverlight control not stretching to its full width when hosted in a SharePoint Web Part
http://karinebosch.wordpress.com/2010/07/24/silverlight-control-not-stretching-to-its-full-width-when-hosted-in-a-sharepoint-web-part/


Sharepoint 2010 - сборник ссылок - разное

Tuesday, September 11, 2012

WP7 программы

акупрессура
вокабуляр
город
исповедь толстой
карты
маркет
радаринформер
разговорник
репетитор
телепрограмма
экзамен пдд
adobe reader
alarms
appflow ask ziggy
audio [hone 7
battery status
calculator
calendar
camera
city guide st
compass
connectivityshortcuts
dbarscanlite
diagnosis
evernote
eyeem
facebook
fb2 reader lite
games
gdocs
german-engl
glowclock
google mail
gps to sms
im+
insider
ie
irregular verbs
lightning dial
lingua leo
livebirthdays
lockwidgets
lomogramm
lync 2010
mango compass
maps
marketplace
memorizecards
mobudget
mp3tube
my city
nokia drive
nokia lumia ringtone
nokia maps
now
iffline maps
on this day
photo sharing
photo studio
photofunia
photogramm
pocket barman
policelights
qrreader
racoon reader lite
remotedesktop
russiba-eng
sizer
skymap free
skype
tango video calls
tasks
touch, learn, enjoy
tutorle
voicerecorder
wakepc
weather
weather view
watsapp
wingpsinfo
wingym lite
winphone devhub
wonderme
ya maps


Monday, July 16, 2012

Paris

Париж конечно сила.
Ночевали в пригороде в 2х гостишке. Завтрак. Как все вкусно: сыры, колбаса...
Начали в 10 утра с автобусной обзорной экскурсии.
Потом два часа решая экскурсия по монмартру
С двух часов до 21 было свободное время
Истоптал все ноги
Лувр. Нотр дам. Сите. Эйфелева
Сорбонна
Латинский квартал
В 21.30 часик по катались по Сене
Выехали в 23.30





Амстердам

Алмазная фабрика Гассан. 120 лет
Показывали бр лик за 30000 евро
У них есть и магазин (ювелирка' часы)
Оформляют так фри
Русскоязычный персонал
Бр лики потом принимают по цене продажной. Обмен с доплатой


Каналы. Кругом они там.
Вдоль каналов стоят прикольные туалеты мужские.


Berlin

Берлин не понравился. Все в строительных лесах. Автобусу практически негде было стать. Посмотрели Трептов парк. Берлинскую стену.



Thursday, June 07, 2012

Если вдруг при автоматизации Word 2010 вы получили сообщение:
800A175d "cannot open macro storage", то решение проблемы заключается в снятии птички
"Enable Protected View for files originating from Internet"