Re: [TYPO3-english] typo3 4.7.x; how to install local t3x

2012-05-28 Thread Victor Livakovsky

Hi, Mohamed.


http://www.easymoments.de/uploads/media/typo3-4.7-neuerungen.pdf

there is all what´s new in typo3 4.7.0


Really nice article.
But I'm missing one thing: page 44 shows, that it's possible to add cache 
tags to a page. However, I can’t see such a field in my page properties at 
4.7.0. Can you see it? 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] extension searched - showing cars, has a filter

2012-05-28 Thread Kevin Owens

TT_News can do it..
 
see here
 
http://www.justwings.co.uk/cms_new
 
Regards Kevin 
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] pagebrowse with search function - id gets lost

2012-05-28 Thread Dmitry Dulepov

Hi!

Robert Wildling wrote:

I thought that I have to send the category values to the pagebrose
function like this:


No, you don't do it like this:


(myExt)
...
function getPageBrowserContent($numberOfPages,$cat,$prov) {
$conf = $GLOBALS['TSFE']-tmpl-setup['plugin.']['tx_pagebrowse_pi1.'];
$conf += array(
'pageParameterName' = $this-prefixId . '|page',
'numberOfPages' = $numberOfPages,
'category' = $cat,
'province' = $prov
);


There are no category and provice options for the page browser 
configuration. This array does not contain variables for links, it contains 
only the options described in the manual. If you add yours they are ignored 
because they are not known to the extension.


Have a look to the manual on page 9. It describes the extraQueryString 
parameter. This is what you need to use.


--
Dmitry Dulepov
TYPO3 core team member
Blog: http://dmitry-dulepov.com/
Twitter: http://twitter.com/dmitryd

Simplicity will save the world.

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] extension searched - showing cars, has a filter

2012-05-28 Thread Andreas Becker
Hi check out http://gruene-autos.org/

it is based on browser and the extension gruene-autos.
http://gruene-autos.org/gruene-autos-download/

You can integrate it also with Facebook

Slightly modified you could also use the extension realty which offers
quite good search functionality

Check out also the other extensions based on the browser as they are easy
to modify and offer lit's of stuff more or less just after their
installation already. They are very fast to implement!

Andi


On Mon, May 28, 2012 at 6:21 PM, Kevin Owens gsxr1000u...@hotmail.co.ukwrote:


 TT_News can do it..

 see here

 http://www.justwings.co.uk/cms_new

 Regards Kevin
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Pushing with EGit

2012-05-28 Thread arno dudek

Hi List!

I've troubles with EGit (with Aptana).

I used the doc http://wiki.typo3.org/Contribution_Walkthrough_with_EGit 
to do some changes. I think I've got it to Pushing the change to 
Gerrit 
(http://wiki.typo3.org/Contribution_Walkthrough_with_EGit#Pushing_the_change_to_Gerrit) 
so far.


What I've done till now:
Create repository
Create local branche of TYPO3_6-0-0alpha1
Made changes
Commit (with right click on the repository)

But now, if I want to Push to upstream (with right click on the 
repository) the message An internal Exception occurred during push: 
git://git.typo3.org/TYPO3v4/Core.git: push not permitted appear.


I don't know where to set the login. And I wasn't ask for the login, 
like described in the doc.


Pleas can you help me?

lg arno

ps.: I'm not using the terminal for git, only per GUI ;)
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TS constants setup to rescale images with fixed height

2012-05-28 Thread De Contardi Riccardo
A question about css styled content that is driving me nuts, please
help!

I use TYPO3 4.7, and I've written in my main TS Template:

 

styles.content{

 

imgtext.linkWrap.width = 266
imgtext.maxWInText = 266
imgtext.maxW = 798

 

}

 

On another page I've set an ext template, as in this page (and
following) I want the following behavior for images in text/w image
elements (beside text, right):

 

1. the images must have a fixed height of 537px

2. the width must resize accordingly maintaining the proportions

 

3. I want to put the images in a single line (3 columns or more), and I
don't care about how they become large: I'll use an overflow:hidden
container to cut the element to the correct size.

 

Please help me, this is urgent!!

Thank you for your support and best regards

 

 


Riccardo De Contardi - Web Developer
B Human Srl - www.bhuman.it http://www.bhuman.it 
Via Canzio, 15 - 20131 Milano
TEL +39-02-20.23.271 - FAX +39-02-20.240.561


 

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] extension searched - showing cars, has a filter

2012-05-28 Thread Denis Torgal

On 28.05.2012 13:21, Kevin Owens wrote:


TT_News can do it..

see here

http://www.justwings.co.uk/cms_new


That is cool. And I can see in a minute how it is done. Great Example, 
thanks.


Denny.


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] extension searched - showing cars, has a filter

2012-05-28 Thread Denis Torgal

On 28.05.2012 14:26, Andreas Becker wrote:

Hi check out http://gruene-autos.org/

it is based on browser and the extension gruene-autos.
http://gruene-autos.org/gruene-autos-download/

You can integrate it also with Facebook

