Отправляет email-рассылки с помощью сервиса Sendsay
  Все выпуски  

Lotus Notes Social Edition - Home Page


Lotus Notes/Domino -- продукт и инструмент. Выпуск: 494

2012-01-20
Поиск по сайтам о Lotus Notes

Содержание:

Новости о ПО Lotus Notes (2)

МБРР ищет поставщика услуг по сопровождению СЭД «БОСС-Референт» - CNews.ru
IBM расширяет инициативу в области социального бизнеса - CRN/RE (пресс-релиз)

CodeStore. Коды Примеры Шаблоны (2)

Writing LESS CSS
The Sametime 8.5.x Proxy Server, Web Client, and RESTful APIs -- An Introduction

Интенет эфир о Lotus Notes. Блоги и форумы (7)

Наверное, ты не работал с Lotus Notes в качестве почтовика.
Выпуск рассылки "Бюллетень "Lotus Notes CodeStore" No 488 от 2012-01-18" от 18 ...
Ibm lotus domino enterprise server
Ibm lotus domino server
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 486" от 17 ...
nbIBo :-): Lotus notes 8.0.2 IBM
APC Smart-UPS SU1400RMXLI3U

Закладки о Lotus Notes (22)

eProductivity™ - The Ultimate Personal Productivity Tool for Lotus Notes™
Practical Web services in IBM Lotus Domino 7: Writing and testing simple Web services
Damien Katz: Formula Engine Rewrite
OpenNTF.org - Open Source Community for Lotus Notes Domino
Tutorial: Introduction to XPages
How to access CGI variables in XPages
nsftools - Lotus Notes Performance Tips
How To Add an Email Signature in Lotus Notes 8.5 - Everything Email
Lotus Notes to Google Calendar tool | Download Lotus Notes to Google Calendar tool software for free at SourceForge.net
IBM Lotus Domino and Notes Information Center
IBM Lotus Domino and Notes Information Center
http://www.openntf.org/xspext/xpages%20extension%20library%20documentation.nsf/xpages-doc/Controls.html
Ed Brill
BizzyBee’s BizzyThoughts » Blog Archive » Notes 8 and Notes 7 coexistence
BizzyBee’s BizzyThoughts » Blog Archive » Notes 8 and Notes 7 coexistence
assonos blog :: SnTT: Installing and running Notes R5, 6, 7 and 8 concurrently
assonos blog :: SnTT: Installing and running Notes R5, 6, 7 and 8 concurrently
IBM - Recommendations for setting NSF_BUFFER_POOL_SIZE_MB
Notes/Domino 6 and 7 Forum : Date\All (Threaded)
IBM Education Assistant - Lotus software
http://www.templatekit.com/lotusnotes1.php
AweSync | Synchronizes your Google Calendar, Contacts and Tasks with Lotus Notes

Lotus Notes. Видео и изображения (1)

Lotus Notes Social Edition - Home Page
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















