Re: [TYPO3-english] remove general plugin div-wrapper

2012-03-13 Thread Xavier Perseguers
Hi,

> I saw the patch already. At the moment I am digging through how to
> handle diff files. Being on a Mac I learned that FileMerge is good,
> which now seems to be integrated into Xcode.
> 
> What do you work with? Do you have any recommendations?

Use the command-line:

$ cd /path/to/typo3_src
$ patch -p0 --dry-run < /path/to/patch.diff

and remove --dry-run if it applies properly.

HTH

-- 
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] remove general plugin div-wrapper

2012-03-13 Thread Robert Wildling

Thanks, Jigal! (Would like to know how oyour name shall be pronounced ...)

I saw the patch already. At the moment I am digging through how to 
handle diff files. Being on a Mac I learned that FileMerge is good, 
which now seems to be integrated into Xcode.


What do you work with? Do you have any recommendations?

Thanks!
Robert


Am 13.03.12 16:44, schrieb Jigal van Hemert:

Hi,

On 13-3-2012 14:49, Robert Wildling wrote:

Usually, all plugins are wrapped in their respective
basis-div-container, like .

My question is: can these be removed?


There is a patch which just misses feature freezes for a number of
releases over the past years [1].

Maybe we can prepare it now in time for 4.8? :-)

[1] http://forge.typo3.org/issues/19809



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


Re: [TYPO3-english] Include JavaScript

2012-03-13 Thread François Suter

Hi,


I used to use this code in my fe-plugins:

var $extKey   = 'user_t3xxx';// The extension key.
$GLOBALS['TSFE']->additionalHeaderData[$this->extKey] = '';


The methods pointed to by Kay are better, as the JS files get properly 
included into the rendering process, in particular with regards to 
concatenating and minifying. So it's really recommended and most 
settings exist since 4.3.


Cheers

--

Francois Suter
Cobweb Development Sarl - http://www.cobweb.ch
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Bug workspacePreviewDetail in French

2012-03-13 Thread François Suter

Hi Benoit,


My problem now is to understand where I can fix this bug. The XML
language is only available in English, so could someone let me know
where/how the translation of the system extensions are handled?


The translations are handled on a Pootle instance: 
http://translation.typo3.org/


but that's not the right place to solve the problem. Quotes should be 
escaped when strings are loaded into JavaScript. When following the 
standard TYPO3 API, this goes through class t3lib_pageRenderer, methods 
addInlineLanguageLabel() and related. You should check what values are 
handled there and how they are eventually stored as JS values.


HTH

--

Francois Suter
Cobweb Development Sarl - http://www.cobweb.ch
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] [TYPO3-dev] Announcing TYPO3 4.7.0beta2

2012-03-13 Thread Steffen Ritter
Dear TYPO3 friends,

Today, the community released the second beta version of TYPO3 4.7.

With the release of beta1 we have reached "Feature Freeze" for the
upcoming version and thus will be focussed on fixing bugs only. This
means that there have not been any changes to the SQL structure since
then.

TYPO3 4.7 will ship with an interesting set of new features,
possibilities and bug fixes. Further Information can be found in our
previous release notes.

Besides all the amazing new features, about 200 bugs have been fixed
since the release of TYPO3 4.6 in October 2011. For details about this
particular release and the current progress, please read up on:

http://news.typo3.org/news/article/released-typo3-47-beta2/


Keep in mind that this is a developer "snapshot" and should not yet be
used in production. The final release of 4.7.0 is scheduled for April,
24th 2012.

The packages can be downloaded here:
http://typo3.org/download/packages/



MD5 checksums:

6b84c4568fb6753a9062e25fd070d1a8  blankpackage-4.7.0beta2.tar.gz
328143e05383b75dee64dea0b600b59b  blankpackage-4.7.0beta2.zip
ae27b6ac3067f1c60008be13161b9fdf  dummy-4.7.0beta2.tar.gz
dfc7b290feb3137d32edb9c3ae74e67a  dummy-4.7.0beta2.zip
f2be3f4bb22b57fc1cb45b3d712028ea  governmentpackage-4.7.0beta2.tar.gz
cbe2c89e2082dd7c92ce364dad7b50a0  governmentpackage-4.7.0beta2.zip
f75652758e42e8d60a6c8ddc3efa51cd  introductionpackage-4.7.0beta2.tar.gz
edc4d4213026cba1ea6f8447bc208e55  introductionpackage-4.7.0beta2.zip
41c43fb0cf3ba7fa8e39777d15ecd638  typo3_src+dummy-4.7.0beta2.zip
d9f36c0e56ed433628ada0a7bf5e8444  typo3_src-4.7.0beta2.tar.gz
ac86b6c3e58659edaf4db3661849a587  typo3_src-4.7.0beta2.zip


