[TYPO3-english] Templavoila redirecting page view in back end to home page

2016-04-06 Thread Simon Browning

I've got an odd issue, has anyone seen this?

Client has a new server so we were able to properly update to 6.2.

When templavoila is enabled the front end is fine, but in the back end requests 
for any page in Page mode redirect to the home page of the site, and show View 
mode, or basically the front end version of the home page in the back end.  I 
can see the redirect happening in the network tab of chrome, but don't know why 
it is happening.

If we turn off TV, pages in the back end come up as expected (only its a TV 
site, so we can't leave it this way).

Any suggestions would be most appreciated.

Thank you

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


Re: [TYPO3-english] Templavoila is outdated ?

2016-03-14 Thread Dmitry Dulepov

Hi!

TSniper wrote:

Thank you for those informations, what do you recommand for custom fces
(Text+images+custom buttons) ?


Personally I would go with http://fluidtypo3.org/ stack (flux, 
fluidcontent, vhs, etc).


--
Dmitry Dulepov

Today is a good day to have a good day.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila is outdated ?

2016-03-12 Thread Ralf-Rene Schröder
Am 12.03.2016 um 15:09 schrieb TSniper:
> For a new relaunche what is the best options to create the new FCEs
> (text images links) ? Because as i have read, gridelements is
> recommended for columns and wrappers not for fces.
i normaly use a combination of gridelements and dce (dce i haven't
prooved with 7.x)

-- 
image[FORMAT] - Ralf-René Schröder
http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Templavoila is outdated ?

2016-03-12 Thread Jigal van Hemert

Hi,

On 11/03/2016 17:10, TSniper wrote:

Thank you for those informations, what do you recommand for custom fces
(Text+images+custom buttons) ?


As long as there are no areas which can contain other content elements 
you can easily make your own custom content elements. There are 
solutions that are technically a lot better, but this way you can 
migrate FCEs with limited effort.


Some people won't like this method because the data is still stored in 
flexforms, but it's the easiest solution to use the existing data and 
still have the FCEs in the backend


- copy in tt_content the contenst of colum tx_templavoila_flex to 
pi_flexform ; this contains the data of the FCE; set the CType field to 
the name of the FCE (in this example: 'terslider')


- copy the flexform DS to a file and remove the structures that are 
specific for TemplaVoilà. This is the flexform that we'll register later 
for use in tt_content


- in an extension you can configure the content element for the BE in 
file Configuration/TCA/Overrides/tt_content.php like this example


$GLOBALS['TCA']['tt_content']['columns']['CType']['config']['items'][] = 
array(


'LLL:EXT:typo3coder/Resources/Private/Language/newContentElements.xlf:extra_terslider_title',
  'terslider',
  'EXT:typo3coder/Resources/Public/Backend/Images/terslider_small.png'
);

No we've added a CType item for a CE 'terslider'.

// flexform for pi_flexform field
$GLOBALS['TCA']['tt_content']['columns']['pi_flexform']['config']['ds'][',terslider'] 
=

  'FILE:EXT:typo3coder/Configuration/FlexForms/flexform_terslider.xml';

This line registered the flexform file from the previous step for the 
CType 'terslider'.


$GLOBALS['TCA']['tt_content']['types']['terslider'] = array(
  'showitem' => 
'--palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.general;general,


section_frame;LLL:EXT:cms/locallang_ttc.xlf:section_frame_formlabel,
pi_flexform; ;,

--div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.access,
 
--palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.visibility;visibility,


--palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.access;access,

--div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.extended'
);

This is the hardest part, we determine which fields and tabs must be 
visible in the BE for this content element: the general tab, access 
field and the (empty) extended tab. Luckily there is a ton of 
inspiration in all the content elements from the core itself.


- In this example I'll still use CSS Styled Content, mainly because it's 
less work for an upgrade project. Otherwise you need to migrate the 
changes in rendering for use in Fluid Styled Content.

So, we can 'easily' define the rendering in TypoScript:

tt_content.terslider = FLUIDTEMPLATE
tt_content.terslider {
template = FILE
template.file = 
EXT:typo3coder/Resources/Private/Templates/ContentELements/Terslider.html

layoutRootPath = EXT:typo3coder/Resources/Private/Templates/Layout/
variables {
}
}

- The next thing we need to do is to make sure that the content element 
shows up in the New Content Element wizard:


mod {
  wizards.newContentElement.wizardItems.extra {
header = 
LLL:EXT:typo3coder/Resources/Private/Language/newContentElements.xlf:extra

elements {
  terslider {
iconIdentifier = conent-element-terslider
title = 
LLL:EXT:typo3coder/Resources/Private/Language/newContentElements.xlf:extra_terslider_title
description = 
LLL:EXT:typo3coder/Resources/Private/Language/newContentElements.xlf:extra_terslider_description

tt_content_defValues {
  CType = terslider
}
  }
}
show = *
  }
}

- The last thing is to make a fluid template for the rendering. You can 
copy a lot from the old TV mapping. To access the fields in the flexform 
you need a flexform viewhelper; an example of such a viewhelper is in 
the extension described in the next paragraph.


You can find all this in the extension "sitepackage" (available in TER). 
In the documentation of that extension a lot of the configuration is 
explained. A version specific for TYPO3 7 LTS is in the making.



What can i do for custom extensions, the upgrade process tell me to
uninstall them all before i can go to the next step ? these extensions
are all pi base. Can you tell me how to migrate them with their content ?


Pi_base extensions still work, but need some changes. The class names 
need to be migrated and some includes have to be removed, but this is 
generally quite easy to do. The marker based templates can still be used 
and all the data for these extensions can still be used.


It's quite a bit of work altogether, but once you get the hang of it 
you'll get faster :-)


--
Jigal van Hemert
TYPO3 CMS Active Contributor

TYPO3  inspiring people to share!
Get involved: typo3.org

Re: [TYPO3-english] Templavoila is outdated ?

2016-03-11 Thread Ralf-Rene Schröder
> Thank you for those informations, what do you recommand for custom fces
> (Text+images+custom buttons) ?

> What can i do for custom extensions, the upgrade process tell me to
> uninstall them all before i can go to the next step ? these extensions
> are all pi base. Can you tell me how to migrate them with their content ?

sorry to say that - i think a complete new technical relaunch would be
the best solution in this case...

-- 
image[FORMAT] - Ralf-René Schröder
http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Templavoila is outdated ?

2016-03-11 Thread Jigal van Hemert

Hi,

On 11/03/2016 11:57, TSniper wrote:

Can any body explain why i can not use Templavoila when i upgrade my
project from 6.2 to 7.4 version ?
The upgrade process tell me that i must uninstall Templavoila because it
is uncompatible.
Also when i visit Typo3 TER website, i found that it is mentioned as
outdated.


TemplaVoilà is no longer maintained. There was a small group that 
released a version that was compatible with 6.2. They also tried to make 
it compatible with 7 LTS, but after some attempts with earlier versions 
of 7.x the changes in the core made it necessary to make larger 
modifications and even rewrite parts of the code of TV.


The upgrade to 7 LTS will also mean that you have to migrate to a 
different page templating system (Fluid templates and backend layouts 
being the most obvious) and convert FCEs to a different solution (FCEs 
which do not have areas that can contain other content elements can be 
converted into your own custom content element or into gridelements; 
FCEs with content element containers can be converted to gridelements)


--
Jigal van Hemert
TYPO3 CMS Active Contributor

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] templavoila: access parent flexform field in nested FCE with Typoscript

2016-02-16 Thread Gerhard Mehsel

Hello,

I have a multilevel nested TV FCE that contains sections and containers 
in sections and containers for other elements.
Why? In some situations the markup of the rendered FCE differs a little 
bit from the default output (some elements should sometimes be hidden, 
others should be rendered in columns instead of a single div etc.). A 
content editor should be able to respekt this with choosing a value from 
a selectbox at top of the FCE in backend.


The FCE looks like that for example:

ROOT
- Section Level 1
-- CO
--- Selectbox: field_type
--- ...
--- ...
--- Section Level 2
 CO
- ...
- EL, Rendering with Typoscript: field_abc
- EL: field_xyz
- ...


Within the same level I can change the output of an elemen with 
Typoscript because I can access other flexform fields

10 = TEXT
10 {
 field = field_abc
 if.isTrue.field = field_xyz
 wrap = |
}

But while preparing the field_abc (level 2) it is not possible to access 
the value from field_type on level 1, is it?


What can I do?

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


[TYPO3-english] TemplaVoila ERROR

2015-10-20 Thread Alexander Hallgren

Hi,

I'm moving sites to a new webserver and a couple of the Typo3 sites display 
this error on the new server:

TemplaVoila ERROR:

Couldn't find a Data Structure set for table/row "pages:3".
Please select a Data Structure and Template Object first.

Is there any quick fix to this?

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


[TYPO3-english] Templavoila field value to userfunc controller

2015-07-07 Thread Arun Chandran
Hi All,

I've a custom requirement to pass templavoila field value to userfunction
controller file. I am using Typo3 version 6.2.13 and my configurtaion like
this;

10 = USER
10 {
 userFunc = tx_extbase_core_bootstrap-run
 extensionName = ImageGallery
 pluginName = Imagegallery
 vendorName = TYPO3
 controller = Imagegallery
 action = list
 settings.field = field_gallery
}

In controller file, I've printed $this-settings array and it contains the
field_gallery variable. Not replacing the value of the field.

Please help me to achieve the solution.

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


[TYPO3-english] Templavoila-Migration [was: Announcing TYPO3 CMS 7.0]

2014-12-05 Thread Stefan Neufeind
On 12/05/2014 09:11 PM, Daniel Neugebauer wrote:
 Hi!
 
 Thanks for the clarification, that was the answer I was looking for. :)
 
 As we still have a lot of websites to migrate to 6.2, some relying
 heavily on TemplaVoila unfortunately

[...]

I don't want to start a flamewar on TV :-) But since you mentioned a
migration from TV to core-functionality, maybe this might help you.
Haven't yet tried it myself, I must admit.

http://www.derhansen.de/2014/01/typo3-in-place-migration-from.html

In-Place migration from TemplaVoila to Fluidtemplate and Grid Elements


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


[TYPO3-english] TemplaVoila ERROR: [moved Server]

2014-07-07 Thread Daniel McDonald
Hi, 
i moved site 1:1 to new webserver. 

i keep getting following error: 
--

TemplaVoila ERROR:

Couldn't find a Data Structure set for table/row pages:138.
Please select a Data Structure and Template Object first.
---
This is should be the Copy:  jmg.daka-media.de
Typo3 Version 4.6.6. 


Could somebody help me?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Templavoila 1.8.0 Bug

2014-05-25 Thread Web Essentials - Support (Man Math)

Hi List,

I am using TYPO3 6.1.5 and Templavoila 1.8.0. While I am trying to save 
new content or edit content it produced this error in my log file.


[Mon May 26 11:54:01.169559 2014] [core:error] [pid 7632] [client 
127.0.0.1:45470] End of script output before headers: php-fcgi-wrapper, 
referer: 
http://www.local.aba.web-essentials.asia/typo3/alt_doc.php?returnUrl=/typo3conf/ext/templavoila/mod1/index.php?id=10#c72d6a044f35b8140ce4743b882bf8c35edit[tt_content][7]=edit


What should I fix this problem?

Thanks,
Man

--
Please use supp...@web-essentials.asia for all
correspondence related to a support project.
Priority will be given to messages sent in English.

Web Essentials
Redefining Web Development

Man Math
Support Team

E: supp...@web-essentials.asia
W: www.web-essentials.asia

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


Re: [TYPO3-english] Templavoila

2013-09-25 Thread Jan Bednarik

Hi all,

so I've just installed TV under 6.1.5 and I still have the same error 
that tells me:


The directory  (relative to the website root) does not exist!

so I can't start the TV wizard.

I guess it will work if I just import t3d from my local dev or create TV 
DS manually, right?


But still, TV doesn't work 100% under 6.1 although some of you said that 
it's OK.


Jan

Dne 2.9.2013 21:38, Jim MacFarlane napsal(a):

Will Templavoila work with typo3 6.1?

Jim MacFarlane



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


Re: [TYPO3-english] Templavoila

2013-09-18 Thread Andreas Becker
Thanks for letting us know Markus

It is mainly a communicational Problem as we simply did not hear or read
any message that a patch has been applied and is ready for testing!
I guess those 40 other people simply don't know about it either. But you
are absolutely right about what you said as you are only one of many with
similar experiences and many of them already left TYPO3 to focus on
usability for their customers rather than waiting that TYPO3 will be much
more than a developer tool for the rich!

Very disappointing in terms of community!
We put millions of dollars and thousands of dollars to try to turn the
TYPO3 ship and it made just a little difference
Well, we have sold TYPO3 to many churches over the years and very few love
it and most have dumped it and got to WordPress or something else. That is
just the truth
Yes, we lose some great features when we don't use TYPO3 but TYPO3 is all
about features and not about the users
Why not go to WordPress and get work done instead of fighting the tool to
do the work
I don't think they TYPO3 developers want TYPO3 to be easy because they
will lose development money it remains a paid website developer tool for
people who sell fancy websites to others and make lots of money.
Setting up a Drupal base site gives you a result you can continue to work
for your project in minutes while TYPO3 often blocks you right at the
installation process
TYPO3 is a great tool for those who don't want to do fancy things with
their websites. You have much more flexibility in Drupal 7 and since big
NGOs and Governments switched to Drupal it is are very secure tool. In
Drupal 8 even Frontend Editing is coming so Editors don't have anymore the
need of a page tree as they can edit their content right in place - inline!
To be honest I would say, the TYPO3 Community has let us down.
At Typo3 they don't give a rats ass about user friendlyness. Neither for
developers nor for editors. That's why it losing market share so fast, it's
not competitive anymore with the likes of Drupal or Wordpress.
...
and you will find many more

