|
List Info
Thread: Array
|
|
| Array |

|
1969-12-31 18:00:00 |
Hi,
Have you tried setting that property to "http://www.a.com" instead
of
"www.a.com"?
Simon
On 8/18/06, Juancarlo Aņez <apalala gmail.com> wrote:
> OK,
>
> I tried setting <property name="url"
value="www.a.com"/> and that made
> Pebble unable to fin the .css files required to layot
the page. The images
> didn't show up either.
>
> I removed the setting, and things looked fine. I then
hit the site through
> www.b.com, and the links were all pointing to
www.a.com.
>
> I'd say that behavior is quite unexpected.
>
> Juanca
>
> | -----Original Message-----
> | From: pebble-user-bounces lists.sourceforge.net
> | [mailto:pebble-user-bounces lists.sourceforge.net] On
Behalf
> | Of Laust M. Ladefoged
> | Sent: Thursday, August 17, 2006 02:18 AM
> | To: Pebble-user lists.sourceforge.net
> | Subject: Re: [pebble-user] Multiple domains?
> |
> | Hej Juanco,
> |
> | If you have not set a value specifically for the url
property
> | in WEB-INF/applicationContext-pebble, then Pebble
will
> | "guess" the url to use.
> |
> | To the best of my knowledge it does this by choosing
the url
> | used in the first request to Pebble after a restart
of your
> | servlet container.
> |
> | So if the first url you access after a restart is
www.a.com,
> | then all urls in Pebble will be set to www.a.com,
even if you
> | later user www.b.com to access the blog.
> |
> | Pebble will only handle one url for an instance and
if you
> | want to control it, you probably will, you should set
the url
> | property in WEB-INF/applicationContext-pebble.
> |
> | - Laust.
> |
> | On 8/17/06, Juancarlo Aņez <juanca suigeneris.org> wrote:
> | >
> | > How does Pebble decide the value of its
About/Blog URL variable?
> | >
> | > I have two domains pointing to the same IP
address and Pebble gets
> | > stuck on one of them. If I enter the blog from
www.b.com
> | all the links
> | > in Pebble point to www.a.com.
> | >
> | > I'm running 2.0.0 RC1.
> | >
> | > Juanco
> | >
> | >
> | >
> |
------------------------------------------------------------
----------
> | > --- Using Tomcat but need to do more? Need to
support web services,
> | > security?
> | > Get stuff done quickly with pre-integrated
technology to
> | make your job
> | > easier Download IBM WebSphere Application Server
v.1.0.1 based on
> | > Apache Geronimo
> | >
> | http://sel.as-us.falkag.net/se
l?cmd=lnk&kid=120709&bid=263057&dat=1216
> | > 42
_______________________________________________
> | > Pebble-user mailing list
> | > Pebble-user lists.sourceforge.net
> | > https://lists.sourceforge.net/lists/listinfo/pebble-user
> | >
> |
> |
------------------------------------------------------------
--
> | -----------
> | Using Tomcat but need to do more? Need to support web
> | services, security?
> | Get stuff done quickly with pre-integrated technology
to make
> | your job easier Download IBM WebSphere Application
Server
> | v.1.0.1 based on Apache Geronimo
> | http://sel.as-us.falkag.net/sel?cmd=ln
k&kid=120709&bid=263057&
> | dat=121642
> | _______________________________________________
> | Pebble-user mailing list
> | Pebble-user lists.sourceforge.net
> | https://lists.sourceforge.net/lists/listinfo/pebble-user
>
>
>
------------------------------------------------------------
-------------
> Using Tomcat but need to do more? Need to support web
services, security?
> Get stuff done quickly with pre-integrated technology
to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based
on Apache Geronimo
> http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Pebble-user mailing list
> Pebble-user lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebble-user
>
------------------------------------------------------------
-------------
Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo
http://sel.as-us.falkag.net/
sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Pebble-user mailing list
Pebble-user lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebble-user
|
|
| Array |