kind regards

Steffen

-- 
Steffen Ritter
Release Manager TYPO3 4.7

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

-- 
Steffen Ritter
Release Manager TYPO3 4.7

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] remove general plugin div-wrapper

2012-03-13 Thread Jigal van Hemert

Hi,

On 13-3-2012 14:49, Robert Wildling wrote:

Usually, all plugins are wrapped in their respective
basis-div-container, like .

My question is: can these be removed?


There is a patch which just misses feature freezes for a number of 
releases over the past years [1].


Maybe we can prepare it now in time for 4.8? :-)

[1] http://forge.typo3.org/issues/19809

--
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


[TYPO3-english] Bug workspacePreviewDetail in French

2012-03-13 Thread Benoit Montereau
Just upgraded to typo 4.6.6 and I'm facing a problem when I try to preview
a page in a specific workspace (ok in LIVE).

In fact, Text for workspacePreviewDetail (workspace management) in French
is containing an error:

workspacePreviewDetail: 'Cliquez sur cet élément pour masquer la
version live de la page, et en voir la version de l'espace de
travail.',

the ' before espace should be backslashed \', currently a javascript
error breaks the preview.

My problem now is to understand where I can fix this bug. The XML
language is only available in English, so could someone let me know
where/how the translation of the system extensions are handled?

Thanks in advance for your help.

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


Re: [TYPO3-english] Include JavaScript

2012-03-13 Thread Iban Cardona i Subiela
Hello,

I used to use this code in my fe-plugins:

var $extKey   = 'user_t3xxx';// The extension key.
$GLOBALS['TSFE']->additionalHeaderData[$this->extKey] = '';

On 03/13/2012 03:31 PM, Theo Kotey wrote:
> Hi :)
>
> Thanks a lot for your help.
>
>
> On 3/13/2012 12:31 PM, Kay Strobach wrote:
>> Hi,
>>
>> In An Extenion you may call the pagerenderer and add a script file
>> ($this->doc->getPageRenderer() in pibase class).
>>
>> http://api.typo3.org/typo3v4/45/html/classt3lib___page_renderer.html
>>
>> in pure ts use the following snippet:
>>
>> http://blog.chandanweb.com/typo3/how-to-include-multiple-css-and-js-files-using-typoscript
>>
>>
>>
>> PS: it's common to say "hi" or "hello" in the beginning of a  question
>> in this list ;)
>>
>> Regards
>> Kay
>>
>> Am 13.03.2012 10:31, schrieb Theo Kotey:
>>> I have include some JavaScript files in my templates but they do not
>>> work when I run the website and test the forms. How do you include JS
>>> files in Typo3 so that they work properly.
>>>
>>> Thanks
>>> Theo
>>
>>
>
> ___
> 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] BE record localization with related records

2012-03-13 Thread Victor Livakovsky

Hi, List.

I'm looking for an obvious thing, but can't understand, is it my fault or 
missing core feature. I have an extension, which consists of couple of 
tables, which are linked to each other via MM and not-MM relations. TCA:

'system_category_id' => array (
   'exclude' => 0,
   'label' => 
'LLL:EXT:px_systems/locallang_db.xml:tx_pxsystems_systems.system_category_id',

   'config' => array (
   'type' => 'select',
   'items' => array (
   array('',0),
   ),
   'foreign_table' => 'tx_pxsystems_system_categories',
   'foreign_table_where' => 'AND 
tx_pxsystems_system_categories.pid=###CURRENT_PID### AND 
tx_pxsystems_system_categories.sys_language_uid=###REC_FIELD_sys_language_uid### 
ORDER BY tx_pxsystems_system_categories.uid',

   'size' => 1,
   'minitems' => 0,
   'maxitems' => 1,
   )
   ),
   'component_id' => array (
   'exclude' => 0,
   'label' => 
'LLL:EXT:px_systems/locallang_db.xml:tx_pxsystems_systems.component_id',

   'config' => array (
   'type' => 'select',
   'foreign_table' => 'tx_pxsystems_components',
   'foreign_table_where' => 'AND 
tx_pxsystems_components.pid=###CURRENT_PID### AND 
tx_pxsystems_components.sys_language_uid=###REC_FIELD_sys_language_uid### 
ORDER BY tx_pxsystems_components.uid',

   'size' => 10,
   'minitems' => 0,
   'maxitems' => 10,
   "MM" => "tx_pxsystems_systems_component_id_mm",
   )
   ),