TYPO3 has actually since beginning a nice slogan Inspire to share and the
Drupal community has brought it to what could be since years already in
TYPO3 - They are talking about the Drupal ECO System. and believe me it is
a real great experiencing it as it is real and not NATO like at TYPO3. (No
Action Talk Only).

Never mind we have not given up TYPO3 completely.
So let's have a look to the patch!

Thanks for your work!

Andi





On Tue, Sep 17, 2013 at 6:06 PM, Markus Klein klein...@mfc-linz.at wrote:

 Hi!



  http://forge.typo3.org/issues/44825 http://forge.typo3.org/issues/44825now 
 has a patch
 https://review.typo3.org/23788 since 5 days.



 The ticket has 45 votes, 10 watchers, Helmut and I created a patch and now
 5 days later we do not even have a single review!

 This is very very sad. Everybody is shouting loud and once we finally
 manage to provide a solution for this rather critical part of the Core,
 nobody is willing to test?



 Very disappointing in terms of community!



 ~ Markus



 

 Markus Klein

 TYPO3 CMS Active Contributors Team Member



 From: cocop...@gmail.com [mailto:cocop...@gmail.com] On Behalf Of Andreas
 Becker
 Sent: Thursday, September 12, 2013 11:26 AM
 To: Markus Klein; TYPO3 English
 Subject: Re: [TYPO3-english] Re: Templavoila



 http://forge.typo3.org/issues/37208



 http://forge.typo3.org/issues/44825#change-166894



 On Thu, Sep 12, 2013 at 3:08 PM, Markus Klein klein...@mfc-linz.at
 wrote:

 Hi Andreas!

 Would you be so kind and give us  the links to these blocking non-merged
 patches?

 --
 Kind regards
 Markus

 
 Markus Klein
 TYPO3 CMS Active Contributors Team Member



 ___
 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 mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila

2013-09-18 Thread Andreas Becker
Another add-on as I just had a look to Forge:

Pagerenderer / page.headerData + USER_INT is not working

Added by Bas van Beek http://forge.typo3.org/users/3008 8
monthshttp://forge.typo3.org/projects/typo3v4-core/activity?from=2013-01-26
ago.
Updated 1 
dayhttp://forge.typo3.org/projects/typo3v4-core/activity?from=2013-09-17
 ago.

8 ( E I G H T ) months ? This can't be true - or

It took eight months to get this simple thing fixed?

How many core releases did we had since in TYPO3 6 ??? and never one of the
core considered to work or integrate this patch ???

---

Hi Markus - I am not sure who is waiting 8 months like us and still with
TYPO3 but if one of those 40 depends on this patch to continue his work
i.e. setting up TYPO3 Multishops so that we will have TYPO3 Shop solutions
all over to promote TYPO3, than they probably already started testing out
Drupal Commerce which is a real great and flexible solution with lots of
available Templates and ready to use and start with distributions which
build on it!

I would not wonder if you now wait longer than 8 months to get again more
than 40 votes for this patch!

Perhaps best would be to contact those people directly and ask them if they
are still with TYPO3 and could test the patch!

jm2c

Andi




On Thu, Sep 19, 2013 at 7:54 AM, Andreas Becker ab.bec...@web.de wrote:

 Thanks for letting us know Markus

 It is mainly a communicational Problem as we simply did not hear or read
 any message that a patch has been applied and is ready for testing!
 I guess those 40 other people simply don't know about it either. But you
 are absolutely right about what you said as you are only one of many with
 similar experiences and many of them already left TYPO3 to focus on
 usability for their customers rather than waiting that TYPO3 will be much
 more than a developer tool for the rich!

 Very disappointing in terms of community!
 We put millions of dollars and thousands of dollars to try to turn the
 TYPO3 ship and it made just a little difference
 Well, we have sold TYPO3 to many churches over the years and very few love
 it and most have dumped it and got to WordPress or something else. That is
 just the truth
 Yes, we lose some great features when we don't use TYPO3 but TYPO3 is all
 about features and not about the users
 Why not go to WordPress and get work done instead of fighting the tool to
 do the work
 I don't think they TYPO3 developers want TYPO3 to be easy because they
 will lose development money it remains a paid website developer tool for
 people who sell fancy websites to others and make lots of money.
 Setting up a Drupal base site gives you a result you can continue to work
 for your project in minutes while TYPO3 often blocks you right at the
 installation process
 TYPO3 is a great tool for those who don't want to do fancy things with
 their websites. You have much more flexibility in Drupal 7 and since big
 NGOs and Governments switched to Drupal it is are very secure tool. In
 Drupal 8 even Frontend Editing is coming so Editors don't have anymore the
 need of a page tree as they can edit their content right in place -
 inline!
 To be honest I would say, the TYPO3 Community has let us down.
 At Typo3 they don't give a rats ass about user friendlyness. Neither for
 developers nor for editors. That's why it losing market share so fast, it's
 not competitive anymore with the likes of Drupal or Wordpress.
 ...
 and you will find many more

 TYPO3 has actually since beginning a nice slogan Inspire to share and the
 Drupal community has brought it to what could be since years already in
 TYPO3 - They are talking about the Drupal ECO System. and believe me it is
 a real great experiencing it as it is real and not NATO like at TYPO3. (No
 Action Talk Only).

 Never mind we have not given up TYPO3 completely.
 So let's have a look to the patch!

 Thanks for your work!

 Andi





 On Tue, Sep 17, 2013 at 6:06 PM, Markus Klein klein...@mfc-linz.at
 wrote:

  Hi!
 
 
 
   http://forge.typo3.org/issues/44825
 http://forge.typo3.org/issues/44825now has a patch
  https://review.typo3.org/23788 since 5 days.
 
 
 
  The ticket has 45 votes, 10 watchers, Helmut and I created a patch and
 now
  5 days later we do not even have a single review!
 
  This is very very sad. Everybody is shouting loud and once we finally
  manage to provide a solution for this rather critical part of the Core,
  nobody is willing to test?
 
 
 
  Very disappointing in terms of community!
 
 
 
  ~ Markus
 
 
 
  
 
  Markus Klein
 
  TYPO3 CMS Active Contributors Team Member
 
 
 
  From: cocop...@gmail.com [mailto:cocop...@gmail.com] On Behalf Of
 Andreas
  Becker
  Sent: Thursday, September 12, 2013 11:26 AM
  To: Markus Klein; TYPO3 English
  Subject: Re: [TYPO3-english] Re: Templavoila
 
 
 
  http://forge.typo3.org/issues/37208
 
 
 
  http://forge.typo3.org/issues/44825#change-166894
 
 
 
  On Thu, Sep 12, 2013 at 

Re: [TYPO3-english] Templavoila

2013-09-18 Thread Markus Klein
Hi!

I know it has been a long time, but I heard about this issue only recently.

And I've to correct you: This is far off a simple thing. Although this patch 
now looks rather simple, it is by far not simple what is behind the whole 
process.
If it were that simple, someone of those 40 people would have provided a patch 
already 8 month ago.
Even the multishop author himself, who posted the bug, could not provide a 
patch, although I'm pretty sure he know TYPO3 CMS quite well too.

Kind regards
Markus


Markus Klein
TYPO3 CMS Active Contributors Team Member

 -Original Message-
 From: typo3-english-boun...@lists.typo3.org [mailto:typo3-english-
 boun...@lists.typo3.org] On Behalf Of Andreas Becker
 Sent: Thursday, September 19, 2013 3:31 AM
 To: TYPO3 English
 Subject: Re: [TYPO3-english] Templavoila
 
 Another add-on as I just had a look to Forge:
 
 Pagerenderer / page.headerData + USER_INT is not working
 
 Added by Bas van Beek http://forge.typo3.org/users/3008 8
 monthshttp://forge.typo3.org/projects/typo3v4-core/activity?from=2013-
 01-26
 ago.
 Updated 1 dayhttp://forge.typo3.org/projects/typo3v4-
 core/activity?from=2013-09-17
  ago.
 
 8 ( E I G H T ) months ? This can't be true - or
 
 It took eight months to get this simple thing fixed?
 
 How many core releases did we had since in TYPO3 6 ??? and never one of
 the core considered to work or integrate this patch ???
 
 ---
 
 Hi Markus - I am not sure who is waiting 8 months like us and still with
 TYPO3 but if one of those 40 depends on this patch to continue his work i.e.
 setting up TYPO3 Multishops so that we will have TYPO3 Shop solutions all
 over to promote TYPO3, than they probably already started testing out
 Drupal Commerce which is a real great and flexible solution with lots of
 available Templates and ready to use and start with distributions which build
 on it!
 
 I would not wonder if you now wait longer than 8 months to get again more
 than 40 votes for this patch!
 
 Perhaps best would be to contact those people directly and ask them if they
 are still with TYPO3 and could test the patch!
 
 jm2c
 
 Andi
 
 
 
 
 On Thu, Sep 19, 2013 at 7:54 AM, Andreas Becker ab.bec...@web.de
 wrote:
 
  Thanks for letting us know Markus
 
  It is mainly a communicational Problem as we simply did not hear or
  read any message that a patch has been applied and is ready for testing!
  I guess those 40 other people simply don't know about it either. But
  you are absolutely right about what you said as you are only one of
  many with similar experiences and many of them already left TYPO3 to
  focus on usability for their customers rather than waiting that TYPO3
  will be much more than a developer tool for the rich!
 
  Very disappointing in terms of community!
  We put millions of dollars and thousands of dollars to try to turn
  the
  TYPO3 ship and it made just a little difference
  Well, we have sold TYPO3 to many churches over the years and very few
  love it and most have dumped it and got to WordPress or something
  else. That is just the truth
  Yes, we lose some great features when we don't use TYPO3 but TYPO3 is
  all about features and not about the users
  Why not go to WordPress and get work done instead of fighting the
  tool to do the work
  I don't think they TYPO3 developers want TYPO3 to be easy because
  they will lose development money it remains a paid website developer
  tool for people who sell fancy websites to others and make lots of money.
  Setting up a Drupal base site gives you a result you can continue to
  work for your project in minutes while TYPO3 often blocks you right at
  the installation process
  TYPO3 is a great tool for those who don't want to do fancy things
  with their websites. You have much more flexibility in Drupal 7 and
  since big NGOs and Governments switched to Drupal it is are very
  secure tool. In Drupal 8 even Frontend Editing is coming so Editors
  don't have anymore the need of a page tree as they can edit their
  content right in place - inline!
  To be honest I would say, the TYPO3 Community has let us down.
  At Typo3 they don't give a rats ass about user friendlyness. Neither
  for developers nor for editors. That's why it losing market share so
  fast, it's not competitive anymore with the likes of Drupal or Wordpress.
  ...
  and you will find many more
 
  TYPO3 has actually since beginning a nice slogan Inspire to share
  and the Drupal community has brought it to what could be since years
  already in
  TYPO3 - They are talking about the Drupal ECO System. and believe me
  it is a real great experiencing it as it is real and not NATO like at
  TYPO3. (No Action Talk Only).
 
  Never mind we have not given up TYPO3 completely.
  So let's have a look to the patch!
 
  Thanks for your work!
 
  Andi
 
 
 
 
 
  On Tue, Sep 17, 2013 at 6:06 PM, Markus Klein klein...@mfc-linz.at
  wrote:
 
   Hi

Re: [TYPO3-english] Templavoila

2013-09-17 Thread Markus Klein
Hi!

 

 http://forge.typo3.org/issues/44825 http://forge.typo3.org/issues/44825 now 
has a patch https://review.typo3.org/23788 since 5 days.

 

The ticket has 45 votes, 10 watchers, Helmut and I created a patch and now 5 
days later we do not even have a single review!

This is very very sad. Everybody is shouting loud and once we finally manage to 
provide a solution for this rather critical part of the Core, nobody is willing 
to test?

 

Very disappointing in terms of community!

 

~ Markus

 



Markus Klein

TYPO3 CMS Active Contributors Team Member

 

From: cocop...@gmail.com [mailto:cocop...@gmail.com] On Behalf Of Andreas Becker
Sent: Thursday, September 12, 2013 11:26 AM
To: Markus Klein; TYPO3 English
Subject: Re: [TYPO3-english] Re: Templavoila

 

http://forge.typo3.org/issues/37208

 

http://forge.typo3.org/issues/44825#change-166894

 

On Thu, Sep 12, 2013 at 3:08 PM, Markus Klein klein...@mfc-linz.at wrote:

Hi Andreas!

Would you be so kind and give us  the links to these blocking non-merged 
patches?

-- 
Kind regards
Markus


Markus Klein
TYPO3 CMS Active Contributors Team Member



___
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] Templavoila

2013-09-12 Thread Andreas Becker
http://forge.typo3.org/issues/37208

http://forge.typo3.org/issues/44825#change-166894


On Thu, Sep 12, 2013 at 3:08 PM, Markus Klein klein...@mfc-linz.at wrote:

 Hi Andreas!

 Would you be so kind and give us  the links to these blocking non-merged
 patches?

 --
 Kind regards
 Markus

 --**--
 Markus Klein
 TYPO3 CMS Active Contributors Team Member


 __**_
 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] Templavoila

2013-09-11 Thread Dmitry Dulepov

Hi!

Jan Bednarik wrote:

can you fill me in please? Last time I checked, it wasn't working and
required manual patching at least. I don't see any update in Ext
repository, so what has change that it's now working?


For 6.1 it was fixed before 6.1 was launched and I can confirm that it 
works (at least, for me).


For 6.2 – the current maintainer said TV is not in development any more, so 
if there are some breaking changes in 6.2, TV can be dead there (which is 
sad because I believe TV is still the best templating solution for TYPO3).


--
Dmitry Dulepov

Today is a good day to have a good day.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila

2013-09-11 Thread François Suter

Hi Jan,


can you fill me in please? Last time I checked, it wasn't working and
required manual patching at least. I don't see any update in Ext
repository, so what has change that it's now working?


For 6.2, look at that: https://github.com/wouter90/templavoila

