[TYPO3-english] preprocess hook

2011-02-21 Thread Dawid Pacholczyk

Hello List,
 I would like to use preProcess hook to stop record from update ! 
Yes...I want to stop it.


For example if title of a news is rude 'f*** you !' I would like to 
prevent it from adding or from changing normal title to it. I know how 
to use preProcess hook, I have all functions that I need, but.how to 
stop the insert or update ?


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


[TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Tomas Mrozek
I've never enabled editors to use workspaces in TYPO3 as I felt that
it's impossible to explain how it works. With the new TYPO3 and changes
made to workspaces, I gave it another shot.

Well, it is better but, in my opinion, still confusing. Why? Let's see:

An editor makes changes in a DRAFT workspace. The change goes through
the stages and then it's published. The content is no longer being shown
in the DRAFT workspace. Good. Now the editor switches to the LIVE
workspace and sees the content in a stage Editing and thus can send it
to the next stage. (???) He runs it through all the stages and when it's
published, the content is still there in a stage Editing. (???)

I think that I (mostly) understand the technicalities behind the scene
and that there are now 2 content versions in the LIVE workspace but how
on earth can you explain this to an editor?!

The concept of *versions* inside a *workspace* (which people understand
as a version itself) seems to me to be really complicated.

QUESTIONS:

* Is there any possibility that a DRAFT workspace version of an element
can replace the LIVE workspace version upon publishing so that the LIVE
version is removed completely and thus that there is always only one
version inside the LIVE workspace?

* How would that affect history of the element and the possibility to do
a roll-back to the previous state?

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


Re: [TYPO3-english] static_info_tables data is not fully imported

2011-02-21 Thread Boris Gulay

18.02.2011 14:59, Xavier Perseguers пишет:

Hi,

Boris Gulay wrote:

I'm using TYPO3 4.4.6 with PostgreSQL 8.3.7.
After installing static_info_tables extension I can see only 29
languages instead of more than one hundred in source (of the plugin).
There is no errors in the web interface and in PHP error log.

What goes wrong? How can I diagnose this problem?


IIRC I found once that the 30th record to be inserted (in your case)
contained some single quote that was not optimally escaped and that
bugged TYPO3 with DBAL activated. Check your static records and fix the
30th record accordingly.
Sorry, I did not understand what do you mean. 30th record for 
static_languages is English and it looks OK.


I have made some investigations and found the problem.
SQL script to create static tables is contained in the extension twice: 
first time in ext_tables.sql and second in ext_tables_static+adt.sql. 
And (surprise!) order of columns in this two scripts is different! The 
second surprise is in the way records are inserted into this tables: 
there in no field names in INSERT statements.


What actually happens? First, SQL scripts from ext_tables.sql are 
executed and static_* tables are created. Then ext_tables_static+adt.sql 
is parsed and CREATE TABLE scripts for the same tables are executed, but 
DROP TABLE scripts are ignored. So, all the creations fails because 
tables already exists.


typo3@typo3-ERROR:  relation static_languages already exists
typo3@typo3-STATEMENT:  CREATE TABLE static_languages (
uidINT8 NOT NULL,
pidINT8 DEFAULT 0,
lg_iso_2   VARCHAR(2) DEFAULT '',
lg_name_en VARCHAR(50) DEFAULT '',
lg_typo3   VARCHAR(2) DEFAULT '',
lg_country_iso_2   VARCHAR(2) DEFAULT '',
lg_collate_locale  VARCHAR(5) DEFAULT '',
lg_name_local  VARCHAR(99) DEFAULT '',
lg_sacred  INT8 DEFAULT 0,
lg_constructed INT8 DEFAULT 0,
 PRIMARY KEY (uid)
)WITHOUT OIDS

After each (failed) CREATE statement INSERT statement are executed. But 
they does not specify field name explicitly and order of values is for 
ext_tables_static not for ext_tables.sql! As you can imagine most of 
INSERT statements fails with similar errors.


typo3@typo3-STATEMENT:  INSERT INTO static_languages
(
uid,
pid,
lg_iso_2,
lg_name_local,
lg_name_en,
lg_typo3,
lg_country_iso_2,
lg_collate_locale,
lg_sacred,
lg_constructed
) VALUES (
'2',
'0',
'AA',
'Afar',
'',
'',
'',
'Afaraf',
'0',
'0'
)
typo3@typo3-ERROR:  value too long for type character varying(5)

For me I have solved this problem by adding field names to INSERT 
statement. But I'm sure that scripts in this extension must be fixed to 
be able to work correctly with DBAL and any supported databases. Before 
writing a message to author of this extension I want to ask you (as 
maintainer of DBAL extension) some questions.


* Is it OK to have CREATE scripts for the same (static) tables in two 
files in the extension? It seems to me that this scripts should be only 
in ext_tables_static. In ext_tables should be only one script for 
tx_staticinfotables_hotlist table. Is it correct?
* Why DROP TABLE scripts from ext_tables_static are not executed during 
extension installation process? I can see this statement in 
class.em_index.php:5403 but it does not actually executed.

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

[TYPO3-english] [t3blog] only get plain string von field:title?

2011-02-21 Thread Josef Florian Glatz

hi guys,

I want to get the plain string from the author.

If I use:

10 = TEXT
10.field = title

I get the title with the whole wrap and a-tag.
Is there a possiblity to display the post-title in blogList without wraps?

Thanks in forward!

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


Re: [TYPO3-english] [t3blog] only get plain string von field:title?

2011-02-21 Thread Hendrik

Am 21.02.2011 11:17, schrieb Josef Florian Glatz:

hi guys,

I want to get the plain string from the author.

If I use:

10 = TEXT
10.field = title

I get the title with the whole wrap and a-tag.
Is there a possiblity to display the post-title in blogList without wraps?

Thanks in forward!



try this...

10 = TEXT
10.field = title
10.stripHtml = 1
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] [t3blog] only get plain string von field:title?