As you see, 'system_category_id' is 1:n relation, while 'component_id' is 
m:n relation.


I want to make it possible to create relations to localized related records 
on main record localization - not leave linked records from default language 
version.
So, f.e., if I have "category 1" with "category 1 de" localization in 
'tx_pxsystems_system_categories', and I link "category 1" to my record, then 
I localize the record, and I should see "category 1 de" in "Categories" 
drop-down instead of "INVALID VALUE...". Is it possible out-of-the-box or I 
chould use some hooks to extend core saving mechanism?


Thank you in advance. 


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


Re: [TYPO3-english] Include JavaScript

2012-03-13 Thread Theo Kotey

Hi :)

Thanks a lot for your help.


On 3/13/2012 12:31 PM, Kay Strobach wrote:

Hi,

In An Extenion you may call the pagerenderer and add a script file
($this->doc->getPageRenderer() in pibase class).

http://api.typo3.org/typo3v4/45/html/classt3lib___page_renderer.html

in pure ts use the following snippet:

http://blog.chandanweb.com/typo3/how-to-include-multiple-css-and-js-files-using-typoscript


PS: it's common to say "hi" or "hello" in the beginning of a  question
in this list ;)

Regards
Kay

Am 13.03.2012 10:31, schrieb Theo Kotey:

I have include some JavaScript files in my templates but they do not
work when I run the website and test the forms. How do you include JS
files in Typo3 so that they work properly.

Thanks
Theo





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


[TYPO3-english] remove general plugin div-wrapper

2012-03-13 Thread Robert Wildling

Hi,

Usually, all plugins are wrapped in their respective 
basis-div-container, like .


My question is: can these be removed?

They come in quite unhandy, when a layout is finished and then needs to 
be integrated into TYPO3, where each and every plugin brings in its own 
game...


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


Re: [TYPO3-english] Search function for TYPO3-Bugs

2012-03-13 Thread Steffen Ritter

Am 13.03.2012 14:33, schrieb Hauke Hain:

Hi there,

is it possible to search for an existing issue by a keyword - not only
with the filter function - on
http://forge.typo3.org/projects/typo3v4-core/issues

.

I like Google very much :) Besides that you can add a fulltext filter...



--
Steffen Ritter
Release Manager TYPO3 4.7

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] Search function for TYPO3-Bugs

2012-03-13 Thread Markus Klein
Hi!

I always use the search function in the right top corner.
This is a full text search.

Kind regards
Markus


> -Original Message-
> From: typo3-english-boun...@lists.typo3.org 
> [mailto:typo3-english-boun...@lists.typo3.org] On Behalf Of Hauke Hain
> Sent: Tuesday, March 13, 2012 2:33 PM
> To: typo3-english@lists.typo3.org
> Subject: [TYPO3-english] Search function for TYPO3-Bugs
> 
> Hi there,
> 
> is it possible to search for an existing issue by a keyword - not only with 
> the filter function - on
> http://forge.typo3.org/projects/typo3v4-core/issues
> ?
> 
> I really miss that. I am often forced to read more than 100 bugs to check if 
> it is already reported.
> 
> Regards,
> Hauke
> ___
> 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] Search function for TYPO3-Bugs

2012-03-13 Thread Hauke Hain

Hi there,

is it possible to search for an existing issue by a keyword - not only 
with the filter function - on 
http://forge.typo3.org/projects/typo3v4-core/issues

?

I really miss that. I am often forced to read more than 100 bugs to 
check if it is already reported.


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


Re: [TYPO3-english] Salted Passwords & RSA: temp directory path

2012-03-13 Thread François Suter

Hi,


But I can't set the RSA Extension's temporary path properly to store the
temporary keys. I've created a folder above my public_html in the home
directory (/home/username/rsaauth/) and chmodded it to 700 - but it
stays empty. I can't find the keys in typo3temp neither.


But does the login work? Encrypted?

As far as I understand, the keys are created on the fly and exist only 
for a minimal amount of time. I've personally never "caught" a key file.



* is the RSA Extension really needed for increased security?


Yes, it's better than SSL.


* what form should the path in the EM Configuration dialogue have?