It's not perfect, but works roughly. It is expected that those fixed 
will be merged back into the main repo and TV released with a 
6.2-compatible version. IIRC Tolleiv agreed to do a release if the 
community was helping with fixing TV to run on 6.2. And the active 
contributors are clearly aware that TV *must* run on 6.2, as was 
discussed during the meeting we had in Hamburg before T3DD13.


Cheers

--

Francois Suter

Work: Cobweb Development Sarl - http://www.cobweb.ch

TYPO3: Help the project! - http://typo3.org/contribute/

Appreciate my work? Support me -
http://www.monpetitcoin.com/en/francois/support-me/

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


Re: [TYPO3-english] Templavoila

2013-09-11 Thread Jan Bednarik

(which is sad because I believe TV is still the best templating solution
for TYPO3).


I totally agree. I tried to work without TV in 6.1 and it was quite 
painful. However, eventually, automaketemplate + template selection 
based on BE layout (using CASE and slide) + DCE (Dynamic Content 
Elements) were quite good solution that I can imagine living with.


Jan

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


Re: [TYPO3-english] Templavoila

2013-09-11 Thread Andreas Becker
Hi Dmitry

I totally agree with you. TemplaVoila is still the best Templating Engine
for TYPO3.

By the way our Interns checked in the last two weeks several Job offers and
only ONE was NOT mentioning TemplaVoila. All others had build their recent
sites using TemplaVoila and they were very happy with it and worried that
it won't work anymore in 6+.

THEMES is getting pretty near and will be later on the best replacement for
TemplaVoila but as the necesseray Core Patches are still pending and not
included since months it is blocking the process for a great replacement.
The same actually happens to the multishop which is a great shop and also
gets blocked by a line of code which does not get included until now.

By the way IMHO TemplaVoila is not only the best templating engine for
TYPO3, it is actually the best Templating Engine ever invented for a CMS
(which is TYPO3). Even Drupal 8 with Twix won't reach the usability and
templating with the Framework for TemplaVoila! But Drupal is catching up
very fast with all other kind of features TYPO3 was keeping a number ne
position in since years! It is such a pity to see the delays in TYPO3 which
really gives no feeling of Inspire to share or an ECO-System - which is
working perfect in the Drupal Community! Very sad!

Andi


On Thu, Sep 12, 2013 at 1:43 AM, Jan Bednarik i...@bednarik.org wrote:

 (which is sad because I believe TV is still the best templating solution
 for TYPO3).


 I totally agree. I tried to work without TV in 6.1 and it was quite
 painful. However, eventually, automaketemplate + template selection based
 on BE layout (using CASE and slide) + DCE (Dynamic Content Elements) were
 quite good solution that I can imagine living with.

 Jan


 __**_
 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] Templavoila

2013-09-10 Thread Jan Bednarik

Hi,

can you fill me in please? Last time I checked, it wasn't working and 
required manual patching at least. I don't see any update in Ext 
repository, so what has change that it's now working?


Thanks

Jan

Dne 2.9.2013 22:03, François Suter napsal(a):

Hi Jim,


Will Templavoila work with typo3 6.1?


Did you mean 6.2?

It already works fine with 6.1. And it is definitely planned to make it
work with 6.2.

Cheers



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


Re: [TYPO3-english] Templavoila

2013-09-10 Thread Andreas Becker
Hi Jan

not sure what changed but we are using in all our sites meanwhile 6.1.4
with TemplaVoila and everything works fine. With 6.2 we did not test until
now! The link I posted is actually build with it you could download and
test it yourself!

Another possibility would be using t3bootstrap from Fabien. It works
without TemplaVoila and is Fluid Extbase. Not sure if translation stuff
will work fine here. Also the upcoming Version of Themes will work Fluid
Extbase and Gridelements and without TemplaVoila and it will offer you much
more flexibility in Design than TV had ever before! :-) - Unfortunately the
necessary patch to the core (to integrate gridelements) has still not been
integrated since months! It is already working just perfect with fluid
elements.

http://typo3-themes.org

Andi


On Wed, Sep 11, 2013 at 2:34 AM, Jan Bednarik i...@bednarik.org wrote:

 Hi,

 can you fill me in please? Last time I checked, it wasn't working and
 required manual patching at least. I don't see any update in Ext
 repository, so what has change that it's now working?

 Thanks

 Jan

 Dne 2.9.2013 22:03, François Suter napsal(a):

  Hi Jim,

  Will Templavoila work with typo3 6.1?


 Did you mean 6.2?

 It already works fine with 6.1. And it is definitely planned to make it
 work with 6.2.

 Cheers


 __**_
 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

[TYPO3-english] Templavoila

2013-09-02 Thread Jim MacFarlane
Will Templavoila work with typo3 6.1?

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


Re: [TYPO3-english] Templavoila

2013-09-02 Thread François Suter

Hi Jim,


Will Templavoila work with typo3 6.1?


Did you mean 6.2?

It already works fine with 6.1. And it is definitely planned to make it 
work with 6.2.


Cheers

--

Francois Suter

Work: Cobweb Development Sarl - http://www.cobweb.ch

TYPO3: Help the project! - http://typo3.org/contribute/

Appreciate my work? Support me -
http://www.monpetitcoin.com/en/francois/support-me/

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


Re: [TYPO3-english] Templavoila

2013-09-02 Thread Andreas Becker
Hi

It works fine with TYPO3 6.1 and when you would like to get a nice package
up an running with it instantly I recommend this here. It is already mobile
responsive using bootstrap:

http://t3bootstraptv.de/de/typo3-bootstrap/

working with 6.1.3

Andi


On Tue, Sep 3, 2013 at 3:03 AM, François Suter fsu-li...@cobweb.ch wrote:

 Hi Jim,


  Will Templavoila work with typo3 6.1?


 Did you mean 6.2?

 It already works fine with 6.1. And it is definitely planned to make it
 work with 6.2.

 Cheers

 --

 Francois Suter

 Work: Cobweb Development Sarl - http://www.cobweb.ch

 TYPO3: Help the project! - http://typo3.org/contribute/

 Appreciate my work? Support me -
 http://www.monpetitcoin.com/**en/francois/support-me/http://www.monpetitcoin.com/en/francois/support-me/


 __**_
 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] TemplaVoila page module calling dummy.php

2013-07-10 Thread François Suter

Hi all,


I'm having a bug I never saw before: on one specific TYPO3 installation,
on a specific server, running TYPO3 6.1-dev and TemplaVoila 1.8.0, when
I click on the Page module I see a blank page. It is not entirely blank
however. The frame's URL is:

typo3/dummy.php?id=1

while the expected URL would be:

typo3conf/ext/templavoila/mod1/index.php?id=1


Just in case someone has a similarly mysterious issue, here's what it 
was: due to a misconfiguration of a .gitignore file, the index.php file 
of templavoila/mod1 was missing.


In such a case (i.e. a missing file - and because TV does not use the 
dispatcher for its BE modules), the module loader 
(\TYPO3\CMS\Backend\Module\ModuleLoader) falls back on dummy.php, 
whereas one would rather expect some form of error message.


Cheers

--

Francois Suter

Work: Cobweb Development Sarl - http://www.cobweb.ch

TYPO3: Help the project! - http://typo3.org/contribute/

Appreciate my work? Support me -
http://www.monpetitcoin.com/en/francois/support-me/

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


[TYPO3-english] TemplaVoila page module calling dummy.php

2013-07-02 Thread François Suter

Hi all,

I'm having a bug I never saw before: on one specific TYPO3 installation, 
on a specific server, running TYPO3 6.1-dev and TemplaVoila 1.8.0, when 
I click on the Page module I see a blank page. It is not entirely blank 
however. The frame's URL is:


typo3/dummy.php?id=1

while the expected URL would be:

typo3conf/ext/templavoila/mod1/index.php?id=1

I was just wondering if anyone had observed this kind of behavior before 
and had a clue where it could be coming from. The same site on another 
server works fine. There's no PHP errors nor JS errors. Life is puzzling 
sometimes...


Cheers

--

Francois Suter

Work: Cobweb Development Sarl - http://www.cobweb.ch

TYPO3: Help the project! - http://typo3.org/contribute/

Appreciate my work? Support me -
http://www.monpetitcoin.com/en/francois/support-me/

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


[TYPO3-english] templavoila - update field tx_templavoila_flex using referenceElementByUid function

2013-07-01 Thread Stefano
Hello.

My name is Stefano Danieli and I am working to a php code that creates new 
pages, new content element (text) and insert all this element in a typo3 tree.

I use TCE_main class to create the pages and the tt_content :

This the code : 


$code         = NEW_ . uniqid('');
$code_en      = NEW_ . uniqid('');
$code_content = NEW_ . uniqid('');

$data['pages'][$code]['pid'] = 157;
$data['pages'][$code]['title']   = $N_DOCENTE;
$data['pages'][$code]['hidden']  = 0;
$data['pages'][$code]['description'] = $K_DOCENTE;
$data['pages'][$code]['perms_everybody'] = 31;
$data['pages'][$code]['tx_templavoila_ds'] = 6;
$data['pages'][$code]['tx_templavoila_to'] = 5;

$data['pages_language_overlay'][$code_en] = array();
$data['pages_language_overlay'][$code_en]['pid']  = $code;
$data['pages_language_overlay'][$code_en]['title']    = $N_DOCENTE;
$data['pages_language_overlay'][$code_en]['sys_language_uid'] = 1;
$data['pages_language_overlay'][$code_en]['hidden']   = 0;
$data['pages_language_overlay'][$code_en]['doktype']  = 1;
$data['pages_language_overlay'][$code_en]['cruser_id']    = 1;
  
$data['tt_content'][$code_content]['pid']  = $code;
$data['tt_content'][$code_content]['header']   = Scheda Docente;
$data['tt_content'][$code_content]['CType']    = 'text';
$data['tt_content'][$code_content]['bodytext'] = Text
$data['tt_content'][$code_content]['hidden']   = 0;
$data['tt_content'][$code_content]['deleted']  = 0;
$data['tt_content'][$code_content]['colPos']   = 0;



/* using tce_main class */
$tce=t3lib_div::makeInstance('t3lib_TCEmain');
$tce-stripslashes_values = 0;
$tce-admin   = 1;
$tce-start($data, array());
$tce-process_datamap();


This code works ok : my problem is that I want the tt_content element just 
created  was also referenced into the pages, so the content appears normally in 
my content area :

I tried with the function referenceElementByUid, from the class 
tx_templavoila_api, with this code :

require_once(t3lib_extMgm::extPath('templavoila') . 
'class.tx_templavoila_api.php');
$templavoilaApiObj = t3lib_div::makeInstance('tx_templavoila_api');  

 $destinationPointer = array(
            'table' = 'pages',
            'uid' = $content_key, // the uid of my page
            'sheet' = 'sDEF',
            'sLang' = 'lDEF',
            'field' = 'field_content',
            'vLang' = 'vDEF',
            'position' = 0
        );
   
$templavoilaApiObj-referenceElementByUid($content_value,$destinationPointer))

But the content is still unlinked (it appears as unlinked element in backend) : 

the XML  in tx_templavoila_flex field in table PAGE  doesnt' contain the 
UID of the content element.

value index=vDEF   missing UID OF TT_CONTENT   /value


What am i doing wrong?

Sorry for my bad english.

Thank you in advance for reply.

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


Re: [TYPO3-english] templavoila - update field tx_templavoila_flex using referenceElementByUid function

2013-07-01 Thread Jigal van Hemert

Hi,

On 1-7-2013 11:45, Stefano wrote:

php code that creates new pages, new content element (text) and
insert  all this element in a typo3 tree.

I use TCE_main class to create the pages and the tt_content : 

[...]

I tried with the function referenceElementByUid, from the class
tx_templavoila_api, with this code :


Why not create the content by using the TemplaVoilà API?

// array with the usual fields of a content element
$contentRecord = array(..);
// position:
// 0 - before first element
// 1 - after element #1
// 2 - after element #2
// ...
// -1 after last element
$position = -1;
// Name of the field in the page template the CE will be placed
$fieldName = 'field_content';

$templaVoilaApiObject = new tx_templavoila_api;
$destinationPointer = array(
'table' = 'pages',
'uid' = $pageId,
'sheet' = 'sDEF',
'sLang' = 'lDEF',
'field' = $fieldName,
'vLang' = 'vDEF',
'position' = $position
);
$elementUid = $templaVoilaApiObject-insertElement(
$destinationPointer,
$contentRecord
);
// $elementUid is either the UID of the newly created CE or
// FALSE if the operation was not successful

TemplaVoilà contains tests for all kinds of operations like inserting 
content elements, FCEs, moving elements around, placing items inside 
FCEs, etc. They are excellent for learning to use the API.


see: test/tx_templavoila_api_testcase.php

--
Jigal van Hemert
TYPO3 CMS Active Contributor

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] templavoila?

2013-06-13 Thread Andreas Becker
Phillip Gampe

This is exactly right but it is not an illusion anymore as it is working
already. WordPress Themes are a complete mess, but if you can get the
quintesence out of this mess with kay's Extension - Themes Wordpress
Adapter - TYPO3 will have thousands of themes available to be used
instantly and most of them even free of charge. Those are ideal starting
points for everybody from the nubs up to the big agency. You should join
some of Kay's Hangouts to learn more about Themes :-)

TYPO3 is missing good themes, Wordpress and also Joomla have lots of nice
Themes - don't look at the coding - the customer won't do this! He is only
interested that it looks nice. If you can now reuse those themes in TYPO3
we are actually some kind of hijacking the user and customer base - at
least digging and nagging on it. So they have another choice with the same
look and feel but much more security etc.

When they now open the package they will soon realize what they can do with
WordPress or Joomla etc. or what they can do with TYPO3. Now you can talk
with them about functionality, extendibility and so more and of course
about security - the strength of TYPO3.

If TYPO3 would have a working nice blog actually it would have all needed
to simply conquer WordPress! Show those Wordpress people that TYPO3 can
also be a Blog like WordPress was long time ago ;-)

