Monthly Archives: August 2004

计费矩阵

今天去龙岗实验室进行也门项目的联调,由于环境没有搭建好,废了整整一天时间。其中PM对我最不满的是环境搭建还需要她帮忙,寄费矩阵配置居然不熟悉。其实我自己也挺郁闷的,虽然项目做了几个,但是这几个项目的平台都是利用以前已经搭建好的,计费矩阵基本是以前的copy然后稍微修改一下相关参数就OK的了。而今天PM居然是要我从新的开始,所以我狠郁闷的。 本来我就对电信不是狠感冒的,准备再呆一阵子就跳了,但是一件事做的不好我就感觉心里不舒服。尽管这块玩的时间可能不长了,但是对于现在还是玩这块,这些东西还是得学习学习的。虽然做不到做一块爱一块,自己做的事情不要留下尾巴是自己一直坚持的原则。不过这两天联调,时间紧张,系统学习是不可能了,不过可以在用的时候积累一点经验。不过这块东西以前学过,所以今天虽然PM怪罪,但是还没有出问题,倒是SMAP那边出了一点小问题,暂时还没有解决。

1 Comment

SVN的命令全集

Subversion 命令列客户端: svn svn 选项 svn 子命令 svn add svn cat svn checkout svn cleanup svn commit svn copy svn delete svn diff svn export svn help svn import svn info svn list svn log svn merge svn mkdir svn … Continue reading

3 Comments

两个可能会用到的东西

一个是ADO和python的编程资料:http://www.mayukhbose.com/python/ado/index.php 还有一个是,利用Gmail邮箱帐号进行别的用途的:http://libgmail.sourceforge.net/

Leave a comment

看到这句话比较高兴

“Currently, it is Subversion’s bindings that are the most complete. ” 这句话是我在SVN的手册上看到的,由于SVN是使用C进行开发的,我看到半道的时候,怕库没有进行别的语言的banding,所以一直细心留意。结果在第7章忽然发现这句话,感到非常的高兴。虽然SVN对java,perl和python分别做了绑定,但是绑定程度是不一样的,java的代码量最大,不知道是什么原因,ruby正在计划中,不过banding目录中已经有他的子目录了,还有一个是COM,不知道是不是微软的那个玩意。 看来使用python进行客户端改写还是有希望得了,原来以为要对C库进行python的wapper,现在看来,只要把源代码下面的banding目录下面的python代码搞定就可以了。附python的DEMO一个:A Simple Script to Check Out a Working Copy.#!/usr/bin/env import sysfrom svn import util, _util, _client def usage():  print “Usage: ” + sys.argv[0] + ” URL PATH\n”  sys.exit(0) … Continue reading

Leave a comment

Zope3术语简介(4) — AdapterService

AdapterService(配接器)An adapter service provides access to Adapters. The primary function of an adapter service is to act as an adapter registry. An adapter service will typically provide support creating adapters through the web or for configuring which of available alternate … Continue reading

Leave a comment

SVN小常识

U foo 档案 foo 会被更新 (Update) (自服务器取得更动). A foo 档案或目录 foo 会被新增 (Add) 到工作目录中. D foo 档案或目录 foo 会自工作目录删除 (Delete). R foo 工作复本的档案或目录 foo 被取代 (Replace); 也就是说, foo 被删除, 然后新增同一名称的新项目. 虽然它们的名称是相同的, 但是档案库会认为它们是不同的, 而且有着不同的历史进程. G foo 档案 foo 自档案库取得新的更动, 但是本地复本的档案含有你的更动. 不过这些更动并没有重叠的部份, … Continue reading

Leave a comment

SVN客户端

subversion Continue reading

1 Comment

Features of Subversion(SVN特征)

Subverion SVN Continue reading

Leave a comment

Zope3术语简介(3) — AdapterRegistry

AdapterRegistry (配接器注册器)The adapter registry is used to store global (placeless) adapter definitions. File-based products can register adapters with the global registry.配接器注册器被用来存储全局的配接器定义。基于文件系统的产品能够通过全局注册器来注册成配接器。

Leave a comment

zope3 术语简介(2) — Adapter

Adapter(配接器) An adapter is an ApplicationFunctionalityComponent that provides additional functionality for some other component, using the interface of the other component.Adapters can be used to provide application functionality and for presentation functions. Figure 1 shows two adapter examples in a … Continue reading

Leave a comment