Any absolute path. If the login works, it means the configuration is ok.


* any other hints to set this up for better security?


Seems ok like you did.

Cheers

--

Francois Suter
Cobweb Development Sarl - http://www.cobweb.ch
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Salted Passwords & RSA: temp directory path

2012-03-13 Thread Urs Bräm

Hi

As TYPO3 Security Check has become quite insistent about that, have 
installed salted passwords, and it demands rsaauth. So I've installed 
that as well.


I've configured everything for Salt + RSA for BE Users (no FE Login 
yet). There are no error messages in the Salted Passwords configuration 
dialogue, everything seems fine. In the DB, the passwords are being 
converted to salted hashes.


But I can't set the RSA Extension's temporary path properly to store the 
temporary keys. I've created a folder above my public_html in the home 
directory (/home/username/rsaauth/) and chmodded it to 700 - but it 
stays empty. I can't find the keys in typo3temp neither.


My questions are:

* is the RSA Extension really needed for increased security?
* what form should the path in the EM Configuration dialogue have?
* any other hints to set this up for better security?

Thanks a lot
Urs


--
Urs Bräm
macht Websites
---
Certified Typo3 Integrator
CH-3011 Bern
www.ursbraem.ch
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Include JavaScript

2012-03-13 Thread Kay Strobach
Hi,

In An Extenion you may call the pagerenderer and add a script file
($this->doc->getPageRenderer() in pibase class).

http://api.typo3.org/typo3v4/45/html/classt3lib___page_renderer.html

in pure ts use the following snippet:

http://blog.chandanweb.com/typo3/how-to-include-multiple-css-and-js-files-using-typoscript


PS: it's common to say "hi" or "hello" in the beginning of a  question
in this list ;)

Regards
Kay

Am 13.03.2012 10:31, schrieb Theo Kotey:
> I have include some JavaScript files in my templates but they do not
> work when I run the website and test the forms. How do you include JS
> files in Typo3 so that they work properly.
> 
> Thanks
> Theo


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

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

Answer was useful: 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] [TYPO3-core] Announcing TYPO3 4.5.13 and 4.6.6

2012-03-13 Thread Oliver Hader
Dear TYPO3 world,

The TYPO3 Community has just released TYPO3 versions 4.5.13 and
4.6.6 which are now ready for you to download.

All versions are maintenance releases and contain bugfixes only.

The packages can be downloaded here:
  http://typo3.org/download/packages/

For details about the release, please see:
  http://news.typo3.org/news/article/typo3-4513-and-466-released/


MD5 checksums:

b1a4d6cd49d46fc09d811f243783387a  blankpackage-4.5.13.tar.gz
02cc49418b7b9df1ba5fde38d743ee11  blankpackage-4.5.13.zip
24dca99ae0c86644e66dcc898e175dec  dummy-4.5.13.tar.gz
10bcdd6fce3e4b76ad5ec9fb545abbe6  dummy-4.5.13.zip
6779c7bd4fa59cd5c2533da7e0695cb0  introductionpackage-4.5.13.tar.gz
9c6a42026ac81d164b97a51c04e0aa42  introductionpackage-4.5.13.zip
8475ccc493b0913b9581013221c086c9  typo3_src+dummy-4.5.13.zip
e2895177eab7091ba217c4a9e51ccfaa  typo3_src-4.5.13.tar.gz
1a65e2e19ed440a3ad0a20907d0e5ae2  typo3_src-4.5.13.zip

447b0602ae83e4bbe7876a5cdd208f68  blankpackage-4.6.6.tar.gz
125a2173739601d0df3ba6acc7a8731f  blankpackage-4.6.6.zip
67098dec1ce4f1412bdc500d9179aa2e  dummy-4.6.6.tar.gz
319bf267bd67a32594963ba0cace8039  dummy-4.6.6.zip
112beb8c6478cbf84b9f1e7e72f9f4e0  introductionpackage-4.6.6.tar.gz
1596fc9cbb1434df5e0164fd3087710b  introductionpackage-4.6.6.zip
c06f80e2164aa5acb7faa47feb22153a  typo3_src+dummy-4.6.6.zip
0154407282f65fd959ef701edbdce002  typo3_src-4.6.6.tar.gz
9af21b47993daa7775987c05f8fbffbe  typo3_src-4.6.6.zip


Rock on!
Olly
-- 
Oliver Hader
TYPO3 v4 Core Team Leader

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


[TYPO3-english] Overwriting a field (which is defined via flexform_ds.xml)

