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

AweSync | Lotus <-> Google Calendar Synchronization Tool


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

2010-01-23
Поиск по сайтам о Lotus Notes

Содержание:

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

IBM Lotus поддерживает мобильные платформы - PC Week/RE
Развитие систем коллективной работы - Компьютерная газета
Компания «Поликом Про» выполнила для компании «Синергия» пилотный проект по внедрению системы защиты электронной почты IBM LOTUS PROTECTOR FOR MAIL SECURITY. - Пресс-релиз.ру (пресс-релиз)

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

Flex App Basics 5: Managing Document Attachments | Blog

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

Нужна не большая помощь
Нужна очень срочно ваша помощь

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

AweSync | Lotus &lt;-&gt; Google Calendar Synchronization Tool
Notes/Domino 6 and 7 Forum : RE: How to import file and create automaically document in DB
IBM Lotus Notes 8.5 iCalendar: Interoperability, implementation, and application
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















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

    1. IBM Lotus поддерживает мобильные платформы - PC Week/RE


    IBM Lotus поддерживает мобильные платформы
    PC Week/RE
    IBM также анонсировала планы по расширению своего предложения корпоративного уровня для мобильного обмена сообщениями и в будущей версии Lotus Notes Traveler — бесплатного программного обеспечения, доступного для загрузки пользователями Lotus Notes, и позволяющего осуществлять двунаправленную ...

    и другие »

    2. Развитие систем коллективной работы - Компьютерная газета


    Развитие систем коллективной работы
    Компьютерная газета
    Проект IBM Project Vulcan призван помочь разработчикам в создании новых поколений приложений, управляемых принципами коллективной работы. Возможности IBM Project Vulcan найдут свое воплощение в будущих версиях таких продуктов как LotusLive, Lotus Notes and Domino, Lotus Connections, ...

    3. Компания «Поликом Про» выполнила для компании «Синергия» пилотный проект по внедрению системы защиты электронной почты IBM LOTUS PROTECTOR FOR MAIL SECURITY. - Пресс-релиз.ру (пресс-релиз)


    Компания «Поликом Про» выполнила для компании «Синергия» пилотный проект по внедрению системы защиты электронной почты IBM LOTUS PROTECTOR FOR MAIL SECURITY.
    Пресс-релиз.ру (пресс-релиз)
    В дальнейшем в ходе проекта проводилась тонкая настройка механизмов защиты с учётом специфики Заказчика. Разработчиками компании «Поликом Про» также была проведена доработка почтового приложения Lotus Notes, дающая возможность пользователям простым нажатием кнопки отправлять пропущенный спам ...

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

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

    1. Flex App Basics 5: Managing Document Attachments | Blog

    The eagle-eyed among you noticed there was no way of adding/removing attachments in the Contact Manager demo. That's no longer the case. I present to you my brand spanking new "Flex Attachment Manager" component for Domino:

    Think that looks good? Wait till you see it in action! Forgive me for saying so, but I think it's quite slick.

    Open the database and then open an existing document from the view (it could work on a new document, in theory, but doesn't yet). Scroll a bit down the document and you should see the Attachments area. Browse your PC and upload files (size limit of 100kb).

    Notice that when you click upload (after a brief pause) the list of file icons should update to include your new one. this isn't trickery - it's actually POSTed the file to the server and then received an updated list of attachments in return. If you see an icon for it on the document then it exists on the backend document. Click to open it if you don't believe me.

    In a similar fashion, when you click remove it will update the remove the file from the backend document and receives an updated list of files, which re-renders on the right-hand-side. Not sure I like how final the remove button is. Press it and the file's gone! In the real world I think an "Are you sure?" prompt might be in order.

    Note that with both uploading and removing you don't actually need to save the document in order to commit the changes.

    With it being a component, adding all this functionality to your form is as easy as this:

    <mx:FormHeading label="Attachments"/>
    <mx:FormItem width="100%"> <form:FileManager docPath="{parentApplication.basePath + '0/'+this.doc.@id}" files="{XML(this.doc.files)}" width="100%" fileSizeLimit="100000"> <form:fileFilters> <mx:Object extension="*.pdf;*.txt;*.doc*;*.xls*" description="Documents"/> <mx:Object extension="*.jpg;*.gif;*.png" description="Images"/> <mx:Object extension="*.zip;*.jar" description="Archives"/> </form:fileFilters> </form:FileManager>
    </mx:FormItem>

    Here we're adding a new object derived from the FileManager component and passing in to it an array of file types it will allow the user to upload, as well as telling it what files exist now and what the maximum allowed file size is. All the code itself lives inside the component, making it easy to add the same functionality to more than one form.

    The code for uploading the files is something I've talked about before and relies on the DominoDisableFileUploadChecks=1 Notes.ini parameter.  The code for removing files uses the %%Detach trick, which I first wrote about exactly 9 years ago to the day (now there's a spooky coincidence!).


    developerWorks  >  Lotus  >  Forums & community  >  Lotus Sandbox

    Lotus Sandbox


    Go back

    2 Extended Attachment Edition
    Edit and handle Attachments in Notes 4 the same way as in Notes 6
    A new Approach - Web-based Date Picker
    Web-based date picker that displays company sponsored holidays
    A new approach - Web-based NAB
    A Web-based NAB with simple search function
    A self-guided tour of Domino Domain Monitoring (DDM)
    The attached presentation (ddm.ppt) is a self-guided tour of Domino Domain Monitoring (DDM).
    A simple method to use File Upload Controls on the Web.
    For identifying/using file upload controls on the Web.
    Access Level
    Displays User Access Level in DB - no need to know your group membership.
    Accidents Reports
    Simple application for reporting and monitoring industrial accidents.
    Account Manager
    Manages accounts, profiles, and contacts.
    ACL Audit Tool
    Tool to perform an ACL audit of databases/templates on a Domino server.
    ACL backup and restore functions in LotusScript
    LotusScript agents saving ACLs in NotesDocuments and restoring them back to DBs ACL
    ACL Scanner
    Creates reports about ACLs on all databases on one server, and recurses groups.
    ACL Setter
    Allows you to modify a database ACL without manager access on a server.
    ACL "Modificator" 1.0
    Add ACL entries in multiple databases.
    Acme Standard Interface and Acme News databases
    Sample databases from the Iris Today article Building standard interfaces without changing your applications.
    Acme.nsf and Zippy.nsf
    Sample databases Acme.nsf and Zippy.nsf referenced in the Iris Today article "Exercising XML with Domino Designer."
    Action button to initiate replication on server
    This Action code uses defined Connection documents to start immediate replication through remote console on source server
    Action Button to set Internet Password
    Action Button to set Internet Password
    Add business holidays to the user's calendar
    Quick and dirty code to add business holidays to the user's calendar using front end classes.
    Add sound to a Notes form
    Add Sound Recorder to your e-mail template.
    Add System DBs
    Adds MAIL.BOX, SMTP.BOX, LOG.NSF, etc. from every available server to your workspace.
    Address Book Servlet v1.0
    Address Book servlet provides an interface similar to address book dialog box in Lotus Notes client
    Admin-Dev Tools 2.0
    Tools for day to day admin tasks. Updated from the original version.
    Admin ACL 2
    AdminACL is an application that allows you to add any ACL entry with any level to any database you want even if you do not have access to it.
    Admin Helper
    Find Orphan mail files, check the Out of Office agent owner and the Calendar Profile owner of mail file for existing users.
    AdminACL
    This tool allows you, the administrator, to add any group, user, and server to any databases in you organization (in one agent).
    Advanced Settings sample database
    This database includes an advanced version of the Application Settings tool described in the Iris Today article "Application settings tool: an alternative to profiles" by Jonathan Coombs.
    Advanced View Techniques
    Interesting ways to display views using applets & print selected documents from View Applet
    Advanced XML for Notes
    Advanced XML techniques with Domino using data binding and Notes queries
    Advertising server
    Serves advertisements from an internally maintained list.
    Agent to Compare 2 Documents in R5
    Agent to Compare 2 Documents in R5 (works with RTF fields, too).
    Agentless thread map database sample
    Demonstrates a technique for generating thread maps in an application without the use of a background agent.
    agentShowInternetHeaders
    LotusScript agent to show Internet "received" headers
    Alarm/Reminder setting from another application
    Set an alarm or reminders in a user's calendar from another application
    Alex & Dilbert Cartoon Retrieval Agent
    Database to retrieve and email Dilbert and Alex Cartoons
    Allow value not in list
    To improve Allow value not in list on the WEB
    Allow values not in list combo for web
    Combo box with allow values not in list for IE5 and above, Netscape 6 and above
    Alternate Color Rows View in a Web Browser - Version 3
    Alternate Color Rows View Version 3 - More features
    AntiSpamFilter Agent
    Anti-spam agent and design elements to enhance spam mail filtering in the standard Notes mail template.
    API Goodies for Lotus Notes
    Control various Win API settings from inside Notes.
    AppleScript code examples for Notes
    This database contains additional programming examples for AppleScript in Notes.
    Application Development Documentation Library
    Allows developers of a systems group to store their documentation.
    Archive on CD-ROM
    Agent to archive on CD-ROM.
    Archive Options
    Archive your mail db by dates or by sizes.
    ArraySort
    An array sort using a fast shell sort algorthim
    Article "Notes application strategies: Document rating" sample database
    Sample database that accompanies the article, "Notes application strategies: Document rating"
    Article "Notes application strategies: Interactive search" sample database
    Sample database to accompany the article, "Notes application strategies: Interactive search."
    Article "Notes application strategies: Mail Processor" sample database
    Sample database to accompany the article, "Notes application strategies: Mail Processor."
    Article "Notes application strategies: User activity tracking" sample database
    Sample database to accompany the article "Notes application strategies: User activity tracking"
    ASP SendMail for Notes/Domino
    Very simple program in VBScript that sends mail in ASP / WSH natively through Notes/Domino
    Audio CD Tracking
    Keeps track of 100 CD changer and CD collection

    Go back


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

    1. Нужна не большая помощь

    Здравствуйте, помогите пожалуйста как и каким способом можно решить эту задачу, я новичок и еще многое не знаю в лотусе.
    ...

    2. Нужна очень срочно ваша помощь

    Здравствуйте, помогите пожалуйста как и каким способом можно решить эту задачу, я новичок и еще многое не знаю в лотусе.
    ...
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Источники знаний. Сайты с книгами


    "Красные книги" 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/Domino В подготовке выпуска использовались материалы и знания
    По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes

    В избранное