|
1969-12-31 18:00:00 |
We are looking for a generic solution that would apply to
all the classes. I
think it's better to be consistent across the framework e.g
Zend_Db,
Zend_Services_Google, Zend_Config (when possible), instead
of reinventing
the wheel each time.
As to how to support code completion, the only way is to
have people
instantiate concrete classes, e.g.:
$config = new Zend_Config_Ini("config.ini"...)
$db = new Zend_Db_MySQL(...)
$service = new Zend_Service_Google_Search(...)
There is a big advantage of this method as code completion
in IDEs would
significantly assist developers both in code-completing the
"long" names but
most important, code completing methods, properties and
constants. I see a
lot of value in that...
This doesn't mean that we couldn't have a factory if/when
needed. For Google
Services and Ini a factory probably would not be needed to
often in real
life. For Db when many apps might allow the user to
configure the data
source via GUI, it would make sense to make a factory
available to the user.
My recommendation would be to expose concrete classes, e.g.
go with KISS and
tooling friendly, but have a factory when that makes sense
such as for DB.
As to the factory, I'm not a big fan of strings because
tools can assist
that case, e.g. new Zend_Db("PDO_MYSQL",..). The
problem though is that
class constants tend to be a bit too ugly in this case
although they are
much friendlier. Another option would be to use global
constants, e.g.
ZEND_DB_PDO_MYSQL to achieve
$db = new Zend_Db(ZEND_DB_PDO_MYSQL, ...)
Andi
> -----Original Message-----
> From: Matthew Ratzloff [mailto:matt builtfromsource.com]
> Sent: Thursday, August 17, 2006 10:25 AM
> To: Zend Framework General
> Subject: Re: [fw-general] Decision:
> loadData('xml:/something/bar.xml'); vs. new
Foo('/something/bar.xml');
>
> > More use cases and variants to consider:
> >
> > const GOOGLE_TRANSLATE = "TRANSLATE";
> > const GOOGLE_SEARCH = "SEARCH";
> >
> > $someService = new Zend_Service(GOOGLE_TRANSLATE,
> ''en','fr'); # code
> > completion works or $someService = new
> > Zend_Service('Google_Translate',
''en','fr'); or $someService = new
> > Zend_Service_Google('Translate',
''en','fr'); or $someService = new
> > Zend_Service_Google(TRANSLATE, ''en','fr'); #
code
> completion works or
> > $someService = new
Zend_Service_Google_Translate('en','fr'); # code
> > completion works
>
> By process of elimination:
>
> You've got to consider that not all service classes
will be
> included in the core (some will be user created, etc.),
so
> Zend_Service as a factory class is out. So that means
the
> first two options aren't viable.
>
> Zend_Service_Google_Translate is simply too long for a
class name.
>
> Actually, I'd prefer it to look something like this:
>
> $google = new Zend_Service_Google($license); $french
=
> $google->translate($english, "en",
"fr"); $results =
> $google->search($string); foreach($results as
$result) { ... }
>
> Have Zend_Service_Google handle the interface between
itself
> and Zend_Service_Google_Translate (caching objects as
necessary).
>
> -Matt
>
|
|
| THIS MESSAGE COULD BE ONCE IN A LIFETIME
OPPURTUNITY PLEASE READ IT |

|
2006-08-18 06:03:20 |
|
YOU jerk, taking advantage of people with problems, I'm reporting you this is a SCAM!!!!!!!take me off your e-mail or you'l wish you had
julieanderson888 <julieanderson888 yahoo.com> wrote: FAST CASH ----------------------------------------------------------
READING THIS COULD CHANGE YOUR LIFE! PLEASE READ ALL! READING
I found this on a bulletin board and decided to try it. A little while back, I was browsing through newsgroups, just like you are now, and came across an
article similar to this that said you could make thousands of dollars within weeks with only an initial investment of $6.00! So I thought, Yeah right, this must be a scam, but like most of us, I was curious, so I kept reading. Anyway, it said that you send $1.00 to each of the 6 names and address stated in the article. You then place your own name and address in the bottom of the list at #6, and post the article in at least 200 newsgroups.
(There are thousands) No catch, that was it. So after thinking it over, and talking to a few people first, I thought about trying it. I figured: what have I got to lose except 6 stamps and $6.00, right? Then I invested the measly $6.00. Well GUESS WHAT!!...
within 7 days, I started getting money in the mail! I was shocked! I figured it would end soon, but the money just kept coming in. In my first week, I made about $25.00. By the end of the second week I had
made a total of over $1,000.00! In the third week I had over $10,000.00 and it's still growing. This is now my fourth week and I have made a total of just over $42,000.00 and it's still coming in rapidly. It's certainly worth $6.00, and 6 stamps, I have spent more than that on the lottery!! Let me tell you how this works and most importantly, why it works.... Also, make sure you print a copy of this article NOW, so you can get the information off of it, as you need it. I promise you that if you follow the directions exactly, that you will start making more money than you thought possible by doing something so easy!
Suggestion: Read this entire message carefully! (Print it out or download it.) Follow the simple directions and watch the money come in!
It's easy. It's legal. And, your investment is only $6.00 (Plus postage)
IMPORTANT: This is not a rip-off; it is not indecent; it is not
illegal; and
it is virtually no risk - it really works!!!!
If all of the following instructions are adhered to, you will receive
extraordinary dividends.
PLEASE NOTE:
Please follow these directions EXACTLY, and $50,000 or more can be yours in 20 to 60 days. This program remains successful because of the honesty and integrity of the participants. Please continue its success by carefully adhering to the instructions. You will now become part of the Mail Order business. In this business your product is not solid and tangible, it's a service. You are in the business of developing Mailing Lists. Many large corporations are happy to pay big bucks for quality lists. However, the money made from the mailing lists is secondary to the income, which is made from people like you and me asking to be included in that list.
Here are the 4 easy steps to success:
STEP 1: Get 6 separate pieces of paper and write the
following on each piece of paper; PLEASE PUT ME ON YOUR MAILING LIST. Now get 6 US $1.00 bills and place ONE inside EACH of the 6 pieces of paper so the bill will not be seen through the envelope (to prevent thievery). Next, place one paper in each of the 6 envelopes and seal them. You should now have 6 sealed envelopes, each with a piece of paper stating the above phrase, your name and address, and a $1.00 bill. What you are doing is creating a service. THIS IS ABSOLUTELY LEGAL! You are requesting a legitimate service and you are paying for it! Like most of us I was a little skeptical and a little worried about the legal aspects of it all. So I checked it out with the U.S. Post Office (1-800-725-2161) and they confirmed that it is indeed legal! Mail the 6 envelopes to the following addresses:
#1) Ryan Tucker
301 Royal Oaks Blvd. Apt. 3105
Franklin, TN 37067
USA
#2) Bryan
Payne
157 Oates Ave, Holland Park
Brisbane, Queensland,
Australia 4121
#3) Jon Hayes
20 teeple st.
Woodstock On.
N4S-3Y7
USA
#4) Anthony M. Ceballos
927A E. Lexington Dr.
Glendale, CA 91206 USA
#5) K. Baker
P.P. Box 23051
Waco, Texas 76702
USA
#6) Moris Balli
Kashani 3/b 40
Tel Aviv 69499
ISRAEL
STEP 2: Now take the #1 name off the list that you see above, move the other names up (6 becomes 5, 5 becomes 4, etc...) and add YOUR Name as number 6 on the list.
STEP 3: Change anything you need to, but try to keep this article as close to original as possible. Now, post your amended article to at least 200 newsgroups. (I think there are close to 24,000 groups) All you need is 200, but remember, the more you post, the more money you make!
This is perfectly legal! If you have any doubts, refer to
Title 18 Sec. 1302 & 1341 of the Postal lottery laws.
Keep a copy of these steps for yourself and, whenever you need money, you can use it again, and again.
PLEASE REMEMBER that this program remains successful because of the honesty and integrity of the participants and by their carefully adhering to the directions. Look at it this way. If you are of integrity, the program will continue and the money that so many others have received will come your way.
NOTE: You may want to retain every name and address sent to you, either on a computer or hard copy and keep the notes people send you.
This VERIFIES that you are truly providing a service. (Also, it might be a good idea to wrap the $1 bill in dark paper to reduce the risk of mail theft.)
So, as each post is downloaded and the directions carefully followed, six members will be reimbursed for their participation as a List Developer
with one dollar each. Your name will move up the list geometrically so that when your name reaches the #1 position you will be receiving thousands of dollars in CASH!!! What an opportunity for only $6.00 ($1.00 for each of the first six people listed above) Send it now, add your own name to the list and you're in business!
--DIRECTIONS ----- FOR HOW TO POST TO NEWSGROUPS--------- (If you don't have an add posting programme)
Step 1) You do not need to re-type this entire letter to do your own posting. Simply put your cursor at the beginning of this letter and drag your cursor to the bottom of this document, and select 'copy' from the edit menu. This will copy the entire letter into the computer's memory.
Step 2) Open a blank 'notepad' file and place your cursor at the top of the blank page. From the 'edit' menu select 'paste'. This will paste a copy of the letter into notepad so that you
can add your name to the list.
Step 3) Save your new notepad file as a .txt file. If you want to do your postings in different settings, you'll always have this file to go back to.
Step 4) Use Netscape or Internet explorer and try searching for various newsgroups (on-line forums, message boards, chat sites, discussions.)
Step 5) Visit these message boards and post this article as a new message by highlighting the text of this letter and selecting paste from the edit menu. Fill in the Subject, this will be the header that everyone sees as they scroll through the list of postings in a particular group, click the post message button. You're done with your first one! Congratulations...THAT'S IT! All you have to do is jump to different newsgroups and post away, after you get the hang of it, it will take about 30 seconds for each newsgroup!
**REMEMBER, THE MORE NEWSGROUPS YOU POST IN, THE
MORE MONEY YOU WILL MAKE!! BUT YOU HAVE TO POST A MINIMUM OF 200**
That's it! You will begin receiving money from around the world within days! You may eventually want to rent a P.O.Box due to the large amount of mail you will receive. If you wish to stay anonymous, you can invent a name to use, as long as the postman will deliver it.
**JUST MAKE SURE ALL THE ADDRESSES ARE CORRECT.**
Now the WHY part:
Out of 200 postings, say I receive only 5 replies (a very low example). So then I made $5.00 with my name at #6 on the letter. Now, each of the 5 persons who just sent me $1.00 make the MINIMUM 200 postings, each with my name at #5 and only 5 persons respond to each of the original 5, that is another $25.00 for me. Now those 25 each make 200 MINIMUM posts with my name at #4 and only 5 replies each, I will bring in an additional $125.00! Now, those 125 persons turn around and post the MINIMUM
200 with my name at #3 and only receive 5 replies each, I will make an additional $626.00! OK, now here is the fun part, each of those 625 persons post a MINIMUM 200 letters with my name at #2 and they each only receive 5 replies, that just made me $3,125.00!!! Those 3,125 persons will all deliver this message to 200 newsgroups with my name at #1 and if still 5 persons per 200 newsgroups react I will receive $15,625,00! With an original investment of only $6.00! AMAZING! When your name is no longer on the list, you just take the latest posting in the newsgroups, and send out another $6.00 to names on the list, putting your name at number 6 again. And start posting again. The thing to remember is: do you realize that thousands of people all over the world are joining the Internet and reading these articles everyday? JUST LIKE YOU are now!! So, can you afford $6.00 and see if it really works?? I think so...
People have said, & quote; what if the plan is played out and no one sends you the money? So what! What are the chances of that happening when there are tons of new honest users and new honest people who are joining the Internet and newsgroups everyday and are willing to give it a try? Estimates are at 20,000 to 50,000 new users, every day, with thousands of those joining the actual Internet.
Remember: play FAIRLY and HONESTLY and this will really work.
__._,_.___
.
__,_._,___
|
[1-3]
|
|