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

JohnsonDiversey on Migrating 12,000+ user from Lotus Notes/ Domino to Google Apps in 48 hours


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

2009-10-17
Поиск по сайтам о Lotus Notes

Содержание:

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

Domino Designer 8.5.1 -- XPages in the Notes Client, Composite Applications, Mashups, and Portal!
Lotuscript XMLProcessor Class
XML

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

Lotus Notes 8.5.1 Preview Guide
Lotus Notes, йопт. а в головах дерево.
Выпуск рассылки "Lotus Notes/Domino -- РїСЂРѕРґСѓРєС‚ Рё РёРЅСЃС ...
kspam 1.7b
Customization updates for 8.5.1

Вакансии для специалистов (1)

Lotus Notes Developer - TS/SCI with Full Scope Poly

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

Trial download: Lotus Expeditor V6.2.1 toolkit
Domingo - Homepage
IBM Support Portal
Stumbled upon interesting URLs from the Notes 8 client - lekkimworld.com

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

JohnsonDiversey on Migrating 12,000+ user from Lotus Notes/ Domino to Google Apps in 48 hours
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















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

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

    1. Domino Designer 8.5.1 -- XPages in the Notes Client, Composite Applications, Mashups, and Portal!

    IBM Domino Designer 8.5.1 has significant new XPages capabilities that enable you to design an application just once and then run it without changes in a variety of platforms, including the Notes client. Get an overview of the new features, insight into what they mean to you, and step-by-step guidance on building applications using the new XPages features.

    2. Lotuscript XMLProcessor Class

    This class provides methods for XML structured data processing in Lotus Script. XML structure could be read from files or String variables and/or could be written to files or printed out as Text. There are methods which can be used to modify existing XML structure or XML structure could be built from scratch. Currently I'm working on XML transformation with XSLT feature and want to extend the power of DomQuery selector

    3. XML

    %REM
    Copyright 2009 TietoEnator Alise (developed by Arturs Mekss) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. %END REM Type NodeQuery
    nodeName As String
    subNodeName As String
    subNodeValue As String
    nth As Integer
    End Type %REM
    Version: 0.8.0
    Author: AMe
    Purpose: This class provides methods for XML structured data processing in LotusScript. XML structure could be read from files or String variables and/or could be written to files or printed out as Text. There are methodes which can be used in order to modify existing XML structure or XML structure
    could be built from scarch
    Methods: - isReady() As Boolean - parseString(sourceStr As String) As Boolean
    - parseFile(sourceFilePath As String) As Boolean - toStream() As NotesStream
    - toText() As Boolean
    - toFile(targetFilePath As String) - appendElementNode(pNode As NotesDOMElementNode, nodeName As String, nodeValue As String, altNodeValue As String) As NotesDOMElementNode
    - selectNode(elementNode As NotesDOMElementNode, query As String) As NotesDOMElementNode
    - getNodeValue(elementNode As NotesDOMElementNode, altVal As String) As String
    Examples: '1. Build XML from scrach and store to file
    Dim xml As XMLProcessor
    Dim personNode As NotesDOMElementNode
    Set xml = New XMLProcessor("persons")
    Set personNode = xml.appendElementNode(Nothing, "person", "", "") 'if parent node is Nothing then root node will be used as parent node
    Call xml.appendElementNode(personNode, "name", "Bart", "")
    Call xml.appendElementNode(personNode, "sureName", "Simpson", "")
    Set personNode = xml.appendElementNode(Nothing, "person", "", "")
    Call xml.appendElementNode(personNode, "name", "Jonny", "")
    Call xml.appendElementNode(personNode, "sureName", "Bravo", "")
    Call xml.toFile("D:\WORK_TMP\xml\persons.xml") '2. Read XML from file and print it as a plain text
    Dim xml As XMLProcessor
    Set xml = New XMLProcessor("")
    Call xml.parseFile("D:\WORK_TMP\xml\persons.xml")
    Call xml.toText() '3. Read XML from file and get values via selector
    Dim xml As XMLProcessor
    Dim node As NotesDOMElementNode
    Set xml = New XMLProcessor("")
    Call xml.parseFile("D:\WORK_TMP\xml\persons.xml")
    Set node = xml.selectNode(Nothing, "person:2>name")
    MessageBox xml.getNodeValue(node, "-")
    Set node = xml.selectNode(Nothing, "person(name=Bart)>sureName")
    MessageBox xml.getNodeValue(node, "-") %END REM
    Class XMLProcessor 'General variables
    Private session As NotesSession
    Private objIsReady As Boolean 'Object is properly initialized 'XSLT variables
    Private isXSLTDefined As Boolean
    Private XSLT As NotesStream 'InputStream variables
    Private InputStream As NotesStream 'OutputStream variables
    Private outputStream As NotesStream 'DOM variables
    Private domparser As NotesDOMParser
    Private domdoc As NotesDOMDocumentNode
    Private rootNode As NotesDOMElementNode 'PUBLIC Scope: Public Sub new(rootNodeName As String)
    On Error Goto errh
    Dim piNode As NotesDOMProcessingInstructionNode
    Set Me.session = New NotesSession If rootNodeName <> "" Then
    Set domParser=session.CreateDOMParser
    Set domdoc = domparser.Document
    Set piNode = domdoc.CreateProcessingInstructionNode(|xml|, |version="1.0" encoding="UTF-8"|)
    Call domdoc.appendChild(piNode)
    Set rootNode = domdoc.CreateElementNode(rootNodeName)
    Call domdoc.appendChild(rootNode)
    Me.objIsReady = True
    End If Exit Sub
    errh: Call Me.onError()
    Exit Sub
    End Sub Public Sub Delete
    On Error Goto errh ' -- Closing opened resources
    ' closing xslt stream
    If Me.isXSLTDefined Then Call Me.XSLT.Close()
    'closing output stream
    If Not Me.outputStream Is Nothing Then Call Me.outputStream.Close
    'closing input stream
    If Not Me.inputStream Is Nothing Then Call Me.inputStream.Close Exit Sub
    errh: Call Me.onError()
    Exit Sub
    End Sub Public Function isReady() As Boolean
    isReady = Me.objIsReady
    End Function Public Function parseString(sourceStr As String) As Boolean
    On Error Goto errh If Me.createDOMParserFromSource(sourceStr) Then
    parseString = True
    Me.objIsReady = True
    End If Exit Function
    errh: Call Me.onError()
    Exit Function
    End Function Public Function parseFile(sourceFilePath As String) As Boolean
    On Error Goto errh Set Me.InputStream = session.CreateStream()
    If Me.InputStream.Open(sourceFilePath, "UTF-8") Then
    If Me.InputStream.Bytes = 0 Then Error 3000, "File does not exist or is empty: " + sourceFilePath
    If Me.createDOMParserFromSource(Me.InputStream) Then
    parseFile = True
    Me.objIsReady = True
    End If
    E

    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. Lotus Notes 8.5.1 Preview Guide

    The Notes 8.5.1 Preview Guide is a colorful PDF, showing you what's new in Notes 8.5.1 and what's changed since the last release. This preview guide also includes links to additional learning material

    2. Lotus Notes, йопт. а в головах дерево.

    Lotus Notes, йопт. а в головах дерево.

    3. Выпуск рассылки "Lotus Notes/Domino -- РїСЂРѕРґСѓРєС‚ Рё РёРЅСЃС ...

    Large_Objects * DebugNSL * Ole к лотусине на Citrix * Неоправданно сильный рост базы - как побороть? * отбор документов по Lotus Name * отбор документов по Lotus Name

    4. kspam 1.7b

    Уважаемые коллеги.
    Есть Домино версии 7, есть kspam 1.7b..
    Стоит задача прикрутить это добро к друг другу.. Опыту мало..
    Произвожу необходимые действия по инструкции прилагаемой в тузлой..
    1. Билиотеку nspam.dll закидываю в корневой каталог Домино
    2. Каталог с kapam помещаю в Data1
    3. Открываю KSpamCon.ntf создаю Конфигурацию значения по дефолту
    4. Создаю руле на запрещение с приоритетом 15 так же по инструкции..
    5. Прописываю строку Extmgr_addins=spam в notes.ini

    Собственно все..? Как отследить функционирует ли kspam?
    Как управлять kspam, наблюдать за активностью работы kspam ?
    У кого есть опыт в настройке kspam поделитесь..

    5. Customization updates for 8.5.1

    There have been several customization improvements in 8.5.1. The major difference is that all customization forms and subforms have been moved to a separate file called the Extension Forms File. If
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Вакансии для специалистов

    1. Lotus Notes Developer - TS/SCI with Full Scope Poly

    Job Responsibilities:Support several Enterprise-level Lotus Notes Collaborative applications and will provide Tier Three (expert) support (for escalated issues) for a production Domino 24 x 7 Environm...

    Закладки о Lotus Notes

    1. Trial download: Lotus Expeditor V6.2.1 toolkit

    RT @developerworks: Lotus Expeditor V6.2.1 toolkit, IBM's universal desktop client integration framework - free http://bit.ly/3BZE0u [from http://twitter.com/robinhowlett/statuses/4865406275]

    2. Domingo - Homepage

    3. IBM Support Portal

    4. Stumbled upon interesting URLs from the Notes 8 client - lekkimworld.com

    notes:///clientbookmark?openworkspace notes:///clientbookmark?openreplication

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


    "Красные книги" 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

    В избранное