Let WordPress be  CMS and show your customers that TYPO3 can be a BLOG i.e.
with the extension here
http://t3-developer.com/extensions/multiblog/online-demo/
even a multiblog - nice.

and extend it with
http://t3-developer.com/extensions/community/community-extensionuebersicht/
you can target the ones who are interested also in Drupal.

TYPO3 is a great Tool but it has the wrong packaging and until now not many
nice looking templates - who cares where the Templates come from if they
look nice on TYPO3 - it will drive new customers to TYPO3.

Wer den Pfennig nicht ehrt ist den Heller nicht wert! Principle - spread
the word and try Themes!

Andi



On Thu, Jun 13, 2013 at 12:36 PM, Kay Strobach ty...@kay-strobach.dewrote:

 Hello Philipp,

 themes was discussed with Fabien Udriot last night.
 Themes itself is a small extension for just including TYPOScript and
 PageTS. But having some hook it's a theoretic experiment to be able to
 use other CMS themes in TYPO3. This can be achieved via Adapters :D

 I will provide a vagrant maschine in the next days :D

 Thanks for your patience

 Sincerly
 Kay Strobach

 Am 13.06.13 01:09, schrieb Philipp Gampe:
  Hi Andreas,
 
  Andreas Becker wrote:
 
   but you will be able to have your
  Wordpress design showing up in TYPO3
 
  That won't work for the sole reason that the wordpress API — that is an
  euphemism — is a total mess.
  Actually it is kind of reverse; the theme calls the API and request data.
  Most popular themes do a lot of stuff inside the templates that you can
 not
  easily simulate by TYPO3.
 
  I tried it once for two days and then gave up after digging into the
 docs.
 
  I would prefer if we get a handful of themes for TYPO3 that people can
 use
  as a base to customize there site.
 
  Best regards
 


 --
 http://www.kay-strobach.de - Open Source Rocks

 TYPO3  inspiring people to share!
 Get involved: http://typo3.org

 Answer was useful - feel free to donate:
   -

 https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
   - https://flattr.com/profile/kaystrobach

 ___
 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] templavoila?

2013-06-13 Thread Alessandro Tuveri

Dear Phillip and Andreas
thank you for your comments.

this is the main point:


TYPO3 is a great Tool but it has the wrong packaging and until now not many
nice looking templates - who cares where the Templates come from if they
look nice on TYPO3 - it will drive new customers to TYPO3.


to have  (for us) new more customers the staff should find a way to  
templatize TYPO3, write some documents about to build new themes and  
finally put some themes in big sites as: templatemonster.com.


Infact many developers/customers (subscribe for twago and see what  
happens...) ask continuosly for wordpress, joomla, etc.


I hope there is a way to spread TYPO3 ad a VERY GOOD CMS like it is!



ALESSANDRO TUVERI

--
AREA SERVIZI INFORMATICI E MULTIMEDIALI
Servizi WEeb d'Ateneo
Universit? degli Studi di Udine
tel. ufficio 0432-558904
--
Homo sine pecunia est imago mortis
--

--
SEMEL (SErvizio di Messaging ELettronico) - AINF, Universita' di Udine


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


Re: [TYPO3-english] templavoila?

2013-06-13 Thread Kay Strobach
Please join the new G+ Group about themes:
https://plus.google.com/communities/100060687535829230492

Hopefully there is a working vagrant environment until the start of the
new week :D

Regards
Kay

Am 13.06.13 10:07, schrieb Alessandro Tuveri:
 Dear Phillip and Andreas
 thank you for your comments.
 
 this is the main point:
 
 TYPO3 is a great Tool but it has the wrong packaging and until now not
 many
 nice looking templates - who cares where the Templates come from if they
 look nice on TYPO3 - it will drive new customers to TYPO3.
 
 to have  (for us) new more customers the staff should find a way to
 templatize TYPO3, write some documents about to build new themes and
 finally put some themes in big sites as: templatemonster.com.
 
 Infact many developers/customers (subscribe for twago and see what
 happens...) ask continuosly for wordpress, joomla, etc.
 
 I hope there is a way to spread TYPO3 ad a VERY GOOD CMS like it is!
 
 
 
 ALESSANDRO TUVERI
 
 --
 AREA SERVIZI INFORMATICI E MULTIMEDIALI
 Servizi WEeb d'Ateneo
 Universit? degli Studi di Udine
 tel. ufficio 0432-558904
 --
 Homo sine pecunia est imago mortis
 --
 
 --
 SEMEL (SErvizio di Messaging ELettronico) - AINF, Universita' di Udine
 
 


-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

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


Re: [TYPO3-english] templavoila?

2013-06-12 Thread Xavier Perseguers
Hi,

 Actually there is a manual but in a folder that is not recognized by
 typo3.org rendering.
 You will find a PDF in the documentation folder when you download the
 extension.

I know that Documentation may be configured in ext_emconf.php but as
things go, we tend more and more to head to:

- /doc: for OOo version (manual.sxw)
- /Documentation: for Sphinx-based documentation

A few extension authors started to migrate their documentation to Sphinx
and use a tiny redirect Ooo document in /doc in order to be visible on
TER (as Sphinx is not yet supported). The documentation is then rendered
on docs.typo3.org.

A few examples (including mines):

- EXT:news
- EXT:restdoc
- EXT:sphinx

(upcoming)

- EXT:image_autoresize

...

-- 
Xavier Perseguers
Release Manager TYPO3 4.6

TYPO3  inspiring people to share!
Get involved: http://typo3.org

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


Re: [TYPO3-english] templavoila?

2013-06-12 Thread horace grant
On Wed, Jun 12, 2013 at 5:05 AM, Domi djga...@gmail.com wrote:

 Hi Horace


 thanks for your answers! FCEs sound really great and like sonething TYPO§
 should have by default.

 i will look into gridelements. looks like there is no documentation
 though.
 i will google a bit...

  Beside gridelements there is also another package which provides easy
 FCE handling: fluidcontent. There is even a whole package around, which
 also sets the website completely by fluidpages. Check out
 http://fedext.net, If you like bootstrap then check out the package which
 is ready to use and provides backend_layouts and fce's based on
 extabase/fluid functionality:
 http://demo.typo3.org/


thanks! i will look into this too.

cheers,
horace


 have fun exploring,
 Cheers
 Dominic


 __**_
 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] templavoila?

2013-06-12 Thread Kay Strobach
Hi horace,

I'm currently working on a theming solution for the TYPO3 Frontend.
It will support the following ways of theming:

 - plain html with marker
 - oldstyle TVFramework Themes
 - TYPOScript Themes
 - Fedext themes

All this will be provided under a nice Userinterface for the enduser, so
that themes can be easily exchanged and installed and updated as they
are extensions.

There is also a experimental adapter for wordpress, but this is
currently just a proof of concept.

Regards
Kay

Am 12.06.13 11:58, schrieb horace grant:
 On Wed, Jun 12, 2013 at 5:05 AM, Domi djga...@gmail.com wrote:
 
 Hi Horace


 thanks for your answers! FCEs sound really great and like sonething TYPO§
 should have by default.

 i will look into gridelements. looks like there is no documentation
 though.
 i will google a bit...

  Beside gridelements there is also another package which provides easy
 FCE handling: fluidcontent. There is even a whole package around, which
 also sets the website completely by fluidpages. Check out
 http://fedext.net, If you like bootstrap then check out the package which
 is ready to use and provides backend_layouts and fce's based on
 extabase/fluid functionality:
 http://demo.typo3.org/


 thanks! i will look into this too.
 
 cheers,
 horace
 
 
 have fun exploring,
 Cheers
 Dominic


 __**_
 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



-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

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


Re: [TYPO3-english] templavoila?

2013-06-12 Thread horace grant
On Wed, Jun 12, 2013 at 12:50 PM, Kay Strobach ty...@kay-strobach.dewrote:

 Hi horace,

 I'm currently working on a theming solution for the TYPO3 Frontend.
 It will support the following ways of theming:

  - plain html with marker
  - oldstyle TVFramework Themes
  - TYPOScript Themes
  - Fedext themes

 All this will be provided under a nice Userinterface for the enduser, so
 that themes can be easily exchanged and installed and updated as they
 are extensions.



thanks! i will look into that too. :)
sounds interesting.



 There is also a experimental adapter for wordpress, but this is
 currently just a proof of concept.



interesting. what does this adapter do?

the thing i always missed in wordpress (and other cms like silverstripe) is
the concept of multiple content elements on a page. this is something i
like a lot about TYPO3. i guess this adapter doesn't mean that wordpress
can work more like TYPO3? :)

cheers,
horace




 Regards
 Kay

 Am 12.06.13 11:58, schrieb horace grant:
  On Wed, Jun 12, 2013 at 5:05 AM, Domi djga...@gmail.com wrote:
 
  Hi Horace
 
 
  thanks for your answers! FCEs sound really great and like sonething
 TYPO§
  should have by default.
 
  i will look into gridelements. looks like there is no documentation
  though.
  i will google a bit...
 
   Beside gridelements there is also another package which provides easy
  FCE handling: fluidcontent. There is even a whole package around, which
  also sets the website completely by fluidpages. Check out
  http://fedext.net, If you like bootstrap then check out the package
 which
  is ready to use and provides backend_layouts and fce's based on
  extabase/fluid functionality:
  http://demo.typo3.org/
 
 
  thanks! i will look into this too.
 
  cheers,
  horace
 
 
  have fun exploring,
  Cheers
  Dominic
 
 
  __**_
  TYPO3-english mailing list
  TYPO3-english@lists.typo3.org
  http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**english
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
 


 --
 http://www.kay-strobach.de - Open Source Rocks

 TYPO3  inspiring people to share!
 Get involved: http://typo3.org

 Answer was useful - feel free to donate:
   -

 https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
   - https://flattr.com/profile/kaystrobach

 ___
 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] templavoila?

2013-06-12 Thread Andreas Becker
No it means also not the opposite Horace but you will be able to have your
Wordpress design showing up in TYPO3. When people open a CMS they like to
have a Visible result which they can reuse as a starting point. The
Wordpress Themes Adapter can help you with this a lot and you can than
start building and modifying your theme with the Themes Builder

WordPress will never work like TYPO3 even it is getting more and more a
CMS, the same TYPO3 in its current Form will never work like Wordpress
easiness as a blogging platform, even there is already a nice multiblog
extension visible

Most people who use Wordpress like that they can earn money with their
sites more or less instantly and that they can set up a simple site in no
time. TYPO3 is still just the opposite even the Framework of TemplaVoila
helped a lot. Themes will hopefully change this and make TYPO3 to a Site
Creating Tool for agencies and people and open it up also from some with
no own Coders - for people who are no code geeks (i.e. Designers who mainly
probably use TemplaVoila right now) so that they will be able to fill those
sites with useful Content easily with minor adjustments of functionality
and design without the need of another Coding Session for Devs.

Andi


On Wed, Jun 12, 2013 at 7:25 PM, horace grant horac...@gmail.com wrote:

 On Wed, Jun 12, 2013 at 12:50 PM, Kay Strobach ty...@kay-strobach.de
 wrote:

  Hi horace,
 
  I'm currently working on a theming solution for the TYPO3 Frontend.
  It will support the following ways of theming:
 
   - plain html with marker
   - oldstyle TVFramework Themes
   - TYPOScript Themes
   - Fedext themes
 
  All this will be provided under a nice Userinterface for the enduser, so
  that themes can be easily exchanged and installed and updated as they
  are extensions.
 


 thanks! i will look into that too. :)
 sounds interesting.



  There is also a experimental adapter for wordpress, but this is
  currently just a proof of concept.
 


 interesting. what does this adapter do?

 the thing i always missed in wordpress (and other cms like silverstripe) is
 the concept of multiple content elements on a page. this is something i
 like a lot about TYPO3. i guess this adapter doesn't mean that wordpress
 can work more like TYPO3? :)

 cheers,
 horace



 
  Regards
  Kay
 
  Am 12.06.13 11:58, schrieb horace grant:
   On Wed, Jun 12, 2013 at 5:05 AM, Domi djga...@gmail.com wrote:
  
   Hi Horace
  
  
   thanks for your answers! FCEs sound really great and like sonething
  TYPO§
   should have by default.
  
   i will look into gridelements. looks like there is no documentation
   though.
   i will google a bit...
  
Beside gridelements there is also another package which provides
 easy
   FCE handling: fluidcontent. There is even a whole package around,
 which
   also sets the website completely by fluidpages. Check out
   http://fedext.net, If you like bootstrap then check out the package
  which
   is ready to use and provides backend_layouts and fce's based on
   extabase/fluid functionality:
   http://demo.typo3.org/
  
  
   thanks! i will look into this too.
  
   cheers,
   horace
  
  
   have fun exploring,
   Cheers
   Dominic
  
  
   __**_
   TYPO3-english mailing list
   TYPO3-english@lists.typo3.org
   http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**english
  http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
  
 
 
  --
  http://www.kay-strobach.de - Open Source Rocks
 
  TYPO3  inspiring people to share!
  Get involved: http://typo3.org
 
  Answer was useful - feel free to donate:
-
 
 
 https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
- https://flattr.com/profile/kaystrobach
 
  ___
  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 mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] templavoila?

2013-06-12 Thread Philipp Gampe
Hi Andreas,

Andreas Becker wrote:

  but you will be able to have your
 Wordpress design showing up in TYPO3

That won't work for the sole reason that the wordpress API — that is an 
euphemism — is a total mess.
Actually it is kind of reverse; the theme calls the API and request data.
Most popular themes do a lot of stuff inside the templates that you can not 
easily simulate by TYPO3.

I tried it once for two days and then gave up after digging into the docs.

I would prefer if we get a handful of themes for TYPO3 that people can use 
as a base to customize there site.

Best regards 
-- 
Philipp Gampe – PGP-Key 0AD96065 – TYPO3 UG Bonn/Köln
Documentation – Active contributor TYPO3 CMS
TYPO3  inspiring people to share!

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

