(Post originally written by Julien Anguenot on the old Nuxeo blogs.)
« August 2005 | Main | October 2005 »
(Post originally written by Julien Anguenot on the old Nuxeo blogs.)
Posted by Nuxeo at 07:58 PM | Permalink | Comments (0)
(Post originally written by Laurent Godard on the old Nuxeo blogs.)
Posted by Nuxeo at 11:10 AM | Permalink | Comments (0)
(Post originally written by Tarek Ziadé on the old Nuxeo blogs.)
Posted by Nuxeo at 01:22 AM | Permalink | Comments (0)
Nuxeo a organisé aujourd'hui le séminaire Perspectives 2006, destiné à nos principaux clients et contacts. Ce séminaire, aujourd'hui dans sa première édition, sera renouvelé chaque année et sera l'occasion, comme aujourd'hui, de faire un bilan de Nuxeo, de CPS et de l'Open Source ainsi que d'exposer notre vision, notre stratégie et les faits marquants à venir. Les slides et des photos de l'évènement seront publiées sous peu sur nuxeo.com.
Perspectives 2006 a reçu un accueil très favorable et je souhaite remercier vivement les participants, nombreux, qui ont répondu favorablement à notre invitation. Nous avons passé un très bon moment et espérons que cela a été le cas pour tous !
Les premiers retours ont confirmé notre motivation et conforté notre stratégie. Nous espérons pouvoir renouveler cet évènement chaque année, et pour de nombreuses années ! :-)
Merci à tous ceux qui nous ont fait confiance et à ceux qui le feront !
(Post originally written by Eric Barroca on the old Nuxeo blogs.)
Posted by Nuxeo at 12:37 AM | Permalink | Comments (0)
(Post originally written by Julien Anguenot on the old Nuxeo blogs.)
Posted by Nuxeo at 08:14 PM | Permalink | Comments (0)
I am thinking about a feature that could link portal knowledge in a very simple way, about the same way CPSSharedCalendar and CPSSubscriptions does when they send emails.
I keep on trying to find such features in existing tool, it has to exists.. Whenever I find it, i'll remove this stupid blog entry ;)
Well, here's what I've taught of:
Hi Bob, Can we meet sometimes about the x32 project, do you remember about it ? I sent you a mail 4 months ago about it. you have the specs here: http://xxx/specs and the client web page is there: http://xxx/dsddd Please let me know when we can meet about it, and if you have more info about them, let me know. Bill
Hi bill, Sorry, don't remember, can't find your mail. what was the subject ? OK, anway, i have looked at the pages (the second link is down, though) I have aslo found infos here: http://xxx/dsdsdssd let's meet on tuesday BobWikiMailing:
Hi Bob, Can we meet sometimes about the [x32 project], Please let me know when we can meet about it, don't hesitate to complete the informations we have. Bill
Hi bill, OK, i have completed them. let's meet on tuesday, please create the meeting page by clicking on the link below and fill it. thx [x32 project meeting]? BobCPSMailAccess could then parse the mail body, according to the user center of interests (ie: the groups he belongs to) and make links to different wiki groups.
OK, this is what we all tend to do. For example Trac links are heavily used in mails when we talk about bug or features, but, if we talk about other subjects, the principal knowledge base moves in the best cases from trac to another tool, but most of the time we have to look over our mails to recollect some infos...
,The main idea is to pour email info richness into a centralized, common, base, and to make the mail beeing just what it should be: a simple trigger.
(Post originally written by Tarek Ziadé on the old Nuxeo blogs.)
Posted by Nuxeo at 02:49 AM | Permalink | Comments (0)
import psyco
# decorator psycoed
def psycoed(function):
try:
return psyco.proxy(function)
except TypeError:
return function
The TypeError thing just prevents errors on objets that can't be proxied.
def normal():
a = 0
for i in range(5000):
a = a + 3
return a
@psycoed
def speedy():
a = 0
for i in range(5000):
a = a + 3
return a
if __name__ == '__main__':
import timeit
temps = timeit.Timer('speedy()', 'from __main__ import speedy').timeit(10000)
print 'psycoed: %f s' % temps
temps = timeit.Timer('normal()', 'from __main__ import normal').timeit(10000)
print 'not psycoed: %f s' % temps
[...]
[tziade@Tarek Desktop]$ python psycote.py
psycoed: 0.249526 s
not psycoed: 14.255591 s
(Post originally written by Tarek Ziadé on the old Nuxeo blogs.)
Posted by Nuxeo at 11:13 PM | Permalink | Comments (0)
begin_transaction()
try:
...
except:
rollback_transaction()
raise
else:
commit_transaction()
import copy
def get_memento(object):
""" get the object state """
return copy.deepcopy(object.__dict__)
def set_memento(object, state):
""" restore the objet """
object.__dict__.clear()
object.__dict__.update(state)
def transaction(method):
""" decorator """
def bind(object, *args, **kw):
state = get_memento(object)
try:
return method(object, *args, **kw)
except:
set_memento(object, state)
raise
return bind
class M(object):
def __init__(self):
def o():
print 'OK'
self.a = 12
self.b = ['a', 32]
self.l = o
@transaction
def run(self):
self.b.append('c')
self.o = 12
self.a = '14'
self.a += 1
objet = M()
try:
objet.run()
except TypeError:
pass
print objet.a
print objet.b
objet.l()
[...]
[tziade@Tarek Desktop]$ python memento.py
12
['a', 32]
OK
(Post originally written by Tarek Ziadé on the old Nuxeo blogs.)
Posted by Nuxeo at 03:21 PM | Permalink | Comments (0)
(Post originally written by Julien Anguenot on the old Nuxeo blogs.)
Posted by Nuxeo at 08:35 PM | Permalink | Comments (0)
CPS 3.3.6 has just been released.
You'll find download links in the "Quick Download" box of http://www.cps-project.org.
This release contains mainly bugfixes, and some speed improvements. It also bundles for the first time CPSSharedCalendar (successor to CPSCalendar) and CPSMailAccess (sucessor to CPSWebMail), two components heavily based on Five.
Posted by Florent Guillaume at 06:20 PM | Permalink | Comments (0)
We're the friendly employees of Nuxeo, a leading open source software vendor, which develops a complete Enterprise Content Management (ECM) software platform to help companies better produce, process, publish, archive, expose and find their information from digital assets to transactional documents.
» Follow us @nuxeo (Twitter)
» Connect on LinkedIn
» Visit Nuxeo.com
Subscribe to Feed
Follow us on Twitter
Recent Comments
Our tweets