2011-02-21 Thread Josef Florian Glatz

Am 21.02.2011 11:47, schrieb Hendrik:

Am 21.02.2011 11:17, schrieb Josef Florian Glatz:

hi guys,

I want to get the plain string from the author.

If I use:

10 = TEXT
10.field = title

I get the title with the whole wrap and a-tag.
Is there a possiblity to display the post-title in blogList without
wraps?

Thanks in forward!



try this...

10 = TEXT
10.field = title
10.stripHtml = 1



THX! basic typoscript - whatelse?!?!?!?!

Thank you for your help.

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Dmitry Dulepov

Hi!

Tomas Mrozek wrote:

An editor makes changes in a DRAFT workspace. The change goes through
the stages and then it's published. The content is no longer being shown
in the DRAFT workspace. Good. Now the editor switches to the LIVE
workspace and sees the content in a stage Editing and thus can send it
to the next stage. (???) He runs it through all the stages and when it's
published, the content is still there in a stage Editing. (???)


Firsts, drop draft workspace, it is limited and buggy... Use custom workspace.

Secondly, it looks like a bug :) Check the bug tracker.

--
Dmitry 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] image slider for tt_products and tt_news in T4.5

2011-02-21 Thread Tobias Dörner
Hi everybody,
does anybody know a well working extension which shows and slides images of
tt_products and tt_news in Typo3 4.5?

Best Regard 

Tobi

 

 

 

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


Re: [TYPO3-english] image slider for tt_products and tt_news in T4.5

2011-02-21 Thread Christian Endlich
Hi Tobi,

try this one:
http://www.t3solution.de/ext/t3s-jslidernews/news-slider-stil-5.html 

www.merguet.de


-Ursprüngliche Nachricht-
Von: typo3-english-boun...@lists.typo3.org
[mailto:typo3-english-boun...@lists.typo3.org] Im Auftrag von Tobias Dörner
Gesendet: Montag, 21. Februar 2011 13:00
An: 'TYPO3 English'
Betreff: [TYPO3-english] image slider for tt_products and tt_news in T4.5