Re: [TYPO3-english] templavoila?

2013-06-12 Thread Kay Strobach
Hello Philipp,

themes was discussed with Fabien Udriot last night.
Themes itself is a small extension for just including TYPOScript and
PageTS. But having some hook it's a theoretic experiment to be able to
use other CMS themes in TYPO3. This can be achieved via Adapters :D

I will provide a vagrant maschine in the next days :D

Thanks for your patience

Sincerly
Kay Strobach

Am 13.06.13 01:09, schrieb Philipp Gampe:
 Hi Andreas,
 
 Andreas Becker wrote:
 
  but you will be able to have your
 Wordpress design showing up in TYPO3
 
 That won't work for the sole reason that the wordpress API — that is an 
 euphemism — is a total mess.
 Actually it is kind of reverse; the theme calls the API and request data.
 Most popular themes do a lot of stuff inside the templates that you can not 
 easily simulate by TYPO3.
 
 I tried it once for two days and then gave up after digging into the docs.
 
 I would prefer if we get a handful of themes for TYPO3 that people can use 
 as a base to customize there site.
 
 Best regards 
 


-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

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

[TYPO3-english] templavoila?

2013-06-11 Thread horace grant
hi,

the current discussion about templavoila made me curios (again). :)
can anyone describe the advantages or great features of it?

a few years ago i have learned TYPO3 with a book that explained standard
templates and i only have used them so far. once you have made a few
projects you have building blocks that can be quickly reused for other
websites. i find it quite great.

when i took a short look into templavoila it looked much more cumbersome
with all the clicking around for binding the tags and all the xml stuff.
much harder to reuse. i liked the possibility of backend layouts but with
standard TYPO3 something similar is possible too since a while.

i have also read that templavoila supports custom content elements. sounds
great but what exactly is this? custom fields like say in wordpress?

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


Re: [TYPO3-english] templavoila?

2013-06-11 Thread Xavier Perseguers
Hi Horace,

Describing my point of view, not speaking for anyone else!

The big advantage of TV, after years using it, is (or was, don't want to
discuss alternatives here) actually not the point-and-click mapping
(cool at first but not that much once you have bigger environments with
development website, production website, ...) but the better UX in Web 
Page and the easy preparation of so-called Flexible Content Elements (FCE).

FCE are basically HTML snippets you have in your design (such as
content on 2 columns or address entry) with a given HTML structure
where you have defined fields. Dumb example to make it clear, consider
this HTML snippet allowing to show address book entries with nice
looking CSS:

div class=address-book
h1John Doe/h1
p class=titleArt Director/p
p class=biographyLorem ipsum/p
/div

You may create a FCE mapping the whole div structure with 3 fields, one
for the name, the title and the biography (rte for instance) and then
within your page you add not a text content element but an address
entry FCE. And instead of standard header + text properties, you see
your own properties, thus structuring the info. The alternative could
be either a custom extension with dedicated plugins or plain HTML
content element.

Cheers
Xavier

horace grant wrote:
 hi,
 
 the current discussion about templavoila made me curios (again). :)
 can anyone describe the advantages or great features of it?
 
 a few years ago i have learned TYPO3 with a book that explained standard
 templates and i only have used them so far. once you have made a few
 projects you have building blocks that can be quickly reused for other
 websites. i find it quite great.
 
 when i took a short look into templavoila it looked much more cumbersome
 with all the clicking around for binding the tags and all the xml stuff.
 much harder to reuse. i liked the possibility of backend layouts but with
 standard TYPO3 something similar is possible too since a while.
 
 i have also read that templavoila supports custom content elements. sounds
 great but what exactly is this? custom fields like say in wordpress?
 
 cheers,
 horace

-- 
Xavier Perseguers
Release Manager TYPO3 4.6

TYPO3  inspiring people to share!
Get involved: http://typo3.org

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


Re: [TYPO3-english] templavoila?

2013-06-11 Thread Thomas Skierlo

Hi Horace,

the most important feature of TV are FCE. Flexible Content Elements - or 
Custom Content Elements. These might be accordions, sliders, 
galleries...whatever you might need, you'll get it. Since TV supports 
sections, elements can be expanded at need (like adding another 
accordion tab without changes to the general structure of the element).
Since TV has no realistic future, you might be better off with similar 
solutions, like Gridelements. GE has some advantages over TV, but still 
some disadvantages too, when it comes to workspaces or multilingual 
elements. But I think, it will develope in future.


Regards,

Thomas

Am 11.06.2013 12:29, schrieb horace grant:

hi,

the current discussion about templavoila made me curios (again). :)
can anyone describe the advantages or great features of it?

a few years ago i have learned TYPO3 with a book that explained standard
templates and i only have used them so far. once you have made a few
projects you have building blocks that can be quickly reused for other
websites. i find it quite great.

when i took a short look into templavoila it looked much more cumbersome
with all the clicking around for binding the tags and all the xml stuff.
much harder to reuse. i liked the possibility of backend layouts but with
standard TYPO3 something similar is possible too since a while.

i have also read that templavoila supports custom content elements. sounds
great but what exactly is this? custom fields like say in wordpress?

cheers,
horace
___
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] templavoila?

2013-06-11 Thread horace grant
On Tue, Jun 11, 2013 at 1:18 PM, Thomas Skierlo pubt...@pix-pro.eu wrote:

 Hi Horace,

 the most important feature of TV are FCE. Flexible Content Elements - or
 Custom Content Elements. These might be accordions, sliders,
 galleries...whatever you might need, you'll get it. Since TV supports
 sections, elements can be expanded at need (like adding another accordion
 tab without changes to the general structure of the element).
 Since TV has no realistic future, you might be better off with similar
 solutions, like Gridelements. GE has some advantages over TV, but still
 some disadvantages too, when it comes to workspaces or multilingual
 elements. But I think, it will develope in future.



thanks for your answers! FCEs sound really great and like sonething TYPO§
should have by default.

i will look into gridelements. looks like there is no documentation though.
i will google a bit...

cheers,
horace




 Regards,

 Thomas

 Am 11.06.2013 12:29, schrieb horace grant:

  hi,

 the current discussion about templavoila made me curios (again). :)
 can anyone describe the advantages or great features of it?

 a few years ago i have learned TYPO3 with a book that explained standard
 templates and i only have used them so far. once you have made a few
 projects you have building blocks that can be quickly reused for other
 websites. i find it quite great.

 when i took a short look into templavoila it looked much more cumbersome
 with all the clicking around for binding the tags and all the xml stuff.
 much harder to reuse. i liked the possibility of backend layouts but with
 standard TYPO3 something similar is possible too since a while.

 i have also read that templavoila supports custom content elements. sounds
 great but what exactly is this? custom fields like say in wordpress?

 cheers,
 horace
 __**_
 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-**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] templavoila?

2013-06-11 Thread JoH asenau

thanks for your answers! FCEs sound really great and like sonething TYPO§
should have by default.

i will look into gridelements. looks like there is no documentation though.
i will google a bit...


Actually there is a manual but in a folder that is not recognized by 
typo3.org rendering.
You will find a PDF in the documentation folder when you download the 
extension.


Happy testing!

Joey

--
Wenn man keine Ahnung hat: Einfach mal Fresse halten!
(If you have no clues: simply shut your gob sometimes!)
Dieter Nuhr, German comedian
Xing: http://contact.cybercraft.de
Twitter: http://twitter.com/bunnyfield
TYPO3 cookbook (2nd edition): http://www.typo3experts.com
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] templavoila?

2013-06-11 Thread Domi

Hi Horace


thanks for your answers! FCEs sound really great and like sonething TYPO§
should have by default.

i will look into gridelements. looks like there is no documentation though.
i will google a bit...

Beside gridelements there is also another package which provides easy 
FCE handling: fluidcontent. There is even a whole package around, which 
also sets the website completely by fluidpages. Check out 
http://fedext.net, If you like bootstrap then check out the package 
which is ready to use and provides backend_layouts and fce's based on 
extabase/fluid functionality:

http://demo.typo3.org/

have fun exploring,
Cheers
Dominic

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


Re: [TYPO3-english] Templavoila: Adding code via Selectorbox in an FCE

2013-02-21 Thread Emiliano Kamppeter

Dear Dimitry,

I just wanted to thank you, it worked like a dream!

Emiliano

Am 20.02.2013 10:54, schrieb Dmitry Dulepov:


field_selector type=array
typeno_map/type


Your selector is not mapped to anything, therefore it produces no
content (=no JS). You need to map it to some element to see its output.



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


Re: [TYPO3-english] Templavoila: Adding code via Selectorbox in an FCE

2013-02-20 Thread Dmitry Dulepov

Hi!

Emiliano Kamppeter wrote:

so, I created a new FCE, mapped root and created an Not mapped Element
and named it field_selector.
In the form I entered 6 options, and in Data Processing in TypoSCript
Code I entered something like this:


skip


Oh, and here's the content of the XML file (Data Structure) which was
created:


This helps actually :) You see no js because of:


field_selector type=array
typeno_map/type


Your selector is not mapped to anything, therefore it produces no content 
(=no JS). You need to map it to some element to see its output.


--
Dmitry Dulepov
TYPO3 CMS core  security teams member

strikeSimplicity/strike Crocodiles will save the world.

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


[TYPO3-english] Templavoila Couldn't find a Data Structure set for table/row

2013-02-18 Thread Mitja

Hi!

I have this set up: TYPO3 4.7.8
TV 1.8.0

If i dont set a Use Template Design: for a page that is a child of root page, I get the 
error: Couldn't find a Data Structure set for table/row pages:67.

It seems as though the Subpages - Use Template Design: does not work anymore. What am I doing wrong? 


I googled and all I could find is this: http://forge.typo3.org/issues/44062 
however the patch here does not solve my problem.

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


Re: [TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-03 Thread Jigal van Hemert

Hi,

On 3-2-2013 1:32, Jim MacFarlane wrote:

I have tried TV 1.8. It has a bug that will not let you create a root page
because it cannot find the template directory even when it is right where
it suppossed to be. This is a show stopper for new site.


If nobody reports it to forge [1] chances are slim that it will be fixed 
(unless the extension maintainer happens to find it himself).

Will you file a bug report?

[1] https://forge.typo3.org/projects/extension-templavoila/issues

--
Jigal van Hemert
TYPO3 Core Team member

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-03 Thread Jim MacFarlane
Yes I will do that. Can you send me a link to the place to do that?

Jim MacFarlane
On Feb 3, 2013 1:55 AM, Jigal van Hemert jigal.van.hem...@typo3.org
wrote:

 Hi,

 On 3-2-2013 1:32, Jim MacFarlane wrote:

 I have tried TV 1.8. It has a bug that will not let you create a root page
 because it cannot find the template directory even when it is right where
 it suppossed to be. This is a show stopper for new site.


 If nobody reports it to forge [1] chances are slim that it will be fixed
 (unless the extension maintainer happens to find it himself).
 Will you file a bug report?

 [1] 
 https://forge.typo3.org/**projects/extension-**templavoila/issueshttps://forge.typo3.org/projects/extension-templavoila/issues

 --
 Jigal van Hemert
 TYPO3 Core Team member

 TYPO3  inspiring people to share!
 Get involved: typo3.org
 __**_
 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] Templavoila! and typo3 6.0.0

2013-02-03 Thread Kay Strobach
It's on forge, like most extensions:

http://forge.typo3.org/projects/show/extension-templavoila

Regards
Kay

Am 03.02.13 13:48, schrieb Jim MacFarlane:
 Yes I will do that. Can you send me a link to the place to do that?
 
 Jim MacFarlane
 On Feb 3, 2013 1:55 AM, Jigal van Hemert jigal.van.hem...@typo3.org
 wrote:
 
 Hi,

 On 3-2-2013 1:32, Jim MacFarlane wrote:

 I have tried TV 1.8. It has a bug that will not let you create a root page
 because it cannot find the template directory even when it is right where
 it suppossed to be. This is a show stopper for new site.


 If nobody reports it to forge [1] chances are slim that it will be fixed
 (unless the extension maintainer happens to find it himself).
 Will you file a bug report?

 [1] 
 https://forge.typo3.org/**projects/extension-**templavoila/issueshttps://forge.typo3.org/projects/extension-templavoila/issues

 --
 Jigal van Hemert
 TYPO3 Core Team member

 TYPO3  inspiring people to share!
 Get involved: typo3.org
 __**_
 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



-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

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


