David Allen: Killing Outlook Envy (by making Lotus Notes way cool)
Новости о ПО Lotus Notes1. IBM – лидер по патентам: 4914 за 2009 год - 3DNews
2. «Antegra consulting» автоматизировала торговую деятельность фармацевтической компании «Pierre Fabre». - CNews.ru (пресс-релиз)
3. IBM - самая инновационная компания в мире - Вечерняя Москва
4. Alfresco выпустит открытый пакет для интеграции своей ECM-системы с IBM LotusКомпании Alfresco и IBM анонсировали выпуск пакета для интеграции системы управления контентом предприятия Alfresco с продуктами IBM серии Lotus для организации групповой работы (Lotus Quickr, Lotus Notes, Lotus Connections и WebSphere Portal). Первая версия " Alfresco Content Services for IBM Lotus " будет доступна для загрузки весной этого года, продукт будет развиваться как open source проект и позиционируется как недорогая и полнофункциональная альтернатива Microsoft SharePoint, поддерживающая протокол SharePoint и возможность организации доступа из Microsoft Office.5. Компания CPS стала дистрибутором «Новософт» - iXBT.com
Компания ПУЛ - разработка приложений на Lotus Notes/Domino CodeStore. Коды Примеры Шаблоны1. Top 10 Lotus Notes/Domino administration tips of 2009From running multiple instances of Lotus Notes to learning about the new DAOS feature in Notes 8.5, these tips kept you clicking in 2009.2. LotusphereWelcome to the developerWorks Lotus page for Lotusphere, the premier event for IBM Lotus and the enterprise collaboration community. This page offers attendees' and presenters' blogs, photos, and podcasts as well as links to conference resources and news.3. Flex App Basics 1: Building Your Views Remotely | BlogRight then. Here goes with the first in a series of Flex posts that will cover some of the basics of a Flex app to integrate with a backend Domino site. By the end we should have a working application that you view, edit and create documents from. First I want to cover views. In Flex we use a (Advanced)DataGrid to render a view. This is something I've shown how to do before and isn't exactly rocket science; when the Flex app loads it triggers a GET request for the XML of the view. When the XML is received it tells the grid to use the XML as its DataProvider and it all appears in the grid. Here's the Contact Manager we're going to build:
For now it's just a grid with a couple of rows of data in it. All very simple. What I wanted to discuss here is a technique I've started using in all my Domino-based Flex apps, which makes it a little easier to make "design" changes to the grid. As I'm sure you know, users like to constantly request new columns be added to views. Every time you need to add or remove a column from a view you really don't want to have to change the Flex app's code. Because the Flex app itself is a compiled Flash file, any changes you need to make to it require you to launch Flex Builder, make the change, recompile and then import the new SWF file in to Domino Designer, which will mean the user has to download the whole app again (~600kb). We want to avoid having to do this as much as possible. So, what I now do is include the column definitions as part of the XML data. Here's what the XML looks like when you open the vwContactsAsXML view: The XML contains two main child elements - the columns and the documents. The documents come from a simple "Treat as HTML" view like below. The column definitions are added on the Form called "$$ViewTemplate for vwContactsAsXML", which looks like this:
All very straight-forward, no? In Flex we now need to programmatically add all these columns at "run time". To do this we use the same function that is called when the XML has loaded. The same function that usually just updates the DataProvider of the grid to the <documents> in the XML. The function looks like this: private function handleContactsXML(event:ResultEvent):void{ //Update the DataProvider of grid, which is bound to {contacts} contacts = new XMLListCollection(event.result.documents.document); //Custom columns var columns:XMLList = XMLList(event.result.columns.column); var cols:Array = new Array(); for each (var column:XML in columns){ var col:AdvancedDataGridColumn = new AdvancedDataGridColumn(column); col.headerText=column.@label; cols.push(col); } //Grid is the name/id of the AdvancedDataGrid! grid.columns = cols; } Still, all very simple. Load the demo application to see it in action. It's just the bare bones at the moment. As I add new bits over the coming posts you should see it slowly turn in to a working application. For now, hopefully, you can see the benefit of the above approach. Using this technique makes adding and removing columns from "views" a lot, lot simpler. In the next post I'll look at taking it one step further and using the column definition to add more control over their appearance and behaviour. 4. Lotus SametimeFind technical resources for Lotus Sametime.5. XPages straight upThis article provides information for using JavaScript™ to create, view, edit, and remove documents in an IBM® Lotus® Domino® application. It also provides a general introduction to JavaScript in XPages and shows you where and how to attach JavaScript in the XPages user interface.6. SecurityThe Security pages list links to security bulletins, security-related technical articles, IBM Redbooks, and other sources about Lotus software security.7. Monitoring availability, performance, infrastructure, and beyond using IBM Lotus SametimeEver wonder how to really know what the status of your IBM Lotus Sametime environment is? Discover how Lotus Sametime can be monitored, in terms of both function and performance, from the user perspective. This article describes (and provides) a simple lightweight proactive tool to assist administrators in better understanding the Lotus Sametime user experience to reduce outages, respond to issues more quickly, and improve the customer experience. In addition to monitoring capabilities, this tool can assist in debug collection and take the burden off users for problem recreates and data collection. By combining network validation with Lotus Sametime IM, user awareness, user login, and username look-up validation, never before has such a complete picture of the user experience been available.8. IBM Lotus Notes and Lotus iNotes 8.5.1 on Citrix XenApp 4.5/5.0: A scalability analysisThis white paper provides an overview and recommendations for how to get the most from your IBM Lotus Notes 8.5.1 client on the new Citrix XenApp 5.0 server. In particular, we show that, by tuning your environment so that you get the most from your applications, you can realize significant improvements in running the Notes client on XenApp. This is true for both the standard and the basic configurations of Lotus Notes. Moreover, the new support for Microsoft Windows 2008 SP2 by Notes 8.5.1 together with memory improvements means we can scale to even higher numbers than before at a much reduced cost. Also presented are the testing environment, tuning parameters, and the workflows that were executed to gather the scalability data on Notes 8.5.1.9. Lotus Domino Designer documentationFind documentation for Lotus Domino Designer version 8.5.x10. Understanding and implementing local mail replicas for IBM Lotus NotesIf you are considering implementing local mail replicas for your IBM Lotus Notes users, learn more about the advantages of this model and how to create local mail replicas manually or administratively using Setup and Desktop policies. Customize the Desktop policy to control users’ Location documents.11. Domino Web Development from the Ground Up: Using HTMLHTML skills are essential for Domino Web developers. Gain a basic understanding of HTML, how the Domino server converts design elements to HTML, and how to work with HTML when designing applications. Learn methods for enhancing and tweaking Domino HTML with Pass-Thru HTML, XHTML, and Cascading Style Sheets (CSS).12. Best Practices for Upgrading to ODS51 on Clients and ServersLearn everything you need to know about ODS — what it is, why it's important to run the most recent version, how to find out what version you're currently running, and how to upgrade your databases to the latest ODS level on both servers and clients. Clear up some common misconceptions about ODS and get best practices for upgrading to ODS51 in releases 8.0 and higher. Форумы о Lotus Notes/Domino:
Интенет эфир о Lotus Notes. Блоги и форумы1. LOT-712 pdf download,LOT-712 dumps free,test LOT-712 torrentIBM Lotus Notes Domino 7 Developing Web Applications Version :2. Exam4test LOT-841 Training Study GuideExam4Test LOT-841 Lotus Certification Braindumps Exam4Test LOT-841 Exams IBM IBM Lotus Notes Domino 8 Implementing +Administering Security Practice Exam:3. LOT-720 pdf download,LOT-720 dumps free,test LOT-720 torrentIBM Lotus Notes Domino 7 System Admin Operating Fundamentals Version :4. Кукшина Руслана Аркадьевна1C 7.7 Торговля и склад, 1C 8.0 Торговля и склад, CorelDraw, IBM Lotus Notes, Internet Explorer, Банк-Клиент5. Рябуха Ева ЕфимовнаAdobe Photoshop, IBM Lotus Notes, InDesign, MS Active Directory, Microsoft Excel, Microsoft Word6. Сидоркин Станислав Даниилович1C 7.7 Торговля и склад, 1C 8.0 Бухгалтерия, AutoCAD, CorelDraw, IBM Lotus Notes, Microsoft PowerPoint, WebMoney7. Тритяков Ефим Максимович1C 8.0 Бухгалтерия, IBM Lotus Notes, Illustrator, Outlook8. День третий. Погружение нормальное)Кстати вспомнил еще, здесь используется Lotus Notes, оказывается я реально скучал, по этому почтовому клиенту.9. Нуралиев Захар МаксимовичCorelDraw, IBM Lotus Notes10. Низкоус Иван Вячеславович1C 7.7 Торговля и склад, IBM Lotus Notes, Illustrator, Internet Explorer, Microsoft Access, Microsoft Word, QuarkXPress11. подключить внешний класс на Lotus ScriptДобрый день!У меня есть dll-файл ole32.dll/ В данной библиотеке есть класс GUID. Я хочу написать функцию ,которая сможет использовать этот класс. Не подскажете как можно этот класс включить в мою функцию. 12. iNotes_WA_DisableFirefoxAwareness13. инфаЕсли вы знаете полезный ресурс сообщества Lotusphere, который не попал в список, пожалуйста, оставьте свой комментарий.Ссылки: IBM Resources # |#^#]>Lotusphere 2010 Home|#^#]> # |#^#]>Lotusphere 2010 Online|#^#]> # |#^#]>Lotusphere 2010 Sessions|#^#]> Ресурсы сообщества # |#^#]>Andy’s Guide to Lotusphere – 2010 edition!|#^#]> # |#^#]>Gonzo Lotusphere 2009|#^#]> # |#^#]>iPhone LS10 Sessions (Intravision)|#^#]> # |#^#]>LinkedIn Lotusphere community|#^#]> # |#^#]>Lotusphere 2010 Sessions DB (Genii Software)|#^#]> # |#^#]>Lotusphere coverage on Twitter|#^#]> # |#^#]> Lotusphere Live! (live coverage of OGS)|#^#]> # |#^#]>Lotusphere2010 slides on Slideshare|#^#]> # |#^#]>LotusphereBlog Live|#^#]> # |#^#]> People of Lotusphere|#^#]> # |#^#]>Planet Lotus|#^#]> # |#^#]>The Blogger Open|#^#]> # |#^#]>The Lotusphere Podcast|#^#]> # |#^#]>The Taking Notes Podcast|#^#]> Презентации |#^#]>просим тут|#^#]> (при условии что есть учетка на www.|#^#]>dropbox.com|#^#]>) спасибо Volker Weber большое (: 14. Re: Помогите Разобратся с пересылкой.Вопрос был решон переустановкой клиента.Письма стали пересылаться как должны. Скорей всего ошибка была в самом клиенте. 15. Re: Помогите Разобратся с пересылкой.Добрый день Если проблема с одной конкретной базой, то проделайте следующее:... 16. iNotes_WA_FormsFiles17. Best Practices: Submitting a problem report from a device.The intent of this article is to bring together in one location the best practices for reporting a problem to the system administrator from an end user's device. A good Traveler Problem Report (TPR) is invaluable to the system administrator when working with Lotus Notes Traveler support to ...18. Перевод БД Lotus в OfflineПожалуйста напомните кто-нибудь как перевести БД в offline. Чтобы БД была доступна только администраторам?P. S. подобная вещь с сервером делается с помощью команды server_restricted= и т. д..... а вот с БД не помню( 19. XPages straight upThis article provides information for using JavaScript™ to create, view, edit, and remove documents in an IBM® Lotus® Domino® application. It also provides a general introduction to JavaScript in XPages and shows you where and how to attach JavaScript in the XPages user interface.20. Monitoring availability, performance, infrastructure, and beyond using IBM Lotus SametimeEver wonder how to really know what the status of your IBM Lotus Sametime environment is? Discover how Lotus Sametime can be monitored, in terms of both function and performance, from the user perspective. This article describes (and provides) a simple lightweight proactive tool to assist administrators in better understanding the Lotus Sametime user experience to reduce outages, respond to issues more quickly, and improve the customer experience. In addition to monitoring capabilities, this tool can assist in debug collection and take the burden off users for problem recreates and data collection. By combining network validation with Lotus Sametime IM, user awareness, user login, and username look-up validation, never before has such a complete picture of the user experience been available.21. IBM Lotus Notes and Lotus iNotes 8.5.1 on Citrix XenApp 4.5/5.0: A scalability analysisThis white paper provides an overview and recommendations for how to get the most from your IBM Lotus Notes 8.5.1 client on the new Citrix XenApp 5.0 server. In particular, we show that, by tuning your environment so that you get the most from your applications, you can realize significant improvements in running the Notes client on XenApp. This is true for both the standard and the basic configurations of Lotus Notes. Moreover, the new support for Microsoft Windows 2008 SP2 by Notes 8.5.1 together with memory improvements means we can scale to even higher numbers than before at a much reduced cost. Also presented are the testing environment, tuning parameters, and the workflows that were executed to gather the scalability data on Notes 8.5.1.22. Синхронизация мобильного телефона, Google Calendar…Разумеется как отчасти знаменито компания Нокия и их PCSync поддерживает лишь MS Outlook, Outlook Express, Lotus Notes и Lotus Organizer.23. BlackBerry Bold 9700 PhoneIt's supported on the BlackBerry Internet Service, giving you access to up to 8 work or personal email accounts (including most popular ISP email accounts), as well as BlackBerry Enterprise Server, enabling advanced security and IT administration within IBM Lotus Domino, Microsoft Exchange and Novell GroupWise environments.24. Ahmed Hanafy CV0020123698404 E-mail : mr_ahmedhanafy@yahoo.com Secondary: ahmedhanafyessa@hotmail.com Career Objectives Senior Lotus Notes Developer Lotus Notes Domino Administrator IT Supervisor & Technical Support ∙ ∙ Qualifications Summary Eight years of professional experience in IT solutions in Egypt and the Gulf.25. Попытки с Gmail и Docs уже больно бьют по Lotus Notes и Exchange/Outlook.Попытки с Gmail и Docs уже больно бьют по Lotus Notes и Exchange/Outlook.26. Ляпидевский Максим Егорович1C 8.0 Бухгалтерия, AutoCAD, IBM Lotus Notes, InDesign27. Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 190" от 08 ...LSXLC to DB2 * IBM - How to set up a Notes client without user intervention using a scriptable setup * Application Programmer III - Lotus Notes, Domino * Lotus Notes Developer * Lotus Notes Developer * Lotus Notes/Domino Developer * Lotus Notes Developer * Lotus Notes Developer * Lotus Notes/Domino Developer * Lotus Notes Developer * Lotus Notes/ Domino Developer 3 * Lotus Notes Support Technician * Great article on understanding Domino basics and28. Vera Wang by Vera Wang for Women - 4 Pc Gift Set 1.7 oz EDP Spray, , , #This floral, encompasses notes of iris, sandalwood, lily, gardenia, Bulgarian rose, stephanotis, lotus and bergamot.29. Никакая функция не более важна чем научные исследования процесс обнаружения ...Со Сплавом деловые пользователи могут легко получить доступ к программному обеспечению SAP и информации изнутри окружающей среды IBM Lotus Notes®, и онлайн и офлайн.30. Безбородко Елена Максимовна1C 7.7 Торговля и склад, 1C 8.0 Торговля и склад, AutoCAD, IBM Lotus Notes, InDesign, Internet Explorer31. Bitsmith Software Personal Knowbase v3.1.3 ???????? ??? ???????? ???? ???????.This repair may be useful to users pasting RTF text from Lotus Notes into Personal Knowbase using Windows XP SP2 or earlier. Блиц-опрос
Вакансии для специалистов1. Lotus Notes DeveloperLotus Notes Developer Req. ID: 5980 # Positions: 1 Location: US-IN-Carmel Posted Date: 12/4/2009 Position Type: Full Time Apply for this career opportunity: * Apply for this opportunityonline * R...2. Lotus Notes/Domino DeveloperLotus Notes/Domino Developer Full Time Regular posted 11/23/2009 Job Category MIS - Info Tech / Telecommunications Req ID 161695 Able to obtain security clearance? None Currently p...3. Lotus Notes/Domino DeveloperLotus Notes/Domino Developer Full Time Regular posted 12/8/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158386 Able to obtain security clearance? None Currently po...4. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/16/2009 Job Category MIS - Info Tech / Telecommunications Req ID 159027 Able to obtain security clearance? None Currently possess ...5. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/14/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158834 Able to obtain security clearance? None Currently possess ...6. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/13/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158730 Able to obtain security clearance? None Currently possess ...7. Lotus Notes DeveloperLotus Notes Developer Great opportunity for a Jr. Level Notes Developer!!!!!!!!!!!!!!! Client located in the Atlantic City area is looking for a Lotus Notes Developer for a long term assignment. The ...8. Lotus Notes DeveloperLotus Notes Developer Job Code: 1072 Location: GREENVILLE, SC US Travel Involved: Job Type: Temp. to Hire Job Level: Experienced (Non-Manager) over 5 yrs. Education: Bachelor's Degree Skills: Infor...9. Lotus Notes/ Domino Developer 3Title: Lotus Notes/ Domino Developer 3 Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: IT/099802 This job is eligible for theRefer a Friendprogram...10. Systems Engineer, Senior- Lotus Notes/Domino 8Req ID 34713BR Title Systems Engineer, Senior- Lotus Notes/Domino 8 Division MCTS-Mission,Cyber & Technology Solutions Group Location VIRGINIA Herndon Security Clearance Required Yes Clearance Level N...11. Lotus Notes DeveloperLotus Notes Developer Req. ID: 5980 # Positions: 1 Location: US-IN-Carmel Posted Date: 12/4/2009 Position Type: Full Time Apply for this career opportunity: * Apply for this opportunityonline * R...12. Lotus Notes/Domino DeveloperLotus Notes/Domino Developer Full Time Regular posted 11/23/2009 Job Category MIS - Info Tech / Telecommunications Req ID 161695 Able to obtain security clearance? None Currently p...13. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/13/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158730 Able to obtain security clearance? None Currently possess ...14. Lotus Notes/Domino DeveloperLotus Notes/Domino Developer Full Time Regular posted 12/8/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158386 Able to obtain security clearance? None Currently po...15. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/16/2009 Job Category MIS - Info Tech / Telecommunications Req ID 159027 Able to obtain security clearance? None Currently possess ...16. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/14/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158834 Able to obtain security clearance? None Currently possess ...17. Lotus Notes DeveloperLotus Notes Developer Great opportunity for a Jr. Level Notes Developer!!!!!!!!!!!!!!! Client located in the Atlantic City area is looking for a Lotus Notes Developer for a long term assignment. The ...18. Lotus Notes DeveloperLotus Notes Developer Job Code: 1072 Location: GREENVILLE, SC US Travel Involved: Job Type: Temp. to Hire Job Level: Experienced (Non-Manager) over 5 yrs. Education: Bachelor's Degree Skills: Infor...19. Lotus Notes/ Domino Developer 3Title: Lotus Notes/ Domino Developer 3 Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: IT/099802 This job is eligible for theRefer a Friendprogram...20. Lotus Notes Email Support Co-opLotus Notes Email Support Co-op Job Type: Full-Time Location: Syracuse, NY Last Updated: 11/03/2005 Job Description: Job Title: Lotus Notes Email Support co-op Department: Information Technology ...Закладки о Lotus Notes1. 企業向けGoogle デスクトップ検索 (Notesプラグイン) - Notes サポートのつぶやき2. FewClix : Overview : Prioritize your email!3. Notes on Productivity - "Wicked Cool" - David Allen Wishing for a Gtd Enabled Blackberry to Use with Lotus Notes4. Configuring Corporate Lookup for I-Phone with Lotus Notes Traveler5. WildFire from OpenNTF: update multiple social networks' statusWildFire is a Lotus Notes 8.5 Sidebar Application to Update Status's across a wide range of Social Networks including Sametime, Connections, Facebook, GTalk, PingFm, Plurk, Tumblr, Twitter, Wordpress and more!6. rendimiento discos SSD7. R58. AweSync 1.0.0.9 | AweSync9. IBM - Using the Domino server INI parameter Server_Max_Concurrent_Trans10. Optimizing server performance: Semaphores (Analysis of a Sem.Timeouts line sidebar)11. Lotus Notes and Domino notes.ini settings: A to E12. IBM - Download SwiftFile Mail Assistant for Notes Client 8.x13. The IBM Lotus Community IdeaJam by Elguji Software14. Optimizing server performance: Semaphores (Part 1)15. OpenNTF.org - WildFireSimilar to Ping.FM and hellotxt, this plugin enables ''write once; publish many x'' behavior between internal and external microblogging platforms / networks16. OpenNTF.org - Open Source Community for Lotus Notes DominoOpen Source development resource17. Lotus Notes/Domino 7 application performance: Part 1: Database properties and document collections18. Lotus Notes and Domino Custom Application Development and Modernization19. Wildfire 1.0 OverviewScreencast regarding the open source Lotus Notes plug-in called Wildfire, hosted on openntf.org, that updates your status on various places including plurk, sametime, connections, facebook, twitter, etc.20. Ch 8 --21. BlueMail22. QuickrTemplates: PandaBear23. Lotus Notes to IphoneИсточники знаний. Сайты с книгами
Lotus Notes. Видео и изображения1. David Allen: Killing Outlook Envy (by making Lotus Notes way cool)
Author: eProductivity
По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes |
В избранное | ||