Hi everybody,
does anybody know a well working extension which shows and slides images of
tt_products and tt_news in Typo3 4.5?

Best Regard 

Tobi

 

 

 

___
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] Missing pages redirecting with code 303

2011-02-21 Thread Tomasz Melcer
On 16.02.2011 18:36, Tomasz Melcer wrote:
 I am trying to get 404 code working properly. I am using TYPO3 4.5 from
 the Introduction Package, which means RealURL and actually all its
 default settings too (I haven't had time to customize it yet).
 [...]
 But when I actually connect to the host, I get 303 and redirection:
 [...]

I found the reason.

It seems that TYPO3 tries to download a page from url given in
[pageNotFound_handling] (when using the simple string version),
using curl library.

In my case:

 * There was no php5-curl installed.

 * For security reasons my webserver had blocked outgoing connections,
and my domain resolved to an external IP. Therefore my installation
could not download a page from itself.

It helped to install php5-curl and add an entry mydomain - 127.0.0.1
in local /etc/hosts file.

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Tomas Mrozek
 Firsts, drop draft workspace, it is limited and buggy... Use custom
 workspace.

Actually, I was talking about a custom workspace. I have it named DRAFT
workspace and that's why I used that title. I'm sorry for the confusion.

 Secondly, it looks like a bug

No, I now see it's not. I compared it to v4.4 and it's still the same.
There's still Publish (changes the workspace of the content to LIVE)
and Swap (changes the workspace of the content to LIVE, while changing
the current LIVE version to DRAFT), the 2 buttons are just not next to
each other anymore.

REVISION

The problems as I see it now are (and always have been) following:

* 2 modes: Publish and Swap and it's impossible to explain the
difference to an editor.

* Publish creates 2 element versions in the LIVE workspace and thus it
confuses editors who open Workspace module while in the LIVE workspace.

* Swap switches the elements' workspaces and thus puts the LIVE into
DRAFT and again confuses editors who go to DRAFT and think there's some
new DRAFT version of the element (while in fact it's the old LIVE version).

In my opinion there should be:

* Only one mode of publishing drafted element.

* The publishing should REPLACE the current LIVE version with the DRAFT
one, thus removing it so that it doesn't cause confusion in any workspace.

My current conclusion therefore is, that the whole functionality is
still the same crap and I don't understand what was the fuss about when
v4.5 was published as I now see no improvement to the workspaces.

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


[TYPO3-english] Cloned copy of site showing blank (fe and be)

2011-02-21 Thread Sara Weale
We have just cloned our typo3 vm and for some reason all the pages are blank, 
including the backend.


Any ideas what this could be? We've restored the database (again!) but still 
there is nothing showing.


Is there a conf somewhere that needs to be changed??

Thanks in advance,
Sara

--
Sara Weale
Rheolwr y We Web Manager
Llyfrgell Genedlaethol Cymru The National Library of Wales

webmas...@llgc.org.ukFfôn / Phone  01970 632845



Un o lyfrgelloedd mawr y byd.One of the great libraries of the world.
http://www.llgc.org.uk/

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


Re: [TYPO3-english] Cloned copy of site showing blank (fe and be)

2011-02-21 Thread Tomas Mrozek
Turn on PHP error reporting to see what's causing it.

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Philipp Gampe
Hello Thomas,

Tomas Mrozek wrote:

 My current conclusion therefore is, that the whole functionality is
 still the same crap and I don't understand what was the fuss about when
 v4.5 was published as I now see no improvement to the workspaces.

Custom stages and new interface is nothing worth talking about? Well, then I 
am sorry. Workspace team works hard, but they did not recode everything from 
scratch.

BTW, there is still the difference between workspace and versions. At least 
in 4.4 you could use versions without workspaces - I did not check 4.5...

Instead if ranting, you could have filed a feature request to hide all not-
top versions in live workspace.
Additionally you could file a request for hide publish and/or swap buttons 
(TSconfig or userTS).
Last, but not least you could start brainstorming how it should work from 
your perspective and share your thoughts with the WS team.

http://forge.typo3.org/projects/typo3v4-workspaces/issues

BTW2, looks like some off your point are already know and worked on.

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


Re: [TYPO3-english] preprocess hook

2011-02-21 Thread Sergey Alexandrov

You should try

unset($incomingFieldArray);

Best wishes,
Serg

On 2/21/2011 4:47 AM, Dawid Pacholczyk wrote:

Hello List,
 I would like to use preProcess hook to stop record from update ! 
Yes...I want to stop it.


For example if title of a news is rude 'f*** you !' I would like to 
prevent it from adding or from changing normal title to it. I know how 
to use preProcess hook, I have all functions that I need, but.how 
to stop the insert or update ?


Best regards,
Dawid Pacholczyk
___
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] t3blog - searchBox finds same post xtimes

2011-02-21 Thread Josef Florian Glatz

Hi,

I've insert the blgo widget searchbox and it works. But sometimes the 
searchresults displays the same posts more than once?


Does anyone else getting this error?

Thanks in advance

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Tomas Mrozek
 Custom stages and new interface is nothing worth talking about?

If editors (still) have difficulty to understand why workspaces work the
way they do then any improvement to the interface doesn't make any
difference.

 Well, then I am sorry.

No need to. I didn't ask for any sympathy.

 Instead if ranting,...

You might call it ranting, I call it starting discussion. I wanted
to read other people's opinions/experiences/advices while presenting my
opinions. I wouldn't go on and suggest something to the development team
without getting the opinions of other people and building an overall
picture for myself.

Maybe instead of your ranting you could share your views and put down
some points why you think that the current way the workspaces work is good.

Listen (I mean read), Philipp, I'm sorry if I touched your nerve but I
wasn't drilling for it.

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


[TYPO3-english] change default field order - TCA

2011-02-21 Thread Georg Schönweger
Hi,

i would like to change the default field order for a table (TCA). Let's
say the extension writes fields to TCA in following order:
1. TITLE
2. SUBTITLE

i would like to change this to:
1. SUBTITLE
2. TITLE

I found nothing in TSconfig so i think it's not possible with user/page
TSConfig. Now i could change the field order by changing TCA directly in
ext_localconf.php or in my own extension;
$TCA['table_name']['types']['0']['showitem'] = 'many,many,fields...'
But i don't like this because the extension which defines this table is
also using Dynaflex and set's some fields dynamically. Is there a TYPO3
way of doing this or do i have to handle this by my own?

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


Re: [TYPO3-english] SRFEUserRegister - Content Above Application Form

2011-02-21 Thread Curt Grimley
Hi Louis,

No idea on checking the stage, but here are a few other ideas...

1) in your TEMPLATE_CREATE_PREVIEW, you could move the submit buttons to
the top of the form so they might be more visible.