Re: [TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-02 Thread Jim MacFarlane
I have tried TV 1.8. It has a bug that will not let you create a root page
because it cannot find the template directory even when it is right where
it suppossed to be. This is a show stopper for new site.

Jim MacFarlane
On Feb 1, 2013 3:05 PM, Jigal van Hemert jigal.van.hem...@typo3.org
wrote:

 Hi,

 On 1-2-2013 22:31, Jim MacFarlane wrote:

 Can the extension manager get extensions from forge?


 No, but it shouldn't be able to do that either. TER is the place to get
 extensions from.

 A TemplaVoilà version which is compatible with TYPO3 6.0 is available from
 TER as Tolleiv (who maintains TemplaVoilà) wrote:

  On Feb 1, 2013 1:35 PM, Tolleiv Nietsch tolleiv.niet...@typo3.org
 wrote:

 TV 1.8 was released as TYPO3 6.0 compatible version to the TER
 weeks ago.


 --
 Jigal van Hemert
 TYPO3 Core Team member

 TYPO3  inspiring people to share!
 Get involved: typo3.org
 __**_
 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


[TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-01 Thread Jim MacFarlane
I am attempting to create a new root page in a new installation of typo3
6.0.0 using templavoila!. I get a message that there is a missing directory
 called 'templates' under fileadmin even though I have created it and place
the required files in it.

Is there a compatibility issue or am I missing something?

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


Re: [TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-01 Thread Kay Strobach
hi Jim,

please use TV from forge, this should be solved, if not, create an issue
- thanks Kay

http://forge.typo3.org/projects/show/extension-templavoila

Regards
Kay

Am 01.02.13 14:19, schrieb Jim MacFarlane:
 I am attempting to create a new root page in a new installation of typo3
 6.0.0 using templavoila!. I get a message that there is a missing directory
  called 'templates' under fileadmin even though I have created it and place
 the required files in it.
 
 Is there a compatibility issue or am I missing something?
 
 Jim MacFarlane
 


-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answer was useful - feel free to donate:
  -
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
  - https://flattr.com/profile/kaystrobach

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


Re: [TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-01 Thread Jim MacFarlane
Thank you for the help. I see that this issue is noted and being discussed.
I will wait until the solution is complete.

Jim MacFarlane


On Fri, Feb 1, 2013 at 6:28 AM, Kay Strobach ty...@kay-strobach.de wrote:

 hi Jim,

 please use TV from forge, this should be solved, if not, create an issue
 - thanks Kay

 http://forge.typo3.org/projects/show/extension-templavoila

 Regards
 Kay

 Am 01.02.13 14:19, schrieb Jim MacFarlane:
  I am attempting to create a new root page in a new installation of typo3
  6.0.0 using templavoila!. I get a message that there is a missing
 directory
   called 'templates' under fileadmin even though I have created it and
 place
  the required files in it.
 
  Is there a compatibility issue or am I missing something?
 
  Jim MacFarlane
 


 --
 http://www.kay-strobach.de - Open Source Rocks

 TYPO3  inspiring people to share!
 Get involved: http://typo3.org

 Answer was useful - feel free to donate:
   -

 https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=KPM9NAV73VDF2
   - https://flattr.com/profile/kaystrobach

 ___
 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] Templavoila! and typo3 6.0.0

2013-02-01 Thread Tolleiv Nietsch
Hi,
Who told you that? Seems that this is a persistent myth which is truly
wrong - TV 1.8 was released as TYPO3 6.0 compatible version to the TER
weeks ago. Would be really great to know why this wrong assumption keeps
spreading :(

Cheers,
Tolleiv

Mitja schrieb:
 Wait, is TemplaVoila even supposed to be working with TYPO3 6?
 I thought that it would not be supported to for TYPO3 v6... am I wrong?

-- 
Tolleiv Nietsch
TYPO3 Core Developer


TYPO3  inspiring people to share!
Get involved: typo3.org


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


Re: [TYPO3-english] Templavoila! and typo3 6.0.0

2013-02-01 Thread Jim MacFarlane
Can the extension manager get extensions from forge?
On Feb 1, 2013 1:35 PM, Tolleiv Nietsch tolleiv.niet...@typo3.org wrote:

 Hi,
 Who told you that? Seems that this is a persistent myth which is truly
 wrong - TV 1.8 was released as TYPO3 6.0 compatible version to the TER
 weeks ago. Would be really great to know why this wrong assumption keeps
 spreading :(

 Cheers,
 Tolleiv

 Mitja schrieb:
  Wait, is TemplaVoila even supposed to be working with TYPO3 6?
  I thought that it would not be supported to for TYPO3 v6... am I wrong?

 --
 Tolleiv Nietsch
 TYPO3 Core Developer


 TYPO3  inspiring people to share!
 Get involved: typo3.org


 ___
 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] Templavoila! and typo3 6.0.0

2013-02-01 Thread Jigal van Hemert

Hi,

On 1-2-2013 22:31, Jim MacFarlane wrote:

Can the extension manager get extensions from forge?


No, but it shouldn't be able to do that either. TER is the place to get 
extensions from.


A TemplaVoilà version which is compatible with TYPO3 6.0 is available 
from TER as Tolleiv (who maintains TemplaVoilà) wrote:



On Feb 1, 2013 1:35 PM, Tolleiv Nietsch tolleiv.niet...@typo3.org wrote:

TV 1.8 was released as TYPO3 6.0 compatible version to the TER
weeks ago.


--
Jigal van Hemert
TYPO3 Core Team member

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TemplaVoila 1.8.0 and PHP 5.2

2012-12-21 Thread Dmitry Dulepov

Hi!

Jan Bednarik wrote:

It's a problem to find a webhosting at reasonable prices with
ImageMagick support here in CZ.


If you have a credit card, you can go with a rented server from 
http://www.hetzner.de/en/. I did not use them myself but I know that many 
russian people use those. They are reliable and well priced.


--
Dmitry Dulepov
TYPO3 CMS core  security teams member

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] TemplaVoila 1.8.0 and PHP 5.2

2012-12-20 Thread Tolleiv Nietsch
Hi,

actually 1.8.0 also carries code to be compatible with TYPO3 CMS 6.0. So
there are e.g. PHP-Namesspaces involved which might/will cause syntax
errors in PHP 5.2 - that's why I had to raise the requirements.

Btw. end of life for PHP 5.2 was June 2010. You should consider to
switch the webhoster ;)

Cheers.

Jan Bednarik schrieb:
 Hey guys,
 
 I've noticed that latest TV requires PHP 5.3.0. However, my webhosting
 still runs 5.2.x. I was wondering whether there's really something 5.3.0
 only in the TV's code or it's just the constraint in ext_emconf file and
 it's safe to ignore it.
 
 Jan

-- 
Tolleiv Nietsch
TYPO3 Core Developer


TYPO3  inspiring people to share!
Get involved: typo3.org


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


[TYPO3-english] TemplaVoila 1.8.0 and PHP 5.2

2012-12-19 Thread Jan Bednarik

Hey guys,

I've noticed that latest TV requires PHP 5.3.0. However, my webhosting 
still runs 5.2.x. I was wondering whether there's really something 5.3.0 
only in the TV's code or it's just the constraint in ext_emconf file and 
it's safe to ignore it.


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


Re: [TYPO3-english] TemplaVoila 1.8.0 and PHP 5.2

2012-12-19 Thread Anja Leichsenring

Hi Jan,

without having checked the code, I would suggest to not ignore such 
requirements.
TYPO3 CMS Core dropped PHP 5.2 support with TYPO3 CMS version 4.6 
entirely, so you are better off upgrading your hosting package to a more 
modern software package.


But of course you are free to try and look wheter it works or not. Good 
look with this :)


Best Anja

Am 20.12.2012 07:50, schrieb Jan Bednarik:

Hey guys,

I've noticed that latest TV requires PHP 5.3.0. However, my webhosting
still runs 5.2.x. I was wondering whether there's really something 5.3.0
only in the TV's code or it's just the constraint in ext_emconf file and
it's safe to ignore it.

Jan


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


Re: [TYPO3-english] TemplaVoila 1.8.0 and PHP 5.2

2012-12-19 Thread Jan Bednarik

Hi Anja,

 without having checked the code, I would suggest to not ignore such

requirements.


that's why I asked :) I hope someone already did that.


TYPO3 CMS Core dropped PHP 5.2 support with TYPO3 CMS version 4.6
entirely, so you are better off upgrading your hosting package to a more
modern software package.


Well, I'm running 4.5 LTS version, so I'm good for know. I've asked them 
about upgrade to 5.3, but I don't think it will be someday soon.


Thanks

Jan

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


[TYPO3-english] TemplaVoila ERROR: The input content failed XML parsing

2012-11-21 Thread Guillermo R. Oramas J.
Hello.

I have a problem with TemplaVoila. I can't use the Web-Page view.

Everything is Ok until I start mapping the template. First I map the body
tag in the main CO element, all is Ok. Then I add a EL selecting a div, and
I can't use the Web-Page view anymore, when I click a Page the result is
blank.

I tested with different templates and always is the same.

The only strange thing that I realised was this message when I ticked Show
Details in Web-TemplaVoila: ERROR: The input content failed XML parsing.

My TYPO3 version is 4.5.3.

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


Re: [TYPO3-english] TemplaVoila ERROR: The input content failed XML parsing

2012-11-21 Thread Guillermo R. Oramas J.
I tried using the TemplaVoila Wizard with the same results: The Web-Page
view when is used with pages using TemplaVoila displays a blank page.

2012/11/21 Guillermo R. Oramas J. orama...@gmail.com

 Hello.

 I have a problem with TemplaVoila. I can't use the Web-Page view.

 Everything is Ok until I start mapping the template. First I map the body
 tag in the main CO element, all is Ok. Then I add a EL selecting a div, and
 I can't use the Web-Page view anymore, when I click a Page the result is
 blank.

 I tested with different templates and always is the same.

 The only strange thing that I realised was this message when I ticked Show
 Details in Web-TemplaVoila: ERROR: The input content failed XML parsing.

 My TYPO3 version is 4.5.3.

 Thanks for the help.
 ___
 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] TemplaVoila template customisation

2012-10-03 Thread Harish A
I am using TemplaVoila in typo3. I created a layout template for the root
page, which contains a HEADER, CONTENT and FOOTER section. every sub pages
inherit this template.

Now in each page`s content section I need a custom template (i.e with
HEADER and FOOTER constant). Is it possible to do this with TemplaVoila?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TemplaVoila template customisation

2012-10-03 Thread Andi
yes check out the templates for the framework for templavoila or the one for 
march8 both can do it by easily asigning another pid

Sent from Andi's iPhone

On Oct 3, 2012, at 18:52, Harish A h...@phases.dk wrote:

 I am using TemplaVoila in typo3. I created a layout template for the root
 page, which contains a HEADER, CONTENT and FOOTER section. every sub pages
 inherit this template.
 
 Now in each page`s content section I need a custom template (i.e with
 HEADER and FOOTER constant). Is it possible to do this with TemplaVoila?
 ___
 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] TemplaVoila | FCE

2012-09-29 Thread Shahil Sham
Hello,

I am building my first Typo3 project (I heard about Typo3 just a week ago
:P), and I'm creating a FCE with TemplaVolia.
I have set the top div as the root for my FCE. The inner p, h1, p has been
mapped as respective elements.
I have another unmapped element for the image.
My challenge now is to load this image onto the inline style of the root.
Any idea on how to achieve this?

  div style=background-image: url(img/pic1.jpg);*ROOT*
div class=caption
  p class=tagCase #1/p
  h1Ørestad bibliotek/h1
  pLorem ipsum sit amet, consectetur adipisicing elit, sed do
eiusmod./p
/div
  /div

Is it possible to write typoscript for the root in the FCE XML? If so, how
is the syntax.
Link to such an example usage would be awesome.

-- 
Shahil Sham

s...@phases.dk
skype: shahilsham
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TemplaVoila | FCE

2012-09-29 Thread Shahil Sham
Issue Resolved
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TemplaVoila: Template Design Objects preview icons

2012-07-19 Thread Gerardo Tan
Hi all!

In the *Appearance  Page Layout* of every page, I would like to have no
dropdown list of the available templates and just display instead the their
preview icons. How can I do it?


Thanks,

Tan

-- 

Knowledge is learning something every day. Wisdom is letting go of
something every day. ~Zen Proverb
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila and mobile templating

2012-05-08 Thread Andreas Becker
Media Queries is actually the best way to go.
Using the framework for templavoila (in the upcoming version)
or march8 workers woman framework (already) you will be able to calculate
lots of stuff inside TYPO3 using TS
beside this you had already this week about 3 more html5 extensions and I
am sure there will be much more soon!

http://lessframework.com/
http://www.lakercompendium.com/
http://bakerframework.com/ - many of the examples use laker by the way !
http://medialoot.com/blog/how-to-code-a-clean-website-template-in-html5-css3/
http://www.sitepoint.com/responsive-web-design-with-html5-and-the-less-framework-3/#fbid=eadM-l9r1kW

here are only some links from many many many. If you have a MAC you can use
a nice app too
http://tumultco.com/hype/

and lots more

Andi

On Tue, May 8, 2012 at 8:54 AM, Martin Aarhof martinprikaar...@gmail.comwrote:

 On 08-05-2012 03:26, Andi wrote:

 Hi

 go to kay-strohbach.de and check the templates out he has already in the
 template repository. Responsive webdesign is the future of mobile.


 kay-strohbach.de
 is using twitter bootstrap responsive design
 http://twitter.github.com/**bootstrap/http://twitter.github.com/bootstrap/

 Its super easy to both integrate in TV and design to.
 And if you are using the LESS css way, you can change all the colors
 directly from the variables.less file

 Properly the easist solution (and one of the most used as I can see around
 the web) for responsive designs at the moment.

 jquery mobile
 http://jquerymobile.com/
 Is also nice, but its difficult if you want to go more abstract than the
 jquery mobile default design.

 But there are TONS of other responsive design frameworks out there.
 Search on google :)

 But yes,
 mobile css
 link rel=stylesheet type=text/css href= media=mobile /
 isnt good more, because of all the different sizes on mobile screens
 (iphone, ipad, android pads and so on)

 Now we do
 @media (max-width: 980px) {
   #left {float:left;}
   #right {float:left;}
 }

 @media (max-width: 400px) {
  #left {float:none;}
  #right {float:none;}
 }
 (yes not a good example, but something like that)

 directly in the css file

 __**_
 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


[TYPO3-english] Templavoila and mobile templating

2012-05-07 Thread Douglas La Farge
Dmitry wrote this article over three years ago:
http://www.dmitry-dulepov.com/2009/04/creating-mobile-version-of-web-site.html

I'm wondering if there is a new way to integrate mobile templates into TV sites 
or if the above is still the preferred method.

If there's a new way would someone mind pointing me to some web resources that 
explains how it (now) works?

thank you,

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


Re: [TYPO3-english] Templavoila and mobile templating

2012-05-07 Thread Andi
sorry forgotten one place you can check too is t3touch.de

based on jquerymobile but pretty expensive.

Sent from Andi's iPhone

On May 8, 2012, at 4:41, Douglas La Farge douglas.lafa...@gmail.com wrote:

 Dmitry wrote this article over three years ago:
 http://www.dmitry-dulepov.com/2009/04/creating-mobile-version-of-web-site.html
 
 I'm wondering if there is a new way to integrate mobile templates into TV 
 sites or if the above is still the preferred method.
 
 If there's a new way would someone mind pointing me to some web resources 
 that explains how it (now) works?
 
 thank you,
 
 doug
 ___
 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] Templavoila and mobile templating