Блиц опрос
Материалы на английском
(голосование возможно только из письма рассылки)
  • Нормально. Могу читать
  • Не годиться. Хочу только на русском
  • Новости о ПО Lotus Notes

    1. МБРР ищет поставщика услуг по сопровождению СЭД «БОСС-Референт» - CNews.ru


    МБРР ищет поставщика услуг по сопровождению СЭД «БОСС-Референт»
    CNews.ru
    «Московский банк реконструкции и развития» (АКБ МБРР) объявил о проведении открытого запроса предложений для выбора поставщика услуг по сопровождению системы электронного документооборота «БОСС-Референт» 3.2.4 и программных средств Lotus Notes\Domino. К участию в закупочной процедуре ...

    2. IBM расширяет инициативу в области социального бизнеса - CRN/RE (пресс-релиз)


    IBM расширяет инициативу в области социального бизнеса
    CRN/RE (пресс-релиз)
    IBM также сотрудничает со своим бизнес-партнером Group Business System, помогая клиентам конвертировать приложения IBM Lotus Notes в приложения, доступные в Интернете или через мобильные устройства. Новые услуги IBM помогут клиентам сохранить ценность их инвестиций, сделанных в платформу Lotus ...

    и другие »
    Компания ПУЛ - разработка приложений на Lotus Notes/Domino

    CodeStore. Коды Примеры Шаблоны

    1. Writing LESS CSS

    Of all the code I write my CSS is probably the messiest and least well-maintained. While I get near-obsessed over the tidiness of other "actual" code I often find my CSS is a complete mess.

    When coding I try and follow the DRY approach but with CSS am usually "happy" to duplicate rules over and over; copy and pasting all over the place until CSS files become unmanageable.

    Writing CSS if no fun! Especially when you get to the nitty gritty of vendor-specific stuff in CSS3 like border radiuses, background gradients and drop shadows. If you plan on embracing CSS3 then you might want to read on for a better way to code CSS.

    A Better Way

    Writing CSS should be more like programming - with variables, methods and the like. This is where LESS steps in - calling itself a "dynamic stylesheet" - it lets you use variables, operators, functions and arguments.

    LESS is how CSS should have been implemented in the first place!

    Show Me Some LESS

    Here's a basic example of some LESS code:

    @the-border: 1px;
     base-color: #111;
     red:        #842210;
    
    #header {
      color: @base-color * 3;
      border-left: @the-border;
      border-right: @the-border * 2;
    }
    #footer { 
      color: @base-color + #003300;
      border-color: desaturate(@red, 10%);
    }

    When the above code is passed through the LESS "compiler" you get the following CSS out the other end:

    #header{
     color:#333333;
     border-left:1px;
     border-right:2px;
    }
    #footer{
     color:#114411;
     border-color:#7d2717;
    }
    

    Perhaps that's enough to convince you of the need to use LESS? If not, read on.

    Getting a bit more advanced let's look at another example:

    input{
     .border-radius(8px);
     .inner-shadow();
    }

    The CSS outputted for the above LESS code is:

    input{
        -webkit-border-top-right-radius:8px;
        -webkit-border-bottom-right-radius:8px;
        -webkit-border-bottom-left-radius:8px;
        -webkit-border-top-left-radius:8px;
        -moz-border-radius-topright:8px;
        -moz-border-radius-bottomright:8px;
        -moz-border-radius-bottomleft:8px;
        -moz-border-radius-topleft:8px;
        border-top-right-radius:8px;
        border-bottom-right-radius:8px;
        border-bottom-left-radius:8px;
        border-top-left-radius:8px;
        -webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.4);
        -moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.4);
        box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.4);
    }
    

    Which would you rather maintain - the LESS or the CSS? If you want to change the border radius to 6px you'd have to do it in about a dozen places in CSS, compared to 1 place in LESS. Sold on the idea yet? You ought to be!

    In the LESS code above the .border-radius() and .inner-shadow() bits are what's known as "mixins" in LESS parlance. You can write your own mixins but I just downloaded a load of predefined ones called "LESS Elements". This gives you a file called elements.less which you need to include in your LESS code before using the mixins. So the LESS code I pasted above should actually have been this:

    @import "elements.less";
    
    input{
     .border-radius(8px);
     .inner-shadow();
    }

    For a good example of advanced use of LESS download Bootstrap and take a look at how they organise their LESS files and how it all works.

    If you do any decent amount of CSS coding then I'd say it's worth your while looking at how using LESS could help with that. I love it!

    I've only really scraped the surface of what it can do in this post. To get a better example, take a look the LESS website and the Bootstrap code.

    Where to Write LESS?

    The best way I've found to write LESS code and compile to CSS is with the Crunch App, which you can see below:

    image

    There's a .Net version with which you can write LESS directly in Visual Studio and have .Net produce a cacheable CSS file from it - on the fly!

    If you're a Domino developer then you'll have to resign yourself to the idea of maintaining the CSS outside of Domino Designer. Although I guess you could use WebDAV to save CSS files directly in to the NSF? That's a rainy day project I guess...

    Click here to post a response

    2. The Sametime 8.5.x Proxy Server, Web Client, and RESTful APIs -- An Introduction

    Discover the Sametime 8.5.x Proxy server and its new client for browsers and iPhone. Learn what the Proxy server does, how it works, and the ways that you can add Sametime presence to Web sites using the powerful APIs exposed in the server's Browser Client toolkit.

    If you don't have an IBM ID and password, register here.

    By clicking Submit, you agree to the developerWorks terms of use.

    The first time you sign into developerWorks, a profile is created for you. Select information in your developerWorks profile is displayed to the public, but you may edit the information at any time. Your first name, last name (unless you choose to hide them), and display name will accompany the content that you post.

    All information submitted is secure.

    The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerworks.

    Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

    By clicking Submit, you agree to the developerWorks terms of use.

    All information submitted is secure.

    Lotus Sandbox archived

    The Lotus Sandbox was closed to all new submissions in 2007. Downloads of previous submissions were still available as an archived resource following that closure, but effective September 2010, downloads from the Lotus Sandbox are no longer available.

    If you need to contact us regarding the removal of the Lotus Sandbox, please use our feedback form.

    Resources for samples and templates

    If you are looking for samples and templates for use with Lotus products, please use these resources:

    • IBM Lotus and WebSphere Portal Business Solutions Catalog
      The IBM Lotus and WebSphere Portal Business Solutions Catalog on Lotus Greenhouse is a rich, Web 2.0 style catalog designed to dynamically deliver widgets, plug-ins, portlets, and sample applications across the entire Lotus and WebSphere Portal software portfolio.
    • OpenNTF.org
      OpenNTF is devoted to enabling groups of individuals all over the world to collaborate on IBM Lotus Notes/Domino applications and release them as open source, providing a framework for the community so that open source applications may be freely distributed, using widely accepted licensing terms, and increasing the quality and quantity of templates, applications and samples that are shared by the community.
    Help: Update or add to My dW interests

    What's this?

    This little timesaver lets you update your My developerWorks profile with just one click! The general subject of this content (AIX and UNIX, Information Management, Lotus, Rational, Tivoli, WebSphere, Java, Linux, Open source, SOA and Web services, Web development, or XML) will be added to the interests section of your profile, if it's not there already. You only need to be logged in to My developerWorks.

    And what's the point of adding your interests to your profile? That's how you find other users with the same interests as yours, and see what they're reading and contributing to the community. Your interests also help us recommend relevant developerWorks content to you.

    View your My developerWorks profile

    Return from help

    Help: Remove from My dW interests

    What's this?

    Removing this interest does not alter your profile, but rather removes this piece of content from a list of all content for which you've indicated interest. In a future enhancement to My developerWorks, you'll be able to see a record of that content.

    View your My developerWorks profile

    Return from help

    Интенет эфир о Lotus Notes. Блоги и форумы

    1. Наверное, ты не работал с Lotus Notes в качестве почтовика.

    Наверное, ты не работал с Lotus Notes в качестве почтовика.

    2. Выпуск рассылки "Бюллетень "Lotus Notes CodeStore" No 488 от 2012-01-18" от 18 ...

    Вышел новый выпуск рассылки "Бюллетень "Lotus Notes CodeStore" No 488 от 2012-01-18".

    3. Ibm lotus domino enterprise server

    Ibm lotus domino enterprise server

    4. Ibm lotus domino server

    Ibm lotus domino server

    5. Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 486" от 17 ...

    Помощник специалиста по разработке/поддержке баз Lotus Domino * Надо же, извращенцы Lotus Notes еще существуют, думал что эта злобная финтифлюшка * Выпуск рассылки "Бюллетень "Lotus Notes CodeStore" No 487 от 2012-01-16" от 16 ... * asphyx: * Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент.

    6. nbIBo :-): Lotus notes 8.0.2 IBM

    7. APC Smart-UPS SU1400RMXLI3U

    Compaq Insight Manager plug-in, LanDesk Server Manager plug-in, Lotus Notes/Domino Shutdown, Netfinity plug-in, PowerChute plus for Novell NetWare v4.3.2, PowerChute plus for SCO Unix v4.2.2, PowerChute plus for Windows 95/98/ME v5.0.2, PowerChute plus for Windows NT on Intel v5.1.1 K
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Закладки о Lotus Notes

    1. eProductivity™ - The Ultimate Personal Productivity Tool for Lotus Notes™

    2. Practical Web services in IBM Lotus Domino 7: Writing and testing simple Web services

    3. Damien Katz: Formula Engine Rewrite

    4. OpenNTF.org - Open Source Community for Lotus Notes Domino

    5. Tutorial: Introduction to XPages

    6. How to access CGI variables in XPages

    7. nsftools - Lotus Notes Performance Tips

    8. How To Add an Email Signature in Lotus Notes 8.5 - Everything Email

    9. Lotus Notes to Google Calendar tool | Download Lotus Notes to Google Calendar tool software for free at SourceForge.net

    10. IBM Lotus Domino and Notes Information Center

    11. IBM Lotus Domino and Notes Information Center

    12. http://www.openntf.org/xspext/xpages%20extension%20library%20documentation.nsf/xpages-doc/Controls.html

    13. Ed Brill

    14. BizzyBee’s BizzyThoughts » Blog Archive » Notes 8 and Notes 7 coexistence

    15. BizzyBee’s BizzyThoughts » Blog Archive » Notes 8 and Notes 7 coexistence

    16. assonos blog :: SnTT: Installing and running Notes R5, 6, 7 and 8 concurrently

    17. assonos blog :: SnTT: Installing and running Notes R5, 6, 7 and 8 concurrently

    18. IBM - Recommendations for setting NSF_BUFFER_POOL_SIZE_MB

    19. Notes/Domino 6 and 7 Forum : Date\All (Threaded)

    20. IBM Education Assistant - Lotus software

    21. http://www.templatekit.com/lotusnotes1.php

    22. AweSync | Synchronizes your Google Calendar, Contacts and Tasks with Lotus Notes

    Источники знаний. Сайты с книгами


    "Красные книги" IBM

    Книги компании IBM по специализированным тематикам о Lotus Software. Основной язык - английский форматы pdf и html

    Книги компании "Интертраст"

    Для администраторов разработчиков и пользователей. Настройка и администрирование, разработка и программирование, пользование системой Lotus Notes
    Документация. YellowBook
    Оригинальная документация по продуктам Lotus Software. Язык англыйский. Форматы pdf html nsf
    IBM Пресс
    Книги от компании IBM. Книги и брошуры на заказ и на бесплатную скачку в формате pdf
    КУДИЦ-ПРЕСС
    Просмотр и заказ книг. Некоторые книги возможно скачать в формате pdf для свободно чтения и просмотра.
    Книги о Lotus Notes в Интернете
    Ссылки на книги и методички находящиеся в свободном пользовании. Ветки форумов обсуждения книг и материалов. Поисковый сервер по хелпам Lotus Notes книги от Google для свободного просмотра

    Lotus Notes. Видео и изображения

    1. Lotus Notes Social Edition - Home Page

    ed brill posted a photo:

    Lotus Notes Social Edition - Home Page

    The new home page incorporates an updated user interface, inbox and calendar widgets, and an activity stream.

    В избранное о Lotus Notes/Domino В подготовке выпуска использовались материалы и знания
    По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes

    В избранное