2) Put your preamble about registration on one page, with a link at the
bottom to the real registration page, like Register now The
constant plugin.tx_srfeuserregister_pi1.registerPID would point to the
first of these two pages. I've done that to accommodate terms of use
policy statements.

Hope that helps,
Curt

On 2/17/2011 2:59 PM, Louis Coppola wrote:
 All,
 I have a registration page with a form to register for my site.
 
 Above that content element (SRFEUserRegister) there is some intro text
 explaining why they would like to register etc.
 
 After the user fills out the initial form and is taken to the
 confirmation page to verify their information is correct I would like
 the intro text above the form to disappear.  The way it works now
 after filling out the form and clicking submit the user sees the same
 page with the confirmation screen below the intro text.
 
 A user may not notice that they have to confirm because the intro text
 pushes down the confirmation piece.
 
 Is there a typoscript variable using the extension that I can check to
 see what stage the registration is in and then hide the content
 element (id 10848) when it is past the initial registration stage.
 
 Thanks,
 Louis Coppola
 GA Institute

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Philipp Gampe
Hi Tomas,

Tomas Mrozek wrote:

 Custom stages and new interface is nothing worth talking about?
 
 If editors (still) have difficulty to understand why workspaces work the
 way they do then any improvement to the interface doesn't make any
 difference.