Slightly modified you could also use the extension realty which offers
quite good search functionality

Check out also the other extensions based on the browser as they are easy
to modify and offer lit's of stuff more or less just after their
installation already. They are very fast to implement!


Hi Andi,

thanks. This Browser ext looks promising. I heard many times of it. 
Think the name is not good chosen. But I will dig now more in it.


KR

Denny
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] How to add a rootlevel template

2012-05-28 Thread Rowan Sylvester-Bradley
Thanks for your help.

 To create a record on any page, look for
 the icon that looks like a sheet with a green plus on it. 

There seem to be two identical icons with a green + sign, one above the tree
called Create New Pages, and one above the right hand pane called Create New
Page. Just to confuse me further, there is another very similar icon with a
green + called Create New Content Element.

Is a Template a Page, or a Content Element? Which of these three icons do I
use to create a new root level template?

 This will open the 'add record' menu. You will see template listed there. 

If I click Create New Page, I don't see any Add Record menu - a New Record
screen opens up. This confuses me by asking where I want to put the page (I
don't want to put it anywhere in the tree - this is not a page in the
normal sense) and it doesn't offer anything to do with templates.

 See the right pane on this image

My screens don't look like this, and I see no magnifying glass, or any new
record image.

My basic screen looks like this:
http://www.sylvester-bradley.org/images/TYPO3a.png 

After I've clicked Create New Page, it looks like this:
http://www.sylvester-bradley.org/images/TYPO3b.png 

Sorry - I must be very stupid, but I don't seem able to follow your
guidance. Any idea what's going wrong?

Thanks - Rowan



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] How to add a rootlevel template

2012-05-28 Thread Richard Davies
Hi Rowan,

I should have mentioned you need to be in the 'Web' - 'List' view on the
left to add records other than page elements. Its in the same place as the
other two icons you found.

Richard

On 29 May 2012 11:12, Rowan Sylvester-Bradley
ro...@sylvester-bradley.orgwrote:

 Thanks for your help.

  To create a record on any page, look for
  the icon that looks like a sheet with a green plus on it.

 There seem to be two identical icons with a green + sign, one above the
 tree
 called Create New Pages, and one above the right hand pane called Create
 New
 Page. Just to confuse me further, there is another very similar icon with a
 green + called Create New Content Element.

 Is a Template a Page, or a Content Element? Which of these three icons do I
 use to create a new root level template?

  This will open the 'add record' menu. You will see template listed there.

 If I click Create New Page, I don't see any Add Record menu - a New Record
 screen opens up. This confuses me by asking where I want to put the page (I
 don't want to put it anywhere in the tree - this is not a page in the
 normal sense) and it doesn't offer anything to do with templates.

  See the right pane on this image

 My screens don't look like this, and I see no magnifying glass, or any new
 record image.

 My basic screen looks like this:
 http://www.sylvester-bradley.org/images/TYPO3a.png

 After I've clicked Create New Page, it looks like this:
 http://www.sylvester-bradley.org/images/TYPO3b.png

 Sorry - I must be very stupid, but I don't seem able to follow your
 guidance. Any idea what's going wrong?

 Thanks - Rowan



 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] extension searched - showing cars, has a filter

2012-05-28 Thread Andreas Becker
Hi Denny

with the name browser you are probably right as it is very difficult to
find additional information about it via Google i.e. from other Projects
done with it from other developers than the extension creators. Simply
bookmark their site ;-) http://typo3-browser.de/ Here you find everything
youneed - especially very fast and great help from the developer himself.
Thanks to Dirk!

But on the other hand Dirks documentation is so so great and IMHO it is one
of the best documented extensions at all in TYPO3 Extension repository.
Simply test it and you will see that it will take about 5 Minutes to set it
up after you have downloaded it.

Andi



On Tue, May 29, 2012 at 4:15 AM, Denis Torgal denis.tor...@yahoo.comwrote:

 On 28.05.2012 14:26, Andreas Becker wrote:

 Hi check out http://gruene-autos.org/

 it is based on browser and the extension gruene-autos.
 http://gruene-autos.org/**gruene-autos-download/http://gruene-autos.org/gruene-autos-download/

 You can integrate it also with Facebook

 Slightly modified you could also use the extension realty which offers
 quite good search functionality

 Check out also the other extensions based on the browser as they are easy
 to modify and offer lit's of stuff more or less just after their
 installation already. They are very fast to implement!


 Hi Andi,

 thanks. This Browser ext looks promising. I heard many times of it. Think
 the name is not good chosen. But I will dig now more in it.

 KR

 Denny

 __**_
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**englishhttp://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] pagebrowse with search function - id gets lost

2012-05-28 Thread Robert Wildling

Thanks, Dmitry, for your response.

I already tried that extraQueryString, but couldn't get it to work. it 
would be great if you could provide for an example (here and in the 
manual). The information provided in the manual is not enough.


Thanks.
Robert



Have a look to the manual on page 9. It describes the extraQueryString
parameter. This is what you need to use.



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english