Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
com_hello for Joomla!1.6
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  11 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Christophe Demko  
View profile  
 More options Jun 3, 4:49 am
From: Christophe Demko <chde...@gmail.com>
Date: Wed, 3 Jun 2009 01:49:07 -0700 (PDT)
Local: Wed, Jun 3 2009 4:49 am
Subject: com_hello for Joomla!1.6
Hi to all,

I published a com_hello for Joomla!1.6 at http://joomlacode.org/gf/project/helloworld_1_6/

It uses
-JForms
-compound controllers
-categories (it seems to be still buggy)
-autopopulated models
-JModelItem and JModelList

Actually it can only be used with the experimental branches.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christophe Demko  
View profile  
 More options Jun 30, 4:26 am
From: Christophe Demko <chde...@gmail.com>
Date: Tue, 30 Jun 2009 01:26:10 -0700 (PDT)
Local: Tues, Jun 30 2009 4:26 am
Subject: Re: com_hello for Joomla!1.6
I updated this component. It works with the J!1.6 alpha version

On 3 juin, 10:49, Christophe Demko <chde...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lalitesh  
View profile  
 More options Jul 2, 1:17 pm
From: Lalitesh <lklalit...@gmail.com>
Date: Thu, 2 Jul 2009 10:17:57 -0700 (PDT)
Local: Thurs, Jul 2 2009 1:17 pm
Subject: Re: com_hello for Joomla!1.6
Hi,

Where can I download J1.6 from?

Thanks,
lalitesh

On Jun 3, 1:49 pm, Christophe Demko <chde...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lalitesh  
View profile  
 More options Jul 2, 1:29 pm
From: Lalitesh <lklalit...@gmail.com>
Date: Thu, 2 Jul 2009 10:29:22 -0700 (PDT)
Local: Thurs, Jul 2 2009 1:29 pm
Subject: Re: com_hello for Joomla!1.6
Hi,

Where the function "_populateState" (it is in front end model file)
is called from?

thanks,
lalitesh

On Jun 3, 1:49 pm, Christophe Demko <chde...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Amy Stephen  
View profile  
 More options Jul 2, 1:48 pm
From: Amy Stephen <amystep...@gmail.com>
Date: Thu, 2 Jul 2009 12:48:10 -0500
Local: Thurs, Jul 2 2009 1:48 pm
Subject: Re: com_hello for Joomla!1.6

http://joomlacode.org/gf/project/helloworld_1_6/

I found the link in the note you forwarded ;-) hehe!

Have fun,
Amy :)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Rowland  
View profile  
 More options Jul 3, 3:52 am
From: Ed Rowland <rowland...@googlemail.com>
Date: Fri, 3 Jul 2009 09:52:43 +0200
Local: Fri, Jul 3 2009 3:52 am
Subject: Re: com_hello for Joomla!1.6

Hi,

hope you find all you need. Good luck and have fun.

Ed


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christophe Demko  
View profile  
 More options Jul 7, 7:36 am
From: Christophe Demko <chde...@gmail.com>
Date: Tue, 7 Jul 2009 04:36:10 -0700 (PDT)
Local: Tues, Jul 7 2009 7:36 am
Subject: Re: com_hello for Joomla!1.6

On 2 juil, 19:29, Lalitesh <lklalit...@gmail.com> wrote:

> Hi,

> Where the function "_populateState" (it is in front end model file)
> is called from?

It's called by the J!1.6 models (look at code in librairies/joomla/
application/component/model*.php


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Zachariah  
View profile  
 More options Jul 23, 4:10 pm
From: Zachariah <craniumcomput...@gmail.com>
Date: Thu, 23 Jul 2009 13:10:16 -0700 (PDT)
Local: Thurs, Jul 23 2009 4:10 pm
Subject: Re: com_hello for Joomla!1.6
I noticed in reviewing the com_content of the current branch that it
is using:

jimport('joomla.database.query');

and

$this->_db->setQuery($query);
$data = $this->_db->loadObject();

whereas in the com_hello it still uses

$db = & $this->getDBO();
$db->setQuery($query->toString(), 0, 1);
$msg = & $db->loadObject();

is there an advantage to one or the other? In the com_content they
don't use $query->toString in the setQuery method. Just curious why it
is used in com_hello?

I have a ton of other questions after reading through the source of
the new com_content... where does all of that get discussed? I don't
see a large amount of discussion on this mailing list (or maybe I
haven't looked far enough back), especially on ACL development. Is
there an IRC channel or somewhere else where this stuff gets
discussed?

Thanks!

~Zachariah


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Zachariah  
View profile  
 More options Jul 23, 4:14 pm
From: Zachariah <craniumcomput...@gmail.com>
Date: Thu, 23 Jul 2009 13:14:04 -0700 (PDT)
Local: Thurs, Jul 23 2009 4:14 pm
Subject: Re: com_hello for Joomla!1.6
...before you answer the 'where else is this discussed' I'm also on
the joomla-dev-cms list, and there still seems to be some
communication that has to be taking place on development that goes on
elsewhere (assuming). I'm just anxious to understand all the workings
and obviously it's not to a documentation stage.

~Zachariah

On Jul 23, 2:10 pm, Zachariah <craniumcomput...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Andrew Eddie  
View profile  
 More options Jul 23, 8:19 pm
From: Andrew Eddie <mambob...@gmail.com>
Date: Fri, 24 Jul 2009 10:19:02 +1000
Local: Thurs, Jul 23 2009 8:19 pm
Subject: Re: com_hello for Joomla!1.6
Hi Zachariah

The JQuery class now has a __toString magic method and setQuery casts
the incoming query to a string.  It might not have been in when
com_hello was first created.  My preference is to now use:

$this->_db->setQuery($query);

Hope this helps.

Regards,
Andrew Eddie
http://www.theartofjoomla.com - the art of becoming a Joomla developer

2009/7/24 Zachariah <craniumcomput...@gmail.com>:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christophe Demko  
View profile  
 More options Jul 25, 3:01 am
From: Christophe Demko <chde...@gmail.com>
Date: Sat, 25 Jul 2009 00:01:50 -0700 (PDT)
Local: Sat, Jul 25 2009 3:01 am
Subject: Re: com_hello for Joomla!1.6
@Zachariah,

I will change the code of com_hello to be like com_content when my
summer holidays will be finished (com_hello was written before J!1.6
alpha was released)
Ch.D

On 24 juil, 02:19, Andrew Eddie <mambob...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google