Then explain it to them ... TYPO3 is free ... developers code it in there 
free time and not things are not always optimal. It is just a way it is. If 
you don't see any difference between 4.4 WS and 4.5 WS - so be it.

If you want to have it different, create a feature request or even provide 
patches.

 Maybe instead of your ranting you could share your views and put down
 some points why you think that the current way the workspaces work is
 good.

I never said the current way is good. It is just better than 4.4.

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


Re: [TYPO3-english] t3blog - searchBox finds same post xtimes

2011-02-21 Thread Dmitry Dulepov

Hi!

Josef Florian Glatz wrote:

I've insert the blgo widget searchbox and it works. But sometimes the
searchresults displays the same posts more than once?


Fixed in svn version.

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Tomas Mrozek
 Then explain it to them ... TYPO3 is free ... developers code it in there 
 free time and not things are not always optimal. It is just a way it is.

Yep, I can give them the finger (verbally) as you suggested. I'm not
sure it's the right approach but I'll think of it. ;-)

 If you want to have it different, create a feature request...

Yep, I can do that. Let's see what happens.

 ...or even provide patches.

Well, I would if I could. Creating a patch for something like workspaces
seems impossible to me right now.

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Steffen Gebert

...or even provide patches.


Well, I would if I could. Creating a patch for something like workspaces
seems impossible to me right now.


Do you get the point?

I don't want to say be happy with what you got in 4.5, but keep this 
fact and the fact that ~10 people did lots of work over the last months 
in mind! The whole concept can't be made fool-proof over night (and 
maybe it's not even desired, as workspaces is just a topic, which IMHO 
doesn't fit into the once-in-a-month active editor's intellectual horizon).


I'm sure that they're open for suggestions of better workflows and so on.

Kind regards
Steffen

--
Steffen Gebert
TYPO3 v4 Core Team Member

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] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Tomas Mrozek
Look, I understand that many people spent lots of time on it, that they
did it for free and that the time devoted to such work is hardly ever
appreciated. It's not like I've never done anything for free while not
being appreciated. I know the feeling.

I also understand that workspaces were introduced many versions ago and
there's need for backward compatibility so radical changes are not
(always) possible.

But does this all mean that I should not express my opinions but just
simply keep quiet and be grateful? Do you want all users to only clap
their hands and never come up with any criticism?

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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Steffen Gebert

But does this all mean that I should not express my opinions but just
simply keep quiet and be grateful? Do you want all users to only clap
their hands and never come up with any criticism?

No, you have been asked often enough to submit feature requests.

Nevertheless you could express it not in such a way:

My current conclusion therefore is, that the whole functionality is
still the same crap and I don't understand what was the fuss about when
v4.5 was published as I now see no improvement to the workspaces.



Kind regards
Steffen

--
Steffen Gebert
TYPO3 v4 Core Team Member

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] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Tomas Mrozek
 No, you have been asked often enough to submit feature requests.

And I already said that before coming with some feature request I would
first like to get other people's view on the workspaces. I believe this
is the place where such a topic can be (or even should be) discussed and
before coming hastily with a request it's better to give it some time
and ponder about it. Maybe somebody will come up with something that
will open my eyes and make me change my mind about how the workspaces
currently work... I would then regret submitting a feature request.

 Nevertheless you could express it not in such a way:

I give you that. I could have said it nicer.

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


Re: [TYPO3-english] image slider for tt_products and tt_news in T4.5

2011-02-21 Thread Tobias Dörner
Hi Christian,
thanks for answering but it is not exactly what i am looking for. At the
moment perfect light box is the most needful one i guess.
Best Regards 
Tobi

