Lotus

Best practices for version control for Lotus Notes/Domino development

不羁岁月 提交于 2019-12-21 10:22:40
问题 Please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to place it back in Notes Designer as a whole file). 回答1: The openntf project Design Catalog can be used for version control. It uses dxl technique mentioned by kerr. www.openntf.org

Best practices for version control for Lotus Notes/Domino development

泄露秘密 提交于 2019-12-21 10:22:34
问题 Please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to place it back in Notes Designer as a whole file). 回答1: The openntf project Design Catalog can be used for version control. It uses dxl technique mentioned by kerr. www.openntf.org

lotus v0.1.3 升级到 v0.1.4

被刻印的时光 ゝ 提交于 2019-12-20 20:29:32
lotus 升级到 v0.1.4 1,lotus 升级到 v0.1.4 1,lotus 升级到 v0.1.4 # git pull origin master From https://github.com/filecoin-project/lotus * branch master -> FETCH_HEAD Updating 41aef3d2..8f1c2b7a error: Your local changes to the following files would be overwritten by merge: go.sum Please commit your changes or stash them before you merge. Aborting # git reset --hard HEAD is now at 41aef3d2 Merge pull request #984 from filecoin-project/feat/tag-good-peers # git pull origin master From https://github.com/filecoin-project/lotus * branch master -> FETCH_HEAD Updating 41aef3d2..8f1c2b7a 来源: CSDN 作者: mixboot

Lotus Notes Java app can’t find notes.ini

时间秒杀一切 提交于 2019-12-20 03:06:19
问题 Both the systems described are Windows XP with Lotus Notes 8.5. I have a Java app (sample code below) that uses notes.jar to interact with Lotus Notes. The app works fine on a system that has notes.ini in the Lotus install dir of c:\Program Files\Lotus\Notes and the user ID file is in c:\Program Files\Lotus\Notes\Data . The user has to type a password to login to Lotus. This system has HKLM\Software\Lotus\Notes\MultiUser set to 0 (single user system). On this machine, the below code displays

Lotus notes get attachment names from document

落花浮王杯 提交于 2019-12-19 04:12:39
问题 I'm developing an Lotus Notes plug-in for Notes 8.5.2 that saves the attachments from an eMail to the Harddisk. But when I try to read the attachment names from a Notes document I always get the same string containing the first attachment name + some junk data. protected Vector<String> getAttachmentNames() throws NotesException, IOException { Vector<String> attachmentNames = new Vector<String>(); Item item = null; Enumeration<?> itemsEnum = mailDoc.getItems().elements(); while (itemsEnum

Xpages HTTP Web Server: Command Not Handled Exception HTTP Code: 500

≯℡__Kan透↙ 提交于 2019-12-18 07:23:15
问题 Problem I have an Xpage working properly on the test Domino server. On production Domino server it can not be opened, Http 500 error displayed. The two servers has different access control settings in the server document, but the signer of the application (production server) is listed in all programmability restrictions field except "Sign script libraries to run on behalf of someone else" field. Server log [25A4:0014-1604] 2012.11.07 14:06:30 HTTP JVM: SEVERE: CLFAD0141E: Error processing

Are JAR files in WebContent/WEB-INF/lib available to Java design elements in Domino Designer?

故事扮演 提交于 2019-12-17 20:37:28
问题 When using Domino Designer 8.5.3, I have a bunch of custom classes added using the Java design element. I want to use a 3rd party JAR in my custom classes in the same way you would when using external JARs in xPages SSJS, via Package Explorer: WebContent-->WEB-INF-->lib However my custom classes aren't picking the JAR up. Is this a known limitation or have I got my configuration screwed up somewhere? 回答1: They are after you do: Project -> Properties -> Java Build Path -> Libraries -> Add JARS

ubuntu lotus testnet-staging

青春壹個敷衍的年華 提交于 2019-12-17 17:19:48
ubuntu lotus testnet-staging 1,创建lotus运行目录 2,安装依赖 3,~~下载测试分支`v0.1.1`~~ 3.1,~~lotus升级~~ 4,创建矿工 5,运行矿工 5.1,存储数据 1,创建lotus运行目录 挂载磁盘,创建运行目录 # mkfs.ext4 /dev/sdc # mkdir /storage # mount /dev/sdc /storage/ # mkdir /storage/lotuswork 设置环境变量 # vim .bashrc export LOTUS_STORAGE_PATH=/storage/lotuswork/lotusstorage export LOTUS_PATH=/storage/lotuswork/lotus export WORKER_PATH=/storage/lotuswork/lotusworker # source .bashrc # echo $LOTUS_STORAGE_PATH /storage/lotuswork/lotusstorage Filecoin证明参数放在其他目录中 设置环境变量 FIL_PROOFS_PARAMETER_CACHE 默认目录 const paramdir = "/var/tmp/filecoin-proof-parameters" const

How to create an auto incrementing field in lotus domino?

你离开我真会死。 提交于 2019-12-17 17:07:36
问题 I have an application in lotus domino with a field UNIDID -number(computed)... I want that every time a new entry is created, this field to increment by 1 and the new value should be stored in new record document.. I have a @dbcolumn formula which will get me the last entry in the UNIDID field- mFind:=@DbColumn("" : "NoCache" ; @DbName ; "lkpEmpMasterbyOnlyUnidCode";1); How do I increment mFind and submit it in form of ' UNIDXXXX '? 回答1: Employ document locking to assure number uniqueness in

How to create an auto incrementing field in lotus domino?

梦想与她 提交于 2019-12-17 17:06:12
问题 I have an application in lotus domino with a field UNIDID -number(computed)... I want that every time a new entry is created, this field to increment by 1 and the new value should be stored in new record document.. I have a @dbcolumn formula which will get me the last entry in the UNIDID field- mFind:=@DbColumn("" : "NoCache" ; @DbName ; "lkpEmpMasterbyOnlyUnidCode";1); How do I increment mFind and submit it in form of ' UNIDXXXX '? 回答1: Employ document locking to assure number uniqueness in