2012-05-07 Thread Martin Aarhof

On 08-05-2012 03:26, Andi wrote:

Hi

go to kay-strohbach.de and check the templates out he has already in the 
template repository. Responsive webdesign is the future of mobile.


kay-strohbach.de
is using twitter bootstrap responsive design
http://twitter.github.com/bootstrap/

Its super easy to both integrate in TV and design to.
And if you are using the LESS css way, you can change all the colors 
directly from the variables.less file


Properly the easist solution (and one of the most used as I can see 
around the web) for responsive designs at the moment.


jquery mobile
http://jquerymobile.com/
Is also nice, but its difficult if you want to go more abstract than 
the jquery mobile default design.


But there are TONS of other responsive design frameworks out there.
Search on google :)

But yes,
mobile css
link rel=stylesheet type=text/css href= media=mobile /
isnt good more, because of all the different sizes on mobile screens 
(iphone, ipad, android pads and so on)


Now we do
@media (max-width: 980px) {
   #left {float:left;}
   #right {float:left;}
}

@media (max-width: 400px) {
  #left {float:none;}
  #right {float:none;}
}
(yes not a good example, but something like that)

directly in the css file
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila and beLayout problems

2012-02-06 Thread Simone Paolinelli


Nobody knows about this problem?





Il 02/02/2012 15.45, Simone Paolinelli ha scritto:

Hello everyone,

I made a fce of templavoila and I'm trying to create a layout for the
backend (TYPO3 4.6.0 and Templavoila 1.6.0).
I am using the Static Data Structure.

I tried to create a file test (FCE).html with the same name as the xml
file (test (FCE).xml) but the backend layout has not changed.

I also tried to put the beLayout tag in the layout of the test
(FCE).xml without success.

Finally I tried to specify the test (FCE).html as BELayout Template
Files of the Template object but still nothing.

Can anyone help me?

Thanks for any help and sorry for my English!

Simone


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


[TYPO3-english] Templavoila and beLayout problems

2012-02-02 Thread Simone Paolinelli

Hello everyone,

I made a fce of templavoila and I'm trying to create a layout for the 
backend (TYPO3 4.6.0 and Templavoila 1.6.0).

I am using the Static Data Structure.

I tried to create a file test (FCE).html with the same name as the xml 
file (test (FCE).xml) but the backend layout has not changed.


I also tried to put the beLayout tag in the layout of the test 
(FCE).xml without success.


Finally I tried to specify the test (FCE).html as BELayout Template 
Files of the Template object but still nothing.


Can anyone help me?

Thanks for any help and sorry for my English!

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


[TYPO3-english] Templavoila 1.6

2011-11-20 Thread Lamb, Brian
Hi all, 

I'm still unable to get Templavoila 1.6 running with the latest version of 
typo3. After I've updating, I get the following error:

Fatal error: Class 'tx_templavoila_div' not found in 
/my/path/to/typo3conf/temp_CACHED_psc27a_ext_tables.php on line 1647

The problem is that I can't even get in the backend now to change anything so 
how do I resolve this error? Since that is a temp file, I've tried deleting it 
but when I reload a page, it simply remakes that page with the same error. What 
do I do?

Thanks, 

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


Re: [TYPO3-english] Templavoila 1.6

2011-11-20 Thread Roxanne


Hi,

Here is what I use to do when I encountered this kind of problem:

With an editor, go to temp_CACHED_FE_*_ext_tables.php and delete the 
whole section that starts like so below:



###
## EXTENSION: templavoila
## FILE:  /var/www/nlu/typo3conf/ext/templavoila/ext_tables.php
###

then try to restart.

Roxanne

On Sun, 20 Nov 2011, Lamb, Brian wrote:


Hi all,

I'm still unable to get Templavoila 1.6 running with the latest version of 
typo3. After I've updating, I get the following error:

Fatal error: Class 'tx_templavoila_div' not found in 
/my/path/to/typo3conf/temp_CACHED_psc27a_ext_tables.php on line 1647

The problem is that I can't even get in the backend now to change anything so 
how do I resolve this error? Since that is a temp file, I've tried deleting it 
but when I reload a page, it simply remakes that page with the same error. What 
do I do?

Thanks,

Brian Lamb
___
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] Templavoila 1.6

2011-11-20 Thread Lamb, Brian
Okay it looks like this worked. I disabled it and then reenabled it and it 
worked just fine. Very strange, but thanks!

From: typo3-english-boun...@lists.typo3.org 
[typo3-english-boun...@lists.typo3.org] On Behalf Of Robert Wildling 
[robertwildl...@gmail.com]
Sent: Sunday, November 20, 2011 10:37 AM
To: typo3-english@lists.typo3.org
Subject: Re: [TYPO3-english] Templavoila 1.6

Or you edit your localconf.php and delete TV from the extension lists.
Then deleting the cache files again and you should get into the BE again
without an installed TV.

Do you use any accelerators like eAccelerator? Try turning those things
off or test different once.

HTH,
Robert

Am 20.11.11 16:27, schrieb Roxanne:

 Hi,

 Here is what I use to do when I encountered this kind of problem:

 With an editor, go to temp_CACHED_FE_*_ext_tables.php and delete the
 whole section that starts like so below:


 ###
 ## EXTENSION: templavoila
 ## FILE: /var/www/nlu/typo3conf/ext/templavoila/ext_tables.php
 ###

 then try to restart.

 Roxanne

 On Sun, 20 Nov 2011, Lamb, Brian wrote:

 Hi all,

 I'm still unable to get Templavoila 1.6 running with the latest
 version of typo3. After I've updating, I get the following error:

 Fatal error: Class 'tx_templavoila_div' not found in
 /my/path/to/typo3conf/temp_CACHED_psc27a_ext_tables.php on line 1647

 The problem is that I can't even get in the backend now to change
 anything so how do I resolve this error? Since that is a temp file,
 I've tried deleting it but when I reload a page, it simply remakes
 that page with the same error. What do I do?

 Thanks,

 Brian Lamb
 ___
 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 mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Templavoila 1.6

2011-11-17 Thread Lamb, Brian
Hi all, 

I've been updating my extensions to fix other errors and I've come across an 
error with Templavoila 1.6 which is the latest. After I've updating, I get the 
following error:

Fatal error: Class 'tx_templavoila_div' not found in 
/my/path/to/typo3conf/temp_CACHED_psc27a_ext_tables.php on line 1647

The problem is that I can't even get in the backend now to change anything so 
how do I resolve this error?

Thanks, 

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


Re: [TYPO3-english] Templavoila 1.6

2011-11-17 Thread Victor Livakovsky
Fatal error: Class 'tx_templavoila_div' not found in 
/my/path/to/typo3conf/temp_CACHED_psc27a_ext_tables.php on line 1647


Thry to kill manually all temp_CACHED_* files in your typo3conf dir. 


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


[TYPO3-english] Templavoila 1.6

2011-11-17 Thread Lamb, Brian
Hi, 

I tried doing that but it just recreates the file. 

Thanks, 

Brian Lamb

 Hi all, 

 I've been updating my extensions to fix other errors and I've come across an 
 error with Templavoila 1.6 which is the latest. After I've updating, I get 
 the following error:

 Fatal error: Class 'tx_templavoila_div' not found in 
 /my/path/to/typo3conf/temp_CACHED_psc27a_ext_tables.php on line 1647

 The problem is that I can't even get in the backend now to change anything so 
 how do I resolve this error?

 Thanks, 

 Brian Lamb

Thry to kill manually all temp_CACHED_* files in your typo3conf dir. 
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TemplaVoila FCE - access fields of another TemplaVoila FCE record

2011-11-03 Thread Martin Kokeš
Hello,

I have created a FCE named Product with 3 fields like:
field_title  as title of the product, from 
register:tx_templavoila_pi1.parentRec.header
field_image  as image with fixed dimensions (OR a image as content element)
field_content  as some RTE text (OR a text as content element)

Now I'd like to add 4th field named field_relatedproducts as array of content 
elements and link to this newly created field 2 same FCE's (Product) from 
another pages.

Is it possible with help of TS:
- split this field_relatedproducts array to get uid of linked FCE's;
- access every FCE and get values of child fields, field_image and field_title;
- ad finally output it, in example as a unbulleted list with these fields, with 
images wrapped with typolink?

If anyone can help with this I would really appreciate it. This TS magic goes 
simply beyond my limits.

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


[TYPO3-english] Templavoila - slide a field element

2011-10-14 Thread De Contardi Riccardo
Hello everybody. 

 

I'm using TYPO3 4.3.9 and Templavoila V. 1.3.7

I've added and mapped in the TO of my home page an element called
field_text

 

Type: element; Editing type:Rich text editor for bodytext

 

The question: is it possible to slide it: I mean, is it possible to
have it inherited by the subpages?

 

Thank you in advance 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


 


**

Chi riceve il presente messaggio e' tenuto a verificare se lo stesso non gli 
sia pervenuto per errore. In tal caso e' pregato di avvisare immediatamente il 
mittente e, tenuto conto delle responsabilita connesse all'indebito utilizzo 
e/o divulgazione del messaggio e/o delle informazioni in esso contenute, voglia 
cancellare l'originale e distruggere le varie copie o stampe.

The receiver of this message is required to check if he/she has received it 
erroneously. If so, the receiver is requested to immediately inform the sender 
and - in consideration of the responsibilities arising from undue use and/or 
disclosure of the message and/or the information contained therein - destroy 
the original message and any copy or printout thereof.


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


Re: [TYPO3-english] Templavoila - slide a field element

2011-10-14 Thread Den Denyer

Hey there,

Check out Bernhard Kraft's TV Content Slide extension:

http://typo3.org/documentation/document-library/extension-manuals/kb_tv_cont_slide/0.4.3/view/1/1/#id4320503

You might find that it solves your problem. There is another, based on  
this, checkout the TER search here:


http://typo3.org/extensions/repository/?tx_terfe_pi1%5Bview%5D=searchno_cache=1tx_terfe_pi1%5Bsword%5D=kb_tv_cont_slide

Kind regards,
Denyer

On Fri, 14 Oct 2011 12:02:07 +0100, De Contardi Riccardo  
riccardo.deconta...@bhuman.it wrote:



I'm using TYPO3 4.3.9 and Templavoila V. 1.3.7

I've added and mapped in the TO of my home page an element called
field_text
The question: is it possible to slide it: I mean, is it possible to
have it inherited by the subpages?



--
Using Opera's revolutionary email client: http://www.opera.com/mail/
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TemplaVoila: Background of container for element

2011-10-05 Thread jaco graaff
Hi Victor - sorry if my code in the email was confusing - I double-checked 
and I referred to the field correctly


It seems no matter what typoscript I type in the typoscript-node on the CO - 
(container of elements) - it has no effect


For EL (Elements) or AT (Attributes) or NO (Not-Mapped), it's fine

I can get values from fields and manipulate their target elements with 
typoscript


I tried to run the following simple tests in the typoscript-node of the CO

CO
--- SC
-- CO (this is the CO I am targeting)
-- EL
-- EL
-- EL
-- AT
-- AT
-- NO


##-