-Ursprüngliche Nachricht-
Von: typo3-english-boun...@lists.typo3.org
[mailto:typo3-english-boun...@lists.typo3.org] Im Auftrag von Christian
Endlich
Gesendet: Montag, 21. Februar 2011 13:09
An: 'TYPO3 English'
Betreff: Re: [TYPO3-english] image slider for tt_products and tt_news in
T4.5

Hi Tobi,

try this one:
http://www.t3solution.de/ext/t3s-jslidernews/news-slider-stil-5.html 

www.merguet.de


-Ursprüngliche Nachricht-
Von: typo3-english-boun...@lists.typo3.org
[mailto:typo3-english-boun...@lists.typo3.org] Im Auftrag von Tobias Dörner
Gesendet: Montag, 21. Februar 2011 13:00
An: 'TYPO3 English'
Betreff: [TYPO3-english] image slider for tt_products and tt_news in T4.5

Hi everybody,
does anybody know a well working extension which shows and slides images of
tt_products and tt_news in Typo3 4.5?

Best Regard 

Tobi

 

 

 

___
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] preprocess hook

2011-02-21 Thread Victor Livakovsky

Hi, Dawid.

Just a suggestion: what about using a workspaces and restricting editors to 
only custom workspace? 


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


Re: [TYPO3-english] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-21 Thread Andreas Becker
Hi Tomas

What you said is absolute Ok and it is good that you said it as many don't
do this and keep quite and complain in the inner.

@Steffen

Backwards compatibility is often the cause that things don't go like they
could if people would simply update regular their sites.
i.e. we do this as a service for all of our customers to keep their sites
and our servers and sites secure, modern and working with state of the art
technology.

Core updates are such as easy, meanwhile done even with an extension and
same applies to extension updates.
If an extension breaks contact the developer so he can change it, or submit
him a patch if you have one, and if nothing changes and no feedback in at
most one week simply change the extension or modify your own one.