2012-03-13 Thread Josef F. Glatz

Hi list,

I want to change the eval from "nospace,trim,alphanum_x" to 
"trim,alphanum_x" of the field "acctables_tableclass" within 
/typo3/sysext/css_styled_content/flexform_ds.xml without editing the file.


Normally I can overwrite a field via TCA. To my knowledge, this is not 
an "normal" field which is defined via TCA.


Is there any possibility to overwrite within an own extension?

(the reason why I want to overwrite is: Twitter Bootstrap ;-] )

--
Cheers,
Josef Florian Glatz
blog:  http://typo3blog.at
vcard: http://www.josefglatz.at
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] 2012 - suggestions for reorganisation TYPO3 community-communication

2012-03-13 Thread Andreas Becker
Hi

Why don't you read was was already offered!

On Tue, Mar 13, 2012 at 4:26 PM, Bernd Wilke  wrote:

> On 03/10/2012 02:51 PM, RDE Wiesbaden wrote:
>
>> 2012 - community - communication
>>
>>
>  Within the last few days or weeks I did read EVERY single post regarding
>> the former topic and did collect the arguments. Many arguments are
>> serious !!,
>> others are unreal dreams. There is a strong need to "glue" together the
>> community, again and better. Developers and community should not drift in
>> "diametrical" directions.
>>
>> When I did offer to publish my experience to the community (for free)
>> and in
>> english, I was directed to the TYPO3-wiki. But all the wikis (including
>> wikipedia)
>> are badly readable. A suggestion, to slightly improove the pagelayout
>> was negative.
>>
>
> IMHO it's not the layout but the navigation in wikis which is the weak
> point.
> For something like a dictionary it might be good, but a community is
> something differnt and presenting a product like TYPO3 needs a hierarchical
> structur, which can't be solved with a wiki (without a lot of manual work
> which is not appropiate to an CMS)
>
>
>  Within the last few years many TYPO3 users, agencies, freelancers (and
>> myself)
>> did start their own knowledgebase on their own domains. Searching within
>> google
>> "for ANY topic" has reached a critical mess, resulting in millions of
>> google answers,
>> frustrating many many newcomers and immediately kick them out - forever.
>>
>> This needs to be changed shorty.
>>
>> Suggestion (1)
>> So one of the first changes must be, to open the "typo3.com" domain with
>> individual subdomains for all involved community members, to share our
>> gigantic
>> TYPO3 knowledge.
>>
>> The DNS system for example allows "rde-wiesbaden.typo3.com" or
>> "mittwald-espelkamp.typo3.com" or "dkd-frankfurt.typo3.com" and so on
>> (worldwide).
>> Each subdomain can easily point to the old server and point to that
>> available content.
>> They all may continue using their own design and their language and their
>> corporate identity. But under ONE (TYPO3-) umbrella please.
>>
>
> that can't be a solution. You might have one domain, but you still have
> duplicate and outdated content and no crossreferences or (global)
> navigation. A visitor has to learn the style of each of these pages.
>
> going one step further from your idea: we need a community page with
> individual profiles, where each member can publish his own stuff. so all
> the snippets, comemnts, ... were shown in a unique kind with the same style.
> have you realized that this would be a TYPO3-facebook/-linkedIn/-**XING/...
> ?
>
> who will build this community-software?
> TYPO3 still is missing a good basic community extension. :(


We don't need for everything a new extension. Simply use Mahara for exactly
those features and you have a facebook like community with groups,
individual pages, cv and portfolio manager, where users can even design a
bit their own pages with column settings, internal communication, chat etc.
- it is developed by a very active community and is easy to maintain and
update. i.e. via git.


>
>
>  Suggestion (2)
>> The next important need is, to date any infomation or article within the
>> first content-line,
>> and to force the authors to mark older articles with a creation-date -
>> back (may be to 2008).
>>
>
> in a community-SW this can be done automaticaly.
> the other problem: how to get google to forget about all that old sites? ;)
>
>
>  Suggestion (3)
>> We should publish a TYPO3 "community list", not this one for "technical
>> HELP requests",
>> but for fundamental questions. The former mail-storm was within the
>> wrong list and did
>> need to be rerouted to a global community list.
>>
>
> as mostly all of it is a question about communication.
> how much and in what way.
>
>
>  You all have seen, there is a need for.
>> (p.s. I am familiar in running some DNS servers and could do this job.)
>>
>> I know, that these ideas are not in a perfect shape, but we should think
>> about it now.
>>
>
> this were my thoughts to it
>
>
> bernd
> --
> http://www.pi-phi.de/**cheatsheet.html
>
> __**_
> 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] Include JavaScript