TypoScript
![CDATA[
TypoScript
![CDATA[


## I tried lot's of things blindly...
## just to see if ANY typoscript can be executed on the CO
renderObj = COA
renderObj {
10 = TEXT
10.field = field_background ##this is referal to the node for selecting the
image
10.wrap =  background-image:url(/uploads/tx_templavoila/|)
}


##OR
/*
renderObj = COA
renderObj {
10 = TEXT
10.field = field_background ##this is referal to the node for selecting the
image
10.wrap = div just test anything in here/div|
}
*/

## it's already inside a COA  - try
10= RECORDS
10.source.current=1
10.tables = tt_content
10.stdWrap.wrap = div class=someClassxxx | xxx/div
10.stdWrap.if {
isTrue.field = field_contenttop
}



##OR

10 = TEXT
10.field = yyy
10.wrap = div just test anything in here/div|


##OR
wrap = div just test anything in here/div|

##OR - this works in an EL and replaces the whole EL
10 = TEXT
10 {
value = ggg
wrap = x|x
}


]]
/TypoScript

##-


My temporary solution is to create a new DIV via typoscript from one of the 
other EL's typoscript-node and then put the background in there - as long as 
this div is rendered at the bottom layer it's fine - I can live with the 
extra DIV - although I still would have liked to rather manipulate 
properties (like background) on the parent/containing DIV


##
10 = TEXT
10.field = field_background
10.wrap = div class=infoPanelBackground 
style=background-image:url(uploads/tx_templavoila/|); 
background-repeat:none; background-position: 0px 0px/div


20 ##this is the typoscript for this node

##

To make it simpler for myself I then use some javascript to delete the extra 
child div and inject the background into the parent DIV - but this again is 
client-side UI creation which I always want to limit as much as possible.


I just wish there was clear documentation on this - or that I could 
understand it enough to help in providing such documentation


I am able to understand things like the ZEND-Framework, XAML, WPF, C# - 
MVVM-framework, name it - because of good documentation - but the lack 
thereof in the Open Source community makes it extremely time-consuming and 
difficult to break into.


I'll volunteer to help with graphics, scenarios, design-patterns and 
illustrations, working through lots of potential scenarios to better explain 
the extend of the usage of things like this because I am passionate about 
typo3.


The problem is there are basic examples and as soon as you deviate from that 
you are stuck and spend countless hours blindly trying things out.


I found one example of a discussion on changing the background color on a 
CO - but I do not know if this relally was a CO or just an EL-DIV that the 
poster refered to as a Container. Also in My case it is a CO of a repeating 
object.


I read through countless documents and posts and still don't know if this is 
allowed.


I know it will help if I spend a lot more time and try and de-code the 
underlying classes and logic of this implementation - but I simply do not 
have that time currently. Also - I am a designer with the ability to code - 
it takes me a lot longer than a software-engineer to understand the 
underlying mechanics of a platform.















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


Re: [TYPO3-english] TemplaVoila: Background of container for element

2011-09-30 Thread Victor Livakovsky

Hi, Jaco.

-AT - field_background - this has to map to the CO - 
field_infopanel style:background



lib.infoPanelContainer = COA
lib.infoPanelContainer{
10 = TEXT
10.field = field_backgroundimage
10.wrap = background-image:url(/uploads/tx_templavoila/|)
}



10 = TEXT
10.field = field_backgroundimage
10.wrap = background-image:url(/uploads/tx_templavoila/|)


The TS code is correct and should work. I think, that problem is in 
fieldname. You declared 'field_background', but trying to retrieve data from 
'field_backgroundimage'. Can you check your fieldnames? 


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


[TYPO3-english] TemplaVoila: Background of container for element

2011-09-28 Thread jaco graaff
I'm having difficulty setting a background of a wrapping parent container 
of a repeating block in FCE


QUESTION 1: I'm trying to follow this tutorial...

http://spabhat.wordpress.com/2008/10/24/set-background-image-from-an-image-field/

in their example their wrapping block has a

eTypece/eType

classification

while mine has

eTypeinput/eType for the CO - repeating block

I don't seem to have a way to declare ce for a parent container??

my layout looks as follows:

CO - ROOT - div [inner]
--- SC - field_container - div [inner] (wrap the all the repeating 
containers)
-- CO - field_infopanel - div (wrap single - this is the element that 
will repeat with its content)

-EL - field_title
-EL - field_image
-EL - field_description
-AT - field_link - this maps to an
-AT - field_background - this has to map to the CO - field_infopanel 
style:background


QUESTION 2:

if I could in some way target the field_infopanel CO then I could also maybe 
change its class attribute:

hopefully with something like this

wrapItemAndSub = div class=infoPanel first|/div |*| div 
class=infoPanel middle|/div |*| div class=infoPanel last|/div


--
TRY 1:

in the CO - field_infopanel  section of the FCE xml I add a field like

TypoScriptObjPathlib.infoPanelContainer/TypoScriptObjPath

so that I can target the object through typoscript selector later (although 
this is going to be a repeating object)


in the section for the background image selector i then somehow bind the 
background to the lib.infoPanelContainer



lib.infoPanelContainer = COA
lib.infoPanelContainer{
10 = TEXT
10.field = field_backgroundimage
10.wrap = background-image:url(/uploads/tx_templavoila/|)
}


RESULT: did not work
--
TRY 2:


I tried to do all the binding magic in the typoscript under the

-- CO - fieldInfoPanel

node

like this:
- 
   el type=array

   field_container type=array
   typearray/type
   tx_templavoila type=array
   titleinfoPanelContainer/title
   eTypeinput/eType
   !--TypoScriptObjPathlib.infoPanelContainer/TypoScriptObjPath 
--

TypoScript
![CDATA[
renderObj = COA
renderObj {
10 = TEXT
10.field = field_background ##this is referal to the node for selecting the 
image

10.wrap =  background-image:url(/uploads/tx_templavoila/|)
}


- 


where field_background is the node for selecting the background image


To add the typoscript I am editing the FCE xml file -

I might be making a huge mistake since the CO element does not have an entry 
for typoscript in the typo3 backend


- it seems it only has one if it is an element or attribute, etc...

my inspiration comes from:
http://lists.typo3.org/pipermail/typo3-project-templavoila/2007-March/002014.html
http://lists.typo3.org/pipermail/typo3-project-templavoila/2007-April/002116.html

it might be that the solution is to add another div inside the repeating 
object and target that instead of the parent div


then i can map the div as an element which might accept the code

But in that way I'll have messy html


RESULT: didn't get it to work

TRY 3:

according:


##http://lists.typo3.org/pipermail/typo3-project-templavoila/2007-April/002117.html


the node is already a COA

so I should only use:



10 = TEXT
10.field = field_backgroundimage
10.wrap = background-image:url(/uploads/tx_templavoila/|)



still does not work




anyway - I've been struggling with this for 6 hours now -




Jaco 


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


Re: [TYPO3-english] Templavoila and FCE

2011-09-11 Thread Michael Cannon
Did you set the page general storage field?

--
Michael Cannon
President, Aihrus
Italy +39 366 702 7237
US +1 617 539 6072

Professional TYPO3 Support Since 2003
http://aihr.us

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


[TYPO3-english] Templavoila and FCE

2011-09-09 Thread raptoruk

OK I'm going to have to bite the bullet :(
I have inherited a site and managed to migrate and updated this twice with
good results to 4.5, realising the power of TYPO3 I want to do more...I have
purchased two books of template's and TYPO3 read a lot, created a template,
think I have YAML in the right place, but when I create the wizard structure
for the mapping, mapping goes OK but unlike the migrated site looking at the
'TemplaVoilà Control Center' I do not see any FCE as I do on the migrated
site, I am doing anything wrong, If any mody has 5 mins to check my install
I'd B 4ever in ur debt :) hope somebody can show some light... been two days
now
Thnx in advance :)
-- 
View this message in context: 
http://old.nabble.com/Templavoila-and-FCE-tp32433364p32433364.html
Sent from the TYPO3 English mailing list archive at Nabble.com.

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

[TYPO3-english] Templavoila and FCE

2011-09-09 Thread raptoruk

OK I'm going to have to bite the bullet :(
I have inherited a site and managed to migrate and updated this twice with
good results to 4.5, realising the power of TYPO3 I want to do more...I have
purchased two books of template's and TYPO3 read a lot, created a template,
think I have YAML in the right place, but when I create the wizard structure
for the mapping, mapping goes OK but unlike the migrated site looking at the
'TemplaVoilà Control Center' I do not see any FCE as I do on the migrated
site, I am doing anything wrong, If anybody has 5 mins to check my install
I'd B 4ever in ur debt :) hope somebody can show some light... been two days
now
Thnx in advance :)
-- 
View this message in context: 
http://old.nabble.com/Templavoila-and-FCE-tp32433364p32433364.html
Sent from the TYPO3 English mailing list archive at Nabble.com.

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

Re: [TYPO3-english] Templavoila Template in Extension

2011-08-30 Thread Dmitry Dulepov

Hi!

Kay Strobach wrote:

during one of my projects i wondered if there is a way to package a TV
Template as extension?


I remember doing that in 2006 or 2007. The example was in TER (andreas01 
and andreas09 extensions). So this was certainly possible at that time. 
Basically you create a t3x (export DS/TO), put it to the extension and 
upload to TER. Make sure you also package template file and its additional 
files.


--
Dmitry itoldyou Dulepov
TYPO3 coresecurity team member
E-mail: dmitry.dule...@typo3.org
Web: http://dmitry-dulepov.com/

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


[TYPO3-english] Templavoila Template in Extension

2011-08-25 Thread Kay Strobach
Hi,

during one of my projects i wondered if there is a way to package a TV
Template as extension?

Is there such an option or not?
If there is such an option - how should it be done?

I know about static import, but that's not an option so far :(

Regards
Kay
-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answere was usefull: https://flattr.com/profile/kaystrobach
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila Template in Extension

2011-08-25 Thread Xavier Perseguers

Hi,


during one of my projects i wondered if there is a way to package a TV
Template as extension?

Is there such an option or not?
If there is such an option - how should it be done?


You may activate externalization of DS into files in advanced options of 
TV, this is a part of the process. And then for the TO, I guess you 
could (mis-) use the Update! EM wizard to create them on the fly. Just 
an idea.


I was tempted to tell you that this was done by busynoggin [1] but then 
IIRC, you have to statically import DB records. I may be wrong there...


Kind regards

[1] http://templavoila.busynoggin.com/

--
Xavier Perseguers
Release Manager TYPO3 4.6

TYPO3  inspiring people to share!
Get involved: http://typo3.org

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


Re: [TYPO3-english] Templavoila Template in Extension

2011-08-25 Thread Jigal van Hemert

Hi,

On 25-8-2011 19:26, Kay Strobach wrote:

during one of my projects i wondered if there is a way to package a TV
Template as extension?


Example: http://typo3.org/extensions/repository/view/tmpl_andreas01/current/

--
Kind regards / met vriendelijke groet,

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


Re: [TYPO3-english] Templavoila Template in Extension

2011-08-25 Thread Kay Strobach
Hi Jigal,

thanks, but you just packaged it as t3d inside the extension - correct?

Regards
Kay

Am 25.08.2011 21:28, schrieb Jigal van Hemert:
 Hi,
 
 On 25-8-2011 19:26, Kay Strobach wrote:
 during one of my projects i wondered if there is a way to package a TV
 Template as extension?
 
 Example:
 http://typo3.org/extensions/repository/view/tmpl_andreas01/current/
 


-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3  inspiring people to share!
Get involved: http://typo3.org

Answere was usefull: https://flattr.com/profile/kaystrobach
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Templavoila Template in Extension

2011-08-25 Thread Andreas Becker
Hi Kay

Check out the WEC Templates

They are all extensions!

http://demo.webempoweredchurch.org

and together with the wec_config you can even very easily customize the
extensions. With a click on COPY the extension gets copied as is into
fileadmin folder. Here you can now customize your extension to your needs.
After finishing or if you wanna use it in other projects you can now copy
the complete folder after renaming as is back to typo3conf/ext and install
it as an extension or export it as .t3x

In TER you can find all those skin extensions under skin_ or TV
Framework skin There are quite a lot skins already ready to use out there.
New skins will use also less or simiar technics to be easier to customize I
guess.

For Skin development you can check here:
http://svn.webempoweredchurch.org/projects/public-templates

Andi



On Fri, Aug 26, 2011 at 2:41 AM, Kay Strobach ty...@kay-strobach.de wrote:

 Hi Jigal,

 thanks, but you just packaged it as t3d inside the extension - correct?

 Regards
 Kay

 Am 25.08.2011 21:28, schrieb Jigal van Hemert:
  Hi,
 
  On 25-8-2011 19:26, Kay Strobach wrote:
  during one of my projects i wondered if there is a way to package a TV
  Template as extension?
 
  Example:
  http://typo3.org/extensions/repository/view/tmpl_andreas01/current/
 


 --
 http://www.kay-strobach.de - Open Source Rocks

 TYPO3  inspiring people to share!
 Get involved: http://typo3.org

 Answere was usefull: https://flattr.com/profile/kaystrobach
 ___
 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] Templavoila Template in Extension

2011-08-25 Thread Andreas Becker
Here the already existing skins (Template Extensions) for TV

Skins by WEC ()

 skin_warehouse (CSS3)
 skin_cityscape
 skin_touchofelegance
 skin_wireframe
 skin_lilypads (CSS3)
 skin_meadow
 skin_weatheredwood
 skin_stacks
 skin_regal
 skin_sketchbook
 skin_brushstrokes
 skin_lightsout
 skin_bifold


Skins by DT3 (DT3)

 skin_dt3


Skins by BUSY NOGGIN (BN)

 skin_bn_white_wireframe
 skin_bn_t_bone_starter

i.e. check out the busy noggin examples http://templavoila.busynoggin.com/

Skins by LisAndi ThaiPo3 (ABC)

 skin_abc_kik_red

i.e. used by Kirchenmusik Hochschule Rottenburg

To use the full power you would need also

wec_config

 this is the extension to modify the settings and switch the templates


if you want to use an template switcher in the frontend you can use this one
here:
http://svn.webempoweredchurch.org/projects/template-extensions/repository
(skinpreview - not in TER!)
This is very usefull to setup your own demo website with all your customized
templates to show to customers.
i.e.
http://demo.webempoweredchurch.org
http://t3pack.com

http://svn.webempoweredchurch.org/projects/template-extensions/repository
here you also find the source for the

 templavoila_framework


and the

 wec_styles
 (which I recommend to customize to your needs by the way!)


in

 wec_contentelements
 http://svn.webempoweredchurch.org/projects/contentelements/repository
 you find also an API to add your own content elements easily!


Please name all your skins starting with skin_ks_*** which makes it easier
to find the extensions
and in the description start them with: TV Framework Skin: KS ...
*
*
Thanks

Andi




On Fri, Aug 26, 2011 at 8:41 AM, Andreas Becker ab.bec...@web.de wrote:

 Hi Kay

 Check out the WEC Templates

 They are all extensions!

 http://demo.webempoweredchurch.org

 and together with the wec_config you can even very easily customize the
 extensions. With a click on COPY the extension gets copied as is into
 fileadmin folder. Here you can now customize your extension to your needs.
 After finishing or if you wanna use it in other projects you can now copy
 the complete folder after renaming as is back to typo3conf/ext and install
 it as an extension or export it as .t3x

 In TER you can find all those skin extensions under skin_ or TV
 Framework skin There are quite a lot skins already ready to use out there.
 New skins will use also less or simiar technics to be easier to customize I
 guess.

 For Skin development you can check here:
 http://svn.webempoweredchurch.org/projects/public-templates

 Andi



 On Fri, Aug 26, 2011 at 2:41 AM, Kay Strobach ty...@kay-strobach.de
 wrote:

  Hi Jigal,
 
  thanks, but you just packaged it as t3d inside the extension - correct?
 
  Regards
  Kay
 
  Am 25.08.2011 21:28, schrieb Jigal van Hemert:
   Hi,
  
   On 25-8-2011 19:26, Kay Strobach wrote:
   during one of my projects i wondered if there is a way to package a TV
   Template as extension?
  
   Example:
   http://typo3.org/extensions/repository/view/tmpl_andreas01/current/
  
 
 
  --
  http://www.kay-strobach.de - Open Source Rocks
 
  TYPO3  inspiring people to share!
  Get involved: http://typo3.org
 
  Answere was usefull: https://flattr.com/profile/kaystrobach
  ___
  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 mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


  1   2   >