Things could go much faster and better if you (the Association, Core
Developers etc) would simply put a bit more pressure on those old
site heroes to change middle age TYPO3 below 4.3 to modern 4.5+. It is
really not such difficult to update a site and those who have problems
simply get in contact with us! (and I guess many others who provide similar
services!

It is really not good to read here in this thread that i.e. Draft Modus is
buggy (buty it is available by default) - so simply don't show draft modus
and FORCE people to create a custom workspace. If Tomas wouldn't have
brought up this topic we also would have thought how great workspaces are
right now - we believed the announcements. So now we were worn't just in
time and were able to follow Dmitrys very good advice to create a custom
workspace instead.

   1. Don't show things which aren't working  at first place and make people
   believe it is working
   2. Developers should be more open for critics from those who are using
   and developing sites with it
   3. Don't ever try to cut the line of communication while saying a
   statement was stupid or what else. No question is to stupid to be asked!
   4. Inspire to share - this is exactly what happened with Tom and all
   others here on the thread. Tomas got inspired by the great announcements,
   like we, and gave it another try. Now it is up to you to get inspired by the
   feedbacks you get, so that Tomas and all others like us can get inspired
   over and over again to give valuable feedback.
   5. In a Community like TYPO3 you have people who can program, design or
   just integrate TYPO3 etc, but you have also a lot of people who actually
   have to work as an editor every day with it, agencies who want to see it
   (even they don't know much about TYPO3 itself), etc. All of those do a great
   job to make TYPO3 more popular and better every day if they will communicate
   and give feedbacks to others. So be happy about this thread and the result
   it will hopefully bring up soon!
   6. Be always sure that people really appreciate all the working hours
   core and other developers put into TYPO3 to get the code cleaner, much
   faster and better structured with great usability. On the other hand
   everyone who is involved in this should also be sure that those who are
   using it invest the same amount of time and afford to get it running for a
   customer, promoting what you developed, spreading the joy of TYPO3, etc.
   Only if both do a good job we will get a good, stable, fast, secure, usable,
    TYPO3. Communication is the A and O of everything!

Lets get things done!

Andi




On Tue, Feb 22, 2011 at 3:49 AM, Tomas Mrozek m...@cascaval.com wrote:

  No, you have been asked often enough to submit feature requests.

 And I already said that before coming with some feature request I would
 first like to get other people's view on the workspaces. I believe this
 is the place where such a topic can be (or even should be) discussed and
 before coming hastily with a request it's better to give it some time
 and ponder about it. Maybe somebody will come up with something that
 will open my eyes and make me change my mind about how the workspaces
 currently work... I would then regret submitting a feature request.

  Nevertheless you could express it not in such a way:

 I give you that. I could have said it nicer.

 Tomas Mrozek
 ___
 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] t3blog - searchBox finds same post xtimes

2011-02-21 Thread Josef Florian Glatz

Am 21.02.2011 19:25, schrieb Dmitry Dulepov:

Hi!

Josef Florian Glatz wrote:

I've insert the blgo widget searchbox and it works. But sometimes the
searchresults displays the same posts more than once?


Fixed in svn version.


Thank You!

Anyway, after installing trunk:

pi1/widgets/blogList/class.singleFunction.php line 1146: remove last comma



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


Re: [TYPO3-english] t3blog - searchBox finds same post xtimes

2011-02-21 Thread Dmitry Dulepov

Hi!

Josef Florian Glatz wrote:

Anyway, after installing trunk:

pi1/widgets/blogList/class.singleFunction.php line 1146: remove last comma


Why? Here is the code:

$markerArray = array(
'###TITLE###'   = 
strip_tags($pObjPiVars['blogList']['commenttitle']),

'###TEXT###'= strip_tags($pObjPiVars['blogList']['commenttext']),
'###AUTHOR###'  = $this-localPiVars['commentauthor'],
'###EMAIL###'   = $this-localPiVars['commentauthoremail'],
'###WEBSITE###' = $this-localPiVars['commentauthorwebsite'],
'###IP###'  = t3lib_div::getIndpEnv('REMOTE_ADDR'),
'###TSFE###'= t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST'),
'###POSTTITLE###'   = is_array($titleRow) ? $titleRow['title'] : '',
'###LINK###'= $this-getPermalink($this-uid, 
$this-getPostDate($this-uid), true)

);


Line 1146 is with ###POSTTITLE###.

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


Re: [TYPO3-english] t3blog - searchBox finds same post xtimes

2011-02-21 Thread Josef Florian Glatz

Am 22.02.2011 08:30, schrieb Dmitry Dulepov:

Hi!

Josef Florian Glatz wrote:

Anyway, after installing trunk:

pi1/widgets/blogList/class.singleFunction.php line 1146: remove last
comma


Why? Here is the code:

$markerArray = array(
'###TITLE###' = strip_tags($pObjPiVars['blogList']['commenttitle']),
'###TEXT###' = strip_tags($pObjPiVars['blogList']['commenttext']),
'###AUTHOR###' = $this-localPiVars['commentauthor'],
'###EMAIL###' = $this-localPiVars['commentauthoremail'],
'###WEBSITE###' = $this-localPiVars['commentauthorwebsite'],
'###IP###' = t3lib_div::getIndpEnv('REMOTE_ADDR'),
'###TSFE###' = t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST'),
'###POSTTITLE###' = is_array($titleRow) ? $titleRow['title'] : '',
'###LINK###' = $this-getPermalink($this-uid,
$this-getPostDate($this-uid), true)
);


Line 1146 is with ###POSTTITLE###.



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

After downloading trunk there where two commas at the end of line.

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


Re: [TYPO3-english] preprocess hook

2011-02-21 Thread Dawid Pacholczyk

W dniu 2011-02-22 01:37, Victor Livakovsky pisze:

Hi, Dawid.

Just a suggestion: what about using a workspaces and restricting editors
to only custom workspace?


The editor work is just an example. It has to be an automatic process 
that isn`t related to editor work. It has to be done by the system.


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