Re: [TYPO3-english] RealUrl: Keep hyphen AND underscore

2010-04-13 Thread Tomas Mrozek
But would it be possible that if I add something to the Speaking Path Segment that contains an Upper Case letter, that this one stays unchanged? I'm not aware that this would be possible. You would have to check the inner working of RealURL or maybe Dmitry will tell you if that can be achieved

[TYPO3-english] typoscript to check file existence?

2010-04-13 Thread Martin Bless
What the best typoscript to check if a file exists? I'm looking for something like 501.jsfile.if.isTrue.cObject = TEXT 501.jsfile.if.isTrue.cObject.value = dummy 501.jsfile.if.isTrue.cObject.typolink.parameter =fileadmin/script.js 501.jsfile.if.isTrue.cObject.typolink.returnLast = url

Re: [TYPO3-english] RealUrl: Keep hyphen AND underscore

2010-04-13 Thread Dmitry Dulepov
Hi! Tomas Mrozek wrote: But would it be possible that if I add something to the Speaking Path Segment that contains an Upper Case letter, that this one stays unchanged? I'm not aware that this would be possible. You would have to check the inner working of RealURL or maybe Dmitry will tell

Re: [TYPO3-english] scheduled publishing of CHANGED content (workspaces)

2010-04-13 Thread bernd wilke
Am Mon, 12 Apr 2010 15:09:02 +0200 schrieb jochem nabuurs: Hi list, is it possible for a user inside a workspace to specify the exact time of publishing a change. I've read about the CLI option, but could not find much documentation and I think it doesn't do what I want it to do. What

Re: [TYPO3-english] Garbage Value in L Parameter.

2010-04-13 Thread Dmitry Dulepov
Hi! Rajat Arora wrote: I am beginner for typo3 and facing an problem with my website URL. The URL of my website, shows garbage value with Langauge Parameter for some parts of the website. just an example as follows:

Re: [TYPO3-english] RealUrl: Convert apostrophe to hyphen

2010-04-13 Thread David ARNOULT - Edition Internet Operations
This is cool, thanks Tomas it works great with those 2 lines :-) ... $processedTitle = preg_replace('/[ \-+_\']+/', $space, $processedTitle); // convert spaces ... $processedTitle = preg_replace('/[^a-zA-Z0-9\'\\' . $space . ']/', '', $processedTitle); // strip the rest Another question :

Re: [TYPO3-english] RealUrl: Keep hyphen AND underscore

2010-04-13 Thread Torsten Schneider
Hello Dimitry Needs code change. But I doubt it is a good idea because people are used to have lowercase URLs. Making something unusual makes it problematic for users. Of course you are right with that. But my problem is that I have about 6000 Content Pages on the Site I migrate to TYPO3 of

Re: [TYPO3-english] RealUrl: Keep hyphen AND underscore

2010-04-13 Thread Torsten Schneider
Hello Lorenz, As far as I know it must be possible to get this working with a RewriteRule. Maybe you could post the rule you tried and failed with? I tried this one: RewriteRule ^([^A]*)A(.*)$ $1a$2 RewriteRule ^([^B]*)B(.*)$ $1b$2 RewriteRule ^([^C]*)C(.*)$ $1c$2 . . . RewriteRule

Re: [TYPO3-english] Garbage Value in L Parameter.

2010-04-13 Thread Rajat Arora
Dmitry Dulepov wrote: By looking at TSRef for config.linkVars. It describes the syntax that you can use to limit values to a certain set. For example, you could do this: config.linkVars = L(0-5) Documentation reference:

[TYPO3-english] htmlAreaRTE: Why the editor area is in Path: body?

2010-04-13 Thread Toshiyuki Toda
Hi list! I use htmlareaRTE 1.8.8 with TYPO3 4.3.2. Opening htmlareaRTE's editor area in backend, Path: body is shown in gray bar below. however, we don't replace pagecontent with body###pagecontent###/body normally. If I have a html template such as below, ... body div id=main ...

Re: [TYPO3-english] Garbage Value in L Parameter.

2010-04-13 Thread Georg Ringer
Hi, Am 14.04.2010 01:02, schrieb Rajat Arora: [globalVar = GP:L = 1] config.linkVars = L, print you allow everything there again Georg ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] Garbage Value in L Parameter.

2010-04-13 Thread Rajat Arora
[globalVar = GP:L = 1] config.linkVars = L, print Georg Ringer wrote: you allow everything there again Sorry. By mistake I copied the wrong code, Actaully I tried with following all limit values config.linkVars = L(0-2), print config.linkVars = L(0-5), print config.linkVars = L(0-5)