2012-03-13 Thread Theo Kotey
I have include some JavaScript files in my templates but they do not 
work when I run the website and test the forms. How do you include JS 
files in Typo3 so that they work properly.


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


Re: [TYPO3-english] 2012 - suggestions for reorganisation TYPO3 community-communication

2012-03-13 Thread Bernd Wilke

On 03/10/2012 02:51 PM, RDE Wiesbaden wrote:

2012 - community - communication




Within the last few days or weeks I did read EVERY single post regarding
the former topic and did collect the arguments. Many arguments are
serious !!,
others are unreal dreams. There is a strong need to "glue" together the
community, again and better. Developers and community should not drift in
"diametrical" directions.

When I did offer to publish my experience to the community (for free)
and in
english, I was directed to the TYPO3-wiki. But all the wikis (including
wikipedia)
are badly readable. A suggestion, to slightly improove the pagelayout
was negative.


IMHO it's not the layout but the navigation in wikis which is the weak 
point.
For something like a dictionary it might be good, but a community is 
something differnt and presenting a product like TYPO3 needs a 
hierarchical structur, which can't be solved with a wiki (without a lot 
of manual work which is not appropiate to an CMS)



Within the last few years many TYPO3 users, agencies, freelancers (and
myself)
did start their own knowledgebase on their own domains. Searching within
google
"for ANY topic" has reached a critical mess, resulting in millions of
google answers,
frustrating many many newcomers and immediately kick them out - forever.

This needs to be changed shorty.

Suggestion (1)
So one of the first changes must be, to open the "typo3.com" domain with
individual subdomains for all involved community members, to share our
gigantic
TYPO3 knowledge.

The DNS system for example allows "rde-wiesbaden.typo3.com" or
"mittwald-espelkamp.typo3.com" or "dkd-frankfurt.typo3.com" and so on
(worldwide).
Each subdomain can easily point to the old server and point to that
available content.
They all may continue using their own design and their language and their
corporate identity. But under ONE (TYPO3-) umbrella please.


that can't be a solution. You might have one domain, but you still have 
duplicate and outdated content and no crossreferences or (global) 
navigation. A visitor has to learn the style of each of these pages.


going one step further from your idea: we need a community page with 
individual profiles, where each member can publish his own stuff. so all 
the snippets, comemnts, ... were shown in a unique kind with the same style.

have you realized that this would be a TYPO3-facebook/-linkedIn/-XING/... ?

who will build this community-software?
TYPO3 still is missing a good basic community extension. :(


Suggestion (2)
The next important need is, to date any infomation or article within the
first content-line,
and to force the authors to mark older articles with a creation-date -
back (may be to 2008).


in a community-SW this can be done automaticaly.
the other problem: how to get google to forget about all that old sites? ;)


Suggestion (3)
We should publish a TYPO3 "community list", not this one for "technical
HELP requests",
but for fundamental questions. The former mail-storm was within the
wrong list and did
need to be rerouted to a global community list.


as mostly all of it is a question about communication.
how much and in what way.


You all have seen, there is a need for.
(p.s. I am familiar in running some DNS servers and could do this job.)

I know, that these ideas are not in a perfect shape, but we should think
about it now.


this were my thoughts to it


bernd
--
http://www.pi-phi.de/cheatsheet.html
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Problem with l10nmgr and import after upgrading

2012-03-13 Thread Brian Bendtsen

Hi

The l10nmgr seems rather inactive, so I will post it here instead.

I have just upgraded the extension from version 3.3.9 to 3.3.15 mainly 
because of the issue with translated records being hidden by default.


Unfortunately, importing has stopped working. The exports has been done 
before the upgrade but shouldn't it be possible to import older exports 
by checking the "use old format" checkbox? Not sure this is even apply 
here, but without it an error saying something like "wrong version 1.1 - 
1.2 required" is shown.


With it though, I get this message:
--- message begin ---
Messages:
Import uses the old format without pageGrp element and checks!

 Import done

(Command count:0)
--- message end ---

But nothing is imported

Any suggestions?

TYPO3 is version 4.5.12
--
Best Regards

Brian Bendtsen
TYPO3 Konsulent/Udvikler
Attensa
Website: http://www.attensa.dk
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english