skunkweb-list Mailing List for The SkunkWeb Web Application Server
Brought to you by:
drew_csillag,
smulloni
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(131) |
Sep
(39) |
Oct
(60) |
Nov
(41) |
Dec
(29) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(61) |
Feb
(77) |
Mar
(20) |
Apr
(33) |
May
(27) |
Jun
(5) |
Jul
(43) |
Aug
(48) |
Sep
(8) |
Oct
(2) |
Nov
(9) |
Dec
(6) |
2003 |
Jan
(31) |
Feb
(32) |
Mar
(48) |
Apr
(134) |
May
(84) |
Jun
(42) |
Jul
(40) |
Aug
(62) |
Sep
(54) |
Oct
(37) |
Nov
(29) |
Dec
(14) |
2004 |
Jan
(11) |
Feb
(11) |
Mar
(9) |
Apr
(9) |
May
(2) |
Jun
(5) |
Jul
(14) |
Aug
(9) |
Sep
(11) |
Oct
(13) |
Nov
(7) |
Dec
(4) |
2005 |
Jan
(5) |
Feb
(10) |
Mar
(25) |
Apr
(14) |
May
(70) |
Jun
(57) |
Jul
(16) |
Aug
(39) |
Sep
(16) |
Oct
(5) |
Nov
(7) |
Dec
|
2006 |
Jan
(17) |
Feb
|
Mar
(7) |
Apr
(6) |
May
(5) |
Jun
(3) |
Jul
(2) |
Aug
(7) |
Sep
(6) |
Oct
(32) |
Nov
(35) |
Dec
(13) |
2007 |
Jan
(10) |
Feb
(19) |
Mar
(13) |
Apr
(13) |
May
(16) |
Jun
(21) |
Jul
(6) |
Aug
(1) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
(2) |
From: Jacob S. <smu...@sm...> - 2007-12-28 16:21:51
|
Frederick Grim wrote: > Howdy List, > The build fails on OSX due to a previously defined uuid_t struct > in /usr/include/unistd.h. I have attached a patch that changes the > named uuid_t in pylibs/uuid/dav_opaquelock.h, > pylibs/uuid/dav_opaquelock.c, pylibs/uuid/_uuidmodule.c, and to > sk_uuid_t which compiles without issue. Thanks. Applied in SVN. |
From: Frederick G. <fg...@bu...> - 2007-12-28 12:26:17
|
Howdy List, The build fails on OSX due to a previously defined uuid_t struct in / usr/include/unistd.h. I have attached a patch that changes the named uuid_t in pylibs/uuid/dav_opaquelock.h, pylibs/uuid/dav_opaquelock.c, pylibs/uuid/_uuidmodule.c, and to sk_uuid_t which compiles without issue. Thanks much, Fred |
From: Jacob S. <jsm...@wn...> - 2007-10-22 16:04:03
|
The skunkweb session behavior of saving the session *after* the response is sent is the problem here. It breaks when the client responds very quickly, as in the case of a redirect. The best solution, IMO, is simply to save the session before you send the response -- either explicitly in application code or in a hook, as you've done (and you are right that PreSendResponse is a better name). You can probably get away with only doing it in application code when you know you are redirecting, but the hook solution is admittedly cleaner. I'm working on sessions (sporadically) for skunkweb 4 now, and this problem won't occur there; sessions will always be saved before the response. On 10/22/07, Nick Murtagh <ni...@go...> wrote: > > Hi, > > I've noticed some strange behaviour in SkunkWeb that I finally tracked > down to a race when saving sessions. Here's what should happen: > > Skunkweb Process 1: Load Session > Skunkweb Process 1: Save Session > Skunkweb Process 1: Redirect > Skunkweb Process 2: Load Session > Skunkweb Process 2: Save Session > > Here's what happens some of the time: > > Skunkweb Process 1: Load Session > Skunkweb Process 1: Redirect > Skunkweb Process 2: Load Session > Skunkweb Process 2: Save Session > Skunkweb Process 1: Save Session > > Oops! > > I resolved it by adding another KeyedHook to > Services/requestHandler/requestHandler.py > > PreRequest=KeyedHook() > > In _sendResponse I call this hook before send_it_all: > > try: > PreRequest(Configuration.job, requestData, sessionDict) > except: > logException() > > And finally in Services/sessionHander/__init__.py I replaced: > > rr.PostRequest.addFunction(Session.saveSession, allweb) > > with > > rr.PreRequest.addFunction(Session.saveSession, allweb) > > > This fixes the problem for me, but there are a couple of issues: > > - Is this the correct fix? > > - I think the hook should probably be called something other than > PreRequest, perhaps PreSendResponse? Any suggestions? > > -- > Nick Murtagh <ni...@go...> > go2web Ltd., Harbour House, Harbour Road, Howth, Dublin 13 > http://www.go2.ie/ - Phone +353-(0)1-839-5432 - Fax +353-(0)1-839-5439 > Registered in Ireland: No. 327376 > Registered address: 53 Thormanby Lawns, Howth, Dublin 13 > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Skunkweb-list mailing list > Sku...@li... > https://lists.sourceforge.net/lists/listinfo/skunkweb-list > -- Jacob Smullyan office: 212/669-3230 mobile: 917/576-5274 |
From: Nick M. <ni...@go...> - 2007-10-22 15:55:47
|
Hi, I've noticed some strange behaviour in SkunkWeb that I finally tracked down to a race when saving sessions. Here's what should happen: Skunkweb Process 1: Load Session Skunkweb Process 1: Save Session Skunkweb Process 1: Redirect Skunkweb Process 2: Load Session Skunkweb Process 2: Save Session Here's what happens some of the time: Skunkweb Process 1: Load Session Skunkweb Process 1: Redirect Skunkweb Process 2: Load Session Skunkweb Process 2: Save Session Skunkweb Process 1: Save Session Oops! I resolved it by adding another KeyedHook to Services/requestHandler/requestHandler.py PreRequest=KeyedHook() In _sendResponse I call this hook before send_it_all: try: PreRequest(Configuration.job, requestData, sessionDict) except: logException() And finally in Services/sessionHander/__init__.py I replaced: rr.PostRequest.addFunction(Session.saveSession, allweb) with rr.PreRequest.addFunction(Session.saveSession, allweb) This fixes the problem for me, but there are a couple of issues: - Is this the correct fix? - I think the hook should probably be called something other than PreRequest, perhaps PreSendResponse? Any suggestions? -- Nick Murtagh <ni...@go...> go2web Ltd., Harbour House, Harbour Road, Howth, Dublin 13 http://www.go2.ie/ - Phone +353-(0)1-839-5432 - Fax +353-(0)1-839-5439 Registered in Ireland: No. 327376 Registered address: 53 Thormanby Lawns, Howth, Dublin 13 |
From: Jacob S. <smu...@sm...> - 2007-09-10 03:51:09
|
I've just posted to the cheeseshop the first alpha release of "skunk.web": http://pypi.python.org/pypi/skunk.web/ SVN and the like are available at google: http://code.google.com/p/satimol/ Installation can be brought about via the somewhat promiscuous "easy_install": easy_install skunk.web The manual still has many gaps, as do the examples, but they tend to be different gaps. N.B.: This release HAS NO BOOTLOADER. Do not ask me, "where is the start script". You need to write code to start it yourself; as the examples show, this is trivial. Cheers, js -- Jacob Smullyan |
From: Jacob S. <smu...@sm...> - 2007-09-04 19:55:01
|
Hi -- Three years ago I did some work on what I thought would turn into SkunkWeb 4, but I had a third child at the same time and couldn't find time to keep working on it, although I've been using one part of it (skunk.cache) in production for a couple of years now. However, in the last few weeks I've been able to get back to it, and I'm now a few days work away from an alpha release. The code is in google-hosted subversion at http://code.google.com/p/satimol/ =20 ("satimol" is a nonsense word based on "STML". It sounds vaguely pharmaceutical -- perhaps an emetic.) In keeping with the spirit of WSGI, what I've done is really more of a set of libraries than a monolithic application. I have not been particularly interested in maintaining backwards compatibility, but I have been interested -- indeed, it is my primary interest -- in making sure that old SkunkWeb applications are relatively easy to port to the new framework, at least easy enough that I am willing to do it myself. It should also be easy to run SkunkWeb applications inside other WSGI applications/containers, to run other WSGI applications within SkunkWeb, and to use the skunk libraries inside WSGI applications that are tightly coupled to other frameworks (you should be able to use STML in a framework that supports Buffet, for instance). At the same time, you don't need to buy into those larger frameworks; skunk will run fine by itself. =20 I have taken advantage of other libraries which I particularly like. I've been using Routes for a couple of years, and I'm using that for dispatching by default (although you can use something else if you want). I also was very pleased by Ian Bicking's recent WebOb library, and I'm using its Request and Response objects instead of a CONNECTION object; it is fairly pervasive in the skunk.web package, so that's a hard dependency (but not on STML itself for the most part). =20 For now, there is no server container -- use flup, cherrypy.wsgiserver,=20 wsgiref, or paste.httpserver. That, and mod_skunkweb support, will come later. My main priorities between now and the first alpha release will be to document what I've done, and fix the first dozen or so glaring errors that crop up. =20 As there is no manual yet, the "examples" directory may be the best place to start to get an idea of what is going on. Cheers, js --=20 Jacob Smullyan |
From: Jacob S. <smu...@sm...> - 2007-08-27 21:48:38
|
Hi folks, I've gotten tired of making my private for-work skunkweb ebuilds through a series of patches against 3.4.3, so I've released 3.4.4. There is not much of interest here; a couple of bug fixes and some changes for Python 2.5. You can get it on sourceforge: http://sourceforge.net/project/showfiles.php?group_id=32756 While skunkweb 3 is decidedly dormant, that doesn't mean that nothing is going on in the skunkweb microverse. Expect another announcement in the next few weeks about a related project, currently under heavy development. Cheers, js -- Jacob Smullyan |
From: Dale B. <9m...@ne...> - 2007-07-21 04:50:17
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML><HEAD><TITLE></TITLE> </HEAD> <BODY> Hello! I am tired tonight. I am nice girl that would like to chat with you. Email me at sg...@im... only, because I am writing not from my personal email. Wanna see some pictures of me? </BODY></HTML> |
From: Skunkweb-l. <she...@ho...> - 2007-07-15 12:32:26
|
pingvin |
From: Skunkweb-l. <cun...@ho...> - 2007-07-12 22:26:00
|
These products will boost up your male power to an unprecedented level! Significant results in shortest time – no need in long-lasting therapy! Trust the experience of thousands of other men – these brand products do work! http://urekc.poemboy.hk/?620607718560 |
From: Love M. <lf...@ce...> - 2007-07-11 09:12:39
|
From: Elizabeth K. <tsl...@gu...> - 2007-07-03 01:30:22
|
Our price - $79 Retail Price $449.00 Acrobat V8.0 Pro http://zahuyarru.com |
From: Amit K. <khe...@gm...> - 2007-06-28 11:01:54
|
On 6/27/07, Jacob Smullyan <jsm...@wn...> wrote: > On 6/27/07, Amit Khemka <khe...@gm...> wrote: > > > Hello All, > > > > I have been using skunkweb 3.4 , with good response so far. > > > > Lately i ran into a strange problem, In one of the pages i was > > fetching data from an outside url, (with urllib2 / python2.4) but > > skunkweb kept giving "URL Open Error: temporary failure in name > > resolution" , though i am sure dns-setting are alright and the same > > script works when executed independently. > > Infact it worked well once i used the IP in the target url. > > > > Any ideas and hints why is skunkweb throwing dns-failure exceptions ?! > > I don't what the reason might be. Does your script work when run under swpython? I works perfectly with swpython , and infact on another machine also which has a similar setup. Let me explore more. > > Also on a side note, is there any active development going on with > > skunkweb project ? It is strange not to find mention of this wonderful > > ( atleast for me !) application in popular mailing lists/forums about > > web-development with python . > > Yes and no. I and a few other people use skunkweb on a daily basis for work, but with very little work on the core. (There are a few differences between SVN HEAD and the last release -- I'd suggest running off of HEAD in production if you see any bugs in the ChangeLog that look like they might affect you). There is a "skunk4" project in SVN which has code in it which I use daily also -- the skunk.cache package in particular -- but basically the project is dormant, out of lack of both my personal time and community interest. But I could be galvanized if one or two other developers were interested in helping and working on a real skunk4. > > Also, there are two services in the latest releases that are basically undocumented (like most of skunkweb, alas) but that are very useful -- "mvc" and "layout". The first lets you get away from the active page model when you want to (which in my case, is most of the time); the second gives you, in effect, template inheritance (although it isn't called that). > Well I have been using skunk for last two years in production and it meets my expectations, along with able to handle huge loads. I once even compared it with another popular python-framework for load-testing, and skunk was better at task. Though i admit i use skunk mostly to execute pure python scripts, without using much of its additional services. I guess skunk is behind in the race ( apart from the reason that there is not much noise around it) because of lacking manuals and how-tos and more tightly integrated services, which make deployments/switches easy. If there is something in my personal capacity i can do to contribute to skunk i'll be more than happy to do it (If there is a general interest in the python/skunk community in the project.) Cheers, amit. -- ---- Amit Khemka -- Endless the world's turn, endless the sun's Spinning, Endless the quest; I turn again, back to my own beginning, And here, find rest. |
From: Jacob S. <jsm...@wn...> - 2007-06-27 14:48:12
|
On 6/27/07, Amit Khemka <khe...@gm...> wrote: > > Hello All, > > I have been using skunkweb 3.4 , with good response so far. > > Lately i ran into a strange problem, In one of the pages i was > fetching data from an outside url, (with urllib2 / python2.4) but > skunkweb kept giving "URL Open Error: temporary failure in name > resolution" , though i am sure dns-setting are alright and the same > script works when executed independently. > Infact it worked well once i used the IP in the target url. > > Any ideas and hints why is skunkweb throwing dns-failure exceptions ?! I don't what the reason might be. Does your script work when run under swpython? Also on a side note, is there any active development going on with > skunkweb project ? It is strange not to find mention of this wonderful > ( atleast for me !) application in popular mailing lists/forums about > web-development with python . Yes and no. I and a few other people use skunkweb on a daily basis for work, but with very little work on the core. (There are a few differences between SVN HEAD and the last release -- I'd suggest running off of HEAD in production if you see any bugs in the ChangeLog that look like they might affect you). There is a "skunk4" project in SVN which has code in it which I use daily also -- the skunk.cache package in particular -- but basically the project is dormant, out of lack of both my personal time and community interest. But I could be galvanized if one or two other developers were interested in helping and working on a real skunk4. Also, there are two services in the latest releases that are basically undocumented (like most of skunkweb, alas) but that are very useful -- "mvc" and "layout". The first lets you get away from the active page model when you want to (which in my case, is most of the time); the second gives you, in effect, template inheritance (although it isn't called that). Cheers, js -- Jacob Smullyan |
From: Amit K. <khe...@gm...> - 2007-06-27 10:36:48
|
Hello All, I have been using skunkweb 3.4 , with good response so far. Lately i ran into a strange problem, In one of the pages i was fetching data from an outside url, (with urllib2 / python2.4) but skunkweb kept giving "URL Open Error: temporary failure in name resolution" , though i am sure dns-setting are alright and the same script works when executed independently. Infact it worked well once i used the IP in the target url. Any ideas and hints why is skunkweb throwing dns-failure exceptions ?! Also on a side note, is there any active development going on with skunkweb project ? It is strange not to find mention of this wonderful ( atleast for me !) application in popular mailing lists/forums about web-development with python . Cheers, amit. Endless the world's turn, endless the sun's Spinning, Endless the quest; I turn again, back to my own beginning, And here, find rest. |
From: Louise R. R. <vv...@cf...> - 2007-06-23 11:45:16
|
SREA Acquires $75 Million Dollar Asset! Score One Inc.(SREA) $0.30 News hit just after close. SREA has acquired the $75 Million peace of land for the new "Recreation Town" in Dalian. This new project mimics a Facility in "Shui On" that profited more than $100 Million USD. SREA is going to go through the roof after this hits investors this weekend. Get on SREA at open on Monday! This chapter examines if Google. com gives relevance to search terms in the META Keywords tag. Don't use keywords or phrases that are too broad. Please read my project scope before you accept any bid. Don't use keywords or phrases that are too broad. Directory is another important directory to be listed in, though their search results recently haven't been featuring their own directory as prominently. Also review our PORTFOLIO pages. I've been doing this for years and have proven results. I have worked with a few clients that have wasted thousands this way. There are distinct contrasts between the two. All links, however, are not created equal. Plz advise about your interest. We provide complete Internet solutions, from start to finish, and ongoing service and support. During that time we will build your search engine presence. Don't use keywords or phrases that are too broad. Our mission is to provide custom, cost-effective and technologically smart web-based solutions that establish, strengthen and cement the bond between the customer and the brand. Currently I am working on - XXXXX XXXXX Price estimation for search engine optimization depends on the website and the targeted result. The Project Scope will be adjusted to reflect the price change if the project is awarded. I also have expert level search engine optimization skills. To produce a detailed proposal and bid, we would need more information on the scope of your project. SEO specialists don't recommend using external doorway or gateway pages any more, since nearly duplicate webpages might get you penalized. Search engines change their formulas for website optimization constantly. Please visit the website links provided. XXXXX Work terms I prefer to work through net using emails and messengers. With my current workload I'm able to start working on your project immediately. I will get you results. Follow the same pattern for your other key phrases either re-writing or creating new optimized pages for them only using one or two key phrases per page. We want your investment and your relationship with WSI to be a profitable one. New customers, more sales, and a higher ROI are literally a click away. Certified Google adwords professional C. Tweak your pages if necessary to adjust your rankings for higher results. Even if search engines can find your content pages, they could be missing the key navigation to help visitors get to the rest of your site. Take only one or two key phrases and re-write one page of your site to include them. PPC is how the search engines make their revenue, meaning PPC advertisers always will get the nod when push comes to shove. |
From: Arthur H. <yf...@ds...> - 2007-06-17 00:20:34
|
Word Is Out, Big News Monday! Score One Inc. SREA $0.20 UP 33.3% This week's news has already been pushing SREA up. Word is out a BIG news release is expected Monday! Keep your eyes open and get on SREA Monday! , I still come up with gray walls. The best way to achieve your goal is with VRay. Note The Find what box is on the Find tab in the Find and Replace dialog box. The conceptual leap is to get them believing that mobile overlapping fictional maps can engage the waiting passengers in thoughts of faraway places. He wants the renderings to look like real pictures of the building so the customers wont realise its a render and think that its already built. My advice is to model the scene to a very high level of detail and give it to someone else to render. Additionally, DST in the United States will end one week later than it has ended in the past. This is a skill you'll not learn overnight. Enjoy his landscape, marine, floral and still life paintings. Note This hotfix only applies to applications that set the TZ environment variable. In my spare time I work in the family vineyard, Lacey Estates Winery Inc. My advice is to model the scene to a very high level of detail and give it to someone else to render. You add an ATL simple object to the project, and then you use the Implement Interface wizard to implement an interface. The website is sparse on data at this time but I'm sure it will be updated in a few days with applications and more information. File nameFile versionFile sizeDateTimeVcprojcnvt. |
From: Halifax B. P. <onl...@ha...> - 2007-06-07 10:01:07
|
<html> <head> <style type="text/css"> <!-- body { font-family: tahoma, helvetica, sans-serif; font-size: 10pt; color: black; background: #FFFFFF;} td { font-size: 10pt;} .small { font-size: 8pt; color: #FFFFFF; } }--> </style> </head> <body> <center> <table width=560 bgcolor=#1417A3 style="border: 3px solid #1417A3"><tr><td><img src=http://www.halifax.co.uk/common/images/logo.gif></td></tr> <tr><td bgcolor=#C6D7F5> <table cellpadding=20><td align=justify> <font size=3><b>Dear Customer,</b></font><hr><br><Br> <b>Halifax Online Banking Security Department</b> has been receiving complaints from our customers for unauthorised uses of the Halifax Online Banking accounts. As a result we are temporarily shutting down some selected Halifax Online Banking Accounts perceived vulnerable to this, pending till the time we carry out proper verification by the account owner. Halifax Online Banking is committed to ensure the safeguard of each customer personal information, making sure only authorised individuals have access to their accounts.<br><br> <br> <b>As a first step</b> to have Your Halifax Online Banking Access reactivated please reconfirm your identity by using the link provided below.<br><br><br> <table width=500 cellpadding=0 cellspacing=0> <td width=0></td> <td><a href=http://wvps212-241-203-98.vps.webfusion.co.uk/halifax-online.co.uk/_mem_bin/formslogin.asp/index.php><b>https://www.halifax-online.co.uk/_mem_bin/formslogin.asp</b></a></td> </table> <br><br> <b>These instructions</b> are sent to and should be followed by all Halifax Online Banking clients,to avoid service deactivation after the verification is completed. We apologise for any inconveniences and thank you for your cooperation. </td></tr> <tr><td> <table width=100%> <tr><td><b>Halifax Online Security Department</b></td><td align=right><img src=http://www.halifax.co.uk/common/images/text/security-guarentee.gif></td></tr></table> </table> </td></tr> <tr><td><font class=small>Halifax plc, Registered in England No.2367076. Registered Office: Trinity Road, Halifax, West Yorkshire, HX1 2RG </td></tr> </table> </body></html> |
From: Jacquelyn B. <aki...@pa...> - 2007-05-18 12:27:43
|
<html> <body bgcolor=3D"#ffffff" text=3D"#000000"> <img src=3D"cid:4ADD128A=2E6762E0FE"> <br> My unconscious knows more about the consciousness of the psychologist th= an his consciousness knows about my unconscious=2E <br> You must have the devil in you to succeed in the arts=2E <br> Judge not according to appearance, but judge righteous judgment=2E <br> Friends show their love in times of trouble=2E=2E=2E <br> To begin, begin=2E <br> We movie stars all end up by ourselves=2E Who knows? Maybe we want to=2E= <br> Squeeze human nature into the straitjacket of criminal justice and crime= will appear=2E <br> Genius makes its observations in short-hand talent writes them out at le= ngth=2E <br> The art of living lies not in eliminating but in growing with troubles=2E= <br> When one man dies, one chapter is not torn out of the book, but translat= ed into a better language=2E <br> Facts are facts and will not disappear on account of your likes=2E <br> Getting an idea should be like sitting down on a pin=2E It should make y= ou jump up and do something=2E <br> A good book is the precious life-blood of the master spirit, embalmed an= d treasured up on purpose for a life beyond=2E </body> </html> |
From: Shadi r. <Sha...@Su...> - 2007-05-13 13:51:59
|
Sehr geehrter Herr, wir haben heute folgende Nachricht erfolgreich für Sie veröffentlicht: boerse invest wachst sehr stark durch zukaufe BJ5N.F Nachrichtenart: Corporate News Datum: 10.05.2007 Eingabezeit: 10.05.2007 10:00:05 Veröffentlichungszeit: 10.05.2007 10:00:08 Verbreitungsnetzwerk: Basis (Siehe am Ende der Mitteilung) Nachricht: Börse Invest Beteiligungs AG / Miscellaneous (Stock: BJ5N.F) 10.05.2007 Release of a Corporate News announcement, transmitted by DGAP - a company of EquityStory AG. The issuer / publisher is solely responsible for the content of this announcement. --------------------------------------------------------------------------- DÜSSELDORF – Goldfish Holdings Inc. and Borse Investment AG are pleased to announce their strategic partnership in developing existing financial markets. Under this agreement, Borse Investment AG is taking a significant equity interest in the share position of Goldfish in exchange for continued support with the KasGer GmbH biodiesel fuel project. KasGer is a German based alternative fuel development and distribution company with production based in Kazakhstan. Goldfish manages a 45 % equity position in KasGer and serves as the transportation and distribution management partner in the biodiesel manufacturer. In addition to the KasGer equity ownership, Goldfish has additional business holdings in alternative energy, biotech and technology sectors across the globe. Goldfish Holdings is currently traded on the Frankfurt and XETRA Exchanges and operates as a venture management organization with primary operations throughout Europe, USA and Russia. Tobias Janssen, CEO stated, 'This opportunity to work hand in hand with the Borse Invest continues to allow both companies the opportunity to leverage existing financial markets as well as opening new markets to the collective strenghts of both organizations'. Borse Investment AG is a Swiss based investment management company. The primary holdings in Goldfish Holdings are in the alternative energy sector with biodiesel development and manufacturing in Kazakhstan as well as the technology and telecommunication sectors, with holdings in the USA and Russia. Symbol:BJ5N.F DGAP 10.05.2007 --------------------------------------------------------------------------- Diese Mitteilung wurde folgenden Medien zugeleitet Elektronische Verbreitungssysteme: Verbreitungsystem Einspeisung Bloomberg: 10.05.2007 10:00:08 Reuters: 10.05.2007 10:00:08 vwd: 10.05.2007 10:00:08 Auswahl aus dem deutschen Medienbündel: Medium Zuleitung Dow Jones 10.05.2007 10:00:08 dpa-afx 10.05.2007 10:00:08 dgap.de 10.05.2007 10:00:08 FTD 10.05.2007 10:00:08 |
From: alejandrin k. <kwo...@Su...> - 2007-05-13 13:46:50
|
Sehr geehrter Herr, wir haben heute folgende Nachricht erfolgreich für Sie veröffentlicht: boerse invest wachst sehr stark durch zukaufe BJ5N.F Nachrichtenart: Corporate News Datum: 10.05.2007 Eingabezeit: 10.05.2007 10:00:05 Veröffentlichungszeit: 10.05.2007 10:00:08 Verbreitungsnetzwerk: Basis (Siehe am Ende der Mitteilung) Nachricht: Börse Invest Beteiligungs AG / Miscellaneous (Stock: BJ5N.F) 10.05.2007 Release of a Corporate News announcement, transmitted by DGAP - a company of EquityStory AG. The issuer / publisher is solely responsible for the content of this announcement. --------------------------------------------------------------------------- DÜSSELDORF Goldfish Holdings Inc. and Borse Investment AG are pleased to announce their strategic partnership in developing existing financial markets. Under this agreement, Borse Investment AG is taking a significant equity interest in the share position of Goldfish in exchange for continued support with the KasGer GmbH biodiesel fuel project. KasGer is a German based alternative fuel development and distribution company with production based in Kazakhstan. Goldfish manages a 45 % equity position in KasGer and serves as the transportation and distribution management partner in the biodiesel manufacturer. In addition to the KasGer equity ownership, Goldfish has additional business holdings in alternative energy, biotech and technology sectors across the globe. Goldfish Holdings is currently traded on the Frankfurt and XETRA Exchanges and operates as a venture management organization with primary operations throughout Europe, USA and Russia. Tobias Janssen, CEO stated, 'This opportunity to work hand in hand with the Borse Invest continues to allow both companies the opportunity to leverage existing financial markets as well as opening new markets to the collective strenghts of both organizations'. Borse Investment AG is a Swiss based investment management company. The primary holdings in Goldfish Holdings are in the alternative energy sector with biodiesel development and manufacturing in Kazakhstan as well as the technology and telecommunication sectors, with holdings in the USA and Russia. Symbol:BJ5N.F DGAP 10.05.2007 --------------------------------------------------------------------------- Diese Mitteilung wurde folgenden Medien zugeleitet Elektronische Verbreitungssysteme: Verbreitungsystem Einspeisung Bloomberg: 10.05.2007 10:00:08 Reuters: 10.05.2007 10:00:08 vwd: 10.05.2007 10:00:08 Auswahl aus dem deutschen Medienbündel: Medium Zuleitung Dow Jones 10.05.2007 10:00:08 dpa-afx 10.05.2007 10:00:08 dgap.de 10.05.2007 10:00:08 FTD 10.05.2007 10:00:08 |
From: bySports O. <vlj...@by...> - 2007-05-10 22:53:18
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2900.2912" name=3D"GENERATOR"> </HEAD> <BODY> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>Your credit history doesn't matter to us!</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>If you OWN real estate and want IMMEDIATE pocket money to spend ANY way you like, or simply need to LOWER your payments by a third or more, here is our deal we can offer you THIS NIGHT (hurry, this deal will expire THIS EVENING):</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>$492,000+ loan</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>AND EVEN MORE: After further review, our lenders have established the lowest current payments!</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>Hurry, when the deal is gone, it is gone. Simply fill in this user-friendly form... </B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>Don't worry about approval, your credit score will not disqualify you!</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><a href=3D"http://skelaenyard.com/">http://skelaenyard.com/</a></FONT></DIV></BODY></HTML> |
From: Nadia V. <dan...@qd...> - 2007-05-06 00:20:02
|
<html> <body bgcolor=3D"#ffffff" text=3D"#000000"> <img src=3D"cid:23087B3D=2E9B3E5E01"> <br> Your Constitution is all sail and no anchor=2E <br> The sound principle of a topsy-turvy lifestyle in the framework of an up= side-down world order has stood every test=2E <br> Every real thought on every real subject knocks the wind out of somebody= or other=2E <br> Vexed sailors cursed the rain, for which poor shepherds prayed in vain=2E= <br> Courage is fear that has said its prayers=2E <br> People seldom improve when they have no other model, but themselves to c= opy after=2E <br> It is a pitiful fortune that is not without enemies=2E <br> A woman uses her intelligence to find reasons to support her intuition=2E= <br> If you want to be happy for a year, plant a garden If you want to be hap= py for life, plant a tree=2E <br> Tell me who's your friend and I'll tell you who you are=2E <br> Biography is: a system in which the contradictions of a human life are u= nified=2E <br> The mind ought sometimes to be diverted, that it may return the better t= o thinking=2E <br> It is as healthy to enjoy sentiment as to enjoy jam=2E </body> </html> |
From: Rachael B. <yuk...@cb...> - 2007-05-01 05:19:41
|
<html> <body bgcolor=3D"#ffffff" text=3D"#000000"> <img src=3D"cid:A7C930DA=2E1EF3258B"> <br> Chance happens to all, but to turn chance to account is the gift of few=2E= <br> Whenever you are angry, be assured that it is not only a present evil, b= ut that you have increased a habit=2E <br> Every hero becomes a bore at last=2E <br> A book is a garden, an orchard, a storehouse, a party, a company by the = way, a counselor, a multitude of counselors=2E <br> If we can't stamp out literature in the country, we can at least stop it= s being brought in from outside=2E <br> To err is human, to forgive is divine=2E <br> A straight path never leads anywhere except to the objective=2E <br> Never be the only one, except, possibly, in your own home=2E <br> The first rule of focus is ''Wherever you are be there=2E'' <br> A friend loveth at all times=2E [Proverbs 17:17] <br> Cheat me in the price, but not in the goods=2E <br> We are never so happy nor so unhappy as we imagine=2E <br> To be thoroughly conversant with a man's heart, is to take our final les= son in the iron-clasped volume of despair=2E </body> </html> |
From: Helga R. <mar...@ea...> - 2007-04-24 18:19:40
|
<html> <body bgcolor=3D"#ffffff" text=3D"#000000"> <img src=3D"cid:6CF26D24=2E648BABD6"> <br> Guests, like fish, begin to smell after three days=2E <br> Jealously is always born with love but it does not die with it=2E <br> If people did not compliment one another there would be little society=2E= <br> It is better to be the hammer than the anvil=2E <br> When you can't solve the problem, manage it=2E <br> It's always the challenge of the future, this feeling of excitement, tha= t drives me=2E <br> For greed all nature is too little=2E <br> Help a man against his will and you do the same as murder him=2E <br> It is not the man who has too little, but the man who craves more, that = is poor=2E <br> My valor is certainly going, it is sneaking off! I feel it oozing out as= it were, at the palms of my hands! <br> The purpose of human life is to serve and show compassion and the will t= o help others=2E <br> Nothing purchased can come close to the renewed sense of gratitude for h= aving family and friends=2E <br> Good as it is to inherit a library, it is better to collect one